From 9a48d80eb1da96b38525ea78b178822403367108 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 3 Sep 2014 16:08:01 +1000 Subject: [PATCH 01/34] Optimisation in system sorting (just update where not NULL) --- admin/systemsortprocess.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index f7047f5a..588e93fa 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -184,7 +184,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin //Set all cases as unavailable $sql = "UPDATE `case` SET sortorder = NULL - WHERE 1"; + WHERE sortorder IS NOT NULL"; $db->Execute($sql); @@ -245,7 +245,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin //First set all sample records as unavailable $sql = "UPDATE `questionnaire_sample_exclude_priority` SET sortorder = NULL - WHERE 1"; + WHERE sortorder IS NOT NULL"; $db->Execute($sql); From 2d42c674f99d4a0090dec9bde4775a63fdb5f87c Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 17 Sep 2014 10:45:53 +1000 Subject: [PATCH 02/34] Remove references to extension_password as now password in extension table --- admin/operatorlist.php | 4 ++-- admin/operators.php | 2 +- functions/functions.operator.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/admin/operatorlist.php b/admin/operatorlist.php index 002466f1..e6bb7e40 100644 --- a/admin/operatorlist.php +++ b/admin/operatorlist.php @@ -255,9 +255,9 @@ if (isset($_GET['operator_id'])) header("Pragma: public"); // HTTP/1.0 if (isset($_GET['winbat'])) - echo "voipclient.exe -i -u {$rs['ext']} -p {$rs['extension_password']} -h " . $_SERVER['SERVER_NAME']; + echo "voipclient.exe -i -u {$rs['ext']} -p {$rs['password']} -h " . $_SERVER['SERVER_NAME']; else - echo "./voipclient -i -u {$rs['ext']} -p {$rs['extension_password']} -h " . $_SERVER['SERVER_NAME']; + echo "./voipclient -i -u {$rs['ext']} -p {$rs['password']} -h " . $_SERVER['SERVER_NAME']; } } } diff --git a/admin/operators.php b/admin/operators.php index e14bfd96..d56054db 100644 --- a/admin/operators.php +++ b/admin/operators.php @@ -113,7 +113,7 @@ if (isset($_POST['operator'])) if (FREEPBX_PATH !== false) { //add extension - $sql = "INSERT INTO extension (`extension`,`extension_password`,`current_operator_id`) + $sql = "INSERT INTO extension (`extension`,`password`,`current_operator_id`) VALUES ($extension, $extensionp, $oid)"; $db->Execute($sql); diff --git a/functions/functions.operator.php b/functions/functions.operator.php index 9d8f972e..c9f57024 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -860,12 +860,12 @@ function get_extension_password($operator_id) { global $db; - $sql = "SELECT e.extension_password + $sql = "SELECT e.password FROM `extension` as e WHERE e.current_operator_id = '$operator_id'"; $rs = $db->GetRow($sql); - if (!empty($rs) && isset($rs['extension_password'])) return $rs['extension_password']; + if (!empty($rs) && isset($rs['password'])) return $rs['password']; return false; } From 529133c8c6b9bbb6f6658cd2a03968ce94cd1fb6 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 17 Sep 2014 12:27:30 +1000 Subject: [PATCH 03/34] Fixes lp:1362415 Use of eregi and split are deprecated --- functions/functions.voip.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/functions/functions.voip.php b/functions/functions.voip.php index 511cd0a5..0cbdd604 100644 --- a/functions/functions.voip.php +++ b/functions/functions.voip.php @@ -71,11 +71,11 @@ class voip { { $ret = $this->query("Action: IAXPeerList\r\n\r\n","PeerlistComplete"); - $c = spliti("\r\n\r\n",$ret); + $c = preg_split("/\r\n\r\n/i",$ret); $chans = array(); foreach ($c as $s) { - if(eregi("Event: PeerEntry.*ObjectName: ([0-9a-zA-Z-]+).*Status: ([/0-9a-zA-Z-]+)",$s,$regs)) + if(preg_match("{Event: PeerEntry.*ObjectName: ([0-9a-zA-Z-]+).*Status: ([/0-9a-zA-Z-]+)}i",$s,$regs)) { //print T_("Channel: SIP/") . $regs[1] . " BridgedChannel " . $regs[2] . "\n"; $chan = substr($regs[1],0,4); @@ -98,18 +98,18 @@ class voip { { $ret = $this->query("Action: Status\r\n\r\n","StatusComplete"); - $c = spliti("\r\n\r\n",$ret); + $c = preg_split("/\r\n\r\n/i",$ret); $chans = array(); foreach ($c as $s) { - if(eregi("Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+).*BridgedChannel: ((SIP/|IAX2/)[/0-9a-zA-Z-]+)",$s,$regs)) + if(preg_match("{Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+).*BridgedChannel: ((SIP/|IAX2/)[/0-9a-zA-Z-]+)}i",$s,$regs)) { //print T_("Channel: SIP/") . $regs[1] . " BridgedChannel " . $regs[2] . "\n"; $ccs = explode('-',$regs[1]); $chan = $ccs[0]; $chans[$chan] = array($regs[1],$regs[3]); } - else if(eregi("Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+)",$s,$regs)) + else if(preg_match("{Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+)}i",$s,$regs)) { //print T_("Channel: ") . $regs[1] . "\n"; $ccs = explode('-', $regs[1]); @@ -266,7 +266,7 @@ class voip { if ($type == "SIP") { $ret = $this->query("Action: ExtensionState\r\nContext: from-internal\r\nExten: $ext\r\nActionID: \r\n\r\n","Status:"); - if(eregi("Status: ([0-9]+)",$ret,$regs)) + if(preg_match("{Status: ([0-9]+)}i",$ret,$regs)) { if (isset($regs[1])) { @@ -545,7 +545,7 @@ class voipWatch extends voip { /** * The call is ringing */ - if (eregi("Event: Dial.*SubEvent: Begin.*Channel: ((SIP/|IAX2/)[0-9]+)",$line,$regs)) + if (preg_match("{Event: Dial.*SubEvent: Begin.*Channel: ((SIP/|IAX2/)[0-9]+)}i",$line,$regs)) { list($call_id,$case_id) = $this->getCallId($regs[1]); if ($call_id != 0) @@ -557,7 +557,7 @@ class voipWatch extends voip { /** * The call has been answered */ - else if (eregi("Event: Bridge.*Channel1: ((SIP/|IAX2/)[0-9]+)",$line,$regs)) + else if (preg_match("{Event: Bridge.*Channel1: ((SIP/|IAX2/)[0-9]+)}i",$line,$regs)) { list($call_id,$case_id) = $this->getCallId($regs[1]); if ($call_id != 0) @@ -569,7 +569,7 @@ class voipWatch extends voip { /** * The call has been hung up */ - else if (eregi("Event: Hangup.*Channel: ((SIP/|IAX2/)[0-9]+)",$line,$regs)) + else if (preg_match("{Event: Hangup.*Channel: ((SIP/|IAX2/)[0-9]+)}i",$line,$regs)) { list($call_id,$case_id) = $this->getCallId($regs[1]); if ($call_id != 0) @@ -582,7 +582,7 @@ class voipWatch extends voip { /** * The status of an extension has changed to unregistered */ - else if (eregi("Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Unregistered",$line,$regs)) + else if (preg_match("{Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Unregistered}i",$line,$regs)) { print T_("Unregistered") . T_(" Extension ") . $regs[1] . "\n"; $this->setExtensionStatus($regs[1],false); @@ -591,7 +591,7 @@ class voipWatch extends voip { /** * The status of an extension has changed to registered */ - else if (eregi("Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Registered",$line,$regs)) + else if (preg_match("{Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Registered}i",$line,$regs)) { print T_("Registered") . T_(" Extension ") . $regs[1] . "\n"; $this->setExtensionStatus($regs[1],true); From fb0f9240f59f870534484564894a371566b9a736 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 17 Sep 2014 15:25:22 +1000 Subject: [PATCH 04/34] Fixes lp:1362418 - Cannot originate calls on Asterisk 11 Adds ORIGINATE_CONTEXT as a configuration default and sets it to 'from-internal' --- config.default.php | 6 ++++++ functions/functions.voip.php | 30 +++++++++++++++--------------- 2 files changed, 21 insertions(+), 15 deletions(-) diff --git a/config.default.php b/config.default.php index c6f0166b..9bae7b71 100644 --- a/config.default.php +++ b/config.default.php @@ -94,6 +94,12 @@ if (!defined('VOIP_ADMIN_PASS')) define('VOIP_ADMIN_PASS','amp111'); */ if (!defined('VOIP_PORT')) define('VOIP_PORT','5038'); +/** + * The Asterisk context to originate calls from (in FreePBX this should be + * 'from-internal' otherwise try 'default' + */ +if (!defined('ORIGINATE_CONTEXT')) define('ORIGINATE_CONTEXT','from-internal'); + /** * The freepbx root path (if installed) otherwise false to disable freepbx integration */ diff --git a/functions/functions.voip.php b/functions/functions.voip.php index 0cbdd604..afebb301 100644 --- a/functions/functions.voip.php +++ b/functions/functions.voip.php @@ -75,7 +75,7 @@ class voip { $chans = array(); foreach ($c as $s) { - if(preg_match("{Event: PeerEntry.*ObjectName: ([0-9a-zA-Z-]+).*Status: ([/0-9a-zA-Z-]+)}i",$s,$regs)) + if(preg_match("{Event: PeerEntry.*ObjectName: ([0-9a-zA-Z-]+).*Status: ([/0-9a-zA-Z-]+)}is",$s,$regs)) { //print T_("Channel: SIP/") . $regs[1] . " BridgedChannel " . $regs[2] . "\n"; $chan = substr($regs[1],0,4); @@ -102,14 +102,14 @@ class voip { $chans = array(); foreach ($c as $s) { - if(preg_match("{Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+).*BridgedChannel: ((SIP/|IAX2/)[/0-9a-zA-Z-]+)}i",$s,$regs)) + if(preg_match("{Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+).*BridgedChannel: ((SIP/|IAX2/)[/0-9a-zA-Z-]+)}is",$s,$regs)) { //print T_("Channel: SIP/") . $regs[1] . " BridgedChannel " . $regs[2] . "\n"; $ccs = explode('-',$regs[1]); $chan = $ccs[0]; $chans[$chan] = array($regs[1],$regs[3]); } - else if(preg_match("{Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+)}i",$s,$regs)) + else if(preg_match("{Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+)}is",$s,$regs)) { //print T_("Channel: ") . $regs[1] . "\n"; $ccs = explode('-', $regs[1]); @@ -187,7 +187,7 @@ class voip { */ function dial($ext,$number) { - $r = $this->query("Action: Originate\r\nChannel: $ext\r\nExten: $number\r\nPriority: 1\r\nCallerid: $ext\r\n\r\n","Response"); + $r = $this->query("Action: Originate\r\nChannel: $ext\r\nExten: $number\r\nContext: " . ORIGINATE_CONTEXT . "\r\nPriority: 1\r\nCallerid: $ext\r\n\r\n","Response"); } @@ -266,7 +266,7 @@ class voip { if ($type == "SIP") { $ret = $this->query("Action: ExtensionState\r\nContext: from-internal\r\nExten: $ext\r\nActionID: \r\n\r\n","Status:"); - if(preg_match("{Status: ([0-9]+)}i",$ret,$regs)) + if(preg_match("{Status: ([0-9]+)}is",$ret,$regs)) { if (isset($regs[1])) { @@ -540,14 +540,14 @@ class voipWatch extends voip { * */ if ($in == "\r\n") - { + { //print "PROCESS: "; /** * The call is ringing */ - if (preg_match("{Event: Dial.*SubEvent: Begin.*Channel: ((SIP/|IAX2/)[0-9]+)}i",$line,$regs)) - { - list($call_id,$case_id) = $this->getCallId($regs[1]); + if (preg_match("{Event: Dial.*SubEvent: Begin.*Channel: ((SIP/|IAX2/)[0-9]+)}is",$line,$regs)) + { + list($call_id,$case_id) = $this->getCallId($regs[1]); if ($call_id != 0) { print T_("Ringing") . T_(" Extension ") . $regs[1] . " " . T_("Case id") . ": $case_id\n"; @@ -557,8 +557,8 @@ class voipWatch extends voip { /** * The call has been answered */ - else if (preg_match("{Event: Bridge.*Channel1: ((SIP/|IAX2/)[0-9]+)}i",$line,$regs)) - { + else if (preg_match("{Event: Bridge.*Channel1: ((SIP/|IAX2/)[0-9]+)}is",$line,$regs)) + { list($call_id,$case_id) = $this->getCallId($regs[1]); if ($call_id != 0) { @@ -569,8 +569,8 @@ class voipWatch extends voip { /** * The call has been hung up */ - else if (preg_match("{Event: Hangup.*Channel: ((SIP/|IAX2/)[0-9]+)}i",$line,$regs)) - { + else if (preg_match("{Event: Hangup.*Channel: ((SIP/|IAX2/)[0-9]+)}is",$line,$regs)) + { list($call_id,$case_id) = $this->getCallId($regs[1]); if ($call_id != 0) { @@ -582,7 +582,7 @@ class voipWatch extends voip { /** * The status of an extension has changed to unregistered */ - else if (preg_match("{Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Unregistered}i",$line,$regs)) + else if (preg_match("{Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Unregistered}is",$line,$regs)) { print T_("Unregistered") . T_(" Extension ") . $regs[1] . "\n"; $this->setExtensionStatus($regs[1],false); @@ -591,7 +591,7 @@ class voipWatch extends voip { /** * The status of an extension has changed to registered */ - else if (preg_match("{Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Registered}i",$line,$regs)) + else if (preg_match("{Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Registered}is",$line,$regs)) { print T_("Registered") . T_(" Extension ") . $regs[1] . "\n"; $this->setExtensionStatus($regs[1],true); From 5c6c0a3ed9e326ff147ffeac27ae24bd9e9c1656 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 3 Nov 2014 14:02:13 +1100 Subject: [PATCH 05/34] Sort on a questionnaire by questionnaire basis --- admin/systemsortprocess.php | 346 +++++++++++++++++++----------------- 1 file changed, 187 insertions(+), 159 deletions(-) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index 588e93fa..772f2d87 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -88,8 +88,11 @@ register_shutdown_function('disable_systemsort'); //all output send to database instead of stdout ob_start('update_callback',2); +$closecasescounter = 0; + print T_("Sorting cases process starting"); +$closecasesinterval = (24 * 60) / SYSTEM_SORT_MINUTES; //check for closed cases once every day $sleepinterval = 10; // in seconds so we can monitor if the process has been killed while (!is_process_killed($process_id)) //check if process killed every $sleepinterval @@ -97,202 +100,227 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin //Make sure that the system knows we are system sorting set_setting('systemsort',true); - print T_("Sorting cases"); + if ($closecasescounter == 0 || $closecasescounter > $closecasesinterval) + { + $time_start = microtime(true); + print T_("Checking for cases open for more than 24 hours"); - $time_start = microtime(true); + $closecasescounter = 0; + $db->StartTrans(); - $db->StartTrans(); + //find all call attempts without an end that started more than 24 hours ago + + $sql = "SELECT case_id, call_attempt_id + FROM `call_attempt` + WHERE TIMESTAMPDIFF(HOUR, start, CONVERT_TZ(NOW(),'System','UTC')) > 24 + AND end IS NULL"; + + $rs = $db->GetAll($sql); + + foreach ($rs as $r) + { + //refer to supervisor if case still assigned + + $sql = "UPDATE `case` + SET current_operator_id = NULL, current_outcome_id = 5 + WHERE case_id = '{$r['case_id']}' + AND current_operator_id IS NOT NULL + AND current_call_id IS NULL"; + + $db->Execute($sql); + + //add note - //find all call attempts without an end that started more than 24 hours ago + $sql = "INSERT INTO case_note (case_id,operator_id,note,`datetime`) + VALUES ('{$r['case_id']}',1,'" . TQ_("System automatically closed case as not closed for more than 24 hours") ."', CONVERT_TZ(NOW(),'System','UTC'))"; - $sql = "SELECT case_id, call_attempt_id - FROM `call_attempt` - WHERE TIMESTAMPDIFF(HOUR, start, CONVERT_TZ(NOW(),'System','UTC')) > 24 - AND end IS NULL"; - - $rs = $db->GetAll($sql); - - foreach ($rs as $r) - { - //refer to supervisor if case still assigned - - $sql = "UPDATE `case` - SET current_operator_id = NULL, current_outcome_id = 5 - WHERE case_id = '{$r['case_id']}' - AND current_operator_id IS NOT NULL - AND current_call_id IS NULL"; + $db->Execute($sql); + + //finish the call attempt + + $sql = "UPDATE `call_attempt` + SET end = start + WHERE call_attempt_id = '{$r['call_attempt_id']}'"; - $db->Execute($sql); + $db->Execute($sql); - //add note + print T_("System automatically closed case as not closed for more than 24 hours") . " - " . T_("Case id") . ": {$r['case_id']}"; + } + + //find all calls without an end that started more than 24 hours ago + + $sql = "SELECT case_id, call_id + FROM `call` + WHERE TIMESTAMPDIFF(HOUR, start, CONVERT_TZ(NOW(),'System','UTC')) > 24 + AND end IS NULL"; + + $rs = $db->GetAll($sql); + + foreach ($rs as $r) + { + //refer to supervisor if case still assigned + + $sql = "UPDATE `case` + SET current_operator_id = NULL, current_outcome_id = 5, current_call_id = NULL + WHERE case_id = '{$r['case_id']}' + AND current_operator_id IS NOT NULL"; - $sql = "INSERT INTO case_note (case_id,operator_id,note,`datetime`) - VALUES ('{$r['case_id']}',1,'" . TQ_("System automatically closed case as not closed for more than 24 hours") ."', CONVERT_TZ(NOW(),'System','UTC'))"; + $db->Execute($sql); - $db->Execute($sql); - - //finish the call attempt - - $sql = "UPDATE `call_attempt` - SET end = start - WHERE call_attempt_id = '{$r['call_attempt_id']}'"; + //add note + + $sql = "INSERT INTO case_note (case_id,operator_id,note,`datetime`) + VALUES ('{$r['case_id']}',1,'" . TQ_("System automatically closed case as not closed for more than 24 hours") ."', CONVERT_TZ(NOW(),'System','UTC'))"; - $db->Execute($sql); + $db->Execute($sql); - print T_("System automatically closed case as not closed for more than 24 hours") . " - " . T_("Case id") . ": {$r['case_id']}"; - } - - //find all calls without an end that started more than 24 hours ago - - $sql = "SELECT case_id, call_id - FROM `call` - WHERE TIMESTAMPDIFF(HOUR, start, CONVERT_TZ(NOW(),'System','UTC')) > 24 - AND end IS NULL"; - - $rs = $db->GetAll($sql); - - foreach ($rs as $r) - { - //refer to supervisor if case still assigned - - $sql = "UPDATE `case` - SET current_operator_id = NULL, current_outcome_id = 5, current_call_id = NULL - WHERE case_id = '{$r['case_id']}' - AND current_operator_id IS NOT NULL"; + //finish the call + + $sql = "UPDATE `call` + SET end = start, outcome_id = 5, state = 5 + WHERE call_id = '{$r['call_id']}'"; - $db->Execute($sql); + $db->Execute($sql); - //add note - - $sql = "INSERT INTO case_note (case_id,operator_id,note,`datetime`) - VALUES ('{$r['case_id']}',1,'" . TQ_("System automatically closed case as not closed for more than 24 hours") ."', CONVERT_TZ(NOW(),'System','UTC'))"; + print T_("System automatically closed case as not closed for more than 24 hours") . " - " . T_("Case id") . ": {$r['case_id']}"; + } - $db->Execute($sql); + $result = $db->CompleteTrans(); + + $time_end = microtime(true); + $timer = $time_end - $time_start; - //finish the call - - $sql = "UPDATE `call` - SET end = start, outcome_id = 5, state = 5 - WHERE call_id = '{$r['call_id']}'"; + if ($result) + print T_("Completed case closing") . ". " . T_("This task took") . ": $timer " . T_("seconds"); + else + print T_("Failed to complete caes closing") . ". " . T_("This task took") . ": $timer " . T_("seconds"); + } - $db->Execute($sql); - print T_("System automatically closed case as not closed for more than 24 hours") . " - " . T_("Case id") . ": {$r['case_id']}"; - } - - - //Set all cases as unavailable - $sql = "UPDATE `case` - SET sortorder = NULL - WHERE sortorder IS NOT NULL"; + $closecasescounter++; - $db->Execute($sql); - - - //Update quotas for all enabled questionnaires - $sql = "SELECT questionnaire_id + //Sort cases on a questionnaire by questionnaire basis + $sql = "SELECT questionnaire_id, description FROM questionnaire WHERE enabled = 1"; $qs = $db->GetAll($sql); foreach($qs as $q) - update_quotas($q['questionnaire_id']); + { + print T_("Sorting cases for ") . $q['description']; + + $questionnaire_id = $q['questionnaire_id']; + + $time_start = microtime(true); + + $db->StartTrans(); + + //Set all cases as unavailable + $sql = "UPDATE `case` + SET sortorder = NULL + WHERE sortorder IS NOT NULL + AND questionnaire_id = '$questionnaire_id'"; + + $db->Execute($sql); + + + //update quotas + update_quotas($questionnaire_id); - //Sort current cases for all enabled questionnaires + //Sort current cases for this questionnaire - - $sql = "SELECT c.case_id - FROM `case` as c - LEFT JOIN `call` as a on (a.call_id = c.last_call_id) - JOIN (sample as s, sample_import as si) on (s.sample_id = c.sample_id and si.sample_import_id = s.import_id) - JOIN (questionnaire_sample as qs, questionnaire as q, outcome as ou) on (c.questionnaire_id = q.questionnaire_id and qs.sample_import_id = s.import_id and ou.outcome_id = c.current_outcome_id and q.enabled = 1 and qs.questionnaire_id = c.questionnaire_id) - LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end)) - LEFT JOIN appointment as ap on (ap.case_id = c.case_id AND ap.completed_call_id is NULL AND (ap.start > CONVERT_TZ(NOW(),'System','UTC'))) - LEFT JOIN appointment as apn on (apn.case_id = c.case_id AND apn.completed_call_id is NULL AND (CONVERT_TZ(NOW(),'System','UTC') >= apn.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= apn.end)) - LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end) - LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = c.questionnaire_id AND qsep.sample_id = c.sample_id) - LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id) - LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id) - WHERE c.current_operator_id IS NULL - AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) - AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) - AND ap.case_id is NULL - AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) - AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL) - AND !(si.call_restrict = 1 AND cr.day_of_week IS NULL) - AND ((apn.appointment_id IS NOT NULL) or qs.call_attempt_max = 0 or ((SELECT count(*) FROM call_attempt WHERE case_id = c.case_id) < qs.call_attempt_max)) - AND ((apn.appointment_id IS NOT NULL) or qs.call_max = 0 or ((SELECT count(*) FROM `call` WHERE case_id = c.case_id) < qs.call_max)) - AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0 - GROUP BY c.case_id - ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, a.start ASC, qsep.priority DESC"; - - $rs = $db->GetAll($sql); + $sql = "SELECT c.case_id + FROM `case` as c + LEFT JOIN `call` as a on (a.call_id = c.last_call_id) + JOIN (sample as s, sample_import as si) on (s.sample_id = c.sample_id and si.sample_import_id = s.import_id) + JOIN (questionnaire_sample as qs, questionnaire as q, outcome as ou) on (c.questionnaire_id = q.questionnaire_id and qs.sample_import_id = s.import_id and ou.outcome_id = c.current_outcome_id and q.questionnaire_id = '$questionnaire_id' and qs.questionnaire_id = c.questionnaire_id) + LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end)) + LEFT JOIN appointment as ap on (ap.case_id = c.case_id AND ap.completed_call_id is NULL AND (ap.start > CONVERT_TZ(NOW(),'System','UTC'))) + LEFT JOIN appointment as apn on (apn.case_id = c.case_id AND apn.completed_call_id is NULL AND (CONVERT_TZ(NOW(),'System','UTC') >= apn.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= apn.end)) + LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end) + LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = c.questionnaire_id AND qsep.sample_id = c.sample_id) + LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id) + LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id) + WHERE c.current_operator_id IS NULL + AND c.questionnaire_id = '$questionnaire_id' + AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) + AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) + AND ap.case_id is NULL + AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) + AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL) + AND !(si.call_restrict = 1 AND cr.day_of_week IS NULL) + AND ((apn.appointment_id IS NOT NULL) or qs.call_attempt_max = 0 or ((SELECT count(*) FROM call_attempt WHERE case_id = c.case_id) < qs.call_attempt_max)) + AND ((apn.appointment_id IS NOT NULL) or qs.call_max = 0 or ((SELECT count(*) FROM `call` WHERE case_id = c.case_id) < qs.call_max)) + AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0 + GROUP BY c.case_id + ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, a.start ASC, qsep.priority DESC"; + + $rs = $db->GetAll($sql); - $i = 1; - foreach ($rs as $r) - { - $sql = "UPDATE `case` - SET sortorder = '$i' - WHERE case_id = '{$r['case_id']}'"; - - $db->Execute($sql); - $i++; - } + $i = 1; + foreach ($rs as $r) + { + $sql = "UPDATE `case` + SET sortorder = '$i' + WHERE case_id = '{$r['case_id']}'"; + + $db->Execute($sql); + $i++; + } - //First set all sample records as unavailable - $sql = "UPDATE `questionnaire_sample_exclude_priority` - SET sortorder = NULL - WHERE sortorder IS NOT NULL"; + //First set all sample records as unavailable + $sql = "UPDATE `questionnaire_sample_exclude_priority` + SET sortorder = NULL + WHERE sortorder IS NOT NULL + AND questionnaire_id = '$questionnaire_id'"; - $db->Execute($sql); + $db->Execute($sql); + //Sort sample list where attached to this questionnaire - //Sort sample list where attached to an enabled questionnaire + $sql = "SELECT s.sample_id as sample_id,qs.questionnaire_id as questionnaire_id + FROM sample as s + JOIN (questionnaire_sample as qs, questionnaire as q, sample_import as si) on (qs.sample_import_id = s.import_id and si.sample_import_id = s.import_id and q.questionnaire_id = qs.questionnaire_id AND q.questionnaire_id = '$questionnaire_id') + LEFT JOIN `case` as c on (c.sample_id = s.sample_id and c.questionnaire_id = qs.questionnaire_id) + LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end) + LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end)) + LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = qs.questionnaire_id AND qsep.sample_id = s.sample_id) + WHERE c.case_id is NULL + AND ((qsep.questionnaire_id IS NULL) or qsep.exclude = 0) + AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL) + AND !(si.call_restrict = 1 AND cr.day_of_week IS NULL) + AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = qs.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0 + GROUP BY s.sample_id,qs.questionnaire_id + ORDER BY qsep.priority DESC, rand() * qs.random_select, s.sample_id"; + + $rs = $db->GetAll($sql); - $sql = "SELECT s.sample_id as sample_id,qs.questionnaire_id as questionnaire_id - FROM sample as s - JOIN (questionnaire_sample as qs, questionnaire as q, sample_import as si) on (qs.sample_import_id = s.import_id and si.sample_import_id = s.import_id and q.questionnaire_id = qs.questionnaire_id AND q.enabled = 1) - LEFT JOIN `case` as c on (c.sample_id = s.sample_id and c.questionnaire_id = qs.questionnaire_id) - LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end) - LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end)) - LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = qs.questionnaire_id AND qsep.sample_id = s.sample_id) - WHERE c.case_id is NULL - AND ((qsep.questionnaire_id IS NULL) or qsep.exclude = 0) - AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL) - AND !(si.call_restrict = 1 AND cr.day_of_week IS NULL) - AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = qs.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0 - GROUP BY s.sample_id,qs.questionnaire_id - ORDER BY qsep.priority DESC, rand() * qs.random_select, s.sample_id"; - - $rs = $db->GetAll($sql); + $i = 1; + foreach ($rs as $r) + { + $sql = "INSERT INTO questionnaire_sample_exclude_priority (questionnaire_id,sample_id,exclude,priority,sortorder) + VALUES ('{$r['questionnaire_id']}', '{$r['sample_id']}', 0, 50,'$i') + ON DUPLICATE KEY UPDATE sortorder = '$i'"; - $i = 1; - foreach ($rs as $r) - { - $sql = "INSERT INTO questionnaire_sample_exclude_priority (questionnaire_id,sample_id,exclude,priority,sortorder) - VALUES ('{$r['questionnaire_id']}', '{$r['sample_id']}', 0, 50,'$i') - ON DUPLICATE KEY UPDATE sortorder = '$i'"; + $db->Execute($sql); + $i++; + } + - $db->Execute($sql); - $i++; - } - - + $result = $db->CompleteTrans(); + + $time_end = microtime(true); + $timer = $time_end - $time_start; - - $result = $db->CompleteTrans(); - - $time_end = microtime(true); - $timer = $time_end - $time_start; - - if ($result) - print T_("Completed sort") . ". " . T_("This task took") . ": $timer " . T_("seconds"); - else - print T_("Failed to complete sort") . ". " . T_("This task took") . ": $timer " . T_("seconds"); + if ($result) + print T_("Completed sort") . ". " . T_("This task took") . ": $timer " . T_("seconds"); + else + print T_("Failed to complete sort") . ". " . T_("This task took") . ": $timer " . T_("seconds"); + } for ($i = 0; $i < (SYSTEM_SORT_MINUTES * 60); $i += $sleepinterval) { From 02741d94785448750b7521b9542b78c3ebba46d6 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Tue, 25 Nov 2014 10:16:44 +1100 Subject: [PATCH 06/34] New Feature: Ability to disable and enable new records being drawn from a sample --- CHANGELOG | 6 ++++++ admin/assignsample.php | 25 ++++++++++++++++++------- database/quexs.sql | 1 + functions/functions.operator.php | 2 +- 4 files changed, 26 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b84fbc69..d51dc247 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +queXS 1.11.0 - Changes since 1.10.4 + + +ALTER TABLE `questionnaire_sample` ADD `allow_new` TINYINT( 1 ) NOT NULL DEFAULT '1'; + + queXS 1.10.4 - Changes since 1.10.3 Fixed bug: Quota priority could get below 0 diff --git a/admin/assignsample.php b/admin/assignsample.php index 1e84d2a4..1369f11c 100644 --- a/admin/assignsample.php +++ b/admin/assignsample.php @@ -69,10 +69,11 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['sample']) && isset($_GET[' $am = bigintval($_GET['answering_machine_messages']); $selecttype = 0; if (isset($_GET['selecttype'])) $selecttype = 1; + $an = 0; + if (isset($_GET['allownew'])) $an = 1; - - $sql = "INSERT INTO questionnaire_sample(questionnaire_id,sample_import_id,call_max,call_attempt_max,random_select,answering_machine_messages) - VALUES('$questionnaire_id','$sid','$cm','$cam','$selecttype','$am')"; + $sql = "INSERT INTO questionnaire_sample(questionnaire_id,sample_import_id,call_max,call_attempt_max,random_select,answering_machine_messages,allow_new) + VALUES('$questionnaire_id','$sid','$cm','$cam','$selecttype','$am', '$an')"; $db->Execute($sql); @@ -89,13 +90,17 @@ if (isset($_POST['edit'])) $am = bigintval($_POST['answering_machine_messages']); $selecttype = 0; if (isset($_POST['selecttype'])) $selecttype = 1; + $an = 0; + if (isset($_POST['allownew'])) $an = 1; + $sql = "UPDATE questionnaire_sample SET call_max = '$cm', call_attempt_max = '$cam', random_select = '$selecttype', - answering_machine_messages = '$am' + answering_machine_messages = '$am', + allow_new = '$an' WHERE questionnaire_id = '$questionnaire_id' AND sample_import_id = '$sid'"; @@ -119,7 +124,8 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['rsid'])) q.call_max, q.call_attempt_max, q.random_select, - q.answering_machine_messages + q.answering_machine_messages, + q.allow_new FROM questionnaire_sample as q, sample_import as si, questionnaire as qr WHERE q.sample_import_id = si.sample_import_id AND q.questionnaire_id = '$questionnaire_id' @@ -134,9 +140,11 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['rsid'])) print "

" . T_("Go back") . "

"; - $selected =""; + $allownew = $selected =""; if ($qs['random_select'] == 1) $selected = "checked=\"checked\""; + if ($qs['allow_new'] == 1) + $allownew = "checked=\"checked\""; ?>
@@ -144,6 +152,7 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['rsid']))

/>
+ />
"/>

@@ -181,6 +190,7 @@ if ($questionnaire_id != false) CASE WHEN q.call_attempt_max = 0 THEN '" . TQ_("Unlimited") . "' ELSE q.call_attempt_max END AS call_attempt_max, CASE WHEN q.random_select = 0 THEN '" . TQ_("Sequential") . "' ELSE '". TQ_("Random") . "' END as random_select, CASE WHEN q.answering_machine_messages = 0 THEN '" . TQ_("Never") . "' ELSE q.answering_machine_messages END as answering_machine_messages, + CASE WHEN q.allow_new = 0 THEN '" . TQ_("No") . "' ELSE '".TQ_("Yes")."' END as allow_new, CONCAT('" . TQ_("Edit") ."') as edit, CONCAT('" . TQ_("Click to unassign") ."') as unassign FROM questionnaire_sample as q, sample_import as si @@ -190,7 +200,7 @@ if ($questionnaire_id != false) $qs = $db->GetAll($sql); if (!empty($qs)) - xhtml_table($qs,array("description","call_max","call_attempt_max","answering_machine_messages","random_select","edit","unassign"),array(T_("Sample"), T_("Max calls"), T_("Max call attempts"), T_("Answering machine messages"), T_("Selection type"), T_("Edit"), T_("Unassign sample") )); + xhtml_table($qs,array("description","call_max","call_attempt_max","answering_machine_messages","random_select","allow_new","edit","unassign"),array(T_("Sample"), T_("Max calls"), T_("Max call attempts"), T_("Answering machine messages"), T_("Selection type"), T_("Allow new numbers to be drawn?"), T_("Edit"), T_("Unassign sample") )); else print "

" . T_("No samples selected for this questionnaire") . "

"; @@ -223,6 +233,7 @@ if ($questionnaire_id != false)


+
"/>

diff --git a/database/quexs.sql b/database/quexs.sql index bf50273b..011725b6 100644 --- a/database/quexs.sql +++ b/database/quexs.sql @@ -1447,6 +1447,7 @@ CREATE TABLE `questionnaire_sample` ( `call_attempt_max` int(11) NOT NULL default '0', `random_select` tinyint(1) NOT NULL default '0', `answering_machine_messages` int(11) NOT NULL default '1', + `allow_new` TINYINT( 1 ) NOT NULL DEFAULT '1', PRIMARY KEY (`questionnaire_id`,`sample_import_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; diff --git a/functions/functions.operator.php b/functions/functions.operator.php index c9f57024..9afbc7e1 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -681,7 +681,7 @@ function get_case_id($operator_id, $create = false) $sql = "SELECT s.sample_id as sample_id,c.case_id as case_id,qs.questionnaire_id as questionnaire_id,CONVERT_TZ(NOW(), 'System' , s.Time_zone_name) as resptime, q.testing as testing FROM sample as s - JOIN (questionnaire_sample as qs, operator_questionnaire as o, questionnaire as q, operator as op, sample_import as si, operator_skill as os) on (op.operator_id = '$operator_id' and qs.sample_import_id = s.import_id and o.operator_id = op.operator_id and o.questionnaire_id = qs.questionnaire_id and q.questionnaire_id = o.questionnaire_id and si.sample_import_id = s.import_id and os.operator_id = op.operator_id and os.outcome_type_id = 1 and q.enabled = 1) + JOIN (questionnaire_sample as qs, operator_questionnaire as o, questionnaire as q, operator as op, sample_import as si, operator_skill as os) on (op.operator_id = '$operator_id' and qs.sample_import_id = s.import_id and o.operator_id = op.operator_id and o.questionnaire_id = qs.questionnaire_id and q.questionnaire_id = o.questionnaire_id and si.sample_import_id = s.import_id and os.operator_id = op.operator_id and os.outcome_type_id = 1 and q.enabled = 1 and qs.allow_new = 1) LEFT JOIN `case` as c on (c.sample_id = s.sample_id and c.questionnaire_id = qs.questionnaire_id) LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end) LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end)) From 3f4710e477eb5536a12d2673beac23b520aab329 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 15 Dec 2014 16:28:59 +1100 Subject: [PATCH 07/34] Rename availability groups to time slots Added details of what an availability group is Added front end for call attempt time slots Added database changes for call attempt time slots --- admin/availability.php | 10 +- admin/availabilitygroup.php | 16 +-- admin/index.php | 3 +- admin/questionnaireavailability.php | 7 +- admin/questionnairecatimeslots.php | 157 ++++++++++++++++++++++++++++ database/quexs.sql | 7 ++ 6 files changed, 184 insertions(+), 16 deletions(-) create mode 100644 admin/questionnairecatimeslots.php diff --git a/admin/availability.php b/admin/availability.php index 0ab8e488..03b120ac 100644 --- a/admin/availability.php +++ b/admin/availability.php @@ -54,7 +54,7 @@ if (isset($_GET['availability_group'])) else if (isset($_POST['availability_group'])) $availability_group = intval($_POST['availability_group']); else - die(T_("No availability group set")); + die(T_("No time slot group set")); if (isset($_POST['day'])) @@ -92,7 +92,7 @@ if (isset($_POST['day'])) $db->CompleteTrans(); } -xhtml_head(T_("Modify availability"),true,array("../css/shifts.css"),array("../js/addrow-v2.js")); +xhtml_head(T_("Modify time slots"),true,array("../css/shifts.css"),array("../js/addrow-v2.js")); /** * Display warning if timezone data not installed @@ -158,12 +158,12 @@ translate_array($daysofweek,array("description")); ?>

-

-

"/>

+

+

"/>

-

"/>

+

"/>

GetAll($sql); -print "

" . T_("Availability groups")."

"; +print "

" . T_("Time slots")."

"; -print "

" . T_("Availability groups define periods of time of respondent availability.") . "

"; +print "

" . T_("Time slots define periods of time during particular days of the week. These are used for the availability function and also the call attempt time slot function.") . "

"; if (empty($rs)) - print "

" . T_("No availability groups") . "

"; + print "

" . T_("No time slots") . "

"; else - xhtml_table($rs,array("description","link"),array(T_("Availablity group"),T_("Modify"))); + xhtml_table($rs,array("description","link"),array(T_("Time slot"),T_("Modify"))); //add an availablity group -print "

" . T_("Add availability group") . "

"; +print "

" . T_("Add time slot") . "

"; ?>
-

-

"/> +

+

"/>

" . T_("Assign operators print "
  • " . T_("Modify operator skills") . "
  • "; print "
  • " . T_("Availability and shift management") . "

  • "; print "
  • " . T_("Questionnaire progress") . "

    "; diff --git a/admin/questionnaireavailability.php b/admin/questionnaireavailability.php index 20550393..47c8e530 100644 --- a/admin/questionnaireavailability.php +++ b/admin/questionnaireavailability.php @@ -91,7 +91,10 @@ $questionnaire_id = false; if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']); xhtml_head(T_("Assign availability group to questionnaire"),true,false,array("../js/window.js")); -print "

    " . T_("Select a questionnaire from the list below") . "

    "; + +print "

    " . T_("Assigning an availability group to a questionnaire will allow interviewers to select from those groups to restrict calls to a particular case to the times within the group") ."

    "; + +print "

    " . T_("Select a questionnaire from the list below") . "

    "; display_questionnaire_chooser($questionnaire_id); @@ -143,7 +146,7 @@ if ($questionnaire_id != false) ?>
    -

    + "/>

    + * @copyright Australian Consortium for Social and Political Research Inc (ACSPRI) 2011 + * @package queXS + * @subpackage admin + * @link http://www.acspri.org.au queXS was writen for ACSPRI + * @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2 + * + * + */ + +/** + * Configuration file + */ +include("../config.inc.php"); + +/** + * Database file + */ +include ("../db.inc.php"); + +/** + * XHTML functions + */ +include("../functions/functions.xhtml.php"); + +/** + * Display functions + */ +include("../functions/functions.display.php"); + +/** + * Input functions + */ +include("../functions/functions.input.php"); + +global $db; + + +if (isset($_GET['questionnaire_id']) && isset($_GET['availability_group'])) +{ + //need to add availability_group to questionnaire + + $questionnaire_id = bigintval($_GET['questionnaire_id']); + $availability_group = bigintval($_GET['availability_group']); + + $sql = "INSERT INTO questionnaire_timeslot(questionnaire_id,availability_group_id) + VALUES('$questionnaire_id','$availability_group')"; + + $db->Execute($sql); + +} + +if (isset($_GET['questionnaire_id']) && isset($_GET['ravailability_group'])) +{ + //need to remove rsid from questionnaire + + $questionnaire_id = bigintval($_GET['questionnaire_id']); + $availability_group = bigintval($_GET['ravailability_group']); + + $sql = "DELETE FROM questionnaire_timeslot + WHERE questionnaire_id = '$questionnaire_id' + AND availability_group_id = '$availability_group'"; + + $db->Execute($sql); +} + + +$questionnaire_id = false; +if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']); + +xhtml_head(T_("Assign call attempt time slots to questionnaire"),true,false,array("../js/window.js")); + +print "

    " . T_("Assigning call attempt time slots to questionnaires will only allow cases to be attempted in a time slot for the n + 1th time where it has been called at least n times in all assigned timeslots") ."

    "; + +print "

    " . T_("Select a questionnaire from the list below") . "

    "; +display_questionnaire_chooser($questionnaire_id); + + +if ($questionnaire_id != false) +{ + + $sql = "SELECT q.availability_group_id,a.description as description + FROM questionnaire_timeslot as q, availability_group as a + WHERE q.availability_group_id = a.availability_group_id + AND q.questionnaire_id = '$questionnaire_id'"; + + $qs = $db->GetAll($sql); + + if (empty($qs)) + { + print "

    " . T_("There are no call attempt time slots selected for this questionnaire") . "

    "; + } + else + { + print "

    " . T_("Call attempt time slots selected for this questionnaire") . "

    "; + foreach($qs as $q) + { + print "

    {$q['availability_group_id']} - {$q['description']} (" . T_("Click to unassign") . ")

    "; + } + } + + $sql = "SELECT si.availability_group_id,si.description + FROM availability_group as si + LEFT JOIN questionnaire_timeslot as q ON (q.questionnaire_id = '$questionnaire_id' AND q.availability_group_id = si.availability_group_id) + WHERE q.questionnaire_id is NULL"; + + $qs = $db->GetAll($sql); + + if (!empty($qs)) + { + + + print "

    " . T_("Add a call attempt time slot to this questionnaire:") . "

    "; + ?> +
    +


    + + "/>

    +
    + diff --git a/database/quexs.sql b/database/quexs.sql index 011725b6..9bf132ac 100644 --- a/database/quexs.sql +++ b/database/quexs.sql @@ -1555,6 +1555,13 @@ CREATE TABLE `questionnaire_sample_quota_row_exclude` ( -- + +CREATE TABLE `questionnaire_timeslot` ( +`questionnaire_id` bigint( 20 ) NOT NULL , +`availability_group_id` bigint( 20 ) NOT NULL , +PRIMARY KEY ( `questionnaire_id` , `availability_group_id` ) +) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci; + -- -------------------------------------------------------- -- From 80d7f4029ec4a6a75b0714568a35ffd8839eb43c Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Tue, 16 Dec 2014 15:00:48 +1100 Subject: [PATCH 08/34] Add questionnaire_timeslot table Alter case sorting/selecting SQL to consider timeslots if set. If set, only select a case if a current timeslot exists and the number of calls in the slot is less than the maximum number of calls made in any other slot --- CHANGELOG | 7 +++++++ admin/questionnairecatimeslots.php | 2 +- admin/systemsortprocess.php | 2 ++ functions/functions.operator.php | 9 +++++---- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d51dc247..b0d879ac 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,13 @@ queXS 1.11.0 - Changes since 1.10.4 ALTER TABLE `questionnaire_sample` ADD `allow_new` TINYINT( 1 ) NOT NULL DEFAULT '1'; +CREATE TABLE `questionnaire_timeslot` ( +`questionnaire_id` bigint( 20 ) NOT NULL , +`availability_group_id` bigint( 20 ) NOT NULL , +PRIMARY KEY ( `questionnaire_id` , `availability_group_id` ) +) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci; + + queXS 1.10.4 - Changes since 1.10.3 diff --git a/admin/questionnairecatimeslots.php b/admin/questionnairecatimeslots.php index b5646aa6..1ecc8463 100644 --- a/admin/questionnairecatimeslots.php +++ b/admin/questionnairecatimeslots.php @@ -92,7 +92,7 @@ if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['ques xhtml_head(T_("Assign call attempt time slots to questionnaire"),true,false,array("../js/window.js")); -print "

    " . T_("Assigning call attempt time slots to questionnaires will only allow cases to be attempted in a time slot for the n + 1th time where it has been called at least n times in all assigned timeslots") ."

    "; +print "

    " . T_("Assigning call attempt time slots to questionnaires will only allow cases to be attempted in a time slot for the n + 1th time where it has been called at least n times in all assigned timeslots. Please note timeslots must cover all possible time periods otherwise no cases will be available during missing timeslots.") ."

    "; print "

    " . T_("Select a questionnaire from the list below") . "

    "; display_questionnaire_chooser($questionnaire_id); diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index 772f2d87..1b80d966 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -243,9 +243,11 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = c.questionnaire_id AND qsep.sample_id = c.sample_id) LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id) LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id) + LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id) WHERE c.current_operator_id IS NULL AND c.questionnaire_id = '$questionnaire_id' AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) + AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_id) FROM `call`, availability WHERE call.case_id = c.case_id AND call.outcome_id != 1 AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) <= availability.end))) < (SELECT COUNT(call.call_id) FROM `call`, questionnaire_timeslot, availability WHERE call.case_id = c.case_id AND call.outcome_id != 1 AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND (availability.availability_group_id = questionnaire_timeslot.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) <= availability.end)) GROUP BY availability.availability_group_id ORDER BY COUNT(call.call_id) DESC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) diff --git a/functions/functions.operator.php b/functions/functions.operator.php index 9afbc7e1..bf4d942b 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -609,7 +609,6 @@ function get_case_id($operator_id, $create = false) * * THINGS TO ADD: * - * @todo also option of "time of day" calls - try once in the morning/etc * @todo also could check the respondent_not_available table to see if now is a "bad time" to call */ @@ -625,10 +624,12 @@ function get_case_id($operator_id, $create = false) LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = c.questionnaire_id AND qsep.sample_id = c.sample_id) LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id) LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id) + LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id) JOIN operator_skill as os on (os.operator_id = op.operator_id and os.outcome_type_id = ou.outcome_type_id) WHERE c.current_operator_id IS NULL AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) - AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) + AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_id) FROM `call`, availability WHERE call.case_id = c.case_id AND call.outcome_id != 1 AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) <= availability.end))) < (SELECT COUNT(call.call_id) FROM `call`, questionnaire_timeslot, availability WHERE call.case_id = c.case_id AND call.outcome_id != 1 AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND (availability.availability_group_id = questionnaire_timeslot.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) <= availability.end)) GROUP BY availability.availability_group_id ORDER BY COUNT(call.call_id) DESC LIMIT 1))) + AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL AND os.outcome_type_id != 2) @@ -639,8 +640,8 @@ function get_case_id($operator_id, $create = false) AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0 ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, a.start ASC, qsep.priority DESC LIMIT 1"; - - //apn.appointment_id contains the id of an appointment if we are calling on an appointment + + //apn.appointment_id contains the id of an appointment if we are calling on an appointment } $r2 = $db->GetRow($sql); From 34052ec6b8a562497a5f69cfc9be47e86c3af654 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Tue, 16 Dec 2014 16:08:39 +1100 Subject: [PATCH 09/34] Added calls by timeslot report --- admin/supervisor.php | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/admin/supervisor.php b/admin/supervisor.php index 1572e50b..6302f75b 100644 --- a/admin/supervisor.php +++ b/admin/supervisor.php @@ -319,7 +319,29 @@ if ($case_id != false) translate_array($rs,array("des")); xhtml_table($rs,array("start","des","phone","link","firstName"),array(T_("Date/Time"),T_("Outcome"),T_("Phone number"),T_("Change outcome"),T_("Operator"))); } - + + $sql = "SELECT count(*) + FROM questionnaire_timeslot as q, `case` as c + WHERE c.case_id = $case_id + AND c.questionnaire_id = q.questionnaire_id"; + + if ($db->GetOne($sql) >= 1) + { + print "

    " . T_("Calls by timeslot") . "

    "; + print "

    " . T_("(excludes Not attempted or worked)") . "

    "; + + $sql = "SELECT ag.description, (SELECT COUNT(*) FROM availability as a, `call` as ca WHERE ca.outcome_id != 1 AND ca.case_id = c.case_id AND a.availability_group_id = ag.availability_group_id + AND (a.day_of_week = DAYOFWEEK(CONVERT_TZ(ca.start,'UTC','Australia/Victoria')) + AND TIME(CONVERT_TZ(ca.start, 'UTC' , 'Australia/Victoria')) >= a.start + AND TIME(CONVERT_TZ(ca.start, 'UTC' ,'Australia/Victoria')) <= a.end)) as cou + FROM availability_group as ag, `case` as c, `questionnaire_timeslot` as qt + WHERE c.case_id = 24 + AND qt.questionnaire_id = c.questionnaire_id AND ag.availability_group_id = qt.availability_group_id"; + + xhtml_table($db->GetAll($sql),array('description','cou'),array(T_("Time slot"),T_("Calls"))); + + } + //view notes $sql = "SELECT DATE_FORMAT(CONVERT_TZ(c.datetime,'UTC',op.Time_zone_name),'".DATE_TIME_FORMAT."') as time, op.firstName, op.lastName, c.note as note, CONCAT('". TQ_("Delete") . "') as link FROM `case_note` as c @@ -418,7 +440,6 @@ if ($case_id != false) } - //assign this to an operator for their next case print "

    " . T_("Assign this case to operator (will appear as next case for them)") . "

    "; ?> From 2ebda19dfcf1bc8d7b687a2bb65aef5ba7b90b86 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 17 Dec 2014 11:01:07 +1100 Subject: [PATCH 10/34] Replace call with call_attempt when calculating timeslots Fix calculation of timeslots in scheduler - only call when the current timeslot has the minimum number of calls made --- admin/questionnairecatimeslots.php | 2 +- admin/supervisor.php | 10 +++++----- admin/systemsortprocess.php | 2 +- functions/functions.operator.php | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/admin/questionnairecatimeslots.php b/admin/questionnairecatimeslots.php index 1ecc8463..5a563af3 100644 --- a/admin/questionnairecatimeslots.php +++ b/admin/questionnairecatimeslots.php @@ -92,7 +92,7 @@ if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['ques xhtml_head(T_("Assign call attempt time slots to questionnaire"),true,false,array("../js/window.js")); -print "

    " . T_("Assigning call attempt time slots to questionnaires will only allow cases to be attempted in a time slot for the n + 1th time where it has been called at least n times in all assigned timeslots. Please note timeslots must cover all possible time periods otherwise no cases will be available during missing timeslots.") ."

    "; +print "

    " . T_("Assigning call attempt time slots to questionnaires will only allow cases to be attempted in a time slot for the n + 1th time where it has been attempted at least n times in all assigned timeslots. Please note timeslots must cover all possible time periods otherwise no cases will be available during missing timeslots.") ."

    "; print "

    " . T_("Select a questionnaire from the list below") . "

    "; display_questionnaire_chooser($questionnaire_id); diff --git a/admin/supervisor.php b/admin/supervisor.php index 6302f75b..77d99994 100644 --- a/admin/supervisor.php +++ b/admin/supervisor.php @@ -320,6 +320,7 @@ if ($case_id != false) xhtml_table($rs,array("start","des","phone","link","firstName"),array(T_("Date/Time"),T_("Outcome"),T_("Phone number"),T_("Change outcome"),T_("Operator"))); } + //view timeslots $sql = "SELECT count(*) FROM questionnaire_timeslot as q, `case` as c WHERE c.case_id = $case_id @@ -327,18 +328,17 @@ if ($case_id != false) if ($db->GetOne($sql) >= 1) { - print "

    " . T_("Calls by timeslot") . "

    "; - print "

    " . T_("(excludes Not attempted or worked)") . "

    "; + print "

    " . T_("Call attempts by timeslot") . "

    "; - $sql = "SELECT ag.description, (SELECT COUNT(*) FROM availability as a, `call` as ca WHERE ca.outcome_id != 1 AND ca.case_id = c.case_id AND a.availability_group_id = ag.availability_group_id + $sql = "SELECT ag.description, (SELECT COUNT(*) FROM availability as a, `call_attempt` as ca WHERE ca.case_id = c.case_id AND a.availability_group_id = ag.availability_group_id AND (a.day_of_week = DAYOFWEEK(CONVERT_TZ(ca.start,'UTC','Australia/Victoria')) AND TIME(CONVERT_TZ(ca.start, 'UTC' , 'Australia/Victoria')) >= a.start AND TIME(CONVERT_TZ(ca.start, 'UTC' ,'Australia/Victoria')) <= a.end)) as cou FROM availability_group as ag, `case` as c, `questionnaire_timeslot` as qt - WHERE c.case_id = 24 + WHERE c.case_id = '$case_id' AND qt.questionnaire_id = c.questionnaire_id AND ag.availability_group_id = qt.availability_group_id"; - xhtml_table($db->GetAll($sql),array('description','cou'),array(T_("Time slot"),T_("Calls"))); + xhtml_table($db->GetAll($sql),array('description','cou'),array(T_("Time slot"),T_("Call attempts"))); } diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index 1b80d966..b775b593 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -247,7 +247,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin WHERE c.current_operator_id IS NULL AND c.questionnaire_id = '$questionnaire_id' AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) - AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_id) FROM `call`, availability WHERE call.case_id = c.case_id AND call.outcome_id != 1 AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) <= availability.end))) < (SELECT COUNT(call.call_id) FROM `call`, questionnaire_timeslot, availability WHERE call.case_id = c.case_id AND call.outcome_id != 1 AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND (availability.availability_group_id = questionnaire_timeslot.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) <= availability.end)) GROUP BY availability.availability_group_id ORDER BY COUNT(call.call_id) DESC LIMIT 1))) + AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = (SELECT COUNT(call_attempt.call_attempt_id) FROM `call_attempt`, questionnaire_timeslot, availability WHERE call_attempt.case_id = c.case_id AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND (availability.availability_group_id = questionnaire_timeslot.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) GROUP BY availability.availability_group_id ORDER BY COUNT(call_attempt.call_attempt_id) ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) diff --git a/functions/functions.operator.php b/functions/functions.operator.php index bf4d942b..1ebfed04 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -628,7 +628,7 @@ function get_case_id($operator_id, $create = false) JOIN operator_skill as os on (os.operator_id = op.operator_id and os.outcome_type_id = ou.outcome_type_id) WHERE c.current_operator_id IS NULL AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) - AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_id) FROM `call`, availability WHERE call.case_id = c.case_id AND call.outcome_id != 1 AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) <= availability.end))) < (SELECT COUNT(call.call_id) FROM `call`, questionnaire_timeslot, availability WHERE call.case_id = c.case_id AND call.outcome_id != 1 AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND (availability.availability_group_id = questionnaire_timeslot.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call.start, 'UTC' , s.Time_zone_name)) <= availability.end)) GROUP BY availability.availability_group_id ORDER BY COUNT(call.call_id) DESC LIMIT 1))) + AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = (SELECT COUNT(call_attempt.call_attempt_id) FROM `call_attempt`, questionnaire_timeslot, availability WHERE call_attempt.case_id = c.case_id AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND (availability.availability_group_id = questionnaire_timeslot.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) GROUP BY availability.availability_group_id ORDER BY COUNT(call_attempt.call_attempt_id) ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) From f7e6340b474832ca7dc01da29e30349f1b6e7817 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 17 Dec 2014 11:23:34 +1100 Subject: [PATCH 11/34] Updated translations (Thank you contributors!) Fixed typo in systemsortprocess --- admin/systemsortprocess.php | 2 +- locale/bs/LC_MESSAGES/bs.mo | Bin 1542 -> 1542 bytes locale/bs/LC_MESSAGES/bs.po | 4 +- locale/cs/LC_MESSAGES/cs.mo | Bin 64928 -> 64928 bytes locale/cs/LC_MESSAGES/cs.po | 4 +- locale/de/LC_MESSAGES/de.mo | Bin 16626 -> 16626 bytes locale/de/LC_MESSAGES/de.po | 4 +- locale/el/LC_MESSAGES/el.mo | Bin 9006 -> 9006 bytes locale/el/LC_MESSAGES/el.po | 4 +- locale/es/LC_MESSAGES/es.mo | Bin 28881 -> 28881 bytes locale/es/LC_MESSAGES/es.po | 4 +- locale/fa/LC_MESSAGES/fa.mo | Bin 9181 -> 9181 bytes locale/fa/LC_MESSAGES/fa.po | 4 +- locale/fr/LC_MESSAGES/fr.mo | Bin 8108 -> 8108 bytes locale/fr/LC_MESSAGES/fr.po | 4 +- locale/gl/LC_MESSAGES/gl.mo | Bin 39714 -> 39714 bytes locale/gl/LC_MESSAGES/gl.po | 4 +- locale/he/LC_MESSAGES/he.mo | Bin 4587 -> 4587 bytes locale/he/LC_MESSAGES/he.po | 4 +- locale/id/LC_MESSAGES/id.mo | Bin 468 -> 468 bytes locale/id/LC_MESSAGES/id.po | 4 +- locale/it/LC_MESSAGES/it.mo | Bin 66083 -> 66083 bytes locale/it/LC_MESSAGES/it.po | 4 +- locale/lt/LC_MESSAGES/lt.mo | Bin 35333 -> 35333 bytes locale/lt/LC_MESSAGES/lt.po | 4 +- locale/nl/LC_MESSAGES/nl.mo | Bin 28347 -> 28347 bytes locale/nl/LC_MESSAGES/nl.po | 4 +- locale/oc/LC_MESSAGES/oc.mo | Bin 4837 -> 4837 bytes locale/oc/LC_MESSAGES/oc.po | 4 +- locale/pl/LC_MESSAGES/pl.mo | Bin 17244 -> 17244 bytes locale/pl/LC_MESSAGES/pl.po | 4 +- locale/pt/LC_MESSAGES/pt.mo | Bin 65631 -> 65631 bytes locale/pt/LC_MESSAGES/pt.po | 4 +- locale/quexs.pot | 1225 ++++++++++++++------------- locale/ro/LC_MESSAGES/ro.mo | Bin 1651 -> 1651 bytes locale/ro/LC_MESSAGES/ro.po | 4 +- locale/ru/LC_MESSAGES/ru.mo | Bin 8236 -> 93566 bytes locale/ru/LC_MESSAGES/ru.po | 1574 +++++++++++++++++++---------------- locale/sv/LC_MESSAGES/sv.mo | Bin 39394 -> 39394 bytes locale/sv/LC_MESSAGES/sv.po | 4 +- locale/zh/LC_MESSAGES/zh.mo | Bin 64294 -> 64283 bytes locale/zh/LC_MESSAGES/zh.po | 211 +++-- 42 files changed, 1652 insertions(+), 1432 deletions(-) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index b775b593..2dfa41a5 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -193,7 +193,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin if ($result) print T_("Completed case closing") . ". " . T_("This task took") . ": $timer " . T_("seconds"); else - print T_("Failed to complete caes closing") . ". " . T_("This task took") . ": $timer " . T_("seconds"); + print T_("Failed to complete case closing") . ". " . T_("This task took") . ": $timer " . T_("seconds"); } diff --git a/locale/bs/LC_MESSAGES/bs.mo b/locale/bs/LC_MESSAGES/bs.mo index dca03064a746ba601a88a1a91f7110bc0d526cb2..e1b6c23ade5525f31bd5f1c6337c203ca5ac07ec 100644 GIT binary patch delta 31 mcmZqUY2(=t$--r5q-$udU|?WnG&z|?o!Q93Y;!M5B_jZP0tcc1 delta 31 mcmZqUY2(=t$--q|u4`zbU|?uvFgck;o!QXPaC0w9B_jZOy$6*5 diff --git a/locale/bs/LC_MESSAGES/bs.po b/locale/bs/LC_MESSAGES/bs.po index 4dc25763..0e7c27c0 100644 --- a/locale/bs/LC_MESSAGES/bs.po +++ b/locale/bs/LC_MESSAGES/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:21+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/cs/LC_MESSAGES/cs.mo b/locale/cs/LC_MESSAGES/cs.mo index a6457509810bc572cf80cbbb92cf441f34841718..6415c3cfecf7b1cb75f5bad72389dba774fac773 100644 GIT binary patch delta 34 qcmZ4Rn|Z-+<_$u#xDAbT4b2q{46KX{CdYrd+w3+gDj5LLUJDxl delta 34 qcmZ4Rn|Z-+<_$u#xDCv84NVjb46O_dC(F)KV>UE2-0U_hDj5LLCkqb% diff --git a/locale/cs/LC_MESSAGES/cs.po b/locale/cs/LC_MESSAGES/cs.po index b8ea0566..a0f07566 100644 --- a/locale/cs/LC_MESSAGES/cs.po +++ b/locale/cs/LC_MESSAGES/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/de/LC_MESSAGES/de.mo b/locale/de/LC_MESSAGES/de.mo index 4790eaacbcfe9e23c6e0b876799e65efcabf5142..a07738b6dcb2e921fec709facd02178ba40bbd6b 100644 GIT binary patch delta 33 ocmey=$oQ#|af6Tsm!Xlap}B&AftAr@84Y!2BMY<5ZW?PO0Ij_VM*si- delta 33 ocmey=$oQ#|af6Tsmw~yip^1Wlp_Rd884Y!2Lqo&OZW?PO0IhflIsgCw diff --git a/locale/de/LC_MESSAGES/de.po b/locale/de/LC_MESSAGES/de.po index 4bdb9664..4bfa215f 100644 --- a/locale/de/LC_MESSAGES/de.po +++ b/locale/de/LC_MESSAGES/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:21+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/el/LC_MESSAGES/el.mo b/locale/el/LC_MESSAGES/el.mo index 6b4072d087b39fcfc01194b8e21ff9d8e20d3238..4aef2a5ab749d93d5ffb65caaa00e560d1e966f4 100644 GIT binary patch delta 32 ncmZ4Iw$5#XjUcz7k*=Y+f`NgRk-=nlK{aM03$x7yg8Kvkmgoq) delta 32 ncmZ4Iw$5#XjUcyyxvrs!f`Orxf#GC#K{aMWL&MDlg8Kvkmaz!1 diff --git a/locale/el/LC_MESSAGES/el.po b/locale/el/LC_MESSAGES/el.po index d92c1b72..4c212c7f 100644 --- a/locale/el/LC_MESSAGES/el.po +++ b/locale/el/LC_MESSAGES/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/es/LC_MESSAGES/es.mo b/locale/es/LC_MESSAGES/es.mo index 2e3d7d9a8aad3902e0e8e5bdb6f0f86d5f6bf786..93b510fdbc34a2538ad75d2f835ecb52d8f7975e 100644 GIT binary patch delta 34 qcmcckkn!R}#tkv<+=fQFhUN+e23AG}lhfVRn2jvVHcxPO)C2(4`3lzn delta 34 qcmcckkn!R}#tkv<+y>^lh9(LIhE@iKlhfVRm<BV9vt1p@;sqsecD)R~Pe%r=V)9}@rovNj3p delta 31 ncmccXe%F1&V<9dBb6rCd1p`AXgUN4&)R_$p4L6Gm9}@rovGEDs diff --git a/locale/fa/LC_MESSAGES/fa.po b/locale/fa/LC_MESSAGES/fa.po index 7d2cf257..c37b7f5b 100644 --- a/locale/fa/LC_MESSAGES/fa.po +++ b/locale/fa/LC_MESSAGES/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:21+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/fr/LC_MESSAGES/fr.mo b/locale/fr/LC_MESSAGES/fr.mo index 2494ef47cb2e6c19c48af7b974202c9eed507c2b..b191a2d71944bf11287f576a25b85441832cb682 100644 GIT binary patch delta 32 ncmZ2uzs7z;t|+&mk*=Y+f`NgRk-_8&Q8i{G3$x7&MY*{EoHhuL delta 32 ncmZ2uzs7z;t|+&Gxvrs!f`Orxf#Ku|Q8i{mL&MDrMY*{EoBs%d diff --git a/locale/fr/LC_MESSAGES/fr.po b/locale/fr/LC_MESSAGES/fr.po index 923f177b..c96982e9 100644 --- a/locale/fr/LC_MESSAGES/fr.po +++ b/locale/fr/LC_MESSAGES/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/gl/LC_MESSAGES/gl.mo b/locale/gl/LC_MESSAGES/gl.mo index 270270562cc6cb8fca1fc7ccf15bd636e4f9ba6b..a85d1964a87a38caed5118b808432c5730ecdf16 100644 GIT binary patch delta 34 qcmZ3qjcL&~rVXNT+=fQFhUN+e23AG}lNI9Bn2jvVHhae1v;hFPpb9_$ delta 34 qcmZ3qjcL&~rVXNT+y>^lh9(LIhE@iKlNI9Bm<Yrd+blPeH4^~TYzt`s delta 34 qcmZ47!m_x9Wy7l(+y>^lh9(LIhE@iKlfTYTV>UE2+$=YfH4^~TH49w; diff --git a/locale/it/LC_MESSAGES/it.po b/locale/it/LC_MESSAGES/it.po index 29ae0600..2f5d6a4d 100644 --- a/locale/it/LC_MESSAGES/it.po +++ b/locale/it/LC_MESSAGES/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/lt/LC_MESSAGES/lt.mo b/locale/lt/LC_MESSAGES/lt.mo index b70b53282b51fba2d3075939926c3761979f2ee2..7ef38403fa058a2035a43450fcfaecde6b88afd6 100644 GIT binary patch delta 34 pcmZpj!qhs2X@hYrd+x*{Uk0t=(iVR`^ delta 34 qcmdmemvQ%9#to-kxDCv84NVjb46O_dCtq_>V>UE2-2C5Vk0t=(Qw&xB diff --git a/locale/nl/LC_MESSAGES/nl.po b/locale/nl/LC_MESSAGES/nl.po index c9f7448a..e65ae504 100644 --- a/locale/nl/LC_MESSAGES/nl.po +++ b/locale/nl/LC_MESSAGES/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/oc/LC_MESSAGES/oc.mo b/locale/oc/LC_MESSAGES/oc.mo index c1c405d5018bbcc005987cc97eeba4188dcd9e12..18d32d67f0ba03c1b49a8b8f85c6bde48dfc2739 100644 GIT binary patch delta 32 ocmaE=`c!qp8(wZhBV9vt1p@;sBZJA`dDWPWEX+15@Ev6V0JU-n=Kufz delta 32 ocmaE=`c!qp8(wY$b6rCd1p`AX1H;MRdDWN=4GlLd@Ev6V0JS>_+W-In diff --git a/locale/oc/LC_MESSAGES/oc.po b/locale/oc/LC_MESSAGES/oc.po index 97b462b8..4e1124fa 100644 --- a/locale/oc/LC_MESSAGES/oc.po +++ b/locale/oc/LC_MESSAGES/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" +"X-Generator: Launchpad (build 17286)\n" #: callhistory.php:56 msgid "Case History List" diff --git a/locale/pl/LC_MESSAGES/pl.mo b/locale/pl/LC_MESSAGES/pl.mo index bf254e190b935ca2c34908041a6fccf918cedf5f..4b9ed3b1a6e91de3e097fedce3f7dd45b43821cc 100644 GIT binary patch delta 34 qcmcc9#(1ZVaYK\n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-KeywordsList: T_;TQ_\n" "X-Poedit-Basepath: /home/adam/Sandbox/www/quexs-1.0.0\n" +"X-Generator: Poedit 1.5.4\n" "X-Poedit-SearchPath-0: .\n" #: callhistory.php:56 msgid "Case History List" msgstr "" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:360 msgid "Date/Time" msgstr "" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "" @@ -173,9 +167,7 @@ msgstr "" msgid "Stop REC" msgstr "" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "" @@ -183,8 +175,7 @@ msgstr "" msgid "Beginning recording..." msgstr "" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "" @@ -192,8 +183,8 @@ msgstr "" msgid "Begin the manual recording now..." msgstr "" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "" @@ -205,42 +196,50 @@ msgstr "" msgid "Stop the manual recording now..." msgstr "" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 #, php-format msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "" -#: rs_project_intro.php:82 -msgid "End call with outcome: No eligible respondent (person not available on this number)" +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 +msgid "" +"End call with outcome: No eligible respondent (person not available on this " +"number)" msgstr "" -#: rs_project_intro.php:83 -msgid "End call with outcome: Out of sample (already completed in another mode)" +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 +msgid "" +"End call with outcome: Out of sample (already completed in another mode)" msgstr "" #: appointment.php:69 @@ -248,7 +247,8 @@ msgid "Appointment error" msgstr "" #: appointment.php:70 -msgid "You have not been assigned a case therefore cannot create an appointment" +msgid "" +"You have not been assigned a case therefore cannot create an appointment" msgstr "" #: appointment.php:109 @@ -271,7 +271,7 @@ msgstr "" msgid "Select phone number:" msgstr "" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "" @@ -295,7 +295,7 @@ msgstr "" msgid "Accept appointment from " msgstr "" -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr "" @@ -311,7 +311,8 @@ msgstr "" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -319,7 +320,7 @@ msgstr "" msgid "Call List" msgstr "" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "" @@ -327,12 +328,17 @@ msgstr "" msgid "Number called" msgstr "" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:360 msgid "Operator" msgstr "" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "" @@ -340,15 +346,18 @@ msgstr "" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "" @@ -356,11 +365,12 @@ msgstr "" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -372,7 +382,11 @@ msgstr "" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -384,8 +398,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -401,112 +414,80 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 -msgid "Your VoIP extension is not enabled. Please close this window and enable VoIP by clicking once on the red button that says 'VoIP Off'" +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 +msgid "" +"Your VoIP extension is not enabled. Please close this window and enable VoIP " +"by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "" @@ -515,7 +496,9 @@ msgid "Not Answered" msgstr "" #: selectextension.php:99 -msgid "There are no extensions available, please contact the supervisor or click below to try again for an available extension" +msgid "" +"There are no extensions available, please contact the supervisor or click " +"below to try again for an available extension" msgstr "" #: selectextension.php:100 @@ -527,10 +510,14 @@ msgid "Select extension" msgstr "" #: selectextension.php:105 -msgid "Please select your extension from the list below then click on 'Choose extension'" +msgid "" +"Please select your extension from the list below then click on 'Choose " +"extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -558,57 +545,53 @@ msgstr "" msgid "Go back to work" msgstr "" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 -msgid "End call with outcome: No eligible respondent (person never available on this number)" +#: rs_intro.php:123 rs_intro_interface2.php:123 +msgid "" +"End call with outcome: No eligible respondent (person never available on " +"this number)" msgstr "" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 -msgid "End call with outcome: Non contact (person not currently available on this number: no appointment made)" +#: rs_intro.php:124 rs_intro_interface2.php:124 +msgid "" +"End call with outcome: Non contact (person not currently available on this " +"number: no appointment made)" msgstr "" #: shifts.php:57 @@ -619,8 +602,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "" @@ -628,12 +613,14 @@ msgstr "" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -641,47 +628,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "" -#: availability.php:123 -msgid "Select groups to limit availability (Selecting none means always available)" +#: availability.php:123 admin/supervisor.php:416 +msgid "" +"Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:439 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -705,8 +691,7 @@ msgstr "" msgid "Reasons:" msgstr "" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -718,13 +703,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "" @@ -736,7 +720,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "" @@ -808,34 +795,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:367 msgid "Add note" msgstr "" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:358 msgid "No notes" msgstr "" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:360 msgid "Note" msgstr "" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "" @@ -903,12 +889,16 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:322 +#: admin/systemsortprocess.php:324 msgid "seconds" msgstr "" #: nocallavailable.php:216 -msgid "Your VoIP extension is not active. Please activate VoIP by clicking once on the red button that says 'VoIP Off'" +msgid "" +"Your VoIP extension is not active. Please activate VoIP by clicking once on " +"the red button that says 'VoIP Off'" msgstr "" #: nocallavailable.php:222 @@ -939,8 +929,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -956,8 +945,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -977,11 +965,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1001,11 +989,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1017,7 +1007,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1046,16 +1037,15 @@ msgid "Try calling the supervisor" msgstr "" #: supervisor.php:128 -msgid "Please wait for this call to answer before attempting to call the supervisor" +msgid "" +"Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1063,26 +1053,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 -msgid "Process is already closed (eg. server was rebooted) - click here to confirm" +#: admin/systemsort.php:82 admin/voipmonitor.php:80 +msgid "" +"Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1091,26 +1082,29 @@ msgid "Click here to enable and begin system wide case sorting" msgstr "" #: admin/systemsort.php:101 -msgid "System wide case sorting is periodically (via SYSTEM_SORT_MINUTES configuration directive) sorting cases on a system wide basis instead of finding the most appropriate case each time an operator requests a new case. This may increase performance where there are a large number of cases or complex quotas in place. If you are not experiencing any performance problems, it is not recommended to use this feature." +msgid "" +"System wide case sorting is periodically (via SYSTEM_SORT_MINUTES " +"configuration directive) sorting cases on a system wide basis instead of " +"finding the most appropriate case each time an operator requests a new case. " +"This may increase performance where there are a large number of cases or " +"complex quotas in place. If you are not experiencing any performance " +"problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1118,27 +1112,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1146,13 +1137,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1212,7 +1201,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1224,36 +1213,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:322 admin/systemsortprocess.php:324 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:322 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:324 msgid "Failed to complete sort" msgstr "" @@ -1269,8 +1267,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1278,11 +1275,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1302,38 +1299,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:346 +#: admin/supervisor.php:360 msgid "Delete" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1341,9 +1339,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1359,11 +1355,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1375,7 +1371,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1387,27 +1383,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1420,11 +1416,13 @@ msgid "Assign operators to Skills" msgstr "" #: admin/operatorskill.php:151 -msgid "Set which types of cases will be made available to each operator. Please note that all operators will be allowed to assign all possible outcomes to a case. This restricts which ones will be assigned to an operator." +msgid "" +"Set which types of cases will be made available to each operator. Please " +"note that all operators will be allowed to assign all possible outcomes to a " +"case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1432,38 +1430,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1471,44 +1463,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 -msgid "Availability groups define periods of time of respondent availability." +msgid "" +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:341 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1552,7 +1543,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1588,13 +1579,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1602,7 +1591,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1611,191 +1601,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1811,24 +1810,38 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 -msgid "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will need XMPP/Jabber accounts." +msgid "" +"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " +"is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will " +"need XMPP/Jabber accounts." msgstr "" #: admin/supervisorchat.php:73 @@ -1888,32 +1901,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "" @@ -1941,35 +1949,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -1981,7 +1986,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2005,18 +2010,21 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" #: admin/voipmonitor.php:79 -msgid "Kill signal sent: Please wait... (Note: Process will be stalled until there is activity on the VoIP Server)" +msgid "" +"Kill signal sent: Please wait... (Note: Process will be stalled until there " +"is activity on the VoIP Server)" msgstr "" #: admin/voipmonitor.php:84 @@ -2075,36 +2083,30 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" #: admin/samplelist.php:182 -msgid "Select which fields from this sample should be able to be viewed by operators" +msgid "" +"Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2112,27 +2114,29 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:461 +#: admin/supervisor.php:467 msgid "Deidentify" msgstr "" #: admin/samplelist.php:219 -msgid "Select which fields from this sample to deidentify. Deidentified fields will be permanently deleted from the sample." +msgid "" +"Select which fields from this sample to deidentify. Deidentified fields will " +"be permanently deleted from the sample." msgstr "" #: admin/samplelist.php:227 msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2140,7 +2144,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2149,7 +2154,9 @@ msgid "Added appointment" msgstr "" #: admin/bulkappointment.php:203 -msgid "No such case id, or case set to a final outcome, or case currently assigned to an operator" +msgid "" +"No such case id, or case set to a final outcome, or case currently assigned " +"to an operator" msgstr "" #: admin/bulkappointment.php:209 @@ -2157,7 +2164,9 @@ msgid "Result" msgstr "" #: admin/bulkappointment.php:229 -msgid "Please check the case id's, appointment start and end times and notes are correct before accepting below" +msgid "" +"Please check the case id's, appointment start and end times and notes are " +"correct before accepting below" msgstr "" #: admin/bulkappointment.php:235 @@ -2165,11 +2174,18 @@ msgid "Accept and generate bulk appointments" msgstr "" #: admin/bulkappointment.php:240 -msgid "The file does not contain at least caseid, starttime and endtime columns. Please try again." +msgid "" +"The file does not contain at least caseid, starttime and endtime columns. " +"Please try again." msgstr "" #: admin/bulkappointment.php:251 -msgid "Provide a headered CSV file containing at least 3 columns - caseid, starttime and endtime. Optionally you can include a note column to attach a note to the case in addition to setting an appointment. Only cases that have temporary (non final) outcomes will have appointments generated, and the outcome of the case will be updated to an appointment outcome." +msgid "" +"Provide a headered CSV file containing at least 3 columns - caseid, " +"starttime and endtime. Optionally you can include a note column to attach a " +"note to the case in addition to setting an appointment. Only cases that have " +"temporary (non final) outcomes will have appointments generated, and the " +"outcome of the case will be updated to an appointment outcome." msgstr "" #: admin/bulkappointment.php:252 @@ -2184,19 +2200,21 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" #: admin/addshift.php:88 -msgid "You must be an operator (as well as have administrator access) to add/edit shifts" +msgid "" +"You must be an operator (as well as have administrator access) to add/edit " +"shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 -msgid "Your database does not have timezones installed, please see here for details" +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:97 +msgid "" +"Your database does not have timezones installed, please see here for details" msgstr "" #: admin/addshift.php:163 @@ -2204,7 +2222,9 @@ msgid "Add shifts in your Time Zone" msgstr "" #: admin/addshift.php:166 -msgid "Shifts allow you to restrict appointments being made, and interviewers to working on a particlar project at defined times." +msgid "" +"Shifts allow you to restrict appointments being made, and interviewers to " +"working on a particlar project at defined times." msgstr "" #: admin/addshift.php:173 @@ -2215,9 +2235,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2229,8 +2248,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2246,9 +2293,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2256,8 +2301,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2282,7 +2326,8 @@ msgid "Copy" msgstr "" #: admin/quotarow.php:216 -msgid "Copy quotas for this sample to (No error/duplicate checking) with adjusting: " +msgid "" +"Copy quotas for this sample to (No error/duplicate checking) with adjusting: " msgstr "" #: admin/quotarow.php:218 @@ -2318,7 +2363,9 @@ msgid "Quota priority (50 is default, 100 highest, 0 lowest)" msgstr "" #: admin/quotarow.php:302 -msgid "Should the priority be automatically updated based on the number of completions in this quota?" +msgid "" +"Should the priority be automatically updated based on the number of " +"completions in this quota?" msgstr "" #: admin/quotarow.php:316 @@ -2341,8 +2388,7 @@ msgstr "" msgid "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2358,9 +2404,12 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 -msgid "Use this form to enter the username of a user based on your directory security system. For example, if you have secured the base directory of queXS using Apache file based security, enter the usernames of the users here." +#: admin/operators.php:205 admin/clients.php:106 +msgid "" +"Use this form to enter the username of a user based on your directory " +"security system. For example, if you have secured the base directory of " +"queXS using Apache file based security, enter the usernames of the users " +"here." msgstr "" #: admin/operators.php:206 @@ -2395,11 +2444,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2419,8 +2468,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "" @@ -2444,7 +2492,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2452,8 +2500,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2469,71 +2516,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2549,13 +2596,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2819,7 +2864,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2851,7 +2896,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2859,11 +2904,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2880,28 +2925,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 -msgid "Enter the start and end times for each day of the week to restrict calls within" +#: admin/availability.php:122 admin/callrestrict.php:96 +msgid "" +"Enter the start and end times for each day of the week to restrict calls " +"within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2912,13 +2963,15 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" #: admin/clients.php:105 -msgid "Adding a client here will allow them to access project information in the client subdirectory. You can assign a client to a particular project using the" +msgid "" +"Adding a client here will allow them to access project information in the " +"client subdirectory. You can assign a client to a particular project using " +"the" msgstr "" #: admin/clients.php:105 @@ -2954,15 +3007,16 @@ msgid "Modify shift template" msgstr "" #: admin/shifttemplate.php:96 -msgid "Enter standard shift start and end times for each day of the week in local time" +msgid "" +"Enter standard shift start and end times for each day of the week in local " +"time" msgstr "" #: admin/shifttemplate.php:135 msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -2995,15 +3049,18 @@ msgid "Assign cases to operator queue" msgstr "" #: admin/casestatus.php:199 -msgid "List cases by questionnaire and sample with the ability to assign them to be called next in a queue by a particular operator. If you assign cases to an operator, it will override the normal scheduling process and call them as soon as the operator is available." +msgid "" +"List cases by questionnaire and sample with the ability to assign them to be " +"called next in a queue by a particular operator. If you assign cases to an " +"operator, it will override the normal scheduling process and call them as " +"soon as the operator is available." msgstr "" #: admin/dataoutput.php:202 msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3047,8 +3104,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3093,7 +3149,10 @@ msgid "Operator list" msgstr "" #: admin/operatorlist.php:297 -msgid "Download the file for each user and save in the same folder as the voip.exe executable. When the file is executed, it will run the voip.exe program with the correct connection details to connect the operator to the VoIP server" +msgid "" +"Download the file for each user and save in the same folder as the voip.exe " +"executable. When the file is executed, it will run the voip.exe program with " +"the correct connection details to connect the operator to the VoIP server" msgstr "" #: admin/operatorlist.php:299 @@ -3169,7 +3228,10 @@ msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgstr "" #: admin/questionnairelist.php:385 -msgid "The questionnaire will be deleted from queXS including call history, cases, case notes, respondent details, appointments and the links between operators, clients and the questionnaire" +msgid "" +"The questionnaire will be deleted from queXS including call history, cases, " +"case notes, respondent details, appointments and the links between " +"operators, clients and the questionnaire" msgstr "" #: admin/questionnairelist.php:386 @@ -3216,8 +3278,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:396 msgid "Set outcome" msgstr "" @@ -3237,39 +3298,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:341 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:355 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:377 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:379 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:383 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:433 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:444 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:456 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:462 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:475 msgid "Case does not exist" msgstr "" @@ -3277,20 +3349,22 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 -msgid "ERROR: You do not have server side authentication enabled therefore queXS cannot determine which user is accessing the system." +#: functions/functions.operator.php:904 +msgid "" +"ERROR: You do not have server side authentication enabled therefore queXS " +"cannot determine which user is accessing the system." msgstr "" #: functions/functions.calendar.php:265 @@ -3390,10 +3464,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3416,11 +3488,15 @@ msgid "retrieve_conf failed, config not applied" msgstr "" #: functions/functions.freepbx.php:146 -msgid "Reload failed because FreePBX could not connect to the asterisk manager interface." +msgid "" +"Reload failed because FreePBX could not connect to the asterisk manager " +"interface." msgstr "" #: functions/functions.freepbx.php:165 -msgid "Could not reload the FOP operator panel server using the bounce_op.sh script. Configuration changes may not be reflected in the panel display." +msgid "" +"Could not reload the FOP operator panel server using the bounce_op.sh " +"script. Configuration changes may not be reflected in the panel display." msgstr "" #: functions/functions.freepbx.php:174 @@ -3440,13 +3516,11 @@ msgstr "" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3475,10 +3549,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" @@ -3541,4 +3621,3 @@ msgid "" "This is how the story goes.\n" "\n" msgstr "" - diff --git a/locale/ro/LC_MESSAGES/ro.mo b/locale/ro/LC_MESSAGES/ro.mo index 0098dc374679e70f599ae14b2771df26b131ac05..6607e03d451022a993c7b44293b9b7605c881637 100644 GIT binary patch delta 32 ocmey&^OQxpxxO_xpa|=*e?--+S$~)?Rz< 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 literal 8236 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\n" "POT-Creation-Date: 2014-03-17 10:47+1000\n" -"PO-Revision-Date: 2013-09-23 11:48+0000\n" -"Last-Translator: Alexander Matrunich \n" -"Language-Team: Russian \n" +"PO-Revision-Date: 2014-10-08 22:21+0000\n" +"Last-Translator: Alex \n" +"Language-Team: Russian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" +"X-Generator: Launchpad (build 17286)\n" +"Language: ru\n" #: callhistory.php:56 msgid "Case History List" -msgstr "История опросников" +msgstr "История задания" #: callhistory.php:79 msgid "No calls ever made" @@ -32,13 +33,13 @@ msgstr "Дата/время" #: callhistory.php:83 msgid "Case ID" -msgstr "ID кейса" +msgstr "ID задания" #: callhistory.php:83 #: index_interface2.php:212 #: calllist.php:84 msgid "Outcome" -msgstr "Итоги" +msgstr "Результат" #: callhistory.php:83 msgid "Respondent" @@ -51,7 +52,7 @@ msgstr "Оператор отсутствует" #: rs_answeringmachine_interface2.php:64 #: rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" -msgstr "Отбор респондента - Автоответчик" +msgstr "Отбор респондентов - Автоответчик" #: rs_answeringmachine_interface2.php:78 #: rs_answeringmachine.php:78 @@ -61,18 +62,18 @@ msgstr "Не оставляйте сообщение, повесьте труб #: rs_answeringmachine_interface2.php:81 #: rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" -msgstr "Окончание звонка с результатом: Корпоративный автоответчик" +msgstr "Закончить звонок с результатом: автоответчик в офисе / организации" #: rs_answeringmachine_interface2.php:86 #: rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" -msgstr "Окончание звонка с результатом: Автоответчик - сообщение оставлено" +msgstr "Закончить звонок с результатом: Автоответчик , сообщение оставлено" #: rs_answeringmachine_interface2.php:90 #: rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" -"Окончание звонка с результатом: Автоответчик - сообщение не оставлено" +"Закончить звонок с результатом: Автоответчик , сообщение НЕ оставлено" #: rs_answeringmachine_interface2.php:91 #: rs_business_interface2.php:62 @@ -92,7 +93,7 @@ msgstr "Извините за беспокойство, я набрал(а) не #: rs_business_interface2.php:61 msgid "End call with outcome: Business number" -msgstr "Окончание звонка с результатом: Организация" +msgstr "Закончить звонок с результатом: тел Организации /Компании" #: index_interface2.php:195 #: waitnextcase_interface2.php:49 @@ -104,27 +105,27 @@ msgstr "queXS" #: appointment.php:121 #: index.php:163 msgid "Appointment" -msgstr "" +msgstr "Повторный звонок" #: index_interface2.php:214 #: index.php:166 msgid "Email" -msgstr "" +msgstr "Адрес эл.почты" #: index_interface2.php:215 #: index.php:167 msgid "Referral" -msgstr "" +msgstr "Ссылка" #: index_interface2.php:216 #: waitnextcase_interface2.php:55 msgid "End work" -msgstr "" +msgstr "Закончить работу" #: index_interface2.php:294 #: index.php:169 msgid "Arrow for expanding or contracting" -msgstr "Стрелочка для изменения размера" +msgstr "Стрелка для изменения размера" #: index_interface2.php:306 #: index.php:220 @@ -139,17 +140,17 @@ msgstr "Контактная информация" #: index_interface2.php:323 #: index.php:247 msgid "Call history" -msgstr "История вызовов" +msgstr "История звонков" #: index_interface2.php:332 #: index.php:256 msgid "Shifts" -msgstr "Смена" +msgstr "Смены" #: index_interface2.php:341 #: index.php:265 msgid "Appointments" -msgstr "" +msgstr "Повторные звонки" #: index_interface2.php:350 #: index.php:274 @@ -170,7 +171,7 @@ msgstr "О проекте" #: index_interface2.php:375 #: index.php:306 msgid "Info" -msgstr "" +msgstr "Информация" #: record.php:55 msgid "Stop REC" @@ -206,11 +207,11 @@ msgstr "Останавливаю запись" #: record.php:90 msgid "Stop the manual recording now..." -msgstr "" +msgstr "Остановить запись" #: rs_callback_interface2.php:66 msgid "Respondent Selection - Call back" -msgstr "" +msgstr "Отбор респондентов - Обратный звонок" #: rs_callback_interface2.php:80 msgid "You are: " @@ -223,16 +224,16 @@ msgstr "" #: rs_callback_interface2.php:87 msgid "Yes - Continue where we left off" -msgstr "Да - продолжить с последнего вопроса" +msgstr "Да - Продолжить с момента окончания предыдущего разговора" #: rs_callback_interface2.php:88 #: rs_project_intro.php:81 msgid "End call with outcome: Refusal by respondent" -msgstr "Завершить со статусом: Отказ респондента" +msgstr "Закончить звонок с результатом: Отказ респондента" #: rs_project_intro.php:59 msgid "Respondent Selection - Project Introduction" -msgstr "" +msgstr "Отбор респондентов - Вступительная часть проекта" #: rs_project_intro.php:79 msgid "Yes - Continue" @@ -242,45 +243,50 @@ msgstr "Да - Продолжить" msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" -msgstr "Завершить со статусом: Это номер другого абонента" +msgstr "" +"Закончить звонок с результатом: по этому номеру нужного Респондента не " +"существует" #: rs_project_intro.php:83 msgid "" "End call with outcome: Out of sample (already completed in another mode)" -msgstr "Завершить со ствтусом: Уже опрошен!" +msgstr "" +"Закончить звонок с результатом: Не соответствеут требованиям по отбору " +"респондентов (или уже был опрошен )" #: appointment.php:69 msgid "Appointment error" -msgstr "" +msgstr "Ошибка с повторным звонком" #: appointment.php:70 msgid "" "You have not been assigned a case therefore cannot create an appointment" msgstr "" +"Вам не назначено задание, вы не можете запланировать повторный звонок" #: appointment.php:109 msgid "Appointment made" -msgstr "" +msgstr "Назначен повторный звонок" #: appointment.php:124 msgid "Select a respondent" -msgstr "" +msgstr "Выбрать респондента" #: appointment.php:134 msgid "Create new respondent:" -msgstr "" +msgstr "Создать нового респондента:" #: appointment.php:137 msgid "Add this respondent" -msgstr "" +msgstr "Добавить этого респондента" #: appointment.php:159 msgid "Select phone number:" -msgstr "" +msgstr "Выбрать номер телефона:" #: appointment.php:164 msgid "None" -msgstr "" +msgstr "Ни одного" #: appointment.php:173 msgid "Add new phone number" @@ -288,7 +294,7 @@ msgstr "Добавить новый телефонный номер" #: appointment.php:184 msgid "Add new phone number (with area code, eg 0398761234):" -msgstr "Добавить новый телефонный номер (включая код, пример: 74951234567)" +msgstr "Добавить новый телефонный номер (включая код, пример: 74951234567):" #: appointment.php:187 msgid "Add this phone number" @@ -296,43 +302,43 @@ msgstr "Добавить этот номер" #: appointment.php:206 msgid "Appointment:" -msgstr "" +msgstr "Повторный звонок:" #: appointment.php:208 msgid "Accept appointment from " -msgstr "" +msgstr "Принять повторный звонок от " #: appointment.php:208 msgid " till " -msgstr "" +msgstr " до " #: appointment.php:208 msgid " on " -msgstr "" +msgstr " на " #: appointment.php:208 msgid "on" -msgstr "" +msgstr "на" #: appointment.php:210 msgid "Appointment with myself only?" -msgstr "" +msgstr "Повторный звонок только себе?" #: appointment.php:219 msgid "Schedule Appointment" -msgstr "" +msgstr "Запланировать повторный звонок" #: calllist.php:56 msgid "Call List" -msgstr "Список номеров" +msgstr "Список звонков" #: calllist.php:80 msgid "No calls made" -msgstr "Звонки не состоялись" +msgstr "Звонки не проводились" #: calllist.php:84 msgid "Number called" -msgstr "Вызываемый номер" +msgstr "Набранный номер" #: calllist.php:84 msgid "Operator" @@ -341,19 +347,19 @@ msgstr "Оператор" #: calllist.php:88 #: project_info.php:82 msgid "No case" -msgstr "" +msgstr "Нет задания" #: waitnextcase_interface2.php:54 msgid "Get a new case" -msgstr "" +msgstr "Следующее задание" #: index.php:162 msgid "End" -msgstr "" +msgstr "Завершить" #: index.php:164 msgid "Call/Hangup" -msgstr "Прервать" +msgstr "Вызов / Отмена" #: index.php:165 msgid "Supervisor" @@ -369,7 +375,7 @@ msgstr "Доступность" #: index.php:298 msgid "Supervisor chat" -msgstr "" +msgstr "Супервайзер чат" #: info.php:56 msgid "Information" @@ -377,36 +383,36 @@ msgstr "Сведения" #: supervisorchat.php:80 msgid "Me" -msgstr "" +msgstr "Мне" #: supervisorchat.php:82 msgid "Case id" -msgstr "" +msgstr "№ задания" #: supervisorchat.php:87 msgid "Supervisor is available" -msgstr "" +msgstr "Супервайзер доступен" #: supervisorchat.php:88 msgid "Supervisor not available" -msgstr "" +msgstr "Супервайзер недоступен" #: supervisorchat.php:90 #: supervisorchat.php:93 msgid "Message" -msgstr "" +msgstr "Сообщение" #: supervisorchat.php:90 msgid "Send" -msgstr "" +msgstr "Отправлено" #: supervisorchat.php:93 msgid "From" -msgstr "" +msgstr "От" #: supervisorchat.php:96 msgid "Supervisor chat is not enabled" -msgstr "" +msgstr "Супервайзер чат недоступен" #: call_interface2.php:181 #: call_interface2.php:210 @@ -423,12 +429,12 @@ msgstr "" #: call.php:306 #: call.php:377 msgid "Call" -msgstr "" +msgstr "Позвонить" #: call_interface2.php:302 #: call.php:265 msgid "Not on a call" -msgstr "" +msgstr "В данный момент не звонит" #: call_interface2.php:314 #: call_interface2.php:430 @@ -441,17 +447,17 @@ msgstr "" #: call.php:414 #: call.php:420 msgid "End case" -msgstr "" +msgstr "Завершить задание" #: call_interface2.php:339 #: call.php:302 msgid "Press the call button to dial the number for this appointment:" -msgstr "" +msgstr "Нажмите кнопку 'Вызов' для набора номера этого повторного звонка" #: call_interface2.php:342 #: call.php:305 msgid "Number to call:" -msgstr "" +msgstr "Номер для звонка:" #: call_interface2.php:346 #: call_interface2.php:417 @@ -461,45 +467,46 @@ msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "" -"Ваш номер не зарегистрирован. Закройте это окно и кликните на красную кнопку." +"Ваш номер не зарегистрирован. Закройте это окно и кликните на красную кнопку " +"с надписью 'IP ТЕЛ Выключен'" #: call_interface2.php:407 #: call.php:370 msgid "Select phone number to dial:" -msgstr "Выберите номер" +msgstr "Выберите номер для звонка:" #: call_interface2.php:422 #: call_interface2.php:456 #: call.php:385 #: call.php:419 msgid "The last call completed this call attempt" -msgstr "" +msgstr "Последний звонок завершил количество попыток для этого номера" #: call_interface2.php:426 #: call_interface2.php:449 #: call.php:389 #: call.php:412 msgid "Enter a reason for this outcome before completing this case:" -msgstr "Нужно установить статус" +msgstr "Введите причину этого рузультата перед завершением задания :" #: call_interface2.php:467 #: call.php:448 msgid "Requires coding" -msgstr "" +msgstr "Требуется ввести значение кодировки" #: call_interface2.php:470 #: call.php:451 msgid "Assign outcome" -msgstr "" +msgstr "Присвоить результат" #: call_interface2.php:474 #: call.php:455 msgid "Error: Close window" -msgstr "" +msgstr "Ошибка: Закройте окно программы" #: call.php:427 msgid "Requesting call" -msgstr "" +msgstr "Вызываем звонок" #: call.php:428 #: call.php:435 @@ -514,47 +521,49 @@ msgstr "Отбой" #: call.php:434 msgid "Ringing" -msgstr "" +msgstr "Звоним" #: call.php:441 msgid "Answered" -msgstr "" +msgstr "Отвечен" #: call.php:442 msgid "Not Answered" -msgstr "" +msgstr "Не отвечен" #: selectextension.php:99 msgid "" "There are no extensions available, please contact the supervisor or click " "below to try again for an available extension" msgstr "" +"Нет доступных внутренних номеров, свяжитесь с Супервайзером или нажмите " +"внизу для повторной попытки получить свободный внутренний номер" #: selectextension.php:100 msgid "Try again" -msgstr "" +msgstr "Попытаться еще" #: selectextension.php:104 msgid "Select extension" -msgstr "" +msgstr "Выбрать внутр. номер" #: selectextension.php:105 msgid "" "Please select your extension from the list below then click on 'Choose " "extension'" -msgstr "" +msgstr "Выберите ваш внутр. номер из списка и нажмите 'Выбрать внутр. номер'" #: selectextension.php:108 msgid "Extension" -msgstr "" +msgstr "Внутренний номер" #: selectextension.php:110 msgid "Choose extension" -msgstr "" +msgstr "Выбрать Внутренний номер" #: endwork.php:45 msgid "End of work" -msgstr "" +msgstr "Пауза / Закончить работу" #: endwork.php:49 msgid "You have been automatically logged out of work due to inactivity" @@ -562,11 +571,11 @@ msgstr "Вы были отключены из-за бездействия" #: endwork.php:52 msgid "Work has ended. That is it" -msgstr "" +msgstr "Работа приостановлена. Ожидание..." #: endwork.php:70 msgid "You have been unassigned from your extension" -msgstr "" +msgstr "Вас отсоединили от внутреннего номера" #: endwork.php:75 msgid "Go back to work" @@ -578,7 +587,7 @@ msgstr "Состояние" #: status_interface2.php:79 msgid "Name" -msgstr "" +msgstr "Имя" #: status_interface2.php:225 #: status_interface2.php:228 @@ -588,7 +597,7 @@ msgstr "номеров больше нет" #: rs_intro.php:65 #: rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" -msgstr "" +msgstr "Отбор респондентов - Вступление" #: rs_intro.php:117 #: rs_intro_interface2.php:117 @@ -603,31 +612,36 @@ msgstr "Автоответчик" #: rs_intro.php:119 #: rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " -msgstr "Статус завершения: Нет ответа (или занято) " +msgstr "Закончить звонок с результатом: Нет ответа (или занято) " #: rs_intro.php:120 #: rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" -msgstr "Статус завершения: Внезапно оборвалось" +msgstr "Закончить звонок с результатом: Внезапно разъединилось" #: rs_intro.php:121 #: rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" -msgstr "Статус завершения: Бросили трубку" +msgstr "" +"Закончить звонок с результатом: Отказ другого (неизвестного) человека" #: rs_intro.php:123 #: rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" -msgstr "Статус завершения: Номер принадлежит другому абоненту" +msgstr "" +"Закончить звонок с результатом: по этому номеру нужного Респондента не " +"существует ( Респондент никогда недоступен по этому номеру )" #: rs_intro.php:124 #: rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" -msgstr "Статус завершения: Нет на месте" +msgstr "" +"Закончить звонок с результатом: НЕ связались с респондентом (респондент в " +"данный момент недоступен по этому номеру ; повторный звонок не назначен)" #: shifts.php:57 msgid "Shift List" @@ -640,7 +654,7 @@ msgstr "Нет смен для этого проекта" #: shifts.php:82 #: shifts.php:103 msgid "Start" -msgstr "" +msgstr "Начать" #: shifts.php:101 msgid "No future shifts scheduled" @@ -649,26 +663,27 @@ msgstr "Будущих смен не запланировано" #: shifts.php:103 #: nocaseavailable.php:138 msgid "Questionnaire" -msgstr "Опросник" +msgstr "ОПРОС" #: rs_project_end_interface2.php:62 msgid "Respondent Selection - Project end" -msgstr "" +msgstr "Отбор респондентов - Конец проекта" #: rs_project_end_interface2.php:80 msgid "Call automatically ended with outcome: Complete - End case" msgstr "" +"Звонок автоматически завершился с результатом: Завершено - Конец задания" #: rs_project_end_interface2.php:85 msgid "End call with outcome: Complete" -msgstr "" +msgstr "Закончить звонок с результатом: Завершено" #: contactdetails.php:90 #: contactdetails.php:128 #: respondent.php:94 #: respondent.php:132 msgid "Add respondent" -msgstr "" +msgstr "Добавить респондента" #: contactdetails.php:92 #: respondent.php:96 @@ -678,17 +693,17 @@ msgstr "Вернуться" #: contactdetails.php:98 #: respondent.php:102 msgid "Case id:" -msgstr "" +msgstr "ID задания:" #: contactdetails.php:99 #: respondent.php:103 msgid "Respondent:" -msgstr "Респондент" +msgstr "Респондент:" #: contactdetails.php:163 #: respondent.php:171 msgid "Var" -msgstr "" +msgstr "Переменная" #: contactdetails.php:163 #: respondent.php:171 @@ -699,15 +714,16 @@ msgstr "Значение" msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -"Выберите группы для ограничения доступности ( \"Нет\" - всегда доступны)" +"Выберите группы для ограничения времени звонков (Если ни одна не выбрана - " +"значит всегда доступен)" #: availability.php:143 msgid "Availability groups not defined for this questionnaire" -msgstr "Не назначены группы для этой анкеты" +msgstr "Не назначены группы для этого ОПРОСа" #: respondent.php:70 msgid "Respondent Selector" -msgstr "" +msgstr "Выбор респондента" #: respondent.php:167 msgid "Show details" @@ -715,11 +731,11 @@ msgstr "Показать подробности" #: nocaseavailable.php:63 msgid "No case available" -msgstr "" +msgstr "Нет задания" #: nocaseavailable.php:68 msgid "There is no case currently available" -msgstr "" +msgstr "В данный момент нет доступного задания" #: nocaseavailable.php:69 msgid "Reasons:" @@ -728,15 +744,15 @@ msgstr "Причины:" #: nocaseavailable.php:80 #: nocaseavailable.php:91 msgid "Enabled" -msgstr "" +msgstr "Включено" #: nocaseavailable.php:80 msgid "Disabled" -msgstr "" +msgstr "Выключено" #: nocaseavailable.php:88 msgid "Assigned questionnaires:" -msgstr "" +msgstr "Назначенные опросы :" #: nocaseavailable.php:91 #: nocaseavailable.php:113 @@ -750,372 +766,384 @@ msgstr "Описание" #: nocaseavailable.php:94 msgid "ERROR: No questionnaires assigned to you" -msgstr "ОШИБКА: Для Вас анкеты не назначены" +msgstr "ОШИБКА: Для Вас опросы не назначены" #: nocaseavailable.php:110 msgid "Assigned samples:" -msgstr "" +msgstr "Назначенные Списки контактов:" #: nocaseavailable.php:113 msgid "Sample" -msgstr "" +msgstr "Список контактов" #: nocaseavailable.php:116 msgid "ERROR: No samples assigned to the questionnaires" -msgstr "" +msgstr "ОШИБКА: Не назначены Списки контактов для опросов" #: nocaseavailable.php:135 msgid "Current shifts available:" -msgstr "" +msgstr "Доступные смены:" #: nocaseavailable.php:138 msgid "Shift start" -msgstr "" +msgstr "Начало смены" #: nocaseavailable.php:138 msgid "Shift end" -msgstr "" +msgstr "Окончание смены" #: nocaseavailable.php:141 msgid "ERROR: No shifts at this time" -msgstr "" +msgstr "ОШИБКА: В данный момент смен нет" #: nocaseavailable.php:161 msgid "Call restrictions:" -msgstr "" +msgstr "Ограничения звонка:" #: nocaseavailable.php:165 msgid "" "ERROR: There are no cases available that fall within call restrictions" msgstr "" +"ОШИБКА: Нет доступных заданий подходящих под ограничения звонков (время у " +"Респондента или смены у Операторов)" #: nocaseavailable.php:169 msgid "There are " -msgstr "" +msgstr "Существуют " #: nocaseavailable.php:169 msgid " unassigned case(s) available within the specified call restrictions" msgstr "" +" неназначенные задания доступные подходящих под ограничения звонков" #: nocaseavailable.php:175 msgid "Limesurvey links:" -msgstr "" +msgstr "Ссылки анкеты:" #: nocaseavailable.php:195 msgid "ERROR: No tokens table defined for LimeSurvey questionnaire" -msgstr "" +msgstr "ОШИБКА: Не заданы таблицы ключей доступа к Анкете" #: nocaseavailable.php:195 msgid "from questionnaire:" -msgstr "" +msgstr "из анкеты" #: nocaseavailable.php:197 msgid "Tokens table exists for Limesurvey questionnaire:" -msgstr "" +msgstr "Таблица Маркеров доступа задана для Анкеты:" #: nocaseavailable.php:202 msgid "ERROR: Cannot find questionnaires with LimeSurvey ID's" -msgstr "" +msgstr "ОШИБКА: Не могу найти Анкеты с таким номером ID" #: nocaseavailable.php:221 msgid "ERROR: Quota reached for this question" -msgstr "" +msgstr "ОШИБКА: для этого вопроса квота набрана" #: nocaseavailable.php:241 msgid "POSSIBLE ERROR: Row quota reached for this question" -msgstr "" +msgstr "ВОЗМОЖНАЯ ОШИБКА: квота по строке для этого вопроса закончена" #: casenote.php:56 msgid "Case Notes" -msgstr "" +msgstr "Примечания к заданию" #: casenote.php:66 #: casenote.php:105 msgid "Add note" -msgstr "" +msgstr "Добавить примечание" #: casenote.php:108 msgid "No notes" -msgstr "" +msgstr "Нет примечаний" #: casenote.php:110 msgid "Note" -msgstr "" +msgstr "Примечание" #: performance.php:77 msgid "This shift" -msgstr "" +msgstr "Эта смена" #: performance.php:78 #: performance.php:85 msgid "Completions" -msgstr "" +msgstr "Завершено" #: performance.php:78 #: performance.php:85 msgid "Completions per hour" -msgstr "" +msgstr "Завершено в час" #: performance.php:84 msgid "This project" -msgstr "" +msgstr "Этот проект" #: status.php:95 msgid "VoIP On" -msgstr "" +msgstr "IP ТЕЛ Включен" #: status.php:97 msgid "VoIP Off" -msgstr "" +msgstr "IP ТЕЛ Выключен" #: status.php:102 msgid "No VoIP" -msgstr "" +msgstr "Нет IP Тел связи" #: status.php:106 msgid "No call" -msgstr "" +msgstr "Нет звонка" #: status.php:110 msgid "To be coded" -msgstr "" +msgstr "Необхоимо кодировать" #: status.php:114 msgid "Requesting" -msgstr "" +msgstr "Вызываем" #: status.php:130 msgid "APPT" -msgstr "" +msgstr "Повт. вызов" #: status.php:131 msgid "MISSED" -msgstr "" +msgstr "НЕ попали по адресу" #: rs_project_end.php:88 msgid "Call automatically ended with outcome: Complete" -msgstr "" +msgstr "Звонок автоматически завершился с результатом: Завершено" #: nocallavailable.php:80 msgid "No call available" -msgstr "" +msgstr "Нет доступных звонков" #: nocallavailable.php:83 msgid "Please click on:" -msgstr "" +msgstr "Пожалуйста, нажмите:" #: nocallavailable.php:83 msgid "to display call script" -msgstr "" +msgstr "показать программу вызова" #: nocallavailable.php:177 msgid "Will dial in" -msgstr "" +msgstr "Позвоним через" #: nocallavailable.php:178 msgid "Dialling now" -msgstr "" +msgstr "Звоним" #: nocallavailable.php:184 msgid "Will end case in" -msgstr "" +msgstr "Закончим задание через" #: nocallavailable.php:185 msgid "Ending case now" -msgstr "" +msgstr "Завершаем задание сейчас" #: nocallavailable.php:203 msgid "seconds" -msgstr "" +msgstr "секунды" #: nocallavailable.php:216 msgid "" "Your VoIP extension is not active. Please activate VoIP by clicking once on " "the red button that says 'VoIP Off'" msgstr "" +"Ваш внутр. номер неактивирован. Активируйте IP ТЕЛ , для этого нажмите " +"красную кнопку 'IP ТЕЛ Выключен'" #: nocallavailable.php:222 msgid "Auto dialling unavailable as VoIP is not enabled" -msgstr "" +msgstr "Автодозвон недоступен т.к. IP Тел. выключен" #: nocallavailable.php:228 msgid "Auto dialling unavailable as you are already on a call" -msgstr "" +msgstr "Автодозвон недоступен, т.к. вы уже звоните" #: referral.php:167 msgid "Generated referral to case id" -msgstr "" +msgstr "Создана ссылка на задание №" #: referral.php:173 msgid "Generated as referral from case id" -msgstr "" +msgstr "Создана как ссылка от задания №" #: referral.php:179 msgid "Created referral case - you may now close this window" -msgstr "" +msgstr "Ссылка создана - можете закрыть это окно" #: referral.php:183 msgid "" "Failed to create referral case - please check your input and try again" msgstr "" +"Не удалось создать ссылку - проверьте введенные данные и попробуйте еще раз" #: referral.php:189 msgid "You must supply a primary phone number" -msgstr "" +msgstr "Необходимо предоставить Основной номер телефона" #: referral.php:209 #: referral.php:243 msgid "Create referral" -msgstr "" +msgstr "Создать ссылку" #: referral.php:241 msgid "Call this new referral immediately after this case?" -msgstr "" +msgstr "Похвонить по этой ссылке сразу после этого задания ?" #: referral.php:248 msgid "Referrals not available for this questionnaire" -msgstr "" +msgstr "Для этой Анкеты Ссылки не заданы" #: rs_quota_end.php:61 msgid "Respondent Selection - Project Quota End" -msgstr "" +msgstr "Отбор Респондентов - В случае закрытия квоты по проекту" #: rs_quota_end.php:72 #: rs_quota_end.php:78 msgid "End call with outcome: Quota filled" -msgstr "" +msgstr "Закончить звонок с результатом: Не является клиентом ..." #: email.php:241 msgid "Self completion invitation sent via email to" msgstr "" +"Приглашение для самостоятельного заполнения Анкеты оправлено на адрес эл. " +"почты для" #: email.php:295 msgid "The email did not send" -msgstr "" +msgstr "Письмо эл. почты не отправлено" #: email.php:300 msgid "The email address is not valid" -msgstr "" +msgstr "Адрес эл. почты недействителен" #: email.php:329 msgid "Email respondent for self completion" msgstr "" +"Отправить сообщение по эл. почте для самостоятельного заполнения анкеты" #: email.php:337 msgid "First name" -msgstr "" +msgstr "Имя" #: email.php:338 msgid "Last name" -msgstr "" +msgstr "Фамилия" #: email.php:342 msgid "Send invitation" -msgstr "" +msgstr "Отправить приглашение" #: email.php:344 msgid "Send invitation and Hang up" -msgstr "" +msgstr "Отправить приглашение и повесить трубку" #: email.php:348 msgid "Self completion email not available for this questionnaire" msgstr "" +"Приглашение для самостоятельного заполнения для этой Анкеты не задано" #: appointmentlist.php:56 msgid "Appointment List" -msgstr "" +msgstr "Список Повторных звонков" #: appointmentlist.php:70 msgid "Not yet called" -msgstr "" +msgstr "Еще не звонили" #: appointmentlist.php:70 msgid "Any operator" -msgstr "" +msgstr "Любой Оператор" #: appointmentlist.php:83 msgid "No appointments made" -msgstr "" +msgstr "Повторные звонки не назначены" #: appointmentlist.php:85 msgid "No future appointments scheduled" -msgstr "" +msgstr "Повторных звонков не запланировано" #: appointmentlist.php:90 msgid "Appointment with" -msgstr "" +msgstr "Повторный звонок с" #: supervisor.php:61 msgid "Please wait till you have ended this call to call the supervisor" -msgstr "" +msgstr "Дожитесь окончания звонка перед звонком Супервайзеру" #: supervisor.php:105 msgid "You may now close this window" -msgstr "" +msgstr "Теперь Вы можете закрыть окно" #: supervisor.php:110 msgid "Calling the supervisor, you may close this window" -msgstr "" +msgstr "Звоним Супервайзеру, можете закрыть это окно" #: supervisor.php:115 msgid "" "Click here to call the supervisor's phone. Otherwise close this window" -msgstr "" +msgstr "Нажмите здесь для звонка Супервайзеру или закройте окно" #: supervisor.php:116 msgid "Hangup when calling the supervisor" -msgstr "" +msgstr "Закончите разговор перед звонком Супервайзеру" #: supervisor.php:121 msgid "Try calling the supervisor" -msgstr "" +msgstr "Попробовать позвонить Супервайзеру" #: supervisor.php:128 msgid "" "Please wait for this call to answer before attempting to call the supervisor" -msgstr "" +msgstr "Подождите ответа на этот звонок перед звонком Супервайзеру" #: admin/systemsort.php:75 #: admin/systemsort.php:98 #: admin/systemsort.php:99 msgid "Monitor system wide case sorting" -msgstr "" +msgstr "Монитор автоматической расширенной сортировки заданий" #: admin/systemsort.php:77 msgid "Running process:" -msgstr "" +msgstr "Текущий процесс:" #: admin/systemsort.php:81 msgid "Kill signal sent: Please wait..." -msgstr "" +msgstr "Сигнал остановки отправлен. Пожалуйста, подождите..." #: admin/systemsort.php:82 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" +"Процесс уже закрыт (напр. серевер был перезагружен) - нажмите для " +"подтверждения" #: admin/systemsort.php:86 msgid "Kill the running process" -msgstr "" +msgstr "Остановить текущий процесс" #: admin/systemsort.php:92 #: admin/systemsort.php:106 msgid "Log id" -msgstr "" +msgstr "ID записи в журнале" #: admin/systemsort.php:92 #: admin/systemsort.php:106 msgid "Date" -msgstr "" +msgstr "Дата" #: admin/systemsort.php:92 #: admin/systemsort.php:106 msgid "Log entry" -msgstr "" +msgstr "Запись в журнале" #: admin/systemsort.php:100 msgid "Click here to enable and begin system wide case sorting" -msgstr "" +msgstr "Нажмите здесь для для включения и запуска сортировки заданий." #: admin/systemsort.php:101 msgid "" @@ -1126,40 +1154,48 @@ msgid "" "complex quotas in place. If you are not experiencing any performance " "problems, it is not recommended to use this feature." msgstr "" +"Серверная сортировка заданий (в соответствии с параметром конфигурации " +"SYSTEM_SORT_MINUTES) периодически принудительно сортирует задания вместо " +"поиска наиболее подходящего задания когда оператор вызывает новое " +"заданию.\r\n" +"Это может повысить производительность когда существует большое количество " +"заданий или сложных квот. \r\n" +"Если вы не испытываете никаких проблем с производительностью, не " +"рекомендуется использовать эту функцию." #: admin/systemsort.php:102 msgid "Outcome of last process run (if any)" -msgstr "" +msgstr "Результат последних процессов" #: admin/callhistory.php:80 #: admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" -msgstr "" +msgstr "История звонков" #: admin/callhistory.php:96 #: admin/callhistory.php:111 msgid "Date/Time call start" -msgstr "" +msgstr "Дата/время начала звонка" #: admin/callhistory.php:96 #: admin/callhistory.php:111 msgid "Time end" -msgstr "" +msgstr "Время окончания" #: admin/callhistory.php:110 msgid "Download Call History List" -msgstr "" +msgstr "Скачать Историю звонков" #: admin/clientquestionnaire.php:150 #: admin/clientquestionnaire.php:271 msgid "Assign clients to questionnaires" -msgstr "" +msgstr "Привязать клиентов к Опросам" #: admin/quotareport.php:109 #: admin/index.php:80 msgid "Quota report" -msgstr "" +msgstr "Отчет по Квоте" #: admin/quotareport.php:111 #: admin/quota.php:110 @@ -1167,108 +1203,108 @@ msgstr "" #: admin/questionnaireavailability.php:94 #: admin/outcomes.php:80 msgid "Select a questionnaire from the list below" -msgstr "" +msgstr "Выберите опрос из списка" #: admin/quotareport.php:118 #: admin/quota.php:123 #: admin/samplesearch.php:84 msgid "Select a sample from the list below" -msgstr "" +msgstr "Выберите Список контактов из списка" #: admin/quotareport.php:178 msgid "Total sample" -msgstr "" +msgstr "Общее количество контактов в списке" #: admin/quotareport.php:233 #: admin/quotareport.php:240 msgid "closed" -msgstr "" +msgstr "закрыто" #: admin/quotareport.php:235 #: admin/quotareport.php:242 msgid "open" -msgstr "" +msgstr "открыто" #: admin/quotareport.php:284 msgid "Strata" -msgstr "" +msgstr "Статистика" #: admin/quotareport.php:284 msgid "Quota" -msgstr "" +msgstr "Квота" #: admin/quotareport.php:284 msgid "Sample Used" -msgstr "" +msgstr "Используемый Список контактов" #: admin/quotareport.php:284 msgid "Sample Remaining" -msgstr "" +msgstr "Оставшихся номеров в списке" #: admin/quotareport.php:284 msgid "% Complete" -msgstr "" +msgstr "% Завершено" #: admin/quotareport.php:284 msgid "Set priority" -msgstr "" +msgstr "Задать приоритет" #: admin/quotareport.php:284 msgid "Auto prioritise" -msgstr "" +msgstr "Кстановить приоритеты автоматически" #: admin/quotareport.php:285 msgid "Update priorities" -msgstr "" +msgstr "Обновить приоритеты" #: admin/import.php:51 msgid "Import: Validating and uploading" -msgstr "" +msgstr "Импорт: Проверка и загрузка" #: admin/import.php:67 msgid "Successfully imported file" -msgstr "" +msgstr "Файл успешно импортирован" #: admin/import.php:71 msgid "Error importing file. Please try again" -msgstr "" +msgstr "Ошибка импорта файла. Попробуйте еще раз" #: admin/import.php:75 msgid "Error:" -msgstr "" +msgstr "Ошибка:" #: admin/import.php:75 msgid "Please go back in your browser and fix the problem" -msgstr "" +msgstr "Перейдите назад в броузере и устраните проблему" #: admin/import.php:87 msgid "Import: Select columns to import" -msgstr "" +msgstr "Импорт : Выберите столбцы для импорта" #: admin/import.php:112 msgid "Import: Select file to upload" -msgstr "" +msgstr "Импорт : Выберите файл для импорта" #: admin/import.php:117 msgid "Choose the CSV sample file to upload:" -msgstr "" +msgstr "Выберите файл в формате CSV для загрузки Списка контактов:" #: admin/import.php:118 msgid "Description for file:" -msgstr "" +msgstr "Введите название для списка контактов:" #: admin/import.php:119 #: admin/assignsample.php:227 msgid "Add sample" -msgstr "" +msgstr "Добавить список контактов" #: admin/systemsortprocess.php:91 msgid "Sorting cases process starting" -msgstr "" +msgstr "Запуск сортировки заданий" #: admin/systemsortprocess.php:100 msgid "Sorting cases" -msgstr "" +msgstr "Сортировка заданий" #: admin/systemsortprocess.php:130 #: admin/systemsortprocess.php:142 @@ -1276,70 +1312,73 @@ msgstr "" #: admin/systemsortprocess.php:180 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" +"Система автоматически закрыла задание, т.к. оно не было закрыто более 24х " +"часов" #: admin/systemsortprocess.php:293 msgid "Completed sort" -msgstr "" +msgstr "Сортировка завершена" #: admin/systemsortprocess.php:293 #: admin/systemsortprocess.php:295 msgid "This task took" -msgstr "" +msgstr "Эта задача заняла" #: admin/systemsortprocess.php:295 msgid "Failed to complete sort" -msgstr "" +msgstr "Не могу завершить сортировку" #: admin/displayappointments.php:149 msgid "Now modify case outcome" -msgstr "" +msgstr "Теперь измените результат задания" #: admin/displayappointments.php:151 msgid "" "The appointment has been deleted. Now you must modify the case outcome" -msgstr "" +msgstr "Повторный звонок был удален. Необходимо изменить результат задания" #: admin/displayappointments.php:152 msgid "Modify case outcome" -msgstr "" +msgstr "Изменить результат задания" #: admin/displayappointments.php:159 #: admin/displayappointments.php:212 msgid "Edit appointment" -msgstr "" +msgstr "Редактировать повторный звонок" #: admin/displayappointments.php:185 msgid "Contact phone" -msgstr "" +msgstr "Контактный телефон" #: admin/displayappointments.php:193 msgid "Start time" -msgstr "" +msgstr "Время начала" #: admin/displayappointments.php:194 msgid "End time" -msgstr "" +msgstr "Время окончания" #: admin/displayappointments.php:215 msgid "Cancel edit" -msgstr "" +msgstr "Отмена редактирования" #: admin/displayappointments.php:216 msgid "Delete this appointment" -msgstr "" +msgstr "Удалить повторный звонок" #: admin/displayappointments.php:225 msgid "Display Appointments" -msgstr "" +msgstr "Показать повторные звонки" #: admin/displayappointments.php:227 msgid "All appointments (with times displayed in your time zone)" msgstr "" +"Все повторные звонки (с временем в соответствии с вашей временной зоной)" #: admin/displayappointments.php:229 #: admin/displayappointments.php:243 msgid "Delete" -msgstr "" +msgstr "Удалить" #: admin/displayappointments.php:229 #: admin/displayappointments.php:243 @@ -1349,109 +1388,109 @@ msgstr "" #: admin/assignsample.php:184 #: admin/assignsample.php:193 msgid "Edit" -msgstr "" +msgstr "Редактировать" #: admin/displayappointments.php:243 msgid "Operator Name" -msgstr "" +msgstr "Имя Оператора" #: admin/displayappointments.php:243 msgid "Respondent Name" -msgstr "" +msgstr "Имя Респондента" #: admin/displayappointments.php:243 msgid "Surname" -msgstr "" +msgstr "Фамилия" #: admin/displayappointments.php:243 msgid "Current outcome" -msgstr "" +msgstr "Текущий результат" #: admin/displayappointments.php:243 msgid "Operator who called" -msgstr "" +msgstr "Оператор кто звонил" #: admin/displayappointments.php:246 msgid "No appointments in the future" -msgstr "" +msgstr "Нет повторных звонков в будущем" #: admin/quota.php:109 #: admin/index.php:62 #: admin/index.php:63 msgid "Quota management" -msgstr "" +msgstr "Управление квотами" #: admin/quota.php:134 msgid "Current quotas (click to delete)" -msgstr "" +msgstr "Существующие квоты (кликните для удаления)" #: admin/quota.php:146 msgid "Currently no quotas" -msgstr "" +msgstr "В данный момент квоты не заданы" #: admin/quota.php:152 msgid "Stop calling this sample when:" -msgstr "" +msgstr "Остановить звонки по Списку контактов при условии:" #: admin/quota.php:152 msgid "for" -msgstr "" +msgstr "для" #: admin/quota.php:152 msgid "completions" -msgstr "" +msgstr "Завершения" #: admin/quota.php:155 msgid "Quota reached" -msgstr "" +msgstr "Квота Достигнута" #: admin/quota.php:157 msgid "Quota not yet reached" -msgstr "" +msgstr "Квота еще не Достигнута" #: admin/quota.php:159 msgid "Current completions: " -msgstr "" +msgstr "Текущие завершения: " #: admin/quota.php:167 msgid "Select a question for the quota" -msgstr "" +msgstr "Выберите вопрос для квоты" #: admin/quota.php:192 msgid "Enter the details for creating the quota:" -msgstr "" +msgstr "Введите параметры для задания квоты" #: admin/quota.php:193 msgid "Pre defined values for this question:" -msgstr "" +msgstr "Предопределенные значение для этого вопроса:" #: admin/quota.php:205 msgid "No labels defined for this question" -msgstr "" +msgstr "Для этого вопроса не заданы эрлыки" #: admin/quota.php:207 msgid "Code value" -msgstr "" +msgstr "Значение кода" #: admin/quota.php:213 msgid "The code value to compare" -msgstr "" +msgstr "Значение кода для сравнения" #: admin/quota.php:214 msgid "The type of comparison" -msgstr "" +msgstr "тип сравнения" #: admin/quota.php:215 msgid "The number of completions to stop calling at" -msgstr "" +msgstr "Количесто завершений для остановки звонков" #: admin/quota.php:219 msgid "Add quota" -msgstr "" +msgstr "Добавить квоту" #: admin/operatorskill.php:149 msgid "Assign operators to Skills" -msgstr "" +msgstr "Редактировать возможности и обязанности операторов" #: admin/operatorskill.php:151 msgid "" @@ -1459,411 +1498,419 @@ msgid "" "note that all operators will be allowed to assign all possible outcomes to a " "case. This restricts which ones will be assigned to an operator." msgstr "" +"Задать типы результатов доступные для каждого оператора. Обратите ВНИМАНИЕ " +"что ВСЕМ операторам будет разрешено присваивать заданиям ВСЕ возможные " +"результаты. Здесь Вы можете задать ограничения для конкретного опреатора." #: admin/operatorskill.php:272 #: admin/index.php:70 msgid "Modify operator skills" -msgstr "" +msgstr "Изменить навыки и возможности операторов" #: admin/operatorperformance.php:66 msgid "Operator Performance" -msgstr "" +msgstr "Производительность Оператора" #: admin/operatorperformance.php:73 #: admin/shiftreport.php:65 msgid "Please select a questionnaire" -msgstr "" +msgstr "Выберите опрос" #: admin/operatorperformance.php:81 #: admin/operatorperformance.php:104 msgid "Calls" -msgstr "" +msgstr "Звонков" #: admin/operatorperformance.php:81 #: admin/operatorperformance.php:104 msgid "Total time" -msgstr "" +msgstr "Общее время" #: admin/operatorperformance.php:81 #: admin/operatorperformance.php:104 msgid "Call time" -msgstr "" +msgstr "Время звонка" #: admin/operatorperformance.php:81 #: admin/operatorperformance.php:104 msgid "Completions p/h" -msgstr "" +msgstr "Завершено в час" #: admin/operatorperformance.php:81 #: admin/operatorperformance.php:104 msgid "Calls p/h" -msgstr "" +msgstr "Звонков в час" #: admin/operatorperformance.php:81 #: admin/operatorperformance.php:104 msgid "Effectiveness" -msgstr "" +msgstr "Эффективность" #: admin/operatorperformance.php:88 msgid "till" -msgstr "" +msgstr "до" #: admin/operatorperformance.php:96 #: admin/shiftreport.php:72 msgid "Please select a shift" -msgstr "" +msgstr "Выберите смену" #: admin/availabilitygroup.php:70 #: admin/availabilitygroup.php:112 msgid "Availability groups" -msgstr "" +msgstr "Группы доступности времени звонка" #: admin/availabilitygroup.php:107 #: admin/availabilitygroup.php:119 msgid "Modify" -msgstr "" +msgstr "Изменить" #: admin/availabilitygroup.php:114 msgid "" "Availability groups define periods of time of respondent availability." msgstr "" +"Группы доступности определяют периоды времени для звонков Респондентам (в " +"соответствии с часовой зоной Респондента )" #: admin/availabilitygroup.php:117 msgid "No availability groups" -msgstr "" +msgstr "Не заданы группы доступности" #: admin/availabilitygroup.php:119 msgid "Availablity group" -msgstr "" +msgstr "Группа доступности времени звонка" #: admin/availabilitygroup.php:123 #: admin/availabilitygroup.php:127 msgid "Add availability group" -msgstr "" +msgstr "Добавить группу доступности" #: admin/availabilitygroup.php:126 msgid "Availability group name" -msgstr "" +msgstr "Название группы доступности времени звонка" #: admin/shiftreport.php:61 #: admin/index.php:95 msgid "Shift reports" -msgstr "" +msgstr "отчеты по сменам" #: admin/shiftreport.php:92 msgid "Reports for this shift" -msgstr "" +msgstr "Отчеты для этой смены" #: admin/shiftreport.php:104 msgid "Report" -msgstr "" +msgstr "Отчет" #: admin/shiftreport.php:107 msgid "Create new report for this shift" -msgstr "" +msgstr "Создать новый отчет для этой смены" #: admin/shiftreport.php:113 msgid "Enter report for this shift" -msgstr "" +msgstr "Введите отчет для этой смены" #: admin/shiftreport.php:117 msgid "Add report" -msgstr "" +msgstr "Добавить отчет" #: admin/shiftreport.php:153 msgid "This report does not exist in the database" -msgstr "" +msgstr "Этот отчет в базе не существует" #: admin/shiftreport.php:158 msgid "Edit report for this shift" -msgstr "" +msgstr "Редактировать отчет для этой смены" #: admin/shiftreport.php:163 msgid "Modify report" -msgstr "" +msgstr "Изменить отчет" #: admin/index.php:46 msgid "Administrative Tools" -msgstr "" +msgstr "Административные инструменты" #: admin/index.php:50 msgid "Questionnaire creation and management" -msgstr "Создание и управление анкетами" +msgstr "Создание и управление опросами" #: admin/index.php:51 msgid "Create an instrument in Limesurvey" -msgstr "" +msgstr "Создать анекту в Limesurvey:" #: admin/index.php:52 msgid "Create a new questionnaire" -msgstr "" +msgstr "Создать новый опрос" #: admin/index.php:53 msgid "Questionnaire management" -msgstr "" +msgstr "Управление опросами" #: admin/index.php:54 msgid "Administer instruments with Limesurvey" -msgstr "" +msgstr "Администрировать анкеты в Lime" #: admin/index.php:56 msgid "Sample/List management" -msgstr "" +msgstr "Управление Списками контактов" #: admin/index.php:57 msgid "Import a sample file (in CSV form)" -msgstr "" +msgstr "Импортировать файл со Списком контактов (в формате CSV)" #: admin/index.php:58 msgid "Sample management" -msgstr "" +msgstr "Управление Списками контактов" #: admin/index.php:59 msgid "Assign samples to questionnaires" -msgstr "" +msgstr "Привязать Списки контактов к опросам" #: admin/index.php:60 msgid "Set values in questionnaire to pre fill" -msgstr "" +msgstr "Задать значения для Анкеты по умолчанию" #: admin/index.php:64 msgid "Quota row management" -msgstr "" +msgstr "Управление квотой по строке" #: admin/index.php:66 #: admin/index.php:68 #: admin/index.php:111 msgid "Operator management" -msgstr "" +msgstr "Управление записями операторов" #: admin/index.php:67 msgid "Add operators to the system" -msgstr "" +msgstr "Добавить операторов" #: admin/index.php:69 msgid "Assign operators to questionnaires" -msgstr "" +msgstr "Привязать операторов к опросам" #: admin/index.php:72 msgid "Availability and shift management" -msgstr "" +msgstr "Управление доступностью и сменами" #: admin/index.php:73 msgid "Manage availablity groups" -msgstr "" +msgstr "Управление группами доступности" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" -msgstr "" +msgstr "Привязать группы доступности к опросам" #: admin/index.php:75 msgid "Shift management (add/remove)" -msgstr "" +msgstr "Управление сменами (добавить /удалить)" #: admin/index.php:77 msgid "Questionnaire progress" -msgstr "" +msgstr "Прогресс по Опросу" #: admin/index.php:78 msgid "Display all future appointments" -msgstr "" +msgstr "Показать все будущие повторные звонки" #: admin/index.php:79 msgid "Sample call attempts report" -msgstr "" +msgstr "Отчет по звонкам по Списку контактов" #: admin/index.php:81 msgid "Questionnaire outcomes" -msgstr "" +msgstr "Результаты опроса" #: admin/index.php:82 msgid "Data output" -msgstr "" +msgstr "Вывод данных" #: admin/index.php:85 #: admin/outcomes.php:297 msgid "Operator performance" -msgstr "" +msgstr "Производительность Операторов" #: admin/index.php:87 msgid "Client management" -msgstr "" +msgstr "Управление учетными записями клиентов" #: admin/index.php:88 msgid "Add clients to the system" -msgstr "" +msgstr "Добавить клиента" #: admin/index.php:91 msgid "Supervisor functions" -msgstr "" +msgstr "Функции Супервайзера" #: admin/index.php:92 msgid "Assign outcomes to cases" -msgstr "" +msgstr "Назначить результаты заданиям" #: admin/index.php:93 msgid "Search the sample" -msgstr "" +msgstr "Поиск по Списку контактов" #: admin/index.php:96 msgid "Case status and assignment" -msgstr "" +msgstr "Статус и привязка задания" #: admin/index.php:97 msgid "Bulk appointment generator" -msgstr "" +msgstr "Генератор повторных звонков" #: admin/index.php:99 msgid "System settings" -msgstr "" +msgstr "Установки системы" #: admin/index.php:100 msgid "Set default timezone list" -msgstr "" +msgstr "Задать список временных зон по умолчанию" #: admin/index.php:101 msgid "Set default shift times" -msgstr "" +msgstr "Задать времена для смен по умолчанию" #: admin/index.php:102 msgid "Set call restriction times" -msgstr "" +msgstr "Задать ограничение времени звонков" #: admin/index.php:103 #: admin/centreinfo.php:62 msgid "Set centre information" -msgstr "" +msgstr "Сведения о Колл-Центре" #: admin/index.php:105 msgid "Start and monitor system wide case sorting" -msgstr "" +msgstr "Запуск и монитор сортировки заданий" #: admin/index.php:109 msgid "VoIP" -msgstr "" +msgstr "IP ТЕЛЕФОН" #: admin/index.php:110 msgid "Start and monitor VoIP" -msgstr "" +msgstr "Запуск и мониторинг IP Телефонии" #: admin/index.php:112 msgid "Extension status" -msgstr "" +msgstr "Статус внутр. тел.номера" #: admin/assignsample.php:115 #: admin/assignsample.php:170 msgid "Assign Sample: Select sample to assign" -msgstr "" +msgstr "Привязать Список контактов: Выберите Список контактов для привязки" #: admin/assignsample.php:131 msgid "Edit sample details" -msgstr "" +msgstr "Редактировать параметры Списка контактов" #: admin/assignsample.php:143 #: admin/assignsample.php:222 msgid "Max calls (0 for unlimited)" -msgstr "" +msgstr "Макс. количество звонков для всех номеров ( 0 = без ограничений )" #: admin/assignsample.php:144 #: admin/assignsample.php:223 msgid "Max call attempts (0 for unlimited)" msgstr "" +"Макс. количество попыток звонков по каждому номеру ( 0 = без ограничений " +")" #: admin/assignsample.php:145 #: admin/assignsample.php:224 msgid "Number of answering machine messages to leave per case (0 for never)" -msgstr "" +msgstr "Количество сообщений оставить на автоответчике ( 0 = не оставлять)" #: admin/assignsample.php:146 #: admin/assignsample.php:225 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" +"Выбор респондента из Списка контактов случайно ? ( иначе последовательно)" #: admin/assignsample.php:177 msgid "Samples selected for this questionnaire" -msgstr "" +msgstr "Списки контактов выбранные для этого опроса" #: admin/assignsample.php:180 #: admin/assignsample.php:181 msgid "Unlimited" -msgstr "" +msgstr "Без ограничений" #: admin/assignsample.php:182 msgid "Sequential" -msgstr "" +msgstr "Последовательно" #: admin/assignsample.php:182 msgid "Random" -msgstr "" +msgstr "Случайно" #: admin/assignsample.php:183 msgid "Never" -msgstr "" +msgstr "Никогда" #: admin/assignsample.php:185 #: admin/questionnaireavailability.php:117 msgid "Click to unassign" -msgstr "" +msgstr "Кликнуть для отсоединения" #: admin/assignsample.php:193 msgid "Max calls" -msgstr "" +msgstr "Макс. количество звонков" #: admin/assignsample.php:193 msgid "Max call attempts" -msgstr "" +msgstr "Макс. число попыток звонков" #: admin/assignsample.php:193 msgid "Answering machine messages" -msgstr "" +msgstr "Кол-во Сообщений для Автоответчика" #: admin/assignsample.php:193 msgid "Selection type" -msgstr "" +msgstr "Порядок выбора респондентов из списка" #: admin/assignsample.php:193 msgid "Unassign sample" -msgstr "" +msgstr "Отсоединиить Список контактов" #: admin/assignsample.php:195 msgid "No samples selected for this questionnaire" -msgstr "" +msgstr "Для этого опроса не выбраны Списки контактов" #: admin/assignsample.php:209 msgid "Add a sample to this questionnaire:" -msgstr "" +msgstr "Добавить Список контактов к опросу :" #: admin/assignsample.php:212 msgid "Select sample:" -msgstr "" +msgstr "Выбрать список контактов:" #: admin/centreinfo.php:66 msgid "Set centre information: " -msgstr "" +msgstr "Укажите информацию о Колл-Центре " #: admin/centreinfo.php:67 msgid "Update centre information" -msgstr "" +msgstr "Обновить информацию о Центре" #: admin/questionnaireavailability.php:93 msgid "Assign availability group to questionnaire" -msgstr "" +msgstr "Задать группы доступности для опроса" #: admin/questionnaireavailability.php:110 msgid "There are no availability groups selected for this questionnaire" -msgstr "" +msgstr "Для этого опроса не выбраны группы доступности" #: admin/questionnaireavailability.php:114 msgid "Availability groups selected for this questionnaire" -msgstr "" +msgstr "Группы доступности выбранные для этого Опроса" #: admin/questionnaireavailability.php:132 msgid "Add an availability group to this questionnaire:" -msgstr "" +msgstr "Добавить группу доступности для этого Опроса :" #: admin/questionnaireavailability.php:135 msgid "Select availability group:" -msgstr "" +msgstr "Выбрать группу доступности:" #: admin/supervisorchat.php:63 msgid "" @@ -1871,50 +1918,53 @@ msgid "" "is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will " "need XMPP/Jabber accounts." msgstr "" +"Разрешить интервьюерам час с супервайзером через XMPP (Jabber). Требуется " +"сервер XMPP/Jabber с подключением BOSH. Операторам и супервайзеру " +"потребуются учетные записи XMPP/Jabber." #: admin/supervisorchat.php:73 msgid "Enable supervisor chat?" -msgstr "" +msgstr "Разрешить чат супервайзеру?" #: admin/supervisorchat.php:74 msgid "Set BOSH URL" -msgstr "" +msgstr "Сыылка на сервер сообщений BOSH" #: admin/supervisorchat.php:75 msgid "Supervisor XMPP/Jabber id" -msgstr "" +msgstr "IP супервайзера для сервера XMPP/Jabber" #: admin/supervisorchat.php:76 msgid "Update" -msgstr "" +msgstr "Обновить" #: admin/samplesearch.php:83 msgid "Search sample" -msgstr "" +msgstr "Поиск по Списку контактов" #: admin/samplesearch.php:100 msgid "No cases yet assigned: Delete this sample record" -msgstr "" +msgstr "Заданий не присвоено: Удалить запись контакта" #: admin/samplesearch.php:100 msgid "Assigned to questionnaire: " -msgstr "" +msgstr "Привязано к Опросу : " #: admin/samplesearch.php:110 msgid "No records in this sample match this search criteria" -msgstr "" +msgstr "Нет записей в Списке контактов удовлетворяющих критериям поиска" #: admin/samplesearch.php:121 msgid "Sample id" -msgstr "" +msgstr "ID по списку контактов" #: admin/samplesearch.php:130 msgid "Link" -msgstr "" +msgstr "Ссылка" #: admin/samplesearch.php:149 msgid "Search within this sample" -msgstr "" +msgstr "Поиск по Списку контактов" #: admin/samplesearch.php:151 #, php-format @@ -1923,200 +1973,209 @@ msgstr "" #: admin/samplesearch.php:156 msgid "Search for:" -msgstr "" +msgstr "Искать:" #: admin/samplesearch.php:158 msgid "Start search" -msgstr "" +msgstr "Начать поиск" #: admin/outcomes.php:77 msgid "Questionnaire Outcomes" -msgstr "" +msgstr "Результаты Опроса" #: admin/outcomes.php:86 #: admin/outcomes.php:244 msgid "Outcomes" -msgstr "" +msgstr "Результаты" #: admin/outcomes.php:88 #: admin/outcomes.php:231 msgid "Sample status" -msgstr "" +msgstr "Состояние списка контактов" #: admin/outcomes.php:90 #: admin/outcomes.php:233 msgid "Drawn from sample" -msgstr "" +msgstr "Завершено из списка контактов" #: admin/outcomes.php:90 #: admin/outcomes.php:233 msgid "Remain in sample" -msgstr "" +msgstr "Осталось в Списке контактов" #: admin/outcomes.php:97 #: admin/outcomes.php:241 msgid "Number" -msgstr "" +msgstr "Количество" #: admin/outcomes.php:99 msgid "Case availability (cases with temporary or appointment outcomes)" msgstr "" +"Доступные задания (задания с временными результатами или повторные звонки )" #: admin/outcomes.php:131 msgid "No cases currently available to call" -msgstr "" +msgstr "В данный момент нет доступных для звонка заданий" #: admin/outcomes.php:135 msgid "Cases currently available to call" -msgstr "" +msgstr "Задания доступные для звонка в данный момент" #: admin/outcomes.php:142 msgid "Average time on a completed questionnaire" -msgstr "" +msgstr "Среднее время на завершенный опрос" #: admin/outcomes.php:142 msgid "Min" -msgstr "" +msgstr "Минут" #: admin/outcomes.php:142 msgid "Secs" -msgstr "" +msgstr "Секунд" #: admin/outcomes.php:155 msgid "Rate" -msgstr "" +msgstr "Соотношение" #: admin/outcomes.php:156 msgid "Response Rate 1" -msgstr "" +msgstr "Соотношение ответов" #: admin/outcomes.php:157 msgid "Refusal Rate 1" -msgstr "" +msgstr "Соотношение отказов" #: admin/outcomes.php:158 msgid "Cooperation Rate 1" -msgstr "" +msgstr "Соотношение сотрудничества" #: admin/outcomes.php:159 msgid "Contact Rate 1" -msgstr "" +msgstr "Соотношение контактов" #: admin/outcomes.php:174 #: admin/outcomes.php:208 #: admin/outcomes.php:261 msgid "Count" -msgstr "" +msgstr "Сумма" #: admin/outcomes.php:174 #: admin/outcomes.php:208 #: admin/outcomes.php:261 msgid "%" -msgstr "" +msgstr "%" #: admin/outcomes.php:193 msgid "Operator call outcomes" -msgstr "" +msgstr "Результаты звонков оператора" #: admin/outcomes.php:264 msgid "No outcomes recorded for this sample" -msgstr "" +msgstr "Для этого списка контактов НЕТ записей результатов" #: admin/outcomes.php:269 msgid "No outcomes recorded for this questionnaire" -msgstr "" +msgstr "Для этого опроса НЕТ записей результатов" #: admin/outcomes.php:276 msgid "No shift reports: Add report" -msgstr "" +msgstr "Нет отчетов по смене: Добавить отчет" #: admin/outcomes.php:276 msgid "View shift reports" -msgstr "" +msgstr "Посмотреть отчеты по сменам" #: admin/outcomes.php:276 msgid "View operator performance" -msgstr "" +msgstr "Просмотр производительности Оператора" #: admin/outcomes.php:295 msgid "No shifts defined for this questionnaire" -msgstr "" +msgstr "Для этого опроса смены не заданы" #: admin/outcomes.php:297 msgid "Shift" -msgstr "" +msgstr "Смена" #: admin/outcomes.php:297 msgid "Shift report" -msgstr "" +msgstr "Отчет по смене" #: admin/voipmonitor.php:73 #: admin/voipmonitor.php:95 #: admin/voipmonitor.php:96 msgid "Monitor VoIP Process" -msgstr "" +msgstr "Мониторинг IP Телефонии" #: admin/voipmonitor.php:79 msgid "" "Kill signal sent: Please wait... (Note: Process will be stalled until there " "is activity on the VoIP Server)" msgstr "" +"Сигнал остановки отправлен : Пожалуйста, подождите... (Примечание: " +"Процесс будет приостановлен , до тех пор, пока существует активность на " +"сервере IP Телефонии)" #: admin/voipmonitor.php:84 msgid "(requires activity on the VoIP Server to take effect)" -msgstr "" +msgstr "(для выполнения требуется работающий сервер IP Телефонии)" #: admin/voipmonitor.php:97 msgid "Click here to begin monitoring the VoIP Process" -msgstr "" +msgstr "Нажмите здесь для начала мониторинга IP Телефонии" #: admin/questionnaireprefill.php:99 msgid "Pre fill questionnaire: Set values for questionnaire to prefill" msgstr "" +"Предварительное заполнение Опроса : задайте значения опроса для " +"предварительного заполнения" #: admin/questionnaireprefill.php:110 msgid "Current pre fills (click to delete)" msgstr "" +"Существующие данные Предварительного заполнения (нажмите для удаления)" #: admin/questionnaireprefill.php:120 msgid "Currently no pre fills" -msgstr "" +msgstr "Предварительное заполнение в данный момент не задано" #: admin/questionnaireprefill.php:132 msgid "Select a question to pre fill" -msgstr "" +msgstr "Выберите вопрос для Предварительного заполнения" #: admin/questionnaireprefill.php:164 msgid "Enter a value to pre fill this question with:" -msgstr "" +msgstr "Введите значение для Предварительного заполнения этот вопроса :" #: admin/questionnaireprefill.php:166 msgid "Possible uses:" -msgstr "" +msgstr "Возможные варианты использования:" #: admin/questionnaireprefill.php:168 msgid "{Respondent:firstName} First name of the respondent" -msgstr "" +msgstr "{Respondent:firstName} Имя респондента" #: admin/questionnaireprefill.php:169 msgid "{Respondent:lastName} Last name of the respondent" -msgstr "" +msgstr "{Respondent:lastName} Фамилия респондента" #: admin/questionnaireprefill.php:170 msgid "{Sample:var} A record from the sample where the column name is 'var'" msgstr "" +"{Sample:var} Запись из Списка контактов где 'var' - название столбца " +"переменной" #: admin/questionnaireprefill.php:183 msgid "The value to pre fill" -msgstr "" +msgstr "Значение для Предварительного заполнения" #: admin/questionnaireprefill.php:184 msgid "or: Select pre fill from sample list" -msgstr "" +msgstr "или : Выберите Предварительное заполнение из списка контактов" #: admin/questionnaireprefill.php:190 msgid "Add pre fill" -msgstr "" +msgstr "Добавить Предварительное заполнение" #: admin/samplelist.php:117 #: admin/samplelist.php:127 @@ -2124,37 +2183,37 @@ msgstr "" #: admin/samplelist.php:270 #: admin/samplelist.php:279 msgid "Rename" -msgstr "" +msgstr "Переименовать" #: admin/samplelist.php:146 #: admin/samplelist.php:179 #: admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" -msgstr "" +msgstr "Разрешения операторам на просмотр" #: admin/samplelist.php:182 msgid "" "Select which fields from this sample should be able to be viewed by operators" -msgstr "" +msgstr "Выберите какие поля из Списка контактов будут видны операторам" #: admin/samplelist.php:187 #: admin/samplelist.php:224 msgid "Field" -msgstr "" +msgstr "Поле" #: admin/samplelist.php:187 #: admin/samplelist.php:224 msgid "Example data" -msgstr "" +msgstr "Пример данных" #: admin/samplelist.php:187 msgid "Allow operator to see?" -msgstr "" +msgstr "Показать поле Операторам ?" #: admin/samplelist.php:190 msgid "Save changes" -msgstr "" +msgstr "Сохранить изменения" #: admin/samplelist.php:202 #: admin/samplelist.php:216 @@ -2162,63 +2221,71 @@ msgstr "" #: admin/samplelist.php:268 #: admin/samplelist.php:279 msgid "Deidentify" -msgstr "" +msgstr "Редактировать" #: admin/samplelist.php:219 msgid "" "Select which fields from this sample to deidentify. Deidentified fields will " "be permanently deleted from the sample." msgstr "" +"Выберите поля из списка для удаления. Выбранные записи будут ПОЛНОСТЬЮ " +"удалены из этого списка контактов." #: admin/samplelist.php:227 msgid "Delete selected fields" -msgstr "" +msgstr "Удалить выбранные поля" #: admin/samplelist.php:263 msgid "Enable" -msgstr "" +msgstr "Включить" #: admin/samplelist.php:265 msgid "Disable" -msgstr "" +msgstr "Выключить" #: admin/samplelist.php:276 msgid "Sample list" -msgstr "" +msgstr "Список контактов" #: admin/samplelist.php:279 msgid "Enable/Disable" -msgstr "" +msgstr "Включить / Выключить" #: admin/bulkappointment.php:199 msgid "Added appointment" -msgstr "" +msgstr "Повторный звонок добавлен" #: admin/bulkappointment.php:203 msgid "" "No such case id, or case set to a final outcome, or case currently assigned " "to an operator" msgstr "" +"Нет задания с таким № (ID), или заданию присвоен финальный результат, или " +"задание назначено оператору" #: admin/bulkappointment.php:209 msgid "Result" -msgstr "" +msgstr "Результат" #: admin/bulkappointment.php:229 msgid "" "Please check the case id's, appointment start and end times and notes are " "correct before accepting below" msgstr "" +"Перед загрузкой файла Проверьте правильность ID заданий, времена начал и " +"окончаний повторных звонков" #: admin/bulkappointment.php:235 msgid "Accept and generate bulk appointments" -msgstr "" +msgstr "Принять и сгенерировать массовые повторные звонки" #: admin/bulkappointment.php:240 msgid "" "The file does not contain at least caseid, starttime and endtime columns. " "Please try again." msgstr "" +"В файле отсутствуют столбцы с ID задания, временем начала и окончания. " +"Попробуйте еще раз." #: admin/bulkappointment.php:251 msgid "" @@ -2228,29 +2295,38 @@ msgid "" "temporary (non final) outcomes will have appointments generated, and the " "outcome of the case will be updated to an appointment outcome." msgstr "" +"Предоставьте данные в виде CSV-файла со строкой заголовка таблицы , " +"содержащий по крайней мере 3 колонки - caseid, starttime и endtime. Можете " +"добавить столбец note (Примечания) для заметок дополнительно к параметрам " +"повторного звонка . \r\n" +"Внимание! Будут созданы повторные звонки только для заданий с временным (не " +"окончательным) результатом и заданию будет присвоен результат \"Назначен " +"повторный звонок \" ." #: admin/bulkappointment.php:252 msgid "Example CSV file:" -msgstr "" +msgstr "Файл примера в формате CSV:" #: admin/bulkappointment.php:261 msgid "Choose the CSV file to upload:" -msgstr "" +msgstr "Выберите файл в формате CSV для загрузки:" #: admin/bulkappointment.php:262 msgid "Load bulk appointment CSV" -msgstr "" +msgstr "Загрузить файл CSV для массовых повторных звонков" #: admin/addshift.php:87 #: admin/addshift.php:140 msgid "Add shifts" -msgstr "" +msgstr "Добавить смены" #: admin/addshift.php:88 msgid "" "You must be an operator (as well as have administrator access) to add/edit " "shifts" msgstr "" +"Для добавления/редактирования смен вы должны быть оператором и иметь доступ " +"администратора" #: admin/addshift.php:151 #: admin/availability.php:106 @@ -2258,171 +2334,185 @@ msgstr "" msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" +"В Вашей базе данных не установлены Временные зоны, ознакомьтесь с деталями " +"здесь" #: admin/addshift.php:163 msgid "Add shifts in your Time Zone" -msgstr "" +msgstr "Добавьте смены для своей Временной зоны" #: admin/addshift.php:166 msgid "" "Shifts allow you to restrict appointments being made, and interviewers to " "working on a particlar project at defined times." msgstr "" +"Смены позволяют ограничить назначение повторных звонков и время работы " +"оператора по проекту" #: admin/addshift.php:173 msgid "Select year" -msgstr "" +msgstr "Выбрать год:" #: admin/addshift.php:184 msgid "Select week of year" -msgstr "" +msgstr "Выбрать неделю года:" #: admin/addshift.php:238 #: admin/availability.php:144 #: admin/shifttemplate.php:118 msgid "Day" -msgstr "" +msgstr "День" #: admin/addshift.php:238 msgid "Use shift?" -msgstr "" +msgstr "Использовать смены?" #: admin/addshift.php:263 msgid "Submit changes" -msgstr "" +msgstr "Отправить изменения" #: admin/quotarow.php:154 #: admin/quotarow.php:160 msgid "Copied quotas" -msgstr "" +msgstr "Квоты скопированы" #: admin/quotarow.php:163 msgid "Current row quotas (click to delete)" -msgstr "" +msgstr "Текущие квоты по строке (кликнуть по квоте для удаления )" #: admin/quotarow.php:175 msgid "Currently no row quotas" -msgstr "" +msgstr "В данный момент нет квот по строке" #: admin/quotarow.php:182 msgid "Replicate: Where" -msgstr "" +msgstr "Дублировать: Где" #: admin/quotarow.php:182 #: admin/quotarow.php:184 #: admin/quotarow.php:187 msgid "like" -msgstr "" +msgstr "подобен (похож)" #: admin/quotarow.php:184 msgid "Sample only. Stop calling where" -msgstr "" +msgstr "Только для Списка контактов! Прекратить звонить когда" #: admin/quotarow.php:184 #: admin/quotarow.php:187 msgid "rows from this sample when:" -msgstr "" +msgstr "сроки из этого списка контактов когда :" #: admin/quotarow.php:187 msgid "Stop calling" -msgstr "" +msgstr "Прекратить звонок" #: admin/quotarow.php:190 msgid "Row quota reached (Closed)" -msgstr "" +msgstr "Квота по строке заполнена (Закрыта)" #: admin/quotarow.php:192 msgid "Row quota not yet reached (Open)" -msgstr "" +msgstr "Квота по строке не заполнена (Открыта)" #: admin/quotarow.php:212 msgid "Copy quotas for this sample to (No error/duplicate checking): " msgstr "" +"Копировать квоты для этого списка контактов (без проверки ошибок/ дубликатов " +") " #: admin/quotarow.php:214 msgid "Copy" -msgstr "" +msgstr "Копировать" #: admin/quotarow.php:216 msgid "" "Copy quotas for this sample to (No error/duplicate checking) with adjusting: " msgstr "" +"Копировать квоты для этого списка контактов (без проверки ошибок/ дубликатов " +") с дополнительными настройками " #: admin/quotarow.php:218 msgid "Copy adjustments" -msgstr "" +msgstr "Копировать настройки" #: admin/quotarow.php:224 msgid "Select a question for the row quota" -msgstr "" +msgstr "Выбрать вопрос для квоты по строке" #: admin/quotarow.php:248 msgid "No question (Replicate)" -msgstr "" +msgstr "Нет вопроса (Дублировать)" #: admin/quotarow.php:252 msgid "Sample only quota" -msgstr "" +msgstr "Квота только по Списку контактов" #: admin/quotarow.php:262 msgid "Select the sample variable to exclude" -msgstr "" +msgstr "Выберите переменную из списка контактов для исключения" #: admin/quotarow.php:274 msgid "Enter the details for creating the row quota:" -msgstr "" +msgstr "Введите описание для создания коты по строке" #: admin/quotarow.php:300 msgid "Describe this quota" -msgstr "" +msgstr "Опишите эту квоту" #: admin/quotarow.php:301 msgid "Quota priority (50 is default, 100 highest, 0 lowest)" msgstr "" +"Приоритет квоты (50 - по умолчанию, 100 - наивысший, 0 - самый низкий)" #: admin/quotarow.php:302 msgid "" "Should the priority be automatically updated based on the number of " "completions in this quota?" msgstr "" +"Требуется автоматически обновить приоритеты в соответствии с заполнением " +"квоты?" #: admin/quotarow.php:316 msgid "Exclude from the sample where the value is like" -msgstr "" +msgstr "Исключить из списка контактов где значение похоже на" #: admin/quotarow.php:334 msgid "Add row quota" -msgstr "" +msgstr "Добавить квоту по строке" #: admin/operators.php:147 msgid "Added:" -msgstr "" +msgstr "Добавлено:" #: admin/operators.php:150 msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgstr "" +"АТС FreePBX была перезагружена чтобы новый внутреннй номер был подключен" #: admin/operators.php:174 msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" +"Невозможно добавить оператора. Возможно оператор с таким именем уже " +"существует:" #: admin/operators.php:182 #: admin/operators.php:203 msgid "Add an operator" -msgstr "" +msgstr "Добавить оператора" #: admin/operators.php:204 msgid "Adding an operator here will give the user the ability to call cases" -msgstr "" +msgstr "Добавление оператора" #: admin/operators.php:204 msgid "Assign Operator to Questionnaire" -msgstr "" +msgstr "Привязать оператора к Опросу" #: admin/operators.php:204 msgid "tool" -msgstr "" +msgstr "инструмент" #: admin/operators.php:205 #: admin/clients.php:106 @@ -2432,563 +2522,581 @@ msgid "" "queXS using Apache file based security, enter the usernames of the users " "here." msgstr "" +"Используйте эту форму, чтобы ввести имя пользователя на основании вашей " +"системы безопасности каталогов. Например если вы защитили каталог queXS с " +"использованием системы безопасности Apache на основе файла, введите сюда " +"имена пользователей." #: admin/operators.php:206 msgid "The username and extension must be unique for each operator." msgstr "" +"Логин и внутр. номер должны быть уникальными для каждого опрератора !" #: admin/operators.php:208 msgid "Enter the username of an operator to add:" -msgstr "" +msgstr "Задайте логин для оператора:" #: admin/operators.php:210 msgid "Enter the password of an operator to add:" -msgstr "" +msgstr "Задайте пароль для оператора:" #: admin/operators.php:212 msgid "Enter the first name of an operator to add:" -msgstr "" +msgstr "Введите Имя оператора:" #: admin/operators.php:213 msgid "Enter the surname of an operator to add:" -msgstr "" +msgstr "Введите Фамилию оператора:" #: admin/operators.php:214 msgid "Enter the Time Zone of an operator to add:" -msgstr "" +msgstr "Задайте временную зону оператора:" #: admin/operators.php:216 msgid "Select an extension for this operator:" -msgstr "" +msgstr "Выбрать внутр. номер для этого оператора:" #: admin/operators.php:218 msgid "Will this operator be using VoIP?" -msgstr "" +msgstr "Будет использовать IP телефон ?" #: admin/operators.php:219 msgid "Jabber/XMPP chat user" -msgstr "" +msgstr "Введите Логин для Jabber/XMPP чата" #: admin/operators.php:220 msgid "Jabber/XMPP chat password" -msgstr "" +msgstr "Введите Пароль для Jabber/XMPP чата" #: admin/operators.php:221 msgid "Will this operator be using chat?" -msgstr "" +msgstr "Оператор будет использовать чат?" #: admin/operators.php:222 msgid "Is the operator a normal interviewer?" -msgstr "" +msgstr "Оператор обычный Интервьютер?" #: admin/operators.php:223 msgid "Is the operator a supervisor?" -msgstr "" +msgstr "Функция Супервайзера?" #: admin/operators.php:224 msgid "Is the operator a refusal converter?" -msgstr "" +msgstr "Будт обрабатывать отказы?" #: admin/operators.php:225 #: admin/clients.php:115 msgid "Add user" -msgstr "" +msgstr "Добавить пользователя" #: admin/new.php:59 msgid "New: Create new questionnaire" -msgstr "" +msgstr "Создать новый Опрос" #: admin/new.php:118 msgid "Successfully inserted" -msgstr "" +msgstr "Успешно вставлен" #: admin/new.php:118 msgid "as questionnaire" -msgstr "" +msgstr "как опрос" #: admin/new.php:118 msgid "linked to" -msgstr "" +msgstr "связан с" #: admin/new.php:121 msgid "Error: Failed to insert questionnaire" -msgstr "" +msgstr "ОШИБКА: Не удалось вставить опрос" #: admin/new.php:132 msgid "Name for questionnaire:" -msgstr "Наименование анкеты:" +msgstr "Название Опроса :" #: admin/new.php:133 msgid "Select limesurvey instrument:" -msgstr "" +msgstr "Выбрать Анкету из списка:" #: admin/new.php:147 #: admin/new.php:171 msgid "Existing instrument:" -msgstr "" +msgstr "Существующая анкета:" #: admin/new.php:156 msgid "Respondent selection type:" -msgstr "" +msgstr "Способ отбора респондента :" #: admin/new.php:157 msgid "No respondent selection (go straight to questionnaire)" -msgstr "" +msgstr "Без отбора респондента ( переход прямо к анкете )" #: admin/new.php:157 msgid "Use basic respondent selection text (below)" -msgstr "" +msgstr "Использовать базовый текст для отбора респондентов (ниже)" #: admin/new.php:195 msgid "Restrict appointments to shifts?" -msgstr "" +msgstr "Привязать повторные звонки к сменам?" #: admin/new.php:196 msgid "Restrict work to shifts?" -msgstr "" +msgstr "Ограничить временем смен?" #: admin/new.php:197 msgid "Questionnaire for testing only?" -msgstr "" +msgstr "Опрос только для тестирования?" #: admin/new.php:198 msgid "Allow operators to generate referrals?" -msgstr "" +msgstr "Разрешить операторам создавать ссылки для доступа к анкете?" #: admin/new.php:199 msgid "Allow for respondent self completion via email invitation?" msgstr "" +"Разрешить респондентам самостоятельно отвечать на анкету ? (после отправки " +"приглашения по эл. почте)" #: admin/new.php:201 msgid "Questionnaire display mode for respondent" -msgstr "" +msgstr "Режим отображения Анкеты для Респондента" #: admin/new.php:201 msgid "All in one" -msgstr "" +msgstr "Все сразу на одной странице" #: admin/new.php:201 msgid "Question by question" -msgstr "" +msgstr "Вопрос за вопросом" #: admin/new.php:201 msgid "Group at a time" -msgstr "" +msgstr "Группа за группой" #: admin/new.php:202 msgid "Limesurvey template for respondent" -msgstr "" +msgstr "Шаблон Анкеты для показа Респонденту" #: admin/new.php:214 msgid "URL to forward respondents on self completion (required)" msgstr "" +"Ссылка переадресации респондентов для самостоятельного запонения Анкеты " +"(обязательна)" #: admin/new.php:217 msgid "Respondent selection introduction:" -msgstr "" +msgstr "Отбор респондентов Вступление:" #: admin/new.php:218 msgid "Respondent selection project introduction:" -msgstr "" +msgstr "Отбор респондентов Вступительная часть проекта:" #: admin/new.php:219 msgid "Respondent selection callback (already started questionnaire):" -msgstr "" +msgstr "Отбор респондентов обратный звонок (опрос уже начат) :" #: admin/new.php:220 msgid "Message to leave on an answering machine:" -msgstr "" +msgstr "Текст сообщения для автоответчика:" #: admin/new.php:222 msgid "Project end text (thank you screen):" -msgstr "" +msgstr "Сообщение по окончании опроса (страница СПАСИБО):" #: admin/new.php:223 msgid "Project information for interviewers/operators:" -msgstr "" +msgstr "Информация о проекте для интервьюеров / операторов:" #: admin/new.php:224 msgid "Create Questionnaire" -msgstr "" +msgstr "Создать Опрос" #: admin/extensionstatus.php:101 msgid "" "Failed to add extension. There already may be an extension of this name" msgstr "" +"Не удалось добавить внутр. номер. Возможно внутр. номер с таким именем уже " +"существует" #: admin/extensionstatus.php:133 msgid "Display extension status" -msgstr "" +msgstr "Показать статус внутр. номера" #: admin/extensionstatus.php:146 #: admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" -msgstr "" +msgstr "Название внутр. номера (напр. SIP/1000) :" #: admin/extensionstatus.php:147 #: admin/extensionstatus.php:210 msgid "Extension password:" -msgstr "" +msgstr "Пароль для внутр. номера:" #: admin/extensionstatus.php:149 msgid "Edit extension" -msgstr "" +msgstr "Редактировать внутр. номер" #: admin/extensionstatus.php:155 msgid "Delete extension" -msgstr "" +msgstr "Удалить внутр. номер" #: admin/extensionstatus.php:160 msgid "Unassign the operator from this extension to be able to delete it" msgstr "" +"Отсоедините оператора от этого внутр. номера для возможности удалить внутр. " +"номер" #: admin/extensionstatus.php:168 msgid "Unassign" -msgstr "" +msgstr "Отвязать" #: admin/extensionstatus.php:168 msgid "End case to change assignment" -msgstr "" +msgstr "Завершить задание для изменения привязки" #: admin/extensionstatus.php:169 msgid "VoIP Offline" -msgstr "" +msgstr "IP Тел НЕ на линии" #: admin/extensionstatus.php:169 msgid "VoIP Online" -msgstr "" +msgstr "IP Тел на линии" #: admin/extensionstatus.php:170 msgid "Not called" -msgstr "" +msgstr "Не звонили" #: admin/extensionstatus.php:170 msgid "Done" -msgstr "" +msgstr "Готово" #: admin/extensionstatus.php:200 msgid "Assignment" -msgstr "" +msgstr "Привязка" #: admin/extensionstatus.php:200 msgid "VoIP Status" -msgstr "" +msgstr "Статус IP Телефонии" #: admin/extensionstatus.php:200 msgid "Call state" -msgstr "" +msgstr "Состояние звонка" #: admin/extensionstatus.php:200 msgid "Time on call" -msgstr "" +msgstr "Продолжительность звонка" #: admin/extensionstatus.php:203 msgid "No extensions" -msgstr "" +msgstr "Нет свободных внутр. номеров" #: admin/extensionstatus.php:205 msgid "Add an extension" -msgstr "" +msgstr "Добавить внутренний номер" #: admin/extensionstatus.php:211 msgid "Add extension" -msgstr "" +msgstr "Добавить внутренний номер" #: admin/databasestrings.php:32 msgid "Not attempted or worked" -msgstr "" +msgstr "Не начинали работать" #: admin/databasestrings.php:33 msgid "No answer" -msgstr "" +msgstr "Абонент не отвечает / занято" #: admin/databasestrings.php:34 msgid "Technical phone problems" -msgstr "" +msgstr "Проблемы со связью" #: admin/databasestrings.php:35 msgid "Other, Referred to Supervisor (Eligible)" -msgstr "" +msgstr "Другое - направить Супервайзеру" #: admin/databasestrings.php:36 msgid "Other, Referred to Supervisor (Unknown eligibility)" -msgstr "" +msgstr "Другое - направить Супервайзеру" #: admin/databasestrings.php:37 msgid "Soft Refusal, Other" -msgstr "" +msgstr "Отказ , другое" #: admin/databasestrings.php:38 msgid "Hard Refusal, Other" -msgstr "" +msgstr "Отказ респондента" #: admin/databasestrings.php:39 msgid "Soft Refusal, Respondent" -msgstr "" +msgstr "Отказ респондента" #: admin/databasestrings.php:40 msgid "Hard Refusal, Respondent" -msgstr "" +msgstr "Отказ респондента" #: admin/databasestrings.php:41 msgid "Complete" -msgstr "" +msgstr "Завершено" #: admin/databasestrings.php:42 msgid "Known respondent refusal" -msgstr "" +msgstr "Подтвержденный отказ Респондента" #: admin/databasestrings.php:43 msgid "Household-level refusal" -msgstr "" +msgstr "Отказ членов семьи" #: admin/databasestrings.php:44 msgid "Broken appointment (Implicit refusal)" -msgstr "" +msgstr "Повторный звонок не состоялся (Неявный отказ)" #: admin/databasestrings.php:45 msgid "Disconnected number" -msgstr "" +msgstr "Номер разъединился" #: admin/databasestrings.php:46 msgid "Fax/data line" -msgstr "" +msgstr "Включается ФАКС" #: admin/databasestrings.php:47 msgid "Business, government office, other organization" -msgstr "" +msgstr "Офис, госучереждение, другая организация" #: admin/databasestrings.php:48 msgid "No eligible respondent" -msgstr "" +msgstr "По этому номеру нужного Респондента не существует" #: admin/databasestrings.php:49 msgid "Accidental hang up or temporary phone problem" -msgstr "" +msgstr "Внезапно разъединилось или временные проблемы со связью" #: admin/databasestrings.php:50 msgid "Definite Appointment - Respondent" -msgstr "" +msgstr "Повторный звонок с указанием времени, согласован с Респондентом" #: admin/databasestrings.php:51 msgid "Definite Appointment - Other" -msgstr "" +msgstr "Повторный звонок с указанием времени - Другое" #: admin/databasestrings.php:52 msgid "Unspecified Appointment - Respondent" msgstr "" +"Повторный звонок без указания конкретного времени, согласован с Респондентом" #: admin/databasestrings.php:53 msgid "Unspecified Appointment - Other" -msgstr "" +msgstr "Повторный звонок без указания конкретного времени - Другое" #: admin/databasestrings.php:54 msgid "Household answering machine - Message left" -msgstr "" +msgstr "Автоответчик - Сообщение оставлено" #: admin/databasestrings.php:55 msgid "Household answering machine - No message left" -msgstr "" +msgstr "Автоответчик - сообщение НЕ оставлено" #: admin/databasestrings.php:56 msgid "Respondent Dead" -msgstr "" +msgstr "Респондент скончался" #: admin/databasestrings.php:57 msgid "Physically or mentally unable/incompetent" -msgstr "" +msgstr "Физически или психологически недоступен / недееспособен" #: admin/databasestrings.php:58 msgid "Household level language problem" -msgstr "" +msgstr "Ответивший не понимает по-русски" #: admin/databasestrings.php:59 msgid "Respondent language problem" -msgstr "" +msgstr "НЕ ПОНИМАЕТ ПО-Русски" #: admin/databasestrings.php:60 msgid "Answering machine - Not a household" -msgstr "" +msgstr "Автоответчик - Не частное жилье" #: admin/databasestrings.php:61 msgid "Out of sample" -msgstr "" +msgstr "Не соответствеут требованиям по отбору респондентов" #: admin/databasestrings.php:62 msgid "Non contact" -msgstr "" +msgstr "НЕ связались с респондентом" #: admin/databasestrings.php:63 msgid "Temporary Outcomes (normal cases)" -msgstr "" +msgstr "Временные результаты (обызные случаи)" #: admin/databasestrings.php:64 msgid "Supervisor Outcomes (referred to supervisor)" msgstr "" +"Результат - Направить Супервайзеру (На звонок ответили, но требуется " +"участие / решение супервайзера )" #: admin/databasestrings.php:65 msgid "Refusal Outcomes (respondent refused)" -msgstr "" +msgstr "ОТКАЗЫ (респондент отказался )" #: admin/databasestrings.php:66 msgid "Final Outcomes (completed, final refusal, etc)" -msgstr "" +msgstr "Итоговые Результаты (завершено, отказ, и т.д.)" #: admin/databasestrings.php:67 msgid "Miscellaneous - Unavailable for a week" -msgstr "" +msgstr "Разное - Недоступен на неделю" #: admin/databasestrings.php:69 msgid "Monday" -msgstr "" +msgstr "Понедельник" #: admin/databasestrings.php:70 msgid "Tuesday" -msgstr "" +msgstr "Вторник" #: admin/databasestrings.php:71 msgid "Wednesday" -msgstr "" +msgstr "Среда" #: admin/databasestrings.php:72 msgid "Thursday" -msgstr "" +msgstr "Четверг" #: admin/databasestrings.php:73 msgid "Friday" -msgstr "" +msgstr "Пятница" #: admin/databasestrings.php:74 msgid "Saturday" -msgstr "" +msgstr "Суббота" #: admin/databasestrings.php:75 msgid "Sunday" -msgstr "" +msgstr "Воскресенье" #: admin/databasestrings.php:76 msgid "Quota filled" -msgstr "" +msgstr "Не является клиентом ..." #: admin/databasestrings.php:77 msgid "Weekday mornings (Before 12pm)" -msgstr "" +msgstr "Рабочие дни (до 12:00)" #: admin/databasestrings.php:78 msgid "Weekday afternoons (After 12pm but before 6pm)" -msgstr "" +msgstr "Рабочие дни (с 12:00 до 18:00)" #: admin/databasestrings.php:79 msgid "Evenings (After 6pm)" -msgstr "" +msgstr "Вечера (после 18:00)" #: admin/databasestrings.php:80 msgid "Saturdays" -msgstr "" +msgstr "Субботы" #: admin/databasestrings.php:81 msgid "String" -msgstr "" +msgstr "Строковые данные" #: admin/databasestrings.php:82 msgid "Phone number" -msgstr "" +msgstr "Номер телефона" #: admin/databasestrings.php:83 msgid "Primary phone number" -msgstr "" +msgstr "ОСНОВНОЙ номер телефона" #: admin/databasestrings.php:84 msgid "State" -msgstr "" +msgstr "ШТАТ (облать)" #: admin/databasestrings.php:85 msgid "Postcode" -msgstr "" +msgstr "Индекс" #: admin/databasestrings.php:86 msgid "Respondent first name" -msgstr "" +msgstr "Имя Респондента" #: admin/databasestrings.php:87 msgid "Respondent last name" -msgstr "" +msgstr "Фамилия Респондента" #: admin/databasestrings.php:88 msgid "Email address" -msgstr "" +msgstr "Адрес эл. почты" #: admin/databasestrings.php:89 msgid "Self completion email invitation sent" -msgstr "" +msgstr "Письмо с приглашением для самостоятельного заполнения отправлено" #: admin/databasestrings.php:90 msgid "Self completed online" -msgstr "" +msgstr "Заполнено самостоятельно онлайн" #: admin/casesbyoutcome.php:52 msgid "Cases by outcome" -msgstr "" +msgstr "Заданиия по типу результата" #: admin/casesbyoutcome.php:72 msgid "Project" -msgstr "" +msgstr "Проект" #: admin/casesbyoutcome.php:73 msgid "Current outcome:" -msgstr "" +msgstr "Текущий результат:" #: admin/casesbyoutcome.php:84 msgid "No cases with this outcome" -msgstr "" +msgstr "Нет заданий с таким результатом" #: admin/casesbyoutcome.php:91 msgid "Error with input" -msgstr "" +msgstr "Ошибка ввода" #: admin/process.php:90 msgid "Cannot connect to VoIP Server" -msgstr "" +msgstr "Не могу соединиться с сервером IP Телефонии" #: admin/availability.php:57 msgid "No availability group set" -msgstr "" +msgstr "Группы доступности не заданы" #: admin/availability.php:95 msgid "Modify availability" -msgstr "" +msgstr "Изменить Доступность" #: admin/availability.php:122 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" +"Для ограничения времени звонков, задайте время начала и окончания для " +"каждого требуемого дня недели" #: admin/availability.php:160 #: admin/shifttemplate.php:134 msgid "Add row" -msgstr "" +msgstr "Добавить строку" #: admin/availability.php:162 msgid "Save changes to availabilities" -msgstr "" +msgstr "Сохранить изменения для доступности" #: admin/availability.php:166 msgid "Delete this availability group" -msgstr "" +msgstr "Удалить эту группу доступности" #: admin/clients.php:84 msgid "Could not add" -msgstr "" +msgstr "Не могу добавить" #: admin/clients.php:84 msgid "There may already be a client of this name" -msgstr "" +msgstr "Клиент с таким именен может уже существует" #: admin/clients.php:89 #: admin/clients.php:104 msgid "Add a client" -msgstr "" +msgstr "Добавить клиента" #: admin/clients.php:105 msgid "" @@ -2996,81 +3104,86 @@ msgid "" "client subdirectory. You can assign a client to a particular project using " "the" msgstr "" +"Добаление клиента позволит им получить доступ к информации о проекте в " +"клиентской директрии. Вы можете задать доступ клиетну к конкретному проектц " +"используя" #: admin/clients.php:105 msgid "Assign client to Questionnaire" -msgstr "" +msgstr "Привязать клиента к Опросу" #: admin/clients.php:105 msgid "tool." -msgstr "" +msgstr "." #: admin/clients.php:108 msgid "Enter the username of a client to add:" -msgstr "" +msgstr "Введите Логин для нового клиента :" #: admin/clients.php:110 msgid "Enter the password of a client to add:" -msgstr "" +msgstr "Введите Пароль для нового клиента :" #: admin/clients.php:112 msgid "Enter the first name of a client to add:" -msgstr "" +msgstr "Введите Имя нового клиента :" #: admin/clients.php:113 msgid "Enter the surname of a client to add:" -msgstr "" +msgstr "Введите Фамилию нового клиента :" #: admin/clients.php:114 msgid "Enter the Time Zone of a client to add:" -msgstr "" +msgstr "Введите временную зону нового клиента :" #: admin/shifttemplate.php:82 msgid "Modify shift template" -msgstr "" +msgstr "Изменить график смены" #: admin/shifttemplate.php:96 msgid "" "Enter standard shift start and end times for each day of the week in local " "time" msgstr "" +"Задайте время начала и окончания смен для каждого дня недели по местному " +"времени" #: admin/shifttemplate.php:135 msgid "Save changes to shifts" -msgstr "" +msgstr "Сохранить изменеия по сменам" #: admin/casestatus.php:88 #: admin/casestatus.php:89 msgid "Now" -msgstr "" +msgstr "Сейчас" #: admin/casestatus.php:92 msgid "Not assigned, select to assign" -msgstr "" +msgstr "Не привязан, нажмите для привязки" #: admin/casestatus.php:93 msgid "Assigned to" -msgstr "" +msgstr "Привязано к" #: admin/casestatus.php:93 msgid "Order" -msgstr "" +msgstr "№ пп" #: admin/casestatus.php:111 msgid "Case available in x minutes" -msgstr "" +msgstr "Задние доступно через x минут" #: admin/casestatus.php:111 msgid "Assigned to operator" -msgstr "" +msgstr "Назначено оператору" #: admin/casestatus.php:119 msgid "Choose operator to assign selected cases to" -msgstr "" +msgstr "Выберите оператора для привязки к нему выбранных заданий" #: admin/casestatus.php:122 msgid "Assign cases to operator queue" -msgstr "" +msgstr "Привязать задания к очереди оператора" #: admin/casestatus.php:199 msgid "" @@ -3079,100 +3192,107 @@ msgid "" "operator, it will override the normal scheduling process and call them as " "soon as the operator is available." msgstr "" +"Вывести список заданий по опросу и списку контактов с возможностью " +"назначения следующего звонка в очередь конкретного опреатора. Если вы " +"назначите задания операторам, это изменит порядок звонков и поставит в " +"начало списка." #: admin/dataoutput.php:202 msgid "Download data for this questionnaire via Limesurvey" -msgstr "" +msgstr "Скачать данные для этого опроса с помощью Lime" #: admin/dataoutput.php:204 #: admin/samplecallattempts.php:184 msgid "Please select a sample" -msgstr "" +msgstr "Выберите Список контактов" #: admin/dataoutput.php:211 msgid "Download data for this sample via Limesurvey" -msgstr "" +msgstr "Скачать данные для этого списка контактов с помощью Lime" #: admin/dataoutput.php:218 msgid "Download key file: select sample var" -msgstr "" +msgstr "Скачать файл с полем из списка контактов : выберите поле" #: admin/dataoutput.php:222 msgid "Download complete key file" -msgstr "" +msgstr "Скачать полный файл с полями списка контактов" #: admin/dataoutput.php:225 msgid "Download complete sample file with current outcomes" -msgstr "" +msgstr "Скачать полный список контактов с текущими результатами" #: admin/callrestrict.php:82 msgid "Modify call restriction times" -msgstr "" +msgstr "Изменить время ограничения звонка" #: admin/callrestrict.php:135 msgid "Save changes to restriction times" -msgstr "" +msgstr "Сохранить изменения времени ограничения звонка" #: admin/operatorlist.php:60 msgid "If changing usernames, you must specify a new password" msgstr "" +"При изменении Логина (имени пользователя) необходимо задать новый пароль" #: admin/operatorlist.php:116 msgid "Successfully updated user" -msgstr "" +msgstr "Данные пользователя успешно обновлены" #: admin/operatorlist.php:120 msgid "Failed to update user. Please make sure the username is unique" msgstr "" +"Не могу обновить данные пользователя. Убедитесь что имя пользователя (логин) " +"уникально" #: admin/operatorlist.php:129 msgid "Operator edit" -msgstr "" +msgstr "Редактировать данные оператора" #: admin/operatorlist.php:158 #: admin/operatorlist.php:293 msgid "Username" -msgstr "" +msgstr "Логин (Имя пользователя)" #: admin/operatorlist.php:162 msgid "Update password (leave blank to keep existing password)" -msgstr "" +msgstr "Обновить пароль (чтобы оставить старый пароль оставьте поле пустым)" #: admin/operatorlist.php:170 msgid "Uses chat" -msgstr "" +msgstr "Использует Чат" #: admin/operatorlist.php:171 msgid "Timezone" -msgstr "" +msgstr "Временная зона" #: admin/operatorlist.php:173 msgid "Uses VoIP" -msgstr "" +msgstr "Использует IP Телефонию (VOIP)" #: admin/operatorlist.php:176 msgid "Update operator" -msgstr "" +msgstr "Обновить данные оператора" #: admin/operatorlist.php:270 msgid "Windows bat file" -msgstr "" +msgstr "Файл *bat для Windows" #: admin/operatorlist.php:271 msgid "*nix script file" -msgstr "" +msgstr "файл скрипта *nix (Unix систем )" #: admin/operatorlist.php:279 msgid "Enable VoIP" -msgstr "" +msgstr "Включить IP Телефонию" #: admin/operatorlist.php:281 msgid "Disable VoIP" -msgstr "" +msgstr "Выключить IP Телефонию" #: admin/operatorlist.php:290 msgid "Operator list" -msgstr "" +msgstr "Список Операторов" #: admin/operatorlist.php:297 msgid "" @@ -3180,78 +3300,82 @@ msgid "" "executable. When the file is executed, it will run the voip.exe program with " "the correct connection details to connect the operator to the VoIP server" msgstr "" +"Скачайте файл для каждого пользователя и сохраните в той-же папке что и " +"файл voip.exe (программа IP Телефонии). При запуск этого файла, запустится " +"программа voip.exe с требуемыми параметрами соединения для подключения " +"этого опреатора к серверу IP телефонии" #: admin/operatorlist.php:299 msgid "Download Windows VoIP Executable" -msgstr "" +msgstr "Скачать программу IP Тел для Windows" #: admin/operatorlist.php:300 msgid "Download Linux VoIP Executable" -msgstr "" +msgstr "Скачать программу IP Тел для Linux" #: admin/operatorlist.php:305 msgid "Enable/Disable VoIP" -msgstr "" +msgstr "Включить / Выключить IP Телефонию" #: admin/operatorlist.php:306 msgid "Windows VoIP" -msgstr "" +msgstr "IP Тел для Windows" #: admin/operatorlist.php:307 msgid "*nix VoIP" -msgstr "" +msgstr "файл для *nix систем IP Телефонии" #: admin/samplecallattempts.php:107 msgid "Number of cases" -msgstr "" +msgstr "Количество заданий" #: admin/samplecallattempts.php:107 msgid "Call attempts made" -msgstr "" +msgstr "Сделано попыток звонков" #: admin/samplecallattempts.php:170 msgid "Sample call attempt" -msgstr "" +msgstr "Попытка звонка по Списку контактов" #: admin/samplecallattempts.php:175 msgid "Overall" -msgstr "" +msgstr "Все вместе" #: admin/samplecallattempts.php:195 msgid "Please select a quota" -msgstr "" +msgstr "Выберите Квоту" #: admin/samplecallattempts.php:201 msgid "No calls for this quota" -msgstr "" +msgstr "Нет звонков по этой Квоте" #: admin/samplecallattempts.php:205 msgid "No calls for this sample" -msgstr "" +msgstr "По этому Списку контактов звонков не было" #: admin/samplecallattempts.php:210 msgid "No calls for this questionnaire" -msgstr "" +msgstr "По этому опросу звонков не было" #: admin/questionnairelist.php:277 msgid "Questionnaire list" -msgstr "" +msgstr "Список Опросов" #: admin/questionnairelist.php:329 msgid "Edit instrument in Limesurvey" -msgstr "" +msgstr "Редактировать Анкету в Lime" #: admin/questionnairelist.php:362 msgid "Edit respondent selection instrument in Limesurvey" -msgstr "" +msgstr "Редактировать отбор респондентов в Lime" #: admin/questionnairelist.php:365 msgid "Update Questionnaire" -msgstr "" +msgstr "Обновить Опрос" #: admin/questionnairelist.php:384 msgid "Any collected data and the limesurvey instrument will NOT be deleted" -msgstr "" +msgstr "Все полученные данные и Анкета в Limesurvey НЕ будут удалены" #: admin/questionnairelist.php:385 msgid "" @@ -3259,226 +3383,234 @@ msgid "" "case notes, respondent details, appointments and the links between " "operators, clients and the questionnaire" msgstr "" +"Этот опрос будет удален из базы CATI, включая историю звонков, заданий, " +"примечаний, деталей респондентов, повторных звонков их связми между " +"опреаторами, клиентами и опросом" #: admin/questionnairelist.php:386 msgid "Please confirm you wish to delete the questionnaire" -msgstr "" +msgstr "Подтвердите намерение удалить этот Опрос" #: admin/questionnairelist.php:389 msgid "Delete this questionnaire" -msgstr "" +msgstr "Удалить этот Опрос" #: admin/timezonetemplate.php:87 msgid "Add/Remove Timezones" -msgstr "" +msgstr "Редактировать список Временных зон" #: admin/timezonetemplate.php:101 msgid "Click to remove a Timezone from the default list" -msgstr "" +msgstr "Нажмите для удаления Временной зоны из списка" #: admin/timezonetemplate.php:113 msgid "Add a Timezone:" -msgstr "" +msgstr "Добавить временную зону :" #: admin/timezonetemplate.php:116 msgid "Timezone: " -msgstr "" +msgstr "Временная зона : " #: admin/timezonetemplate.php:117 msgid "Add Timezone" -msgstr "" +msgstr "Добавить временную зону" #: admin/supervisor.php:133 msgid "Enter a case id or select a case from the list below:" -msgstr "" +msgstr "Введите номер задания или выберите из списка заданий :" #: admin/supervisor.php:144 msgid "Select case from list of cases referred to the supervisor:" -msgstr "" +msgstr "Выберите задание из списка направленных Супервайзеру :" #: admin/supervisor.php:153 msgid "Select case" -msgstr "" +msgstr "Выберите задание" #: admin/supervisor.php:176 msgid "Set an outcome for this call" -msgstr "" +msgstr "Установить результат для этого звонка" #: admin/supervisor.php:189 #: admin/supervisor.php:374 msgid "Set outcome" -msgstr "" +msgstr "Установить результат" #: admin/supervisor.php:300 msgid "No appointments for this case" -msgstr "" +msgstr "Нет повторных звонков для этого задания" #: admin/supervisor.php:302 msgid "Create appointment for this case" -msgstr "" +msgstr "Создать повторный звонок для этого задания" #: admin/supervisor.php:314 msgid "Call list" -msgstr "" +msgstr "Список звонков" #: admin/supervisor.php:320 msgid "Change outcome" -msgstr "" +msgstr "Изменить результат" #: admin/supervisor.php:333 msgid "Case notes" -msgstr "" +msgstr "Примечания по заданию" #: admin/supervisor.php:355 msgid "Modify responses for this case" -msgstr "" +msgstr "Изменить ответы для этого задания" #: admin/supervisor.php:357 msgid "Case not yet started in Limesurvey" -msgstr "" +msgstr "Заполнение Анкеты для этого задания еще не начиналось" #: admin/supervisor.php:361 msgid "Set a case outcome" -msgstr "" +msgstr "Установите результа для задания" #: admin/supervisor.php:411 msgid "Update case availability" -msgstr "" +msgstr "Обновить Доступность для задания" #: admin/supervisor.php:423 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" +"Назначить это задание оператору (появится как следующее задание для " +"оператора)" #: admin/supervisor.php:435 msgid "Assign this case to operator" -msgstr "" +msgstr "Назначить это задание оператору" #: admin/supervisor.php:441 msgid "Remove all sample details and contact numbers from this case" msgstr "" +"Удалить все контактные данные и номера телефонов для этого Респондента" #: admin/supervisor.php:454 msgid "Case does not exist" -msgstr "" +msgstr "Задание не существует" #: voip/downloadvoipclient.php:52 msgid "Error: Cannot write to temporary directory" -msgstr "" +msgstr "ОШИБКА : Невозможно записать во временную директорию" #: functions/functions.operator.php:167 msgid "morning" -msgstr "" +msgstr "утро" #: functions/functions.operator.php:168 msgid "afternoon" -msgstr "" +msgstr "день" #: functions/functions.operator.php:169 msgid "evening" -msgstr "" +msgstr "вечер" #: functions/functions.operator.php:903 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." msgstr "" +"ОШИБКА: У вас включена проверка подлинности на стороне сервера поэтому " +"queXS не может определить, какой пользователь получает доступ к системе." #: functions/functions.calendar.php:265 msgid "First name:" -msgstr "" +msgstr "Имя :" #: functions/functions.calendar.php:266 msgid "Last name:" -msgstr "" +msgstr "Фамилия :" #: functions/functions.calendar.php:271 msgid "Time Zone:" -msgstr "" +msgstr "Временная зона :" #: functions/functions.calendar.php:328 msgid "Shift from:" -msgstr "" +msgstr "Смена с :" #: functions/functions.calendar.php:335 msgid "Start Time" -msgstr "" +msgstr "Время начала" #: functions/functions.calendar.php:385 msgid "End Time" -msgstr "" +msgstr "Время окончания" #: functions/functions.performance.php:469 msgid "No shift" -msgstr "" +msgstr "Смена не задана" #: functions/functions.performance.php:492 msgid "Total completions" -msgstr "" +msgstr "Итого Завершено" #: functions/functions.performance.php:521 msgid "Completions this shift" -msgstr "" +msgstr "Завершено в эту смену" #: functions/functions.performance.php:544 #: functions/functions.performance.php:590 msgid "No previous shift" -msgstr "" +msgstr "Нет предыдущей смены" #: functions/functions.performance.php:564 msgid "Completions on the previous shift" -msgstr "" +msgstr "Завершено в предыдущую смену" #: functions/functions.performance.php:611 msgid "Completions this time on the previous shift" -msgstr "" +msgstr "Завершено в это время в предыдущую смену" #: functions/functions.performance.php:629 msgid "No calls made for this shift" -msgstr "" +msgstr "За эту смену звонков не было" #: functions/functions.performance.php:631 msgid "Top CPH for this shift" -msgstr "" +msgstr "Рейтинг производительности (звонков в час ) для этой смены" #: functions/functions.performance.php:648 msgid "No calls made for this project" -msgstr "" +msgstr "По этому проекту звонков не было" #: functions/functions.performance.php:650 msgid "Top CPH" -msgstr "" +msgstr "Рейтинг производительности (звонков в час )" #: functions/functions.import.php:89 msgid "Duplicate name" -msgstr "" +msgstr "Повторяющееся имя" #: functions/functions.import.php:111 msgid "You must select one and one only Primary Phone number" -msgstr "" +msgstr "Необходимо задать единственный Основной номер телефона" #: functions/functions.import.php:127 msgid "Import?" -msgstr "" +msgstr "Импортировать?" #: functions/functions.import.php:127 msgid "Type" -msgstr "" +msgstr "Тип" #: functions/functions.voip.php:449 msgid "online" -msgstr "" +msgstr "на связи" #: functions/functions.voip.php:449 msgid "offline" -msgstr "" +msgstr "не на связи" #: functions/functions.voip.php:528 msgid "Disconnected" -msgstr "" +msgstr "Разъединено" #: functions/functions.voip.php:530 msgid "Reconnected" -msgstr "" +msgstr "Переподключился" #: functions/functions.voip.php:553 #: functions/functions.voip.php:565 @@ -3486,148 +3618,156 @@ msgstr "" #: functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " -msgstr "" +msgstr " Внутренний тел.номер " #: functions/functions.voip.php:587 msgid "Unregistered" -msgstr "" +msgstr "Не зарегистрировано" #: functions/functions.voip.php:596 msgid "Registered" -msgstr "" +msgstr "Зарегистрировано" #: functions/functions.freepbx.php:138 #, php-format msgid "Reload failed because retrieve_conf encountered an error: %s" msgstr "" +"Перезагрузка не удалась, т.к. выполнение файла retrieve_conf привело к " +"ошибке : %s" #: functions/functions.freepbx.php:140 msgid "retrieve_conf failed, config not applied" msgstr "" +"Выпонение файла retrieve_conf не удалось, изменения конфигурации НЕ применены" #: functions/functions.freepbx.php:146 msgid "" "Reload failed because FreePBX could not connect to the asterisk manager " "interface." msgstr "" +"Перезагрузка НЕ произведена, т.к. FreePBX не может подключиться к панели " +"управления Asterisk ." #: functions/functions.freepbx.php:165 msgid "" "Could not reload the FOP operator panel server using the bounce_op.sh " "script. Configuration changes may not be reflected in the panel display." msgstr "" +"Невозможно перегрузить сервер панелей оператоов используя скрипт " +"bounce_op.sh . Изменения в конфигурации могли не отразиться на экране " +"панели." #: functions/functions.freepbx.php:174 #, php-format msgid "Exit code was %s and output was: %s" -msgstr "" +msgstr "Код выходя был %s с результатом : %s" #: display/index.php:111 msgid "Display" -msgstr "" +msgstr "Показать" #: client/index.php:72 msgid "There are no questionnaires assigned to you" -msgstr "" +msgstr "Для Вас анкеты не назначены" #: client/index.php:123 msgid "You are not a valid client" -msgstr "" +msgstr "Пользователь с таким Логином и Паролем не существует" #: include/limesurvey/quexs.php:674 #: include/limesurvey/quexs.php:753 msgid "Not on an appointment" -msgstr "" +msgstr "Не назначен повторный звонок" #: include/limesurvey/quexs.php:676 #: include/limesurvey/quexs.php:755 msgid "On an appointment" -msgstr "" +msgstr "Назначен повторный звонок" #: include/limesurvey/quexs.php:987 msgid "All samples" -msgstr "" +msgstr "Все Списки контактов" #: include/limesurvey/common_functions.php:6298 msgid "queXS: Number of call attempts" -msgstr "" +msgstr "CATI: Количество попыток звонков" #: include/limesurvey/common_functions.php:6299 msgid "queXS: On appointment?" -msgstr "" +msgstr "CATI : Повторный звонок назначен?" #: include/limesurvey/common_functions.php:6300 msgid "queXS: Percentage complete" -msgstr "" +msgstr "CATI: Завершено %" #: include/limesurvey/common_functions.php:6301 msgid "queXS: Number of answering machine messages left" -msgstr "" +msgstr "CATI: Кол-во сообщений оставленных на Автоответчике" #: include/limesurvey/optout.php:83 msgid "Self completion refused via opt out function" -msgstr "" +msgstr "Отказ от самостоятельго заполнения переход по по ссылке отказа" #: include/limesurvey/admin/browse.php:791 msgid "Questionnaire and Sample selection:" -msgstr "" +msgstr "Выбор Опроса и Списка контактов:" #: include/limesurvey/admin/browse.php:792 msgid "All queXS questionnaires and samples associated with this instrument" -msgstr "" +msgstr "Все Опросы и Списки контактов для этой Анкете" #: include/limesurvey/admin/exportresults.php:257 msgid "Token" -msgstr "" +msgstr "Маркер доступа" #: include/limesurvey/admin/exportresults.php:259 #: include/limesurvey/admin/exportresults.php:648 #: include/limesurvey/admin/exportresults.php:649 #: include/limesurvey/admin/exportresults.php:969 msgid "Case outcome" -msgstr "" +msgstr "Результат задания" #: include/limesurvey/admin/exportresults.php:260 #: include/limesurvey/admin/exportresults.php:603 #: include/limesurvey/admin/exportresults.php:604 #: include/limesurvey/admin/exportresults.php:972 msgid "Number of call attempts" -msgstr "" +msgstr "Количетсво попыток звонков" #: include/limesurvey/admin/exportresults.php:261 #: include/limesurvey/admin/exportresults.php:608 #: include/limesurvey/admin/exportresults.php:609 #: include/limesurvey/admin/exportresults.php:975 msgid "Number of answering machine messages left" -msgstr "" +msgstr "Количество сообшений оставленных на Автоответчике" #: include/limesurvey/admin/exportresults.php:263 #: include/limesurvey/admin/exportresults.php:618 #: include/limesurvey/admin/exportresults.php:619 #: include/limesurvey/admin/exportresults.php:981 msgid "Total interview time over all calls (mins)" -msgstr "" +msgstr "Общее время интервью по всем звонкам (мин)" #: include/limesurvey/admin/exportresults.php:264 #: include/limesurvey/admin/exportresults.php:623 #: include/limesurvey/admin/exportresults.php:624 #: include/limesurvey/admin/exportresults.php:984 msgid "Interview time for last call (mins)" -msgstr "" +msgstr "Продолжительность интервью последнего звонка (мин)" #: include/limesurvey/admin/exportresults.php:265 #: include/limesurvey/admin/exportresults.php:628 #: include/limesurvey/admin/exportresults.php:629 #: include/limesurvey/admin/exportresults.php:987 msgid "Last number dialled" -msgstr "" +msgstr "Последний набранный номер" #: include/limesurvey/admin/exportresults.php:266 #: include/limesurvey/admin/exportresults.php:633 #: include/limesurvey/admin/exportresults.php:634 #: include/limesurvey/admin/exportresults.php:990 msgid "Operator username for last call" -msgstr "" +msgstr "Имя оператора последнего звонка" #: include/php-gettext-1.0.11/examples/pigs_dropin.php:77 #: include/php-gettext-1.0.11/examples/pigs_fallback.php:76 @@ -3635,3 +3775,5 @@ msgid "" "This is how the story goes.\n" "\n" msgstr "" +"Вот такие пироги...\n" +"\n" diff --git a/locale/sv/LC_MESSAGES/sv.mo b/locale/sv/LC_MESSAGES/sv.mo index f3bd3beb2230030b588ea37cb1cb79c722bb30f8..bb1e8e404586a6cd0ea6a209f5c1e881f99afee3 100644 GIT binary patch delta 34 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 q#G&Iyj-4=ORCT2DakvsYI4U& zN!U*-h@@sjvQr}qQ;w9U26~SjJvm|6xSMYeEzX-8*Tl~*h=#(^@QSL^!WRlUde`JX z&?K^WlRu{{Rm-t%yyp z2t*eY+&cQnQFl%n|CdoyqD48;d9xy!^P;QDyl!jm>s(bjH&&eIDq_Wj(X3K`W{4po zsma6`%3AYoT)b-yJ+yY?=g(i_l^34q;Filesu!2|nQ65b6#BC0!UnyolT#zJzi3V*WnN_AhCn2HJ+*auHr#kDzN$2X zw7gKzrt8n@A>mGn9(m>!XmuOH(fb6nwnC*JU5b^;iu*JOAC0ZdS*tn zqDYm?x48k_n2`lr{LCe8`&=KdXwy~0Pbc?C`LY1JM7}LqDOrBFtU7l_v~2Y+4KHZHT0i!nA;29FC-JrA!w5%*DJNOPK=xxON-(<#ELgZ=1hxZmmMje zqsUfIjV@doD@Z1EFTSkn9qd`GqT<%kV<%1Kkui1rSV$x_KbA8mvS@ZycvHZ2x_k84 zN5(xf;s5LAO)YEfJz16&WO@Ft z%lyl@(NA4CYVs%@!+CRb3~S!=S8efU&D3^Pc&7)mXcuqND$AGo^NRhn&IPAOs2NX9 z726a`;mT-Ek@sf!!{04_sm}4+S$`Z#*TW@_Ez4PJI)UE-2QdFmM)9RQq6tl z`i9!Qd2YRUce+CT-@cf;Ta&=hqdT|6#aAy0`#CRq3A@_HyAP3f)2^(b>+QD2pE)&F zRO)Y-^~(X(1=OC-ne7)XW2V}nbGfU+dC_(0enyBZSNmh&Z=LDSFZVOoxpA~}tEWX? z%#KVeICF4sav@79XyD!OZm)sb-(Nl)91Vtd!;k|4bW^z+_iZ2|TkPU@Ux=%76}tcxi)uIMLspTi&tZ0QG@KF*d+Y)I&g@p< z@iC>d_jF;q(6|qtt=D)(UNk#hMwA~`8;9V}2a zd>Lz&H5Ua z**~yu@+1{RMT8erWB1F7+Cn{wR1Kd_CS9Q`N4WU%cgv`^)ym@~3)FR1LQU zxOqeSs^-Ks`Q?V_N86hex!s#|q}d3!!@jpRnxEl1pT2|cN1nT`-=9!HWJacrTFu`P zXG~i?y+WOrPuF+P{jE~-Q}1<*b__0^r`u3Ai#e*wvRpIY_gL;ayYu0tYO2UMV^AjM z;{E!UQk{aIvY6Xkr%JbB`HFyBWo-6ZZ4&P{`t?t(!_iJdPM7S~)}G;)U+3~;8 zL!Ei*6haTi8pPR;g!gdu#NT|OzO1I*oky?g;Qik1huV2V4u#L`=e7Fgu12T7Yu;nu zJnDV;jaQ$KM(Bydqv|)~p>{ytSKq$SyXJ#jojX4|ceed)WILRlT)l3I`>eX=(5mm+ z*X!d>Fh3xCF!_^@FE~Hv`jgduQfuWp6#M?XxLTPz>xZ9O{N_&wug&qvwzSaF\n" "POT-Creation-Date: 2014-03-17 10:47+1000\n" -"PO-Revision-Date: 2014-05-09 09:17+0000\n" -"Last-Translator: Shihui Yin \n" +"PO-Revision-Date: 2014-09-01 03:16+0000\n" +"Last-Translator: Daniel lee \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n" -"X-Generator: Launchpad (build 17111)\n" +"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" +"X-Generator: Launchpad (build 17286)\n" "Language: zh\n" #: callhistory.php:56 @@ -52,12 +52,12 @@ msgstr "没有电话调查员" #: rs_answeringmachine_interface2.php:64 #: rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" -msgstr "调查对象选项 - 电话答录机" +msgstr "受访者筛选 - 电话答录机" #: rs_answeringmachine_interface2.php:78 #: rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" -msgstr "请挂机,不要留言。" +msgstr "不留言,直接挂机" #: rs_answeringmachine_interface2.php:81 #: rs_answeringmachine.php:81 @@ -67,12 +67,12 @@ msgstr "结束电话:业务电话答录机" #: rs_answeringmachine_interface2.php:86 #: rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" -msgstr "结束电话:已留电话答录机留言" +msgstr "结束电话:已给答录机留言" #: rs_answeringmachine_interface2.php:90 #: rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" -msgstr "结束电话:未留电话答录机留言" +msgstr "结束电话:未给答录机留言" #: rs_answeringmachine_interface2.php:91 #: rs_business_interface2.php:62 @@ -84,15 +84,15 @@ msgstr "返回" #: rs_business_interface2.php:55 msgid "Respondent Selection - Business answers" -msgstr "调查对象选项 - 业务应答" +msgstr "受访者筛选-商业电话" #: rs_business_interface2.php:59 msgid "Sorry to bother you, I have called the wrong number" -msgstr "对不起,打扰了,我拨错电话号码了" +msgstr "对不起,打扰了,我拨错号码了" #: rs_business_interface2.php:61 msgid "End call with outcome: Business number" -msgstr "结束电话:业务电话号码" +msgstr "结束电话:业务号码" #: index_interface2.php:195 #: waitnextcase_interface2.php:49 @@ -144,7 +144,7 @@ msgstr "呼叫历史" #: index_interface2.php:332 #: index.php:256 msgid "Shifts" -msgstr "时区转换" +msgstr "调查时段" #: index_interface2.php:341 #: index.php:265 @@ -210,7 +210,7 @@ msgstr "停止手动录音..." #: rs_callback_interface2.php:66 msgid "Respondent Selection - Call back" -msgstr "受访者选项 - 稍后再拨" +msgstr "受访者筛选-稍后回拨" #: rs_callback_interface2.php:80 msgid "You are: " @@ -223,16 +223,16 @@ msgstr "" #: rs_callback_interface2.php:87 msgid "Yes - Continue where we left off" -msgstr "是的 - 继续上次调查" +msgstr "是的 - 继续上次没说完的" #: rs_callback_interface2.php:88 #: rs_project_intro.php:81 msgid "End call with outcome: Refusal by respondent" -msgstr "结束电话:调查对象拒绝接受电话调查" +msgstr "结束电话:受访者拒访" #: rs_project_intro.php:59 msgid "Respondent Selection - Project Introduction" -msgstr "选择调查对象 - 项目介绍" +msgstr "受访者筛选-项目介绍" #: rs_project_intro.php:79 msgid "Yes - Continue" @@ -268,7 +268,7 @@ msgstr "选择一个受访者" #: appointment.php:134 msgid "Create new respondent:" -msgstr "寻找新的受访者:" +msgstr "创建新受访者" #: appointment.php:137 msgid "Add this respondent" @@ -345,7 +345,7 @@ msgstr "无受访者" #: waitnextcase_interface2.php:54 msgid "Get a new case" -msgstr "调取新访问" +msgstr "调取新样本" #: index.php:162 msgid "End" @@ -357,7 +357,7 @@ msgstr "呼叫/挂机" #: index.php:165 msgid "Supervisor" -msgstr "调查督导员" +msgstr "督导员" #: index.php:170 msgid "Restart" @@ -369,7 +369,7 @@ msgstr "可选时间" #: index.php:298 msgid "Supervisor chat" -msgstr "调查督导员聊天室" +msgstr "与督导通话" #: info.php:56 msgid "Information" @@ -587,7 +587,7 @@ msgstr "无可呼叫电话号码" #: rs_intro.php:65 #: rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" -msgstr "受访者选项 - 中心介绍" +msgstr "受访者筛选 - 介绍" #: rs_intro.php:117 #: rs_intro_interface2.php:117 @@ -630,11 +630,11 @@ msgstr "结束电话:无法联系(此电话号码联系人目前没空:没 #: shifts.php:57 msgid "Shift List" -msgstr "时区转换列表" +msgstr "可用调查时段" #: shifts.php:80 msgid "No shifts for this project" -msgstr "该项目无时区转换" +msgstr "无可用的调查时段" #: shifts.php:82 #: shifts.php:103 @@ -643,7 +643,7 @@ msgstr "开始" #: shifts.php:101 msgid "No future shifts scheduled" -msgstr "无时区转换时刻表" +msgstr "还未设置调查时段计划" #: shifts.php:103 #: nocaseavailable.php:138 @@ -652,7 +652,7 @@ msgstr "问卷" #: rs_project_end_interface2.php:62 msgid "Respondent Selection - Project end" -msgstr "受访者选项 - 项目结束" +msgstr "受访者筛选 - 项目结束" #: rs_project_end_interface2.php:80 msgid "Call automatically ended with outcome: Complete - End case" @@ -764,19 +764,19 @@ msgstr "错误:问卷未分派样本" #: nocaseavailable.php:135 msgid "Current shifts available:" -msgstr "当前可用时区转换:" +msgstr "当前可用调查时段:" #: nocaseavailable.php:138 msgid "Shift start" -msgstr "开始时区转换" +msgstr "可用调查时段开始" #: nocaseavailable.php:138 msgid "Shift end" -msgstr "时区转换结束" +msgstr "可用调查时段结束" #: nocaseavailable.php:141 msgid "ERROR: No shifts at this time" -msgstr "错误:当前无时区转换" +msgstr "错误:当前没有调查时段(没有安排调查员轮班)" #: nocaseavailable.php:161 msgid "Call restrictions:" @@ -842,7 +842,7 @@ msgstr "备注" #: performance.php:77 msgid "This shift" -msgstr "该时区转换" +msgstr "当前调查时段" #: performance.php:78 #: performance.php:85 @@ -976,7 +976,7 @@ msgstr "被引荐的受访者没时间接受本次问卷调查" #: rs_quota_end.php:61 msgid "Respondent Selection - Project Quota End" -msgstr "受访者选项 - 项目配额结束" +msgstr "受访者筛选 - 项目配额结束" #: rs_quota_end.php:72 #: rs_quota_end.php:78 @@ -1077,7 +1077,7 @@ msgstr "呼叫调查督导员前,请等待本次呼叫应答" #: admin/systemsort.php:98 #: admin/systemsort.php:99 msgid "Monitor system wide case sorting" -msgstr "监控系统大规模访问排序" +msgstr "监控全系统访问排序" #: admin/systemsort.php:77 msgid "Running process:" @@ -1124,9 +1124,9 @@ msgid "" "complex quotas in place. If you are not experiencing any performance " "problems, it is not recommended to use this feature." msgstr "" -"系统大规模访问排序定期(使用SYSTEM_SORT_MINUTES配置指令)进行系统范围内的大规模访问排序, " -"而不是在每次电话调查员请求一个新访问的时候寻找最合适的访问。这样可以在有大量访问或复杂配额的时候提高效率。如果您没有任何访问效率方面的问题,我们不推荐您使" -"用该功能。" +"全系统访问排序定期(使用SYSTEM_SORT_MINUTES配置指令)进行系统范围内的访问排序, " +"而不是在每次电话调查员请求一个新访问的时候寻找最合适的访问对象。这样可以在有大量访问或复杂配额的时候提高效率。如果您没有任何访问效率方面的问题,我们不推荐" +"您使用本功能。" #: admin/systemsort.php:102 msgid "Outcome of last process run (if any)" @@ -1459,7 +1459,7 @@ msgid "" "Set which types of cases will be made available to each operator. Please " "note that all operators will be allowed to assign all possible outcomes to a " "case. This restricts which ones will be assigned to an operator." -msgstr "给每位电话调查员设置哪种类型的访问有效。请注意,所有电话调查员都有权给访问分派所有可能的结果。这限定了哪些访问会被分派给哪位电话调查员。" +msgstr "给每位调查员设置可访样本。请注意,每个调查员都有权给访问样本选择所有可能的结果。这里的设置可以设置各位调查员可以被分派的样本类型。" #: admin/operatorskill.php:272 #: admin/index.php:70 @@ -1512,7 +1512,7 @@ msgstr "直到" #: admin/operatorperformance.php:96 #: admin/shiftreport.php:72 msgid "Please select a shift" -msgstr "请选择一个时区转换" +msgstr "请选择一个可用调查时段" #: admin/availabilitygroup.php:70 #: admin/availabilitygroup.php:112 @@ -1549,11 +1549,11 @@ msgstr "可用组名" #: admin/shiftreport.php:61 #: admin/index.php:95 msgid "Shift reports" -msgstr "时区转换报告" +msgstr "调查时段报告" #: admin/shiftreport.php:92 msgid "Reports for this shift" -msgstr "该转换报告" +msgstr "该调查时段概况" #: admin/shiftreport.php:104 msgid "Report" @@ -1561,11 +1561,11 @@ msgstr "报告" #: admin/shiftreport.php:107 msgid "Create new report for this shift" -msgstr "给该转换创建新报告" +msgstr "创建调查时段报告" #: admin/shiftreport.php:113 msgid "Enter report for this shift" -msgstr "给该转换输入报告" +msgstr "输入调查时段报告" #: admin/shiftreport.php:117 msgid "Add report" @@ -1577,7 +1577,7 @@ msgstr "该报告在数据库中不存在" #: admin/shiftreport.php:158 msgid "Edit report for this shift" -msgstr "给该转换编辑报告" +msgstr "编辑调查时段报告" #: admin/shiftreport.php:163 msgid "Modify report" @@ -1593,7 +1593,7 @@ msgstr "问卷创建及管理" #: admin/index.php:51 msgid "Create an instrument in Limesurvey" -msgstr "在LimeSurvey中创建提示语:" +msgstr "在LimeSurvey中创建主问卷" #: admin/index.php:52 msgid "Create a new questionnaire" @@ -1605,7 +1605,7 @@ msgstr "问卷管理" #: admin/index.php:54 msgid "Administer instruments with Limesurvey" -msgstr "用LimeSurvey管理提示" +msgstr "用LimeSurvey管理主问卷" #: admin/index.php:56 msgid "Sample/List management" @@ -1613,7 +1613,7 @@ msgstr "样本/列表管理" #: admin/index.php:57 msgid "Import a sample file (in CSV form)" -msgstr "导入样本文件(CSV格式)" +msgstr "导入样本(CSV格式)" #: admin/index.php:58 msgid "Sample management" @@ -1639,7 +1639,7 @@ msgstr "电话调查员管理" #: admin/index.php:67 msgid "Add operators to the system" -msgstr "在系统中添加电话调查员" +msgstr "添加电话调查员" #: admin/index.php:69 msgid "Assign operators to questionnaires" @@ -1647,7 +1647,7 @@ msgstr "给问卷分派电话调查员" #: admin/index.php:72 msgid "Availability and shift management" -msgstr "有效时间及时区转换管理" +msgstr "受访对象可及性及访问员电访时段管理" #: admin/index.php:73 msgid "Manage availablity groups" @@ -1659,7 +1659,7 @@ msgstr "给问卷分派有效时间" #: admin/index.php:75 msgid "Shift management (add/remove)" -msgstr "时区转换管理(添加/移除)" +msgstr "调查时段管理(添加/移除)" #: admin/index.php:77 msgid "Questionnaire progress" @@ -1724,7 +1724,7 @@ msgstr "设置默认时区列表" #: admin/index.php:101 msgid "Set default shift times" -msgstr "设置默认转换时间" +msgstr "设置默认的调查时段" #: admin/index.php:102 msgid "Set call restriction times" @@ -1737,7 +1737,7 @@ msgstr "设置中心信息" #: admin/index.php:105 msgid "Start and monitor system wide case sorting" -msgstr "开始并监控系统大规模访问排序" +msgstr "开始并监控全系统访问排序" #: admin/index.php:109 msgid "VoIP" @@ -1820,7 +1820,7 @@ msgstr "电话答录机留言" #: admin/assignsample.php:193 msgid "Selection type" -msgstr "选项类型" +msgstr "受访者筛选方式" #: admin/assignsample.php:193 msgid "Unassign sample" @@ -2031,11 +2031,11 @@ msgstr "该问卷无结果记录" #: admin/outcomes.php:276 msgid "No shift reports: Add report" -msgstr "无时区转换报告:添加报告" +msgstr "无时时段报告:添加报告" #: admin/outcomes.php:276 msgid "View shift reports" -msgstr "查看时区转换报告" +msgstr "查看时段报告" #: admin/outcomes.php:276 msgid "View operator performance" @@ -2043,15 +2043,15 @@ msgstr "查看电话调查员绩效" #: admin/outcomes.php:295 msgid "No shifts defined for this questionnaire" -msgstr "该问卷未定义时区转换" +msgstr "该问卷没有设置可用调查时段" #: admin/outcomes.php:297 msgid "Shift" -msgstr "时区转换" +msgstr "调查时段(访问员轮班)" #: admin/outcomes.php:297 msgid "Shift report" -msgstr "时区转换报告" +msgstr "时段报告" #: admin/voipmonitor.php:73 #: admin/voipmonitor.php:95 @@ -2063,11 +2063,11 @@ msgstr "监控VoIP进程" msgid "" "Kill signal sent: Please wait... (Note: Process will be stalled until there " "is activity on the VoIP Server)" -msgstr "终止信号发送:请等待...(注意:进程将阻塞直到VoIP服务器有活动)" +msgstr "终止信号发送:请等待...(注意:进程将直到VoIP服务器有反应才会停止)" #: admin/voipmonitor.php:84 msgid "(requires activity on the VoIP Server to take effect)" -msgstr "(需要VoIP服务器有活动才有效)" +msgstr "(需要VoIP服务器有反应动作才有效)" #: admin/voipmonitor.php:97 msgid "Click here to begin monitoring the VoIP Process" @@ -2075,7 +2075,7 @@ msgstr "点击开始监控VoIP进程" #: admin/questionnaireprefill.php:99 msgid "Pre fill questionnaire: Set values for questionnaire to prefill" -msgstr "预设答案问卷:设置问卷预设值" +msgstr "加载问卷预填字段:设置问卷预填信息" #: admin/questionnaireprefill.php:110 msgid "Current pre fills (click to delete)" @@ -2134,12 +2134,12 @@ msgstr "重命名" #: admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" -msgstr "电话调查员查看许可" +msgstr "电话调查员浏览权限" #: admin/samplelist.php:182 msgid "" "Select which fields from this sample should be able to be viewed by operators" -msgstr "选择样本中哪些域对电话调查员可见" +msgstr "设置调查员可浏览的样本信息" #: admin/samplelist.php:187 #: admin/samplelist.php:224 @@ -2201,7 +2201,7 @@ msgstr "已添加预约" msgid "" "No such case id, or case set to a final outcome, or case currently assigned " "to an operator" -msgstr "没有所需访问编号,或所需访问已形成最终结果,或所需访问当前已分派给电话调查员" +msgstr "无此样本编号,已经完结,或已被分派给其他调查员" #: admin/bulkappointment.php:209 msgid "Result" @@ -2249,13 +2249,13 @@ msgstr "加载批量预约CSV" #: admin/addshift.php:87 #: admin/addshift.php:140 msgid "Add shifts" -msgstr "添加时区转换" +msgstr "添加调查时段" #: admin/addshift.php:88 msgid "" "You must be an operator (as well as have administrator access) to add/edit " "shifts" -msgstr "您必须是电话调查员(以及具有管理员访问权限)才可以添加/编辑时区转换" +msgstr "您必须是电话调查员(以及具有管理员访问权限)才可以添加/编辑调查时段" #: admin/addshift.php:151 #: admin/availability.php:106 @@ -2266,13 +2266,13 @@ msgstr "您的数据库没有安装时区,请看这里查看详细信息" #: admin/addshift.php:163 msgid "Add shifts in your Time Zone" -msgstr "在您的时区内添加时区转换" +msgstr "在您的时区内添加可用调查时段" #: admin/addshift.php:166 msgid "" "Shifts allow you to restrict appointments being made, and interviewers to " "working on a particlar project at defined times." -msgstr "时区转换允许您将特定项目的预约、访问员的工作限定在规定的时间段内。" +msgstr "可用调查时段允许您将特定项目的预约、访问员的工作限定在规定的时间段内。" #: admin/addshift.php:173 msgid "Select year" @@ -2290,7 +2290,7 @@ msgstr "日" #: admin/addshift.php:238 msgid "Use shift?" -msgstr "使用时区转换?" +msgstr "使用调查时段?" #: admin/addshift.php:263 msgid "Submit changes" @@ -2410,7 +2410,7 @@ msgstr "FreePBX已重新加载以启用新的VoIP分机" #: admin/operators.php:174 msgid "" "Could not add operator. There may already be an operator of this name:" -msgstr "不能添加电话调查员。可能调查员姓名已存在:" +msgstr "无法添加调查员。系统中可能已有同名访问员:" #: admin/operators.php:182 #: admin/operators.php:203 @@ -2419,7 +2419,7 @@ msgstr "添加电话调查员" #: admin/operators.php:204 msgid "Adding an operator here will give the user the ability to call cases" -msgstr "在此添加电话调查员会给新调查员呼叫受访者的访问功能" +msgstr "在此添加电话调查员,将允许新调查员呼叫受访者" #: admin/operators.php:204 msgid "Assign Operator to Questionnaire" @@ -2525,32 +2525,32 @@ msgstr "问卷名:" #: admin/new.php:133 msgid "Select limesurvey instrument:" -msgstr "选择LimeSurvey提示语:" +msgstr "选择LimeSurvey主问卷:" #: admin/new.php:147 #: admin/new.php:171 msgid "Existing instrument:" -msgstr "已存在的提示语:" +msgstr "已有问卷工具:" #: admin/new.php:156 msgid "Respondent selection type:" -msgstr "受访者选项类型:" +msgstr "受访者筛选方式" #: admin/new.php:157 msgid "No respondent selection (go straight to questionnaire)" -msgstr "无受访者选项(直接开始问卷)" +msgstr "不进行受访者筛选(直接开始问卷)" #: admin/new.php:157 msgid "Use basic respondent selection text (below)" -msgstr "使用基本的受访者选项文本(如下)" +msgstr "使用基本的受访者筛选文本(如下)" #: admin/new.php:195 msgid "Restrict appointments to shifts?" -msgstr "将预约限定在时区转换内?" +msgstr "将预约限定在调查时段内?" #: admin/new.php:196 msgid "Restrict work to shifts?" -msgstr "将访问限定在时区转换内?" +msgstr "将访问限定在调查时段内?" #: admin/new.php:197 msgid "Questionnaire for testing only?" @@ -2590,15 +2590,15 @@ msgstr "受访者自助完成问卷后的跳转链接(必要)" #: admin/new.php:217 msgid "Respondent selection introduction:" -msgstr "受访者选项说明:" +msgstr "受访者筛选说明:" #: admin/new.php:218 msgid "Respondent selection project introduction:" -msgstr "受访者选项项目说明:" +msgstr "受访者筛选-项目说明:" #: admin/new.php:219 msgid "Respondent selection callback (already started questionnaire):" -msgstr "受访者选项复查(已开始的问卷):" +msgstr "受访者筛选回叫(已开始的问卷):" #: admin/new.php:220 msgid "Message to leave on an answering machine:" @@ -3032,17 +3032,17 @@ msgstr "输入要添加的客户的时区:" #: admin/shifttemplate.php:82 msgid "Modify shift template" -msgstr "修改时区转换模板" +msgstr "修改调查时段模板" #: admin/shifttemplate.php:96 msgid "" "Enter standard shift start and end times for each day of the week in local " "time" -msgstr "按当地时间输入一周每天的标准起止时间转换" +msgstr "按当地时间输入一周每天的标准调查起止时段" #: admin/shifttemplate.php:135 msgid "Save changes to shifts" -msgstr "保存对时区转换的修改" +msgstr "保存对调查时段的修改" #: admin/casestatus.php:88 #: admin/casestatus.php:89 @@ -3071,7 +3071,7 @@ msgstr "分派给电话调查员" #: admin/casestatus.php:119 msgid "Choose operator to assign selected cases to" -msgstr "选择电话调查员分派已选的访问" +msgstr "将选定的样本分给哪个调查员,请选择" #: admin/casestatus.php:122 msgid "Assign cases to operator queue" @@ -3084,8 +3084,7 @@ msgid "" "operator, it will override the normal scheduling process and call them as " "soon as the operator is available." msgstr "" -"按问卷和样本列出访问,并允许将访问分派给指定的电话调查员以立即成为下一个待呼叫访问。如果您将访问分派给电话调查员,将优先于正常的访问调度过程,当调查员可以" -"呼叫时,立即呼叫分派的访问。" +"按问卷和样本列出样本,可以设置样本被呼叫的顺序。如果您将样本分派给特定调查员,该将优先于正常的访问调度过程,调查员将优先呼叫被分派的样本。" #: admin/dataoutput.php:202 msgid "Download data for this questionnaire via Limesurvey" @@ -3187,16 +3186,16 @@ msgid "" "executable. When the file is executed, it will run the voip.exe program with " "the correct connection details to connect the operator to the VoIP server" msgstr "" -"给每个用户下载该文件,并保存在与可执行程序voip.exe相同的文件夹内。当该文件执行时,会启动voip.exe程序,使用正确的连接信息将电话调查员连接到" -"VoIP服务器" +"为每个用户下载列表中的脚本文件。同时下载客户端文件voip.exe。两者保存在同一文件夹内。执行本脚本文件将启动voip.exe程序,并自动利用其中的连接" +"信息将电话调查员连接到VoIP服务器" #: admin/operatorlist.php:299 msgid "Download Windows VoIP Executable" -msgstr "下载Windows下的VoIP可执行文件" +msgstr "VoIP客户端(Windows)" #: admin/operatorlist.php:300 msgid "Download Linux VoIP Executable" -msgstr "下载Linux下的VoIP可执行文件" +msgstr "VoIP客户端(Linux)" #: admin/operatorlist.php:305 msgid "Enable/Disable VoIP" @@ -3204,11 +3203,11 @@ msgstr "启用/禁用VoIP" #: admin/operatorlist.php:306 msgid "Windows VoIP" -msgstr "Windows下的VoIP" +msgstr "VoIP Windows客户端" #: admin/operatorlist.php:307 msgid "*nix VoIP" -msgstr "*nix VoIP" +msgstr "VoIP L/Unix等客户端" #: admin/samplecallattempts.php:107 msgid "Number of cases" @@ -3248,11 +3247,11 @@ msgstr "问卷列表" #: admin/questionnairelist.php:329 msgid "Edit instrument in Limesurvey" -msgstr "在LimeSurvey中编辑提示" +msgstr "在LimeSurvey中编辑主问卷" #: admin/questionnairelist.php:362 msgid "Edit respondent selection instrument in Limesurvey" -msgstr "在LimeSurvey中编辑受访者选项提示" +msgstr "在LimeSurvey中编辑受访者筛选工具" #: admin/questionnairelist.php:365 msgid "Update Questionnaire" @@ -3260,7 +3259,7 @@ msgstr "更新问卷" #: admin/questionnairelist.php:384 msgid "Any collected data and the limesurvey instrument will NOT be deleted" -msgstr "任何收集的数据和LimeSurvey提示都不会被删除" +msgstr "任何收集的数据和LimeSurvey主问卷都不会被删除" #: admin/questionnairelist.php:385 msgid "" @@ -3356,7 +3355,7 @@ msgstr "更新访问有效时间" #: admin/supervisor.php:423 msgid "Assign this case to operator (will appear as next case for them)" -msgstr "将该访问分派给电话调查员(会作为下一个访问出现在调查员访问页面)" +msgstr "将该样本分派给电话调查员(作为下一个访问样本出现在调查员的访问页面)" #: admin/supervisor.php:435 msgid "Assign this case to operator" @@ -3406,7 +3405,7 @@ msgstr "时区:" #: functions/functions.calendar.php:328 msgid "Shift from:" -msgstr "转换自:" +msgstr "调查时段为:" #: functions/functions.calendar.php:335 msgid "Start Time" @@ -3418,7 +3417,7 @@ msgstr "结束时间" #: functions/functions.performance.php:469 msgid "No shift" -msgstr "无转换" +msgstr "无可用调查时段" #: functions/functions.performance.php:492 msgid "Total completions" @@ -3426,28 +3425,28 @@ msgstr "完成总数" #: functions/functions.performance.php:521 msgid "Completions this shift" -msgstr "本次转换完成数" +msgstr "本调查时段完成数" #: functions/functions.performance.php:544 #: functions/functions.performance.php:590 msgid "No previous shift" -msgstr "无先前转换" +msgstr "没有更早的调查时段了" #: functions/functions.performance.php:564 msgid "Completions on the previous shift" -msgstr "先前转换完成数" +msgstr "此前调查时段的完成数" #: functions/functions.performance.php:611 msgid "Completions this time on the previous shift" -msgstr "本次先前转换完成数" +msgstr "以往调查时段的相应完成数" #: functions/functions.performance.php:629 msgid "No calls made for this shift" -msgstr "本次转换无呼叫" +msgstr "该调查时段没有进行呼叫" #: functions/functions.performance.php:631 msgid "Top CPH for this shift" -msgstr "本次转换最高呼叫频率" +msgstr "本时段最高的小时完成量" #: functions/functions.performance.php:648 msgid "No calls made for this project" @@ -3455,7 +3454,7 @@ msgstr "该项目无呼叫" #: functions/functions.performance.php:650 msgid "Top CPH" -msgstr "最高呼叫频率" +msgstr "最高小时完成量" #: functions/functions.import.php:89 msgid "Duplicate name" @@ -3524,7 +3523,7 @@ msgstr "重新加载失败,FreePBX无法连接到asterisk管理员界面" msgid "" "Could not reload the FOP operator panel server using the bounce_op.sh " "script. Configuration changes may not be reflected in the panel display." -msgstr "无法用bounce_op.sh脚本重新加载FOP电话调查员版面服务器。配置面板可能不能改变系统配置。" +msgstr "无法用bounce_op.sh脚本重新加载FOP电话调查员控制面板。面板可能没有反映系统配置修改。" #: functions/functions.freepbx.php:174 #, php-format @@ -3583,7 +3582,7 @@ msgstr "问卷及样本选择:" #: include/limesurvey/admin/browse.php:792 msgid "All queXS questionnaires and samples associated with this instrument" -msgstr "与该提示语相关的所有queXS问卷和样本" +msgstr "所有与该主问卷相关的queXS问卷和样本" #: include/limesurvey/admin/exportresults.php:257 msgid "Token" From 50025ca88476bf11aedc3dc25c0b1bbbb2bad501 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 17 Dec 2014 12:45:22 +1100 Subject: [PATCH 12/34] Fixed bug when limiting to time slots (select smallest number of call attempts to compare to) Removed fixed timezone from supervisor function --- admin/supervisor.php | 9 +++++---- admin/systemsortprocess.php | 5 +++-- functions/functions.operator.php | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/admin/supervisor.php b/admin/supervisor.php index 77d99994..8c9fb0b1 100644 --- a/admin/supervisor.php +++ b/admin/supervisor.php @@ -331,11 +331,12 @@ if ($case_id != false) print "

    " . T_("Call attempts by timeslot") . "

    "; $sql = "SELECT ag.description, (SELECT COUNT(*) FROM availability as a, `call_attempt` as ca WHERE ca.case_id = c.case_id AND a.availability_group_id = ag.availability_group_id - AND (a.day_of_week = DAYOFWEEK(CONVERT_TZ(ca.start,'UTC','Australia/Victoria')) - AND TIME(CONVERT_TZ(ca.start, 'UTC' , 'Australia/Victoria')) >= a.start - AND TIME(CONVERT_TZ(ca.start, 'UTC' ,'Australia/Victoria')) <= a.end)) as cou - FROM availability_group as ag, `case` as c, `questionnaire_timeslot` as qt + AND (a.day_of_week = DAYOFWEEK(CONVERT_TZ(ca.start,'UTC',s.Time_zone_name)) + AND TIME(CONVERT_TZ(ca.start, 'UTC' , s.Time_zone_name)) >= a.start + AND TIME(CONVERT_TZ(ca.start, 'UTC' , s.Time_zone_name)) <= a.end)) as cou + FROM availability_group as ag, `case` as c, `questionnaire_timeslot` as qt, sample as s WHERE c.case_id = '$case_id' + AND s.sample_id = c.sample_id AND qt.questionnaire_id = c.questionnaire_id AND ag.availability_group_id = qt.availability_group_id"; xhtml_table($db->GetAll($sql),array('description','cou'),array(T_("Time slot"),T_("Call attempts"))); diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index 2dfa41a5..b14499e4 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -247,7 +247,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin WHERE c.current_operator_id IS NULL AND c.questionnaire_id = '$questionnaire_id' AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) - AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = (SELECT COUNT(call_attempt.call_attempt_id) FROM `call_attempt`, questionnaire_timeslot, availability WHERE call_attempt.case_id = c.case_id AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND (availability.availability_group_id = questionnaire_timeslot.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) GROUP BY availability.availability_group_id ORDER BY COUNT(call_attempt.call_attempt_id) ASC LIMIT 1))) + AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) @@ -258,9 +258,10 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0 GROUP BY c.case_id ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, a.start ASC, qsep.priority DESC"; - + $rs = $db->GetAll($sql); + $i = 1; foreach ($rs as $r) { diff --git a/functions/functions.operator.php b/functions/functions.operator.php index 1ebfed04..588e7864 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -628,7 +628,7 @@ function get_case_id($operator_id, $create = false) JOIN operator_skill as os on (os.operator_id = op.operator_id and os.outcome_type_id = ou.outcome_type_id) WHERE c.current_operator_id IS NULL AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) - AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = (SELECT COUNT(call_attempt.call_attempt_id) FROM `call_attempt`, questionnaire_timeslot, availability WHERE call_attempt.case_id = c.case_id AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND (availability.availability_group_id = questionnaire_timeslot.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) GROUP BY availability.availability_group_id ORDER BY COUNT(call_attempt.call_attempt_id) ASC LIMIT 1))) + AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) From c7f0ab00873d368719dc7e41c766cde1fb2f9427 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 17 Dec 2014 12:53:57 +1100 Subject: [PATCH 13/34] Fixed bug: Where availability or timeslots set, appointments are ignored --- admin/systemsortprocess.php | 4 ++-- functions/functions.operator.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index b14499e4..ac79a429 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -246,8 +246,8 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id) WHERE c.current_operator_id IS NULL AND c.questionnaire_id = '$questionnaire_id' - AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) - AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) + AND ((apn.appointment_id IS NOT NULL) OR casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) + AND ((apn.appointment_id IS NOT NULL) OR qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) diff --git a/functions/functions.operator.php b/functions/functions.operator.php index 588e7864..e5cfb533 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -627,8 +627,8 @@ function get_case_id($operator_id, $create = false) LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id) JOIN operator_skill as os on (os.operator_id = op.operator_id and os.outcome_type_id = ou.outcome_type_id) WHERE c.current_operator_id IS NULL - AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) - AND (qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) + AND ((apn.appointment_id IS NOT NULL) OR casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) + AND ((apn.appointment_id IS NOT NULL) OR qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) From e6b125323b78f43177cd095a91e1f9d73de864a9 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Thu, 18 Dec 2014 15:47:56 +1100 Subject: [PATCH 14/34] Replace DEFAULT_TIME_ZONE in config file with administrative configuration --- CHANGELOG | 2 ++ admin/clients.php | 2 +- admin/operators.php | 2 +- admin/timezonetemplate.php | 16 +++++++++++++++- config.default.php | 6 ------ config.inc.local.php.example | 5 ----- database/quexs.sql | 4 ++++ functions/functions.calendar.php | 2 +- functions/functions.import.php | 2 +- referral.php | 2 +- 10 files changed, 26 insertions(+), 17 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b0d879ac..9364b74b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -9,6 +9,8 @@ CREATE TABLE `questionnaire_timeslot` ( PRIMARY KEY ( `questionnaire_id` , `availability_group_id` ) ) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci; +INSERT INTO `setting` (`setting_id`,`field`,`value`) +VALUES (NULL , 'DEFAULT_TIME_ZONE', 's:18:"Australia/Victoria";'); queXS 1.10.4 - Changes since 1.10.3 diff --git a/admin/clients.php b/admin/clients.php index 68f46f2c..ef450b1b 100644 --- a/admin/clients.php +++ b/admin/clients.php @@ -111,7 +111,7 @@ if ($a)

    -

    "; display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",DEFAULT_TIME_ZONE)); ?>

    +

    "; display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",get_setting("DEFAULT_TIME_ZONE"))); ?>

    " />

    diff --git a/admin/operators.php b/admin/operators.php index d56054db..9e7c1886 100644 --- a/admin/operators.php +++ b/admin/operators.php @@ -211,7 +211,7 @@ $ers = $db->GetAll($sql);

    -

    "; display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",DEFAULT_TIME_ZONE)); ?>

    +

    "; display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",get_setting("DEFAULT_TIME_ZONE"))); ?>

    "; display_chooser($ers,"extension_id","extension_id",true,false,false,false); ?>

    diff --git a/admin/timezonetemplate.php b/admin/timezonetemplate.php index 2cd472be..963de5bd 100644 --- a/admin/timezonetemplate.php +++ b/admin/timezonetemplate.php @@ -58,6 +58,11 @@ include("../functions/functions.input.php"); global $db; +if (isset($_POST['dtime_zone'])) +{ + set_setting('DEFAULT_TIME_ZONE', $_POST['dtime_zone']); +} + if (isset($_GET['time_zone'])) { //need to add sample to questionnaire @@ -86,8 +91,10 @@ if (isset($_GET['tz'])) xhtml_head(T_("Add/Remove Timezones"),true,array("../css/shifts.css"),array("../js/window.js")); +$dtz = get_setting("DEFAULT_TIME_ZONE"); + $sql = "SELECT name as value, name as description, - CASE WHEN name LIKE '" . DEFAULT_TIME_ZONE . "' THEN 'selected=\'selected\'' ELSE '' END AS selected + CASE WHEN name LIKE '$dtz' THEN 'selected=\'selected\'' ELSE '' END AS selected FROM mysql.time_zone_name"; $tzl = $db->GetAll($sql); @@ -97,6 +104,13 @@ if (empty($tzl) || !$tzl) print ""; } +print "

    " . T_("Set default timezone") . ":

    "; + ?> +

    + + "/>

    +
    + " . T_("Click to remove a Timezone from the default list") . ""; diff --git a/config.default.php b/config.default.php index 9bae7b71..61317e0b 100644 --- a/config.default.php +++ b/config.default.php @@ -40,12 +40,6 @@ */ -/** - * The default time zone - */ -if (!defined('DEFAULT_TIME_ZONE')) define('DEFAULT_TIME_ZONE', 'Australia/Victoria'); - - /** * Date time format for displaying * diff --git a/config.inc.local.php.example b/config.inc.local.php.example index 542ab098..bd8ef41b 100644 --- a/config.inc.local.php.example +++ b/config.inc.local.php.example @@ -38,11 +38,6 @@ * */ -/** - * The default time zone - */ -define('DEFAULT_TIME_ZONE', 'Australia/Victoria'); - /** * Flag for VoIP with Asterisk to be enabled or not */ diff --git a/database/quexs.sql b/database/quexs.sql index 9bf132ac..1e443b29 100644 --- a/database/quexs.sql +++ b/database/quexs.sql @@ -1787,6 +1787,10 @@ CREATE TABLE `setting` ( -- Dumping data for table `setting` -- +INSERT INTO `setting` (`setting_id`, `field`, `value`) VALUES +(1, 'DEFAULT_TIME_ZONE', 's:18:"Australia/Victoria";'), +(2, 'systemsort', 'b:0;'); + -- -------------------------------------------------------- diff --git a/functions/functions.calendar.php b/functions/functions.calendar.php index 057ac75c..5c3f3de3 100644 --- a/functions/functions.calendar.php +++ b/functions/functions.calendar.php @@ -232,7 +232,7 @@ function display_respondent_form($respondent_id = false,$case_id = false) /** * Use the default time zone if none other to work with */ - $rzone = DEFAULT_TIME_ZONE; + $rzone = get_setting("DEFAULT_TIME_ZONE"); $fn = ""; $ln = ""; diff --git a/functions/functions.import.php b/functions/functions.import.php index 92fe97cb..60514330 100644 --- a/functions/functions.import.php +++ b/functions/functions.import.php @@ -270,7 +270,7 @@ function import_file($file, $description, $fields, $firstrow = 2) //first find the timezone - $tzone = DEFAULT_TIME_ZONE; //set this to default + $tzone = get_setting("DEFAULT_TIME_ZONE"); //set this to default /** * Determine time zone from all possible sources in sample_var_type table diff --git a/referral.php b/referral.php index 4cb99cf2..7f08adfe 100644 --- a/referral.php +++ b/referral.php @@ -101,7 +101,7 @@ if (isset($_POST['submit'])) $rs = $db->GetAll($sql); - $tzone = DEFAULT_TIME_ZONE; //set this to default + $tzone = get_setting("DEFAULT_TIME_ZONE"); //set this to default //Get the timezone foreach($rs as $r) From 5331e5ce47a4735bef6100c1bd9481fa19132eef Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Thu, 18 Dec 2014 16:06:13 +1100 Subject: [PATCH 15/34] Fixes lp:1394818 - Quota completions not displayed above 100% --- functions/functions.operator.php | 1 - 1 file changed, 1 deletion(-) diff --git a/functions/functions.operator.php b/functions/functions.operator.php index e5cfb533..0d7226dd 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -1665,7 +1665,6 @@ function update_row_quota($questionnaire_id,$case_id = false) FROM questionnaire_sample_quota_row as qsq, questionnaire as q WHERE qsq.questionnaire_id = '$questionnaire_id' AND q.questionnaire_id = '$questionnaire_id' - AND qsq.quota_reached != '1' AND qsq.lime_sgqa != -1"; $rs = $db->GetAll($sql); From 54660f88eb5e707e1b1c1f956a11c1c97e39ec06 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Thu, 18 Dec 2014 16:18:12 +1100 Subject: [PATCH 16/34] Fixes lp:1394819 Automatic dialling doesn't work when using "No respondent selection" --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index d450d16e..20a70b30 100644 --- a/index.php +++ b/index.php @@ -191,7 +191,7 @@ if ($ca) } } -if (!is_respondent_selection($operator_id)) +if (!is_respondent_selection($operator_id) && AUTO_DIAL_SECONDS == false) $data = get_limesurvey_url($operator_id); else $data = get_respondentselection_url($operator_id); From d6c41548cd955d6a5333c3f027c2fa9d5a2f3791 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Fri, 19 Dec 2014 10:22:16 +1100 Subject: [PATCH 17/34] Updated translation template (default timezone feature) --- locale/quexs.pot | 78 ++++++++++++++++++++++++++---------------------- 1 file changed, 43 insertions(+), 35 deletions(-) diff --git a/locale/quexs.pot b/locale/quexs.pot index 28257234..38c8abf8 100644 --- a/locale/quexs.pot +++ b/locale/quexs.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: queXS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-17 11:16+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: \n" "Last-Translator: Adam Zammit \n" "Language-Team: \n" @@ -24,7 +24,7 @@ msgid "No calls ever made" msgstr "" #: callhistory.php:83 calllist.php:84 casenote.php:110 -#: admin/supervisor.php:320 admin/supervisor.php:360 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "" @@ -333,7 +333,7 @@ msgstr "" #: admin/operatorperformance.php:81 admin/operatorperformance.php:104 #: admin/shiftreport.php:104 admin/outcomes.php:187 #: admin/extensionstatus.php:200 admin/operatorlist.php:293 -#: admin/supervisor.php:320 admin/supervisor.php:360 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "" @@ -662,12 +662,12 @@ msgstr "" msgid "Value" msgstr "" -#: availability.php:123 admin/supervisor.php:416 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 admin/supervisor.php:439 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -795,15 +795,15 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 casenote.php:105 admin/supervisor.php:367 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "" -#: casenote.php:108 admin/supervisor.php:358 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "" -#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:360 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "" @@ -890,8 +890,8 @@ msgid "Ending case now" msgstr "" #: nocallavailable.php:203 admin/systemsortprocess.php:194 -#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:322 -#: admin/systemsortprocess.php:324 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -1235,7 +1235,7 @@ msgid "Completed case closing" msgstr "" #: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 -#: admin/systemsortprocess.php:322 admin/systemsortprocess.php:324 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" @@ -1247,11 +1247,11 @@ msgstr "" msgid "Sorting cases for " msgstr "" -#: admin/systemsortprocess.php:322 +#: admin/systemsortprocess.php:323 msgid "Completed sort" msgstr "" -#: admin/systemsortprocess.php:324 +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1301,8 +1301,8 @@ msgstr "" #: admin/displayappointments.php:229 admin/displayappointments.php:243 #: admin/questionnairelist.php:396 admin/questionnairelist.php:407 -#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:346 -#: admin/supervisor.php:360 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "" @@ -1487,7 +1487,7 @@ msgstr "" msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 admin/supervisor.php:341 +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 msgid "Time slot" msgstr "" @@ -2115,8 +2115,8 @@ msgid "Save changes" msgstr "" #: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 -#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:461 -#: admin/supervisor.php:467 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2212,7 +2212,7 @@ msgstr "" #: admin/addshift.php:151 admin/availability.php:106 #: admin/shifttemplate.php:93 admin/callrestrict.php:93 -#: admin/timezonetemplate.php:97 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -3242,23 +3242,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3278,7 +3286,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 admin/supervisor.php:396 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3302,46 +3310,46 @@ msgstr "" msgid "Call attempts by timeslot" msgstr "" -#: admin/supervisor.php:341 +#: admin/supervisor.php:342 msgid "Call attempts" msgstr "" -#: admin/supervisor.php:355 include/limesurvey/admin/exportresults.php:262 +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 #: include/limesurvey/admin/exportresults.php:613 #: include/limesurvey/admin/exportresults.php:614 #: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:377 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:379 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:383 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:433 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:444 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:456 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:462 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:475 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" From fb8f2eba702e779143744b997293c2e3b51dfdbb Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Fri, 19 Dec 2014 15:33:26 +1100 Subject: [PATCH 18/34] Updated changelog for 1.11.0 release --- CHANGELOG | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 9364b74b..03b51671 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,20 @@ queXS 1.11.0 - Changes since 1.10.4 +New Feature: System sort on a questionnaire by questionnaire basis +New Feature: Time slots for cases (make sure cases are called over specified timeslots equally) +New Feature: Ability to disable and enable new records being drawn from a sample +New Feature: Default timezone can be set in Administrative interface instead of config file + +Fixed Bug: lp:1394819 Automatic dialling doesn't work when using "No respondent selection" +Fixed Bug: lp:1394818 - Quota completions not displayed above 100% +Fixed Bug: Operator extension not clearing correctly at end of work +Fixed Bug: Notices generated when running index_update.php +Fixed Bug: lp:1362415 Use of eregi and split are deprecated +Fixed Bug: lp:1362418 - Cannot originate calls on Asterisk 11 + +Translations: Updated from Launchpad. Thank you! + +Database updates: ALTER TABLE `questionnaire_sample` ADD `allow_new` TINYINT( 1 ) NOT NULL DEFAULT '1'; From 0cffc02657143bef3785468ceef2fc66801c86a2 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Fri, 9 Jan 2015 14:49:39 +1100 Subject: [PATCH 19/34] Fix error in translation where thinks it is a wildcard --- locale/quexs.pot | 2 -- locale/ru/LC_MESSAGES/ru.po | 2 -- locale/zh/LC_MESSAGES/zh.po | 2 -- 3 files changed, 6 deletions(-) diff --git a/locale/quexs.pot b/locale/quexs.pot index 38c8abf8..1b402e5d 100644 --- a/locale/quexs.pot +++ b/locale/quexs.pot @@ -205,7 +205,6 @@ msgid "You are: " msgstr "" #: rs_callback_interface2.php:80 rs_callback.php:80 -#, php-format msgid "% complete" msgstr "" @@ -1889,7 +1888,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" diff --git a/locale/ru/LC_MESSAGES/ru.po b/locale/ru/LC_MESSAGES/ru.po index c2871690..0e19255d 100644 --- a/locale/ru/LC_MESSAGES/ru.po +++ b/locale/ru/LC_MESSAGES/ru.po @@ -218,7 +218,6 @@ msgid "You are: " msgstr "Вы: " #: rs_callback_interface2.php:80 -#, php-format msgid "% complete" msgstr "" @@ -1967,7 +1966,6 @@ msgid "Search within this sample" msgstr "Поиск по Списку контактов" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" diff --git a/locale/zh/LC_MESSAGES/zh.po b/locale/zh/LC_MESSAGES/zh.po index 0e4ce176..1e794786 100644 --- a/locale/zh/LC_MESSAGES/zh.po +++ b/locale/zh/LC_MESSAGES/zh.po @@ -217,7 +217,6 @@ msgid "You are: " msgstr "您是: " #: rs_callback_interface2.php:80 -#, php-format msgid "% complete" msgstr "" @@ -1920,7 +1919,6 @@ msgid "Search within this sample" msgstr "在该样本中查询" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" From 12ee63eb85fb63d62667494c6c587a36ee23c210 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 28 Jan 2015 13:00:50 +1100 Subject: [PATCH 20/34] Fixes Bug lp:141380 System sort process fails when quotas enabled and limesurvey instrument de-activated --- functions/functions.limesurvey.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/functions/functions.limesurvey.php b/functions/functions.limesurvey.php index 200c7544..71682d03 100644 --- a/functions/functions.limesurvey.php +++ b/functions/functions.limesurvey.php @@ -291,6 +291,16 @@ function limesurvey_quota_replicate_completions($lime_sid,$questionnaire_id,$sam { global $db; + $sql = "SELECT COUNT(*) + FROM information_schema.tables + WHERE table_schema = 'quexs' + AND table_name = '" . LIME_PREFIX . "survey_$lime_sid'"; + + $rs = $db->GetOne($sql); + + if ($rs != 1) + return false; + $sql = "SELECT count(*) as c FROM " . LIME_PREFIX . "survey_$lime_sid as s JOIN `case` as c ON (c.questionnaire_id = '$questionnaire_id') @@ -390,6 +400,16 @@ function limesurvey_quota_completions($lime_sgqa,$lime_sid,$questionnaire_id,$sa { global $db; + $sql = "SELECT COUNT(*) + FROM information_schema.tables + WHERE table_schema = 'quexs' + AND table_name = '" . LIME_PREFIX . "survey_$lime_sid'"; + + $rs = $db->GetOne($sql); + + if ($rs != 1) + return false; + $sql = "SELECT count(*) as c FROM " . LIME_PREFIX . "survey_$lime_sid as s JOIN `case` as c ON (c.questionnaire_id = '$questionnaire_id') From fd89d3917e24d36488fabcc9a16d2c6e5e4b8ab8 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 28 Jan 2015 14:34:28 +1100 Subject: [PATCH 21/34] Fixed Bug lp:1412389 removed language restriction --- admin/new.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/admin/new.php b/admin/new.php index ee265900..84c9a4e3 100644 --- a/admin/new.php +++ b/admin/new.php @@ -158,8 +158,7 @@ else GetAll($sql); From a90b59bd6858c04c81fe329244b238b2ba038eeb Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 28 Jan 2015 14:44:32 +1100 Subject: [PATCH 22/34] Fixed Bug lp:1411703 Asign cases even with sample disabled and sample unassigned from questionnaire --- admin/casestatus.php | 5 +++-- functions/functions.display.php | 10 ++++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/admin/casestatus.php b/admin/casestatus.php index 29fff0bb..83a199f3 100644 --- a/admin/casestatus.php +++ b/admin/casestatus.php @@ -96,7 +96,8 @@ function case_status_report($questionnaire_id = false, $sample_id = false, $outc JOIN questionnaire as q ON (q.questionnaire_id = c.questionnaire_id and q.enabled = 1) JOIN outcome as o ON (o.outcome_id = c.current_outcome_id AND o.outcome_type_id = 1) JOIN sample as s ON (s.sample_id = c.sample_id $s) - JOIN sample_import as si ON (s.import_id = si.sample_import_id) + JOIN sample_import as si ON (s.import_id = si.sample_import_id AND si.enabled = 1) + JOIN questionnaire_sample as qs ON (qs.questionnaire_id = q.questionnaire_id AND qs.sample_import_id = s.import_id) LEFT JOIN `call` as ca ON (ca.call_id = c.last_call_id) LEFT JOIN outcome as co ON (co.outcome_id = ca.outcome_id) LEFT JOIN case_queue as cq ON (cq.case_id = c.case_id) @@ -207,7 +208,7 @@ $outcome_id = false; print ""; display_questionnaire_chooser($questionnaire_id); print ""; -display_sample_chooser($questionnaire_id,$sample_import_id); +display_sample_chooser($questionnaire_id,$sample_import_id,false); if ($questionnaire_id) case_status_report($questionnaire_id,$sample_import_id,$outcome_id); diff --git a/functions/functions.display.php b/functions/functions.display.php index 9a009141..7046caa5 100644 --- a/functions/functions.display.php +++ b/functions/functions.display.php @@ -119,15 +119,21 @@ function display_shift_chooser($questionnaire_id, $shift_id = false) * * @param int $questionnaire_id The questionnaire id * @param int|bool $sample_import_id The sample import id or false if none selected + * @param bool $disabled Display disabled samples? (default is true) */ -function display_sample_chooser($questionnaire_id, $sample_import_id = false) +function display_sample_chooser($questionnaire_id, $sample_import_id = false, $disabled = true) { global $db; + $s = ""; + + if (!$disabled) + $s = " AND si.enabled = 1 "; + $sql = "SELECT s.sample_import_id,si.description,CASE WHEN s.sample_import_id = '$sample_import_id' THEN 'selected=\'selected\'' ELSE '' END AS selected FROM questionnaire_sample as s, sample_import as si WHERE s.questionnaire_id = '$questionnaire_id' - AND s.sample_import_id = si.sample_import_id"; + AND s.sample_import_id = si.sample_import_id $s"; $rs = $db->GetAll($sql); From 62ca8c9cba3ae4bec63f72b9505b51f6db93ebe4 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 28 Jan 2015 15:14:04 +1100 Subject: [PATCH 23/34] Fixed Bug lp:1410503 required URLto the CKeditor installation directory --- admin/centreinfo.php | 1 + admin/new.php | 1 + admin/questionnairelist.php | 1 + 3 files changed, 3 insertions(+) diff --git a/admin/centreinfo.php b/admin/centreinfo.php index e7b9fa63..2c014ae9 100644 --- a/admin/centreinfo.php +++ b/admin/centreinfo.php @@ -53,6 +53,7 @@ include("../include/ckeditor/ckeditor.php"); global $db; $CKEditor = new CKEditor(); +$CKEditor->basePath = "../include/ckeditor/"; if (isset($_POST['information'])) { diff --git a/admin/new.php b/admin/new.php index 84c9a4e3..add4bff5 100644 --- a/admin/new.php +++ b/admin/new.php @@ -172,6 +172,7 @@ if (!empty($surveys)) } $CKEditor = new CKEditor(); +$CKEditor->basePath = "../include/ckeditor/"; $ckeditorConfig = array("toolbar" => array(array("tokens","-","Source"), array("Cut","Copy","Paste","PasteText","PasteFromWord","-","Print","SpellChecker"), diff --git a/admin/questionnairelist.php b/admin/questionnairelist.php index b8a01b0f..d9c37803 100644 --- a/admin/questionnairelist.php +++ b/admin/questionnairelist.php @@ -282,6 +282,7 @@ if (isset($_GET['modify'])) $questionnaire_id = intval($_GET['modify']); $CKEditor = new CKEditor(); + $CKEditor->basePath = "../include/ckeditor/"; $ckeditorConfig = array("toolbar" => array(array("tokens","-","Source"), array("Cut","Copy","Paste","PasteText","PasteFromWord","-","Print","SpellChecker"), From 34802a37a737f11692a6ce658e947ee24581f889 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Fri, 6 Feb 2015 11:49:30 +1100 Subject: [PATCH 24/34] Fixed bug: Quota priority not able to override sort of last call made --- admin/systemsortprocess.php | 2 +- functions/functions.operator.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index ac79a429..f043c104 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -257,7 +257,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin AND ((apn.appointment_id IS NOT NULL) or qs.call_max = 0 or ((SELECT count(*) FROM `call` WHERE case_id = c.case_id) < qs.call_max)) AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0 GROUP BY c.case_id - ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, a.start ASC, qsep.priority DESC"; + ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, qsep.priority DESC, a.start ASC"; $rs = $db->GetAll($sql); diff --git a/functions/functions.operator.php b/functions/functions.operator.php index 0d7226dd..d7a31d47 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -638,7 +638,7 @@ function get_case_id($operator_id, $create = false) AND ((apn.appointment_id IS NOT NULL) or qs.call_max = 0 or ((SELECT count(*) FROM `call` WHERE case_id = c.case_id) < qs.call_max)) AND (apn.require_operator_id IS NULL OR apn.require_operator_id = '$operator_id') AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0 - ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, a.start ASC, qsep.priority DESC + ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, qsep.priority DESC, a.start ASC LIMIT 1"; //apn.appointment_id contains the id of an appointment if we are calling on an appointment From 78a1cfc35b96d5fef58e627a69df33efcdfd9f26 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 9 Feb 2015 11:56:52 +1100 Subject: [PATCH 25/34] Updated CHANGELOG for 1.11.1 release --- CHANGELOG | 11 + locale/bs/LC_MESSAGES/bs.mo | Bin 1542 -> 1542 bytes locale/bs/LC_MESSAGES/bs.po | 1089 ++++++++++++++++---------------- locale/cs/LC_MESSAGES/cs.mo | Bin 64928 -> 64063 bytes locale/cs/LC_MESSAGES/cs.po | 1139 +++++++++++++++++----------------- locale/de/LC_MESSAGES/de.mo | Bin 16626 -> 16626 bytes locale/de/LC_MESSAGES/de.po | 1089 ++++++++++++++++---------------- locale/el/LC_MESSAGES/el.mo | Bin 9006 -> 9006 bytes locale/el/LC_MESSAGES/el.po | 1089 ++++++++++++++++---------------- locale/es/LC_MESSAGES/es.mo | Bin 28881 -> 28969 bytes locale/es/LC_MESSAGES/es.po | 1106 +++++++++++++++++---------------- locale/fa/LC_MESSAGES/fa.mo | Bin 9181 -> 9181 bytes locale/fa/LC_MESSAGES/fa.po | 1089 ++++++++++++++++---------------- locale/fr/LC_MESSAGES/fr.mo | Bin 8108 -> 8108 bytes locale/fr/LC_MESSAGES/fr.po | 1089 ++++++++++++++++---------------- locale/gl/LC_MESSAGES/gl.mo | Bin 39714 -> 39714 bytes locale/gl/LC_MESSAGES/gl.po | 1089 ++++++++++++++++---------------- locale/he/LC_MESSAGES/he.mo | Bin 4587 -> 4587 bytes locale/he/LC_MESSAGES/he.po | 1089 ++++++++++++++++---------------- locale/id/LC_MESSAGES/id.mo | Bin 468 -> 468 bytes locale/id/LC_MESSAGES/id.po | 1089 ++++++++++++++++---------------- locale/it/LC_MESSAGES/it.mo | Bin 66083 -> 65307 bytes locale/it/LC_MESSAGES/it.po | 1143 +++++++++++++++++----------------- locale/lt/LC_MESSAGES/lt.mo | Bin 35333 -> 35333 bytes locale/lt/LC_MESSAGES/lt.po | 1089 ++++++++++++++++---------------- locale/nl/LC_MESSAGES/nl.mo | Bin 28347 -> 28347 bytes locale/nl/LC_MESSAGES/nl.po | 1089 ++++++++++++++++---------------- locale/oc/LC_MESSAGES/oc.mo | Bin 4837 -> 4837 bytes locale/oc/LC_MESSAGES/oc.po | 1089 ++++++++++++++++---------------- locale/pl/LC_MESSAGES/pl.mo | Bin 17244 -> 17244 bytes locale/pl/LC_MESSAGES/pl.po | 1089 ++++++++++++++++---------------- locale/pt/LC_MESSAGES/pt.mo | Bin 65631 -> 64687 bytes locale/pt/LC_MESSAGES/pt.po | 1139 +++++++++++++++++----------------- locale/ro/LC_MESSAGES/ro.mo | Bin 1651 -> 1651 bytes locale/ro/LC_MESSAGES/ro.po | 1089 ++++++++++++++++---------------- locale/ru/LC_MESSAGES/ru.mo | Bin 93566 -> 97655 bytes locale/ru/LC_MESSAGES/ru.po | 1169 ++++++++++++++++++----------------- locale/sv/LC_MESSAGES/sv.mo | Bin 39394 -> 38942 bytes locale/sv/LC_MESSAGES/sv.po | 1131 ++++++++++++++++----------------- locale/zh/LC_MESSAGES/zh.mo | Bin 64283 -> 63561 bytes locale/zh/LC_MESSAGES/zh.po | 1137 +++++++++++++++++----------------- 41 files changed, 11177 insertions(+), 10955 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 03b51671..6a13703d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +queXS 1.11.1 - Changes since 1.11.0 + +Fixed Bug: Quota priority not able to override sort of last call made +Fixed Bug lp:1410503 required URLto the CKeditor installation directory +Fixed Bug lp:1411703 Asign cases even with sample disabled and sample unassigned from questionnaire +Fixed Bug lp:1412389 removed language restriction +Fixes Bug lp:141380 System sort process fails when quotas enabled and limesurvey instrument de-activated +Fix error in translation where thinks it is a wildcard + +Translations: Updated from Launchpad. Thank you again! + queXS 1.11.0 - Changes since 1.10.4 New Feature: System sort on a questionnaire by questionnaire basis diff --git a/locale/bs/LC_MESSAGES/bs.mo b/locale/bs/LC_MESSAGES/bs.mo index e1b6c23ade5525f31bd5f1c6337c203ca5ac07ec..058a386ce5d97c5b57828334a0c1f98884a0c6b4 100644 GIT binary patch delta 50 zcmZqUY2(=t#>{PKq-$uYU}#`vWH>pI`5UjPu7Q!Rfu(|hft9Jz delta 50 zcmZqUY2(=t#>{PCtZQhlU}#`vVm>*M`5Ui^uAvb~#K6GH$Z&EBiyE_$h1up_mP$qd DI~NQ| diff --git a/locale/bs/LC_MESSAGES/bs.po b/locale/bs/LC_MESSAGES/bs.po index 0e7c27c0..76e172e8 100644 --- a/locale/bs/LC_MESSAGES/bs.po +++ b/locale/bs/LC_MESSAGES/bs.po @@ -7,167 +7,161 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-09-02 11:31+0000\n" "Last-Translator: Siddiq \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:21+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Sastanak" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Performansa" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "" @@ -175,9 +169,7 @@ msgstr "" msgid "Stop REC" msgstr "" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "" @@ -185,8 +177,7 @@ msgstr "" msgid "Beginning recording..." msgstr "" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "" @@ -194,8 +185,8 @@ msgstr "" msgid "Begin the manual recording now..." msgstr "" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "" @@ -207,43 +198,47 @@ msgstr "" msgid "Stop the manual recording now..." msgstr "" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "" -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -277,7 +272,7 @@ msgstr "Dodaj ovog ispitanika" msgid "Select phone number:" msgstr "Odaberi broj telefona" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Nijedno" @@ -302,7 +297,7 @@ msgstr "Sastanak" msgid "Accept appointment from " msgstr "Prihvati formu sastanka " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " do " @@ -318,7 +313,8 @@ msgstr "" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -326,7 +322,7 @@ msgstr "" msgid "Call List" msgstr "" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "" @@ -334,12 +330,17 @@ msgstr "" msgid "Number called" msgstr "" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "" @@ -347,15 +348,18 @@ msgstr "" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "" @@ -363,11 +367,12 @@ msgstr "" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -379,7 +384,11 @@ msgstr "" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -391,8 +400,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -408,114 +416,80 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "" @@ -543,7 +517,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -571,58 +547,50 @@ msgstr "" msgid "Go back to work" msgstr "" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -636,8 +604,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "" @@ -645,12 +615,14 @@ msgstr "" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -658,48 +630,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -723,8 +693,7 @@ msgstr "" msgid "Reasons:" msgstr "" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -736,13 +705,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "" @@ -754,7 +722,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "" @@ -827,34 +798,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "" @@ -922,7 +892,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -961,8 +933,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -978,8 +949,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -999,11 +969,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1023,11 +993,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1039,7 +1011,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1073,13 +1046,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1087,27 +1058,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1125,23 +1096,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1149,27 +1117,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1177,13 +1142,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1243,7 +1206,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1255,36 +1218,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1301,8 +1273,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1310,11 +1281,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1334,38 +1305,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1373,9 +1345,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1391,11 +1361,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1407,7 +1377,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1419,27 +1389,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1458,8 +1428,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1467,38 +1436,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1506,45 +1469,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1588,7 +1549,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1624,13 +1585,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1638,7 +1597,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1647,191 +1607,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1847,22 +1816,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1915,7 +1895,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1927,32 +1906,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "" @@ -1980,35 +1954,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2020,7 +1991,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2044,13 +2015,14 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2116,17 +2088,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2136,17 +2103,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2154,11 +2119,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2172,11 +2135,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2184,7 +2149,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2239,8 +2205,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2250,9 +2215,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2275,9 +2240,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2289,8 +2253,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2306,9 +2298,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2316,8 +2306,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2405,8 +2394,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2422,8 +2410,7 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2463,11 +2450,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2487,8 +2474,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "" @@ -2512,7 +2498,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2520,8 +2506,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2537,71 +2522,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2618,13 +2603,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2888,7 +2871,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2920,7 +2903,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2928,11 +2911,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2949,30 +2932,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2983,8 +2970,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3037,8 +3023,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3082,8 +3067,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3127,8 +3111,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3266,23 +3249,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3302,8 +3293,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3323,39 +3313,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3363,19 +3364,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3478,10 +3479,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3532,13 +3531,11 @@ msgstr "" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3567,10 +3564,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/cs/LC_MESSAGES/cs.mo b/locale/cs/LC_MESSAGES/cs.mo index 6415c3cfecf7b1cb75f5bad72389dba774fac773..272e0dd26472fbcb129daebc05579c4f64d4730a 100644 GIT binary patch delta 16547 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 diff --git a/locale/cs/LC_MESSAGES/cs.po b/locale/cs/LC_MESSAGES/cs.po index a0f07566..3e3e32ed 100644 --- a/locale/cs/LC_MESSAGES/cs.po +++ b/locale/cs/LC_MESSAGES/cs.po @@ -7,167 +7,161 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-12-24 14:41+0000\n" "Last-Translator: Zbyněk Schwarz \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Seznam historie případů" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Žádný hovor nebyl proveden" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Datum/čas" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "ID případu" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Výsledek" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Respondent" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Žádný operátor" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Výběr respondenta - Záznamník" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Nezanechávejte zprávu, prosím zavěste" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Ukončit hovor s výsledkem: Firemní záznamník" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "Ukončit hovor s výsledkem: Záznamník - zanechána zpráva" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "Ukončit hovor s výsledkem: Záznamník - zpráva nezanechána" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Jít zpět" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Výběr respondenta - Firemní odpovědi" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Je mi líto že Vás obtěžuji, zavolal jsem na špatné číslo" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Ukončit hovor s výsledkem: Firemní číslo" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Schůzka" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "E-mail" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Ukončit práci" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "Šipka pro rozbalení/sbalení" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Poznámky" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Kontaktní údaje" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Historie volání" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Směny" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Schůzky" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Výkon" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Historie práce" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Informace o projektu" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Informace" @@ -175,9 +169,7 @@ msgstr "Informace" msgid "Stop REC" msgstr "Zastavit nahrávání" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Nahrávat" @@ -185,8 +177,7 @@ msgstr "Nahrávat" msgid "Beginning recording..." msgstr "Nahrávání spuštěno..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Nevoláte, nahrávání není spuštěno" @@ -194,8 +185,8 @@ msgstr "Nevoláte, nahrávání není spuštěno" msgid "Begin the manual recording now..." msgstr "Spustit ruční nahrávání nyní..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Spustit nahrávání" @@ -207,37 +198,40 @@ msgstr "Nahrávání zastaveno..." msgid "Stop the manual recording now..." msgstr "Zastavit ruční nahrávání nyní..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Výběr respondenta - zpětné volání" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Jste: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "% c dokončeno" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Ano - pokračovat kde jste skončili" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Ukončit volání s výsledkem: Odmítnutí respondentem" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Výběr respondenta - Úvod projektu" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Ano - pokračovat" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -245,7 +239,8 @@ msgstr "" "Ukončit hovor s výsledkem: Žádný vhodný respondent (osoba není na tomto " "čísle dostupná)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -280,7 +275,7 @@ msgstr "Přidat tohoto respondenta" msgid "Select phone number:" msgstr "Vyberte telefonní číslo:" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Žádné" @@ -304,7 +299,7 @@ msgstr "Schůzka:" msgid "Accept appointment from " msgstr "Přijmout schůzku od " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " do " @@ -320,7 +315,8 @@ msgstr "v" msgid "Appointment with myself only?" msgstr "Schůzka pouze sám se sebou?" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -328,7 +324,7 @@ msgstr "" msgid "Call List" msgstr "Seznam volání" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Nikam nevoláno" @@ -336,12 +332,17 @@ msgstr "Nikam nevoláno" msgid "Number called" msgstr "Volaná čísla" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operátor" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Žádný případ" @@ -349,15 +350,18 @@ msgstr "Žádný případ" msgid "Get a new case" msgstr "Obdržet nový případ" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Konec" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Zavolat/Zavěsit" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Vedoucí" @@ -365,11 +369,12 @@ msgstr "Vedoucí" msgid "Restart" msgstr "Restartovat" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Dostupnost" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "Chat s vedoucím" @@ -381,7 +386,11 @@ msgstr "Informace" msgid "Me" msgstr "Já" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "ID případu" @@ -393,8 +402,7 @@ msgstr "Vedoucí je dostupný" msgid "Supervisor not available" msgstr "Vedoucí není dostupný" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "Zpráva" @@ -410,55 +418,32 @@ msgstr "Od" msgid "Supervisor chat is not enabled" msgstr "Chat s vedoucím není povolen" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Volání" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Nevolá" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Ukončit případ" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "Stiskněte tlačítko volání pro vytočení čísla pro tuto schůzku" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Číslo k volání:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -466,60 +451,49 @@ msgstr "" "Vaše rozšíření VoIP není zapnuto. Prosím zavřete toto okno a zapněte ho " "kliknutím na červené tlačítko s nápisem 'VoIP vypnuto'" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Vyberte telefonní číslo pro vytočení" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "Poslední volání dokončilo tento pokus o volání" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "Zadejte důvod pro tento výsledek před dokončením případu:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Vyžaduje kódování" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Přidělit výsledek" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Chyba: Zavřete okno" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Žádost o volání" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Voláný odpověděl" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Zavěšeno" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Vyzvánění" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Zvednuto" @@ -547,7 +521,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "Rozšíření" @@ -575,52 +551,45 @@ msgstr "" msgid "Go back to work" msgstr "Vrátit se do práce" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Stav" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Jméno" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "Žádná čísla k volání" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Výběr respondenta - Úvod" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Pracovní číslo" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Záznamník" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" "Ukončit hovor s výsledkem: Bez odpovědi (nezvednuto nebo zaneprázdněno) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Ukončit hovor s výsledkem: Zavěšení omylem" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Ukončit hovor s výsledkem: Odmítnutí neznámou osobou" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -628,8 +597,7 @@ msgstr "" "Ukončit hovor s výsledkem: Žádný vhodný respondent (osoba není na tomto " "čísle nikdy dostupná)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -645,8 +613,10 @@ msgstr "Seznam směn" msgid "No shifts for this project" msgstr "Žádné směny pro tento projekt" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Začátek" @@ -654,12 +624,14 @@ msgstr "Začátek" msgid "No future shifts scheduled" msgstr "Nenaplánovány žádné další směny" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Dotazník" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "Výběr respondenta - Konec projektu" @@ -667,50 +639,48 @@ msgstr "Výběr respondenta - Konec projektu" msgid "Call automatically ended with outcome: Complete - End case" msgstr "Hovor automaticky ukončen s výsledkem: Dokončeno - Ukončit případ" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Ukončit hovor s výsledkem: Dokončeno" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Přidat respondenta" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Jít zpět" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "ID případu:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Respondent:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Prom" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Hodnota" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" "Vyberte skupinu pro omezení dostupnosti (Výběrem žádné znamená vždycky " "dostupné)" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "Skupiny dostupnosti nejsou pro tento dotazník dostupné" @@ -734,8 +704,7 @@ msgstr "Nyní není dostupný žádný případ" msgid "Reasons:" msgstr "Důvody:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "Povoleno" @@ -747,13 +716,12 @@ msgstr "Zakázáno" msgid "Assigned questionnaires:" msgstr "Přidělené dotazníky:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Popis" @@ -765,7 +733,10 @@ msgstr "CHYBA: Nemáte přiděleny žádné dotazníky" msgid "Assigned samples:" msgstr "Přidělené vzorky:" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Vzorek" @@ -838,34 +809,33 @@ msgstr "MOŽNÁ CHYBA: Dosažena kvóta řádku pro tuto otázku" msgid "Case Notes" msgstr "Poznámky případu" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Přidat poznámku" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Žádné poznámky" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Poznámka" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Tato směna" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Dokončení" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Dokončení za dinu" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Tento projekt" @@ -933,7 +903,9 @@ msgstr "Případ bude ukončen za" msgid "Ending case now" msgstr "Případ je nyní ukončován" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "vteřin" @@ -974,8 +946,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -991,8 +962,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "Výběr respondenta - Konec kvóty projektu" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "Ukončit hovor s výsledkem: Kvóta naplněna" @@ -1012,11 +982,11 @@ msgstr "E-mailová adresa není platná" msgid "Email respondent for self completion" msgstr "Poslat e-mail respondentovi pro vlastní dokončení" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "Křestní jméno" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "Příjmení" @@ -1036,11 +1006,13 @@ msgstr "Pro tento dotazník není dostupný email vlastního dokončení" msgid "Appointment List" msgstr "Seznam schůzek" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Zatím nezavoláno" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "Všichni operátoři" @@ -1052,7 +1024,8 @@ msgstr "Žádné schůzky nevytovřeny" msgid "No future appointments scheduled" msgstr "Žádné budoucí schůzky nenaplánovány" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "Schůzka s" @@ -1089,13 +1062,11 @@ msgstr "" "Prosím počkejte na odpověď tohoto hovoru, než se budete snažit zavolat " "vedoucímu" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "Sledovat celosystémové řazení případů" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Běžící proces:" @@ -1103,29 +1074,29 @@ msgstr "Běžící proces:" msgid "Kill signal sent: Please wait..." msgstr "Ukončovací signál odeslán: Prosím čekejte..." -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" "Proces již je uzavřen (např. byl restartován server) - klikněte zde pro " "potvrzení" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Ukončit běžící proces" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "ID záznamu" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Datum" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "Položka záznamu" @@ -1148,23 +1119,20 @@ msgstr "" "zvýšit výkon v případě velkého počtu případů nebo složitých kvót. Pokud " "nezaznamenáváte žádné potíže s výkonem, nedoporučuje se tuto funkci zapínat." -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Výsledek posledního spuštěného procesu (pokud je)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "Seznam historie volání" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Datum/Čas zahájení volání" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Čas ukončení" @@ -1172,27 +1140,24 @@ msgstr "Čas ukončení" msgid "Download Call History List" msgstr "Stáhnout seznam historie volání" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Přidělit klienty k dotazníkům" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "Hlášení kvóty" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Vyberte dotazník ze seznamu níže" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Vyberte vzorek ze seznamu níže" @@ -1200,13 +1165,11 @@ msgstr "Vyberte vzorek ze seznamu níže" msgid "Total sample" msgstr "Celkový vzorek" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "uzavřeno" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "otevřeno" @@ -1266,7 +1229,7 @@ msgstr "Prosím vraťte se ve svém prohlížeči a problém opravte" msgid "Import: Select columns to import" msgstr "Import: Vyberte sloupce pro import" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Import: Vyberte soubor k nahrání" @@ -1278,37 +1241,46 @@ msgstr "Zvolte vzorový soubor CSV pro nahrání:" msgid "Description for file:" msgstr "Popis souboru:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Přidat vzorek" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "Spouštěn proces řazení případů" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" -msgstr "Řazení případů" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" +msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" "Systém automaticky uzavřel případ jako neuzavřený za více než 24 hodin" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" -msgstr "Řazení dokončeno" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" +msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "Tento úkol trval" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "Řazení dokončeno" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "Nelze dokončit řazení" @@ -1325,8 +1297,7 @@ msgstr "Schůzka byla smazána. Nyní musíte změnit výsledek případu" msgid "Modify case outcome" msgstr "Změnit výsledek případu" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "Upravit schůzku" @@ -1334,11 +1305,11 @@ msgstr "Upravit schůzku" msgid "Contact phone" msgstr "Kontaktní telefon" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Čas zahájení" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Čas ukončení" @@ -1358,38 +1329,39 @@ msgstr "Zobrazit schůzky" msgid "All appointments (with times displayed in your time zone)" msgstr "Všechny schůzky (časy jsou zobrazeny ve vašem časovém pásmu)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Smazat" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Upravit" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Jméno operátora" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Jméno respondenta" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Příjmení" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Současný výsledek" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Operátor který volal" @@ -1397,9 +1369,7 @@ msgstr "Operátor který volal" msgid "No appointments in the future" msgstr "V budoucnu nejsou žádné schůzky" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "Správa kvóty" @@ -1415,11 +1385,11 @@ msgstr "V současnosti žádné kvóty" msgid "Stop calling this sample when:" msgstr "Přestat volat tomuto vzorku když:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "po" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "dokončeních" @@ -1431,7 +1401,7 @@ msgstr "Kvóta dosažena" msgid "Quota not yet reached" msgstr "Kvóta není dosažena" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "Současných dokončení: " @@ -1443,27 +1413,27 @@ msgstr "Vyberte otázku pro kvótu" msgid "Enter the details for creating the quota:" msgstr "Zadejte podrobnosti pro vytvoření kvóty:" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "Předurčené hodnoty pro tuto otázku:" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "Neurčeny žádné štítky pro tuto otázku" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "Hodnota kódu" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "Hodnota kódu pro porovnání" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "Typ porovnání" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "Počet dokončení po kterých přestat volat" @@ -1485,8 +1455,7 @@ msgstr "" "všichni operátoři budou mít oprávnění k případu přidělit všechny možné " "výsledky. Toto omezuje výsledky přidělené operátorovi." -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "Upravit schopnosti operátora" @@ -1494,38 +1463,32 @@ msgstr "Upravit schopnosti operátora" msgid "Operator Performance" msgstr "Výkon operátora" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Prosím zvolte dotazník" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Volání" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Celkový čas" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "Čas zavolání" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "Dokončení za hod." -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "Volání za hod." -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "Účinnost" @@ -1533,45 +1496,43 @@ msgstr "Účinnost" msgid "till" msgstr "do" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Prosím zvolte směnu" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" -msgstr "Skupiny dostupnosti" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" +msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "Změnit" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." -msgstr "Skupiny dostupnosti určují časová období dostupnosti respondenta." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." +msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" -msgstr "Žádné skupiny dostupnosti" +msgid "No time slots" +msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" -msgstr "Skupina dostupnosti" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" +msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" -msgstr "Přidat skupinu dostupnosti" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" +msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" -msgstr "Název skupiny dostupnosti" +msgid "Time slot name" +msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "Hlášení směn" @@ -1615,7 +1576,7 @@ msgstr "Nástroje správce" msgid "Questionnaire creation and management" msgstr "Vytvoření dotazníku a správa" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "Vytvořit nástroj v limesurvey:" @@ -1651,13 +1612,11 @@ msgstr "Přidělit vzorky k dotazníkům" msgid "Set values in questionnaire to pre fill" msgstr "Nastavit hodnoty v dotazníku pro předvyplnění" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "Správa řady kvóty" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "Správa operátorů" @@ -1665,7 +1624,8 @@ msgstr "Správa operátorů" msgid "Add operators to the system" msgstr "Přidat operátory do systému" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Přidělit operátory k dotazníkům" @@ -1674,192 +1634,201 @@ msgid "Availability and shift management" msgstr "Dostupnost a správa směny" #: admin/index.php:73 -msgid "Manage availablity groups" -msgstr "Správa skupin dostupnosti" +msgid "Manage time slots" +msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "Přidělit dostupnosti k dotazníkům" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "Správa směn (přidat/odstranit)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Postup dotazníku" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Zobrazit všechny budoucí schůzky" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "Záznam pokusů volání vzorku" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "Výsledky dotazníku" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Výstup dat" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Výkon operátora" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Správa klientů" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Přidat klienty do systému" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Funkce dozorce" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Přidělit výsledky k případům" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Prohledat vzorek" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "Stav a přidělení případu" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "Hromadný generátor schůzek" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Nastavení systému" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "Nastavit seznam výchozích časových pásem" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "Nastavit výchozí doby směn" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "Nastavit doby omezení volání" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "Nastavit informace o centru" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "Spustit a sledovat celosystémové řazení případů" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "Spustit a sledovat VoIP" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "Stav rozšíření" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "Přidělit vzorek: Zvolte vzorek pro přidělení" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "Upravit podrobnosti vzorku" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "Max volání (0 pro neomezeně)" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "Max pokusů o volání (0 pro neomezeně)" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" "Počet zpráv na záznamníku které zanechat na jeden případ (0 pro nikdy)" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "Vybrat ze vzorku náhodně? (jinak popořadě)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "Vzorky vybrané pro tento dotazník" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "Neomezeno" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "Pořadové" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "Náhodné" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "Nikdy" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "Klikněte pro zrušení přidělení" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "Max volání" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "Max pokusů o volání" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "Zprávy záznamníku" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "Typ výběru" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "Zrušit přiřazení vzorku" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "Pro tento dotazník nejsou zvoleny žádné vzorky" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "Přidejte vzorek k tomuto dotazníku:" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Vyberte vzorek" @@ -1875,22 +1844,33 @@ msgstr "Aktualizovat informace o centru" msgid "Assign availability group to questionnaire" msgstr "Přidělit dostupnost skupiny k dotazníku" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "Pro tento dotazník nejsou vybrány žádné skupiny dostupnosti" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "Skupiny dostupnosti vybrané pro tento dotazník" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "Přidat skupinu dostupnosti pro tento dotazník:" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "Vyberte skupinu dostupnosti:" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "Přidat skupinu dostupnosti" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1945,7 +1925,6 @@ msgid "Search within this sample" msgstr "Hledat v tomto vzorku" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "Použit znak % cjako zástupný znak" @@ -1957,32 +1936,27 @@ msgstr "Hledat:" msgid "Start search" msgstr "Spustit hledání" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "Výsledky dotazníku" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "Výsledky" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Stav vzorku" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "Staženo ze vzorku" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "Zůstat ve vzorku" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Číslo" @@ -2010,35 +1984,32 @@ msgstr "Min" msgid "Secs" msgstr "Vteř" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Poměr" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "Poměr odpovědí 1" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "Poměr odmítnutí 1" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "Poměr kooperace 1" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "Poměr kontaktování 1" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Počet" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2050,7 +2021,7 @@ msgstr "Výsledky volání operátora" msgid "No outcomes recorded for this sample" msgstr "Pro tento vzorek nezaznamenány žádné výsledky" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "Pro tento dotazník nezaznamenány žádné výsledky" @@ -2074,13 +2045,14 @@ msgstr "Pro tento dotazník nejsou určeny žádné směny" msgid "Shift" msgstr "Směna" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Hlášení směny" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "Sledovat proces VoIP" @@ -2148,17 +2120,12 @@ msgstr "nebo: Vyberte předvyplnění ze seznamu vzorků" msgid "Add pre fill" msgstr "Přidat předvyplnění" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "Přejmenovat" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "Oprávnění zobrazení operátora" @@ -2168,17 +2135,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "Vyberte která pole pro tento vzorek mohou operátoři vidět" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "Pole" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "Příklad dat" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "Umožnit operátorovi zobrazit?" @@ -2186,11 +2151,9 @@ msgstr "Umožnit operátorovi zobrazit?" msgid "Save changes" msgstr "Uložit změny" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "Deidentifikace" @@ -2206,11 +2169,13 @@ msgstr "" msgid "Delete selected fields" msgstr "Smazat vybraná pole" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "Povolit" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "Zakázat" @@ -2218,7 +2183,8 @@ msgstr "Zakázat" msgid "Sample list" msgstr "Seznam vzorků" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "Povolit/Zakázat" @@ -2282,8 +2248,7 @@ msgstr "Zvolte soubor CSV k nahrání:" msgid "Load bulk appointment CSV" msgstr "Načíst CSV hromadných schůzek" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Přidat směny" @@ -2294,9 +2259,9 @@ msgid "" msgstr "" "Musíte být operátor (a také mít správcovský přístup) pro přidání/změnu směn" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2323,9 +2288,8 @@ msgstr "Vyberte rok" msgid "Select week of year" msgstr "Vyberte týden v roce" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Den" @@ -2337,8 +2301,36 @@ msgstr "Použít směnu?" msgid "Submit changes" msgstr "Odeslat změny" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "Kopírované kvóty" @@ -2354,9 +2346,7 @@ msgstr "Nyní nejsou žádné kvóty" msgid "Replicate: Where" msgstr "Replikace: Kde" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "jako" @@ -2364,8 +2354,7 @@ msgstr "jako" msgid "Sample only. Stop calling where" msgstr "Pouze vzorek. Přestat volat tam kde" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "řádků z tohoto vzorku když:" @@ -2457,8 +2446,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "Nelze přidat operátora. Již možná existuje operátor s tímto názvem:" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Přidat operátora" @@ -2474,8 +2462,7 @@ msgstr "Přidělit operátora k dotazníku" msgid "tool" msgstr "nástroj" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2520,11 +2507,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "Bude tento operátor používat VoIP?" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "Uživatel chatu Jabber/XMPP" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "Heslo chatu Jabber/XMPP" @@ -2544,8 +2531,7 @@ msgstr "Je operátor vedoucí?" msgid "Is the operator a refusal converter?" msgstr "Je operátor určen pro odmítavé respondenty?" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Přidat uživatele" @@ -2569,7 +2555,7 @@ msgstr "propojeno s" msgid "Error: Failed to insert questionnaire" msgstr "Chyba: Nelze vložit dotazník" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Název dotazníku:" @@ -2577,8 +2563,7 @@ msgstr "Název dotazníku:" msgid "Select limesurvey instrument:" msgstr "Výběr nástroje limesurvey:" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "Existující nástroj:" @@ -2594,71 +2579,71 @@ msgstr "Žádný výběr respondenta (přejít přímo k dotazníku)" msgid "Use basic respondent selection text (below)" msgstr "Použít základní text výběru respondenta (níže)" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "Omezit schůzky na směny?" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "Omezit práci na směny?" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "Dotazník pouze pro zkoušku?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "Umožnit respondentům dotazník vyplnit pomocí e-mailové pozvánky?" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "Režim zobrazení dotazníku pro respondenta" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "Vše v jednom" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "Otázka za otázkou" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "Skupina najednou" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "Šablona Limesurvey pro respondenta" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "URL pro přesměrování respondentů při samo-dokončení (vyžadováno)" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "Úvod výběru respondenta:" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "Úvod projektu výběru respondenta:" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "Zpětné vrácení výběru respondenta (dotazník již zahájen):" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "Zprávu, kterou zanechat na záznamníku:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "Text na konci projektu (obrazovka poděkování):" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "Informace o projektu pro tazatele/operátory:" @@ -2675,13 +2660,11 @@ msgstr "" msgid "Display extension status" msgstr "Zobrazit stav rozšíření" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2945,7 +2928,7 @@ msgstr "Soboty" msgid "String" msgstr "Řetězec" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Telefonní číslo" @@ -2977,7 +2960,7 @@ msgstr "E-mailová adresa" msgid "Self completion email invitation sent" msgstr "Pozvánka samodokončení e-mailu odeslána" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "Samodokončeno online" @@ -2985,11 +2968,11 @@ msgstr "Samodokončeno online" msgid "Cases by outcome" msgstr "Případy podle výsledku" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Projekt" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Současný výsledek:" @@ -3006,32 +2989,36 @@ msgid "Cannot connect to VoIP Server" msgstr "Nelze se připojit k serveru VoIP" #: admin/availability.php:57 -msgid "No availability group set" -msgstr "Není nastavena žádná skupina dostupnosti" +msgid "No time slot group set" +msgstr "" #: admin/availability.php:95 -msgid "Modify availability" -msgstr "Změnit dostupnost" +msgid "Modify time slots" +msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" "Zadejte počátek a konec na každý den v týdnu pro omezení volání během" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Přidat řádek" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" -msgstr "Uložit změny dostupnosti" +msgid "Save changes to time slot group" +msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" -msgstr "Smazat tuto skupinu dostupnosti" +msgid "Delete this time slot group" +msgstr "" #: admin/clients.php:84 msgid "Could not add" @@ -3041,8 +3028,7 @@ msgstr "Nelze přidat" msgid "There may already be a client of this name" msgstr "Je možné že již existuje klient s tímto názvem" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Přidat klienta" @@ -3098,8 +3084,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "Uložit změny směn" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "Nyní" @@ -3147,8 +3132,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "Stáhnout data pro tento dotazník přes Limesurvey" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "Prosím vyberte vzorek" @@ -3192,8 +3176,7 @@ msgstr "" msgid "Operator edit" msgstr "Úprava operátora" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "Uživatelské jméno" @@ -3337,23 +3320,31 @@ msgstr "Prosím potvrďte smazání dotazníku." msgid "Delete this questionnaire" msgstr "Smazat tento dotazník" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Přidat/Odstranit časové pásmo" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "Klikněte pro odstranění časového pásmu z výchozího seznamu" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "Přidat časové pásmo:" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Časové pásmo: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "Přidat časové pásmo" @@ -3373,8 +3364,7 @@ msgstr "Vybrat případ" msgid "Set an outcome for this call" msgstr "Vyberte výsledek pro volání" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "Nastavit výsledek" @@ -3394,40 +3384,51 @@ msgstr "Seznam volání" msgid "Change outcome" msgstr "Změnit výsledek" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "Poznámky případu" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "Změnit odpovědi pro tento případ" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "Případ zatím nezahájen v Limesurvey" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "Nastavit výsledek případu" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "Aktualizovat dostupnost případu" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" "Přidělit tento případ k operátorovi (bude jim zobrazen jako další případ)" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "Přidělit tento případ k operátorovi" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "Případ neexistuje" @@ -3435,19 +3436,19 @@ msgstr "Případ neexistuje" msgid "Error: Cannot write to temporary directory" msgstr "Chyba: nelze zapisovat do dočasného adresáře" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "ráno" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "odpoledne" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "večer" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3552,10 +3553,8 @@ msgstr "Odpojeno" msgid "Reconnected" msgstr "Znovu připojeno" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr " Rozšíření " @@ -3610,13 +3609,11 @@ msgstr "Nemáte přiděleny žádné dotazníky" msgid "You are not a valid client" msgstr "Nejste platným klientem" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3645,10 +3642,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" @@ -3714,9 +3717,21 @@ msgstr "" "A ten příběh je vyprávěn takto.\n" "\n" +#~ msgid "Sorting cases" +#~ msgstr "Řazení případů" + #~ msgid "Enter the telephone extension password:" #~ msgstr "Zadejte heslo telefonní linky:" +#~ msgid "Availability groups" +#~ msgstr "Skupiny dostupnosti" + +#~ msgid "No availability groups" +#~ msgstr "Žádné skupiny dostupnosti" + +#~ msgid "Availablity group" +#~ msgstr "Skupina dostupnosti" + #~ msgid "Update timezone" #~ msgstr "Aktualizovat časové pásmo" @@ -3726,6 +3741,18 @@ msgstr "" #~ msgid "No operators" #~ msgstr "Žádní operátoři" +#~ msgid "Save changes to availabilities" +#~ msgstr "Uložit změny dostupnosti" + +#~ msgid "Modify availability" +#~ msgstr "Změnit dostupnost" + +#~ msgid "No availability group set" +#~ msgstr "Není nastavena žádná skupina dostupnosti" + +#~ msgid "Manage availablity groups" +#~ msgstr "Správa skupin dostupnosti" + #~ msgid "Max call attempts:" #~ msgstr "Max pokusů o volání:" diff --git a/locale/de/LC_MESSAGES/de.mo b/locale/de/LC_MESSAGES/de.mo index a07738b6dcb2e921fec709facd02178ba40bbd6b..b4f6bc06756744a451238253def09b97dc2b473f 100644 GIT binary patch delta 52 zcmey=$oQ#|aRZk+x1o`)p{0VMft8WrWKs3syr#MaM!E);3I+yNrbd%xHPo1mjSV-u IX{?a|0EYezyZ`_I delta 52 zcmey=$oQ#|aRZk+w}G*)p}B&gft88*WKs3sye7JaMj#Ob11lrL$+8-1%tjVwo82_l GNB{tboDIeR diff --git a/locale/de/LC_MESSAGES/de.po b/locale/de/LC_MESSAGES/de.po index 4bfa215f..5f4b6477 100644 --- a/locale/de/LC_MESSAGES/de.po +++ b/locale/de/LC_MESSAGES/de.po @@ -7,168 +7,162 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2014-03-18 17:48+0000\n" "Last-Translator: Daniel \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:21+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Datum/Zeit" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "Fall ID" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Anrufergebnis" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Zielperson" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Kein Operator" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Auswahl der Zielperson - Anrufbeantworter" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Keine Nachricht hinterlasssen, bitte auflegen" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Beende Anruf mit Ergebnis: geschäftlicher Anrufbeantworter" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "Beende Anruf mit Ergbnis: Anrufbeantworter, Nachricht hinterlassen" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" "Beende Anruf mit Ergebnis: Anrufbeantworter, keine Nachricht hinterlassen" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Zurück" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Auswahl der zielperson - Büro, Behörde etc. am Telefon" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Entschuldigen Sie bitte, ich habe die falsche Nummer gewählt" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Beende Anruf mit Ergebnis: geschäftliche Nummer" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Terminvereinbarung" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "E-Mail" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Beende Arbeit" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Notizen" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Kontaktdaten" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Schichten" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Terminvereinbarungen" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Projektinformationen" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Info" @@ -176,9 +170,7 @@ msgstr "Info" msgid "Stop REC" msgstr "Stop REC" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Aufzeichnen" @@ -186,8 +178,7 @@ msgstr "Aufzeichnen" msgid "Beginning recording..." msgstr "Starte Aufzeichnung..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Nicht im Gespräch, Aufzeichnung wird nicht gestartet" @@ -195,8 +186,8 @@ msgstr "Nicht im Gespräch, Aufzeichnung wird nicht gestartet" msgid "Begin the manual recording now..." msgstr "Starte manuele Aufzeichnung..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Start REC" @@ -208,37 +199,40 @@ msgstr "Beende Aufzeichnung..." msgid "Stop the manual recording now..." msgstr "Beende manuele Aufzeichnung...." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Auswahl der Zielperson - Rückruf" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "" -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Ja - Fortsetzen an altem Endpunkt" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Beende Anruf mit Ergebnis: Verweigerung durch Zielperson" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Auswahl der Zielperson - Vorstellung des Projekts" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Ja - Weiter" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -246,7 +240,8 @@ msgstr "" "Beende Anruf mit Ergebnis: keine geeignete Zielperson (Zielperson nicht " "unter dieser Nummer erreichbar)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -282,7 +277,7 @@ msgstr "" msgid "Select phone number:" msgstr "" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "" @@ -306,7 +301,7 @@ msgstr "Terminvereinbarung:" msgid "Accept appointment from " msgstr "Terminvereinbarung akzeptieren von " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " bis " @@ -322,7 +317,8 @@ msgstr "" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "Terminvereinbarung" @@ -330,7 +326,7 @@ msgstr "Terminvereinbarung" msgid "Call List" msgstr "Anrufliste" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "keine Anrufe getätigt" @@ -338,12 +334,17 @@ msgstr "keine Anrufe getätigt" msgid "Number called" msgstr "Nummer angerufen" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operator" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "keine Fälle" @@ -351,15 +352,18 @@ msgstr "keine Fälle" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Ende" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Anrufen/Auflegen" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Supervisor" @@ -367,11 +371,12 @@ msgstr "Supervisor" msgid "Restart" msgstr "Neustart" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Verfügbarkeit" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -383,7 +388,11 @@ msgstr "Information" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "Fall ID" @@ -395,8 +404,7 @@ msgstr "Supervisor verfügbar" msgid "Supervisor not available" msgstr "Supervisor nicht verfügbar" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "Nachricht" @@ -412,55 +420,32 @@ msgstr "Von" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Anrufen" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Nicht im Gespräch" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Beende Fall" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "Auf \"Anrufen\" klicken um Nummer für Terminvereinbarung zu wählen:" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Nummer zum wählen:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -469,62 +454,51 @@ msgstr "" "und aktivieren Sie Ihre VoIP-Extension durch Klick auf das rote Feld mit dem " "Hinweis \"VoIP aus\"" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Wähle Nummer zum wählen aus:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "Der letzte Anruf schloss diesen Anrufversuch ab" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" "Bitte eine Grund für das Anrufergbnis angeben bevor der Fall beendet werden " "kann:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Codierung erforderlich" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Anrufergebnis zuweisen" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Fehler: Schließe Fenster" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Anruf angenommen" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Auflegen" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Klingelt" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Angenommen" @@ -552,7 +526,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -580,51 +556,44 @@ msgstr "" msgid "Go back to work" msgstr "Zurück zur Arbeit" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Status" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Name" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "keine Nummern für Anrufe verfügbar" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Auswahl der Zielperson - Einführung" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "geschäftliche Nummer" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Anrufbeantworter" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "Beende Anruf mit Ergebnis: keine Antwort (klingeln oder besetzt) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Beende Anruf mit Ergebnis: Versehentlich aufgelegt" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Beende Anruf mit Ergebnis: Verweigerung durch unbekannte Person" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -632,8 +601,7 @@ msgstr "" "Beende Anruf mit Ergebnis: keine geeignte Zielperson (Zielperson nie unter " "dieser Nummer erreichbar)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -649,8 +617,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Start" @@ -658,12 +628,14 @@ msgstr "Start" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Fragebogen" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "Auswahl der Zielperson - Projekt beendet" @@ -671,48 +643,46 @@ msgstr "Auswahl der Zielperson - Projekt beendet" msgid "Call automatically ended with outcome: Complete - End case" msgstr "Anruf automatisch beendet mit Ergebnis: Fertig - Beende Fall" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Beende Anruf mit Ergbnis: Fertig" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Zielperson hinzufügen" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Zurück" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "Fall ID:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Zielperson:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -736,8 +706,7 @@ msgstr "Derzeit keine Fälle verfügbar" msgid "Reasons:" msgstr "Gründe:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "Aktiviert" @@ -749,13 +718,12 @@ msgstr "Deaktiviert" msgid "Assigned questionnaires:" msgstr "Zugeordnete Fragebögen:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "" @@ -767,7 +735,10 @@ msgstr "Fehler: Sie wurden keinem Fragebogen zugeordnet" msgid "Assigned samples:" msgstr "Zugeordnete Stichproben" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Stichprobe" @@ -842,34 +813,33 @@ msgstr "" msgid "Case Notes" msgstr "Notizen zu Fällen" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Notiz hinzufügen" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "keine Notizen" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Notiz" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "" @@ -937,7 +907,9 @@ msgstr "Beende Fall in" msgid "Ending case now" msgstr "Beende Fall" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "Sekunden" @@ -978,8 +950,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -995,8 +966,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -1016,11 +986,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "Vorname" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "Nachname" @@ -1040,11 +1010,13 @@ msgstr "" msgid "Appointment List" msgstr "Terminliste" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Noch nicht angerufen" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1056,7 +1028,8 @@ msgstr "Keine Termine vereinbart" msgid "No future appointments scheduled" msgstr "Keine weiteren Termin vereinbart" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "Terminvereinbarung mit" @@ -1090,13 +1063,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1104,27 +1075,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Datum" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1142,23 +1113,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1166,27 +1134,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1194,13 +1159,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1260,7 +1223,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1272,36 +1235,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1318,8 +1290,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1327,11 +1298,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1351,38 +1322,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1390,9 +1362,7 @@ msgstr "" msgid "No appointments in the future" msgstr "Keine zukünftigen Terminvereinbarungen" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1408,11 +1378,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1424,7 +1394,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1436,27 +1406,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1475,8 +1445,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1484,38 +1453,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1523,45 +1486,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1605,7 +1566,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1641,13 +1602,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1655,7 +1614,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1664,191 +1624,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1864,22 +1833,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1932,7 +1912,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1944,32 +1923,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Nummer" @@ -1997,35 +1971,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2037,7 +2008,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2061,13 +2032,14 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2133,17 +2105,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2153,17 +2120,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2171,11 +2136,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2189,11 +2152,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2201,7 +2166,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2256,8 +2222,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2267,9 +2232,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2292,9 +2257,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2306,8 +2270,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2323,9 +2315,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2333,8 +2323,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2422,8 +2411,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2439,8 +2427,7 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2480,11 +2467,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2504,8 +2491,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "" @@ -2529,7 +2515,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2537,8 +2523,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2554,71 +2539,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2635,13 +2620,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2905,7 +2888,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Telefonnummer" @@ -2937,7 +2920,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2945,11 +2928,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2966,30 +2949,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -3000,8 +2987,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3054,8 +3040,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3099,8 +3084,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3144,8 +3128,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3283,23 +3266,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3319,8 +3310,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3340,39 +3330,50 @@ msgstr "Anrufliste" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3380,19 +3381,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3495,10 +3496,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3549,13 +3548,11 @@ msgstr "Sie sind keinen Fragebögen zugeordnet" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3584,10 +3581,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/el/LC_MESSAGES/el.mo b/locale/el/LC_MESSAGES/el.mo index 4aef2a5ab749d93d5ffb65caaa00e560d1e966f4..0a9b2e326a65405fe3ecb7f295c421cd5b8aa6c3 100644 GIT binary patch delta 50 zcmZ4Iw$5#Xy#TkNk*=Yof}w$xk>O-7fe*Z\n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Λίστα ιστορικού περιπτώσεων" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Δεν έγιναν ποτέ κλήσεις" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Ημερομηνία/Ώρα" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "Διακριτικό περίπτωσης" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Αποκρινόμενος" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Επιλογή παραλήπτη - Αυτόματος τηλεφωνητής" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Μην αφήσετε μήνυμα, παρακαλώ κλείστε το τηλέφωνο" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Τέλος κλήσης με αποτέλεσμα: Επαγγελματικός αυτόματος τηλεφωνητής" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "Τέλος κλήσης με αποτέλεσμα: Αυτόματος τηλεφωνητής Αφέθηκε μήνυμα" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "Τέλος κλήσης με αποτέλεσμα: Αυτόματος τηλεφωνητής Δεν αφέθηκε μήνυμα" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Επιστροφή" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Ραντεβού" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Τέλος εργασίας" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Σημειώσεις" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Ιστορικό κλήσεων" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Βάρδιες" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Ραντεβού" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Απόδοση" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Ιστορικό εργασίας" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Πληροφορίες" @@ -175,9 +169,7 @@ msgstr "Πληροφορίες" msgid "Stop REC" msgstr "Διακοπή εγγραφής" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Εγγραφή" @@ -185,8 +177,7 @@ msgstr "Εγγραφή" msgid "Beginning recording..." msgstr "Έναρξη εγγραφής" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Όχι σε κλήση, επομένως όχι έναρξη εγγραφής" @@ -194,8 +185,8 @@ msgstr "Όχι σε κλήση, επομένως όχι έναρξη εγγρα msgid "Begin the manual recording now..." msgstr "Εκκίνηση της χειροκίνητης εγγραφής τώρα" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Έναρξη εγγραφής" @@ -207,37 +198,40 @@ msgstr "Διακοπή εγγραφής" msgid "Stop the manual recording now..." msgstr "Διακοπή της χειροκίνητης εγγραφής τώρα" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Επιλογή παραλήπτη - Κλήση" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Είσαι ο/η: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Ναι - Συνέχεια από το σημείο που το αφήσαμε" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Τέλος κλήσης με αποτέλεσμα: Άρνηση από τον αποκρινόμενο" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Επιλογή αποκρινόμενου - Παρουσίαση εργασίας" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Ναι - Συνέχεια" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -245,7 +239,8 @@ msgstr "" "Τέλος κλήσης με αποτέλεσμα: Μη διαθέσιμος αποκρινόμενος (μη διαθέσιμο άτομο " "σε αυτό τον αριθμό)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -282,7 +277,7 @@ msgstr "Προσθήκη αυτού του παραλήπτη" msgid "Select phone number:" msgstr "Επέλεξε τηλεφωνικό αριθμό" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Κανένα" @@ -307,7 +302,7 @@ msgstr "Ραντεβού:" msgid "Accept appointment from " msgstr "Αποδοχή συνάντησης από " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " μέχρι " @@ -323,7 +318,8 @@ msgstr "σε" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -331,7 +327,7 @@ msgstr "" msgid "Call List" msgstr "Λίστα κλήσεων" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Δεν έγιναν κλήσεις" @@ -339,12 +335,17 @@ msgstr "Δεν έγιναν κλήσεις" msgid "Number called" msgstr "αριθμός κλήθηκε" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Λειτουργός" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Καμία περίπτωση" @@ -352,15 +353,18 @@ msgstr "Καμία περίπτωση" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Λήξη" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Κλήση/Απόρριψη" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Επιβλέπων" @@ -368,11 +372,12 @@ msgstr "Επιβλέπων" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -384,7 +389,11 @@ msgstr "Πληροφορίες" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -396,8 +405,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -413,55 +421,32 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Κλήση" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Όχι σε κλήση" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Τερματισμός περίπτωσης" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "Πίεσε το πλήκτρο κλήσης για το σχηματισμό του αριθμού της περίπτωσης" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Αριθμός για κλήση:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -469,62 +454,51 @@ msgstr "" "Η VoIP extension δεν είναι ενεργοποιημένη. Παρακαλώ κλείστε το παράθυρο και " "ενεργοποιήστε κάνοντας άπαξ κλικ στο κόκκινο κουμπί που γράφει \"VoIP Off\"" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Επιλέξτε αριθμό τηλεφώνου για κλήση:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "Η προηγούμενη κλήση ολοκλήρωσε την προσπάθεια αυτής της κλήσης." -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" "Πληκτρολογήστε έναν λόγο για αυτό το πόρισμα πριν την ολοκλήρωση της " "προσπάθειας" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Απαίτηση κωδικοποίησης" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Ανάθεση πορίσματος" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Σφάλμα: Κλείστε το παράθυρο." -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Απαίτηση κλήσης" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Η κλήση απαντήθηκε" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Τερματισμός κλήσης" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Κουδουνίζει" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Απαντήθηκε" @@ -552,7 +526,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -580,58 +556,50 @@ msgstr "" msgid "Go back to work" msgstr "Επιστροφή στην εργασία" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Τηλεφωνητής" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -645,8 +613,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "" @@ -654,12 +624,14 @@ msgstr "" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Ερωτηματολόγιο" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -667,48 +639,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Επιστροφή" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -732,8 +702,7 @@ msgstr "" msgid "Reasons:" msgstr "Λόγοι:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -745,13 +714,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Περιγραφή" @@ -763,7 +731,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "" @@ -836,34 +807,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Σημείωση" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "" @@ -931,7 +901,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -970,8 +942,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -987,8 +958,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -1008,11 +978,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1032,11 +1002,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1048,7 +1020,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1082,13 +1055,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1096,27 +1067,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1134,23 +1105,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1158,27 +1126,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1186,13 +1151,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1252,7 +1215,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1264,36 +1227,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1310,8 +1282,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1319,11 +1290,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1343,38 +1314,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1382,9 +1354,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1400,11 +1370,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1416,7 +1386,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1428,27 +1398,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1467,8 +1437,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1476,38 +1445,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1515,45 +1478,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1597,7 +1558,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1633,13 +1594,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1647,7 +1606,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1656,191 +1616,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1856,22 +1825,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1924,7 +1904,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1936,32 +1915,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "" @@ -1989,35 +1963,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2029,7 +2000,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2053,13 +2024,14 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2125,17 +2097,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2145,17 +2112,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2163,11 +2128,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2181,11 +2144,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2193,7 +2158,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2248,8 +2214,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2259,9 +2224,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2284,9 +2249,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2298,8 +2262,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2315,9 +2307,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2325,8 +2315,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2414,8 +2403,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2431,8 +2419,7 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2472,11 +2459,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2496,8 +2483,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "" @@ -2521,7 +2507,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2529,8 +2515,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2546,71 +2531,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2627,13 +2612,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2897,7 +2880,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2929,7 +2912,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2937,11 +2920,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2958,30 +2941,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2992,8 +2979,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3046,8 +3032,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3091,8 +3076,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3136,8 +3120,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3275,23 +3258,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3311,8 +3302,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3332,39 +3322,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3372,19 +3373,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3487,10 +3488,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3541,13 +3540,11 @@ msgstr "" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3576,10 +3573,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/es/LC_MESSAGES/es.mo b/locale/es/LC_MESSAGES/es.mo index 93b510fdbc34a2538ad75d2f835ecb52d8f7975e..f35c826c78b18721992a80c93ad328a7cd60638f 100644 GIT binary patch delta 9287 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 delta 9216 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 Qe3r&Iy{<98`mEpo0ME|z*#H0l diff --git a/locale/es/LC_MESSAGES/es.po b/locale/es/LC_MESSAGES/es.po index 7796b806..d5b6697e 100644 --- a/locale/es/LC_MESSAGES/es.po +++ b/locale/es/LC_MESSAGES/es.po @@ -7,169 +7,163 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" -"PO-Revision-Date: 2013-03-08 01:20+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" +"PO-Revision-Date: 2015-01-08 00:44+0000\n" +"Last-Translator: Adolfo Jayme \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Historial de casos" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "pudiste hacerlo" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Fecha/Hora" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "ID del caso" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Resultado" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Entrevistado" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Sin operador" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Selección de entrevistado - Máquina contestadora" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "No deje mensaje, por favor cuelgue" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Fin de llamada con resultado: Máquina contestadora en el negocio" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" "Fin de llamada con resultado: Mensaje dejado en la máquina contestadora" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" "Fin de llamada con resultado: No se dejó mensaje en la máquina contestadora" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Anterior" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Selección de Entrevistado - Respuestas del negocio" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Disculpe la molestia, llamé al número equivocado" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Fin de llamada con resultado: Número de negocio" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Cita" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" -msgstr "" +msgstr "Correo electrónico" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Finalizar trabajo" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "Flecha para expandir o contraer" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Notas" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Detalles de contacto" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Histórico de llamadas" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Turnos" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Citas" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Rendimiento" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Histórico de trabajo" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Información del proyecto" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Información" @@ -177,9 +171,7 @@ msgstr "Información" msgid "Stop REC" msgstr "Detener GRABACIÓN" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Grabar" @@ -187,8 +179,7 @@ msgstr "Grabar" msgid "Beginning recording..." msgstr "Iniciando grabación..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "No está en una llamada, por lo tanto no se inicia grabación" @@ -196,8 +187,8 @@ msgstr "No está en una llamada, por lo tanto no se inicia grabación" msgid "Begin the manual recording now..." msgstr "Comenzando ahora la grabación manual..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Grabar" @@ -209,37 +200,40 @@ msgstr "Detener grabación..." msgid "Stop the manual recording now..." msgstr "Detener ahora la grabación manual..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Selección de entrevistado - Llamar otra vez" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Usted es: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "% completado" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Si - Continuar donde lo dejamos" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Finalizar llamada con resultado: Rechazo del entrevistado" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Selección de Entrevistado - Introducción al Proyecto" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Si - Continuar" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -247,7 +241,8 @@ msgstr "" "Terminar la llamada con resultado: No hay entrevistado elegible (la persona " "no es contactable en este número)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -283,7 +278,7 @@ msgstr "Añadir este entrevistado" msgid "Select phone number:" msgstr "Seleccionar número telefónico" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Ninguno" @@ -307,7 +302,7 @@ msgstr "cita" msgid "Accept appointment from " msgstr "Aceptar cita de " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " hasta " @@ -323,7 +318,8 @@ msgstr "en" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -331,7 +327,7 @@ msgstr "" msgid "Call List" msgstr "Lista de llamada" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "No se han hecho llamadas" @@ -339,12 +335,17 @@ msgstr "No se han hecho llamadas" msgid "Number called" msgstr "Número llamado" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operador" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Sin caso" @@ -352,27 +353,31 @@ msgstr "Sin caso" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Termina" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Llamar/Colgar" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Supervisor" #: index.php:170 msgid "Restart" -msgstr "" +msgstr "Reiniciar" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Disponible" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -382,9 +387,13 @@ msgstr "Información" #: supervisorchat.php:80 msgid "Me" -msgstr "" +msgstr "Yo" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "ID de caso" @@ -396,8 +405,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -413,55 +421,32 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Llamar" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "No hay llamada en curso" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Finalizar caso" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "Presione el botón de llamada para marcar el número para esta cita:" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Número a llamar:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -469,60 +454,49 @@ msgstr "" "Su extensión VoIP no está activada. Por favor, cierre esta ventana y active " "VoIP pulsando en el botón rojo «VoIP apagado»" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Seleccione el número de teléfono a llamar:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "La última llamada completó este intento de contacto" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "Teclee la razón del resultado antes de completar este caso:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Requiere codificación" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Asignar resultado" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Error: Cerrar ventana" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Solicitando llamada" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Llamada respondida" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Colgar" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Llamando" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Contestado" @@ -550,7 +524,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "Extensión" @@ -578,53 +554,46 @@ msgstr "" msgid "Go back to work" msgstr "Regresar a trabajar" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Estado" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Nombre" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "No exite más números para llamar" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Selección de entrevistado - Introducción" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Número de negocio" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Máquina contestadora" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" "Finalizar llamada con resultado: Sin repuesta (nadie contestó o estaba " "ocupado) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Finalizar llamada con resultado: Colgado accidental" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Finalizar llamada con resultado: Negativa de persona desconocida" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -632,8 +601,7 @@ msgstr "" "Finalizar llamada con resultado: Sin entrevistado elegible (la persona nunca " "está disponible en este número)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -649,8 +617,10 @@ msgstr "Lista de turnos" msgid "No shifts for this project" msgstr "No hay turnos para este proyecto" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Inicia" @@ -658,12 +628,14 @@ msgstr "Inicia" msgid "No future shifts scheduled" msgstr "No hay turnos programados en el futuro" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Cuestionario" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "Selección de entrevistado - Final de proyecto" @@ -671,48 +643,46 @@ msgstr "Selección de entrevistado - Final de proyecto" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Finalizar llamada con resultado: Completado" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Añadir entrevistado" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Retroceder" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "ID del caso:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Entrevistado:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Var" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Valor" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -736,8 +706,7 @@ msgstr "En este momento no hay caso disponible" msgid "Reasons:" msgstr "Razones:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -749,13 +718,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "Cuestionarios asignados:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Descripción" @@ -767,7 +735,10 @@ msgstr "ERROR: Usted no tiene cuestionarios asignados" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Muestra" @@ -846,34 +817,33 @@ msgstr "POSIBLE ERROR: Cuota de fila alcanzada para esta pregunta" msgid "Case Notes" msgstr "Notas del Caso" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Añadir nota" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "No hay notas" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Nota" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Este turno" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Terminaciones" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Completamientos por hora" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Este proyecto" @@ -941,7 +911,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "segundos" @@ -980,8 +952,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -997,8 +968,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "Terminar llamada con resultado: Cuota llena" @@ -1018,11 +988,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1042,11 +1012,13 @@ msgstr "" msgid "Appointment List" msgstr "Lista de Citas" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "No se ha llamado" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1058,7 +1030,8 @@ msgstr "No se hicieron citas" msgid "No future appointments scheduled" msgstr "No hay citas futuras programadas" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1095,13 +1068,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "Espere a atender esta llamada antes de intentar llamar al supervisor" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Ejecutando proceso:" @@ -1109,29 +1080,29 @@ msgstr "Ejecutando proceso:" msgid "Kill signal sent: Please wait..." msgstr "Señal de apagado enviada: Espere..." -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" "El proceso ya está cerrado (p. ej. el servidor fue reiniciado) - haga click " "aquí para confirmar" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Mata el proceso en ejecución" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "ID de acceso" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Fecha" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "Registro de entrada" @@ -1149,23 +1120,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Resultado del último proceso ejecutado (si existe)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "Historial de llamadas" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Fecha/Hora de inicio de llamada" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Tiempo terminado" @@ -1173,27 +1141,24 @@ msgstr "Tiempo terminado" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Asignar clientes al cuestionario" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "Informe de cuota" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Seleccionar cuestionario de la siguiente lista" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Seleccionar una muestra de la siguiente lista" @@ -1201,13 +1166,11 @@ msgstr "Seleccionar una muestra de la siguiente lista" msgid "Total sample" msgstr "Muestra total" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "cerrado" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "abierto" @@ -1267,7 +1230,7 @@ msgstr "Por favor, retroceda en su navegador y solucione el problema" msgid "Import: Select columns to import" msgstr "Importar: Seleccione las columnas para importar" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Importar: Seleccione el archivo para subir" @@ -1279,36 +1242,45 @@ msgstr "Escoja el archivo CSV de muestra para subir:" msgid "Description for file:" msgstr "Descripción del archivo" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Añadir muestra" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" -msgstr "Ordenar casos" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" +msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" -msgstr "Ordenación completaada" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" +msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "Esta tarea lleva" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "Ordenación completaada" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "Fallo al completar la ordenación" @@ -1325,8 +1297,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "Editar cita" @@ -1334,11 +1305,11 @@ msgstr "Editar cita" msgid "Contact phone" msgstr "Teléfono de contacto" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Hora de Inicio" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Hora de finalización" @@ -1358,38 +1329,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Eliminar" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Editar" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Nombre del operador" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Nombre del entrevistado" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Apellido" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Resultado actual" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Operador que ha llamado" @@ -1397,9 +1369,7 @@ msgstr "Operador que ha llamado" msgid "No appointments in the future" msgstr "No hay citas en le futuro" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "Gestión de cuota" @@ -1415,11 +1385,11 @@ msgstr "Sin cuotas actualmente" msgid "Stop calling this sample when:" msgstr "Parar de llamar a esta muestra cuando:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "para" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "completados" @@ -1431,7 +1401,7 @@ msgstr "Cuota alcanzada" msgid "Quota not yet reached" msgstr "Cuota no alcanzada" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "Completados: " @@ -1443,27 +1413,27 @@ msgstr "Seleccione una pregunta para la cuota" msgid "Enter the details for creating the quota:" msgstr "Introduzca los detalles para crear la cuota:" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "Valores predefinidos para esta pregunta:" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "No hay etiquetas definidas para esta pregunta" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "Valor del código" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "Valor del código a comparar" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "El tipo de comparación" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "El número de completados para detener llamada a" @@ -1482,8 +1452,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1491,38 +1460,32 @@ msgstr "" msgid "Operator Performance" msgstr "Actuación del operador" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Seleccione un cuestionario" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Llamadas" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Tiempo total" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "Tiempo de llamada" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "Efectividad" @@ -1530,45 +1493,43 @@ msgstr "Efectividad" msgid "till" msgstr "hasta" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Seleccione un turno" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "Modificar" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "Informes de turno" @@ -1612,7 +1573,7 @@ msgstr "Herramientas administrativas" msgid "Questionnaire creation and management" msgstr "Creación de cuestionario y gestión" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1648,13 +1609,11 @@ msgstr "Asignar muestras a cuestionarios" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "Administración de cuotas de renglón" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "Gestión de operadores" @@ -1662,7 +1621,8 @@ msgstr "Gestión de operadores" msgid "Add operators to the system" msgstr "Añadir operadores al sistema" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Asignar operadores a cuestionarios" @@ -1671,191 +1631,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Progreso del cuestionario" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Mostrar todas las futuras citas" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Salida de datos" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Actuación del operador" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Gestión de clientes" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Añadir clientes al sistema" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Funciones del supervisor" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Asignar resultados a casos" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Buscar la muestra" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Configuración del sistema" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "Iniciar y monitorizar VoIP" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "Estado de extensión" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Seleccionar muestra" @@ -1871,22 +1840,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1939,7 +1919,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1951,32 +1930,27 @@ msgstr "Buscar por:" msgid "Start search" msgstr "Iniciar búsqueda" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Estado de muestra" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Número" @@ -2004,35 +1978,32 @@ msgstr "Min" msgid "Secs" msgstr "Seg" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Tasa" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Recuento" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2044,7 +2015,7 @@ msgstr "Resultados de llamada de operador" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2068,13 +2039,14 @@ msgstr "" msgid "Shift" msgstr "Turno" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Informe de turno" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2141,17 +2113,12 @@ msgstr "" msgid "Add pre fill" msgstr "Añadir pre llenado" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2161,17 +2128,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2179,11 +2144,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2197,11 +2160,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "Activar" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "Desactivar" @@ -2209,7 +2174,8 @@ msgstr "Desactivar" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "Activar/desactivar" @@ -2264,8 +2230,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Añadir turnos" @@ -2275,9 +2240,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2300,9 +2265,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Día" @@ -2314,8 +2278,36 @@ msgstr "¿Usar turno?" msgid "Submit changes" msgstr "Enviar cambios" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2331,9 +2323,7 @@ msgstr "No hay cuotas de fila" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "como" @@ -2341,8 +2331,7 @@ msgstr "como" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "filas de esta muestra cuando:" @@ -2430,8 +2419,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Añadir un operador" @@ -2447,8 +2435,7 @@ msgstr "" msgid "tool" msgstr "herramienta" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2488,11 +2475,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2512,8 +2499,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Añadir usuario" @@ -2537,7 +2523,7 @@ msgstr "vinculado a" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2545,8 +2531,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2562,71 +2547,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2643,13 +2628,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2913,7 +2896,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Número de teléfono" @@ -2945,7 +2928,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2953,11 +2936,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Proyecto" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Resultado actual:" @@ -2974,30 +2957,34 @@ msgid "Cannot connect to VoIP Server" msgstr "No se puede conectar al Servidor de VoIP" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Añadir fila" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -3008,8 +2995,7 @@ msgstr "No se puede añadir" msgid "There may already be a client of this name" msgstr "Ya hay un cliente con este nombre" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Añadir un cliente" @@ -3065,8 +3051,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3110,8 +3095,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3155,8 +3139,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "Nombre de usuario" @@ -3294,23 +3277,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Añadir/eliminar zonas horarias" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Zona horaria: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3330,8 +3321,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3351,39 +3341,50 @@ msgstr "Lista de llamadas" msgid "Change outcome" msgstr "Cambiar resultado" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "El caso no existe" @@ -3391,19 +3392,19 @@ msgstr "El caso no existe" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "mañana" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "tarde" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "noche" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3506,10 +3507,8 @@ msgstr "Desconectada" msgid "Reconnected" msgstr "Reconectado" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr " Extensión " @@ -3560,13 +3559,11 @@ msgstr "No tiene cuestionarios asignados" msgid "You are not a valid client" msgstr "No es un cliente válido" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3595,10 +3592,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" @@ -3675,3 +3678,6 @@ msgstr "" #~ msgid "Update timezone" #~ msgstr "Actualizar zona horaria" + +#~ msgid "Sorting cases" +#~ msgstr "Ordenar casos" diff --git a/locale/fa/LC_MESSAGES/fa.mo b/locale/fa/LC_MESSAGES/fa.mo index b546c79fbc022c86de65805da5146a6010b9632f..8d46bf0692a0db81ae37f36ed476c9c998e08c56 100644 GIT binary patch delta 50 zcmccXe%F1&Q$cP+BV9vF1w#WXBg4rb1V8ec>KYj78dxeA7+9GaO@1e&#%yeCxLI8I Gm;eB!P7fsj delta 50 zcmccXe%F1&Q$cP6V_idY1w#WX6Z6R*1V8ec=o%V\n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-05-09 18:23+0000\n" "Last-Translator: A J \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:21+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "لیست تاریخچه کیس" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "هیچ تماسی تاکنون انجام نگرفته" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "تاریخ/ زمان" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "شماره کیس" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "نتیجه" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "پاسخ‌گو" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "بدون اپراتور" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "انتخاب پاسخ‌گو - انسرینگ ماشین" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "پیام نگذارید، لطفا قطع کنید" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "تماس را با این نتیجه پایان بده: انسرینگ ماشین محل کار" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "تماس را با این نتیجه پایان بده: انسرینگ ماشین، پیغام گذاشته شد" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "تماس را با این نتیجه پایان بده: انسرینگ ماشین، پیغامی گذاشته نشد" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "بازگشت" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "قرار" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "ایمیل" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "جزئیات تماس" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "عملکرد" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "" @@ -175,9 +169,7 @@ msgstr "" msgid "Stop REC" msgstr "توقف ضبط" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "ضبط" @@ -185,8 +177,7 @@ msgstr "ضبط" msgid "Beginning recording..." msgstr "ضبط شروع می‌شود ..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "تماسی وجود ندارد، پس ضبط شروع نمی‌شود" @@ -194,8 +185,8 @@ msgstr "تماسی وجود ندارد، پس ضبط شروع نمی‌شود" msgid "Begin the manual recording now..." msgstr "ضبط غیرخودکار را شروع کن" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "شروع ضبط" @@ -207,37 +198,40 @@ msgstr "ضبط متوقف می‌شود ..." msgid "Stop the manual recording now..." msgstr "ضبط غیرخودکار را متوقف کن ..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "انتخاب پاسخ‌گو - تماس دوباره" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "شما اینجا هستید: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "بله - از جایی که متوقف شد ادامه بده" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "تماس را با این نتیجه پایان بده: امتناع پاسخ‌گو" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "انتخاب پاسخ‌گو - مقدمه پروژه" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "بله - ادامه بده" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -245,7 +239,8 @@ msgstr "" "تماس را با این نتیجه پایان بده: پاسخ‌گو حائز صلاحیت وجود نداشت (فردی در این " "شماره موجود نبود)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "تماس را با این نتیجه پایان بده: خارج از نمونه (قبلا پرسش شده)" @@ -279,7 +274,7 @@ msgstr "این پاسخ‌گو را اضافه کن" msgid "Select phone number:" msgstr "انتخاب شماره تلفن" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "هیچ‌کدام" @@ -303,7 +298,7 @@ msgstr "قرار:" msgid "Accept appointment from " msgstr "قرار با این فرد را قبول کن " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " تا " @@ -319,7 +314,8 @@ msgstr "در" msgid "Appointment with myself only?" msgstr "قرار با خودم فقط؟" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -327,7 +323,7 @@ msgstr "" msgid "Call List" msgstr "" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "" @@ -335,12 +331,17 @@ msgstr "" msgid "Number called" msgstr "" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "اپراتور" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "بدون کیس" @@ -348,15 +349,18 @@ msgstr "بدون کیس" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "سرپرست" @@ -364,11 +368,12 @@ msgstr "سرپرست" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -380,7 +385,11 @@ msgstr "اطلاعات" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -392,8 +401,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -409,114 +417,80 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "تماس" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "" @@ -544,7 +518,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -572,53 +548,46 @@ msgstr "" msgid "Go back to work" msgstr "" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "وضعیت" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "نام" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "شماره‌ای برای تماس وجود ندارد" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "انتخاب پاسخ‌گو - مقدمه" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "شماره محل کار" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "انسرینگ ماشین" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" "تماس را با این نتیجه پایان بده: بدون جواب (کسی جواب نداد یا مشغول بود) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "تماس را با این نتیجه پایان بده: اشتباهی قطع شد" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" "تماس را با این نتیجه پایان بده: امتناع توسط کسی که خودش را معرفی نکرد" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -626,8 +595,7 @@ msgstr "" "تماس را با این نتیجه پایان بده: پاسخ‌گویی وجود نداشت (هیچ‌ فردی در این شماره " "موجود نبود)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -643,8 +611,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "" @@ -652,12 +622,14 @@ msgstr "" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -665,48 +637,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "اضافه‌کردن پاسخ‌گو" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "بازگشت" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "شماره کیس:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "پاسخ‌گو:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "مقدار" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -730,8 +700,7 @@ msgstr "" msgid "Reasons:" msgstr "" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -743,13 +712,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "" @@ -761,7 +729,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "" @@ -834,34 +805,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "این شیفت" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "موارد کامل شده" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "موارد کامل شده در هر ساعت" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "این پروژه" @@ -929,7 +899,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -968,8 +940,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -985,8 +956,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -1006,11 +976,11 @@ msgstr "آدرس ایمیل درست نیست" msgid "Email respondent for self completion" msgstr "به پاسخ‌گو برای تکمیل فردی ایمیل بزن" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "نام" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "نام خانوادگی" @@ -1030,11 +1000,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1046,7 +1018,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1082,13 +1055,11 @@ msgstr "" "لطفا صبر کنید که این تماس انجام شود قبل از اینکه تلاش کنید تا با سرپرست تماس " "بگیرید" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1096,27 +1067,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1134,23 +1105,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1158,27 +1126,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1186,13 +1151,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1252,7 +1215,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1264,36 +1227,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1310,8 +1282,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1319,11 +1290,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1343,38 +1314,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1382,9 +1354,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1400,11 +1370,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1416,7 +1386,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1428,27 +1398,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1467,8 +1437,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1476,38 +1445,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1515,45 +1478,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1597,7 +1558,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1633,13 +1594,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1647,7 +1606,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1656,191 +1616,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1856,22 +1825,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1924,7 +1904,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1936,32 +1915,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "" @@ -1989,35 +1963,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2029,7 +2000,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2053,13 +2024,14 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2125,17 +2097,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2145,17 +2112,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2163,11 +2128,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2181,11 +2144,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2193,7 +2158,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2248,8 +2214,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2259,9 +2224,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2284,9 +2249,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2298,8 +2262,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2315,9 +2307,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2325,8 +2315,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2414,8 +2403,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2431,8 +2419,7 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2472,11 +2459,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2496,8 +2483,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "" @@ -2521,7 +2507,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2529,8 +2515,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2546,71 +2531,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2627,13 +2612,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2897,7 +2880,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2929,7 +2912,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2937,11 +2920,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2958,30 +2941,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2992,8 +2979,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3046,8 +3032,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3091,8 +3076,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3136,8 +3120,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3275,23 +3258,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3311,8 +3302,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3332,39 +3322,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3372,19 +3373,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3487,10 +3488,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3541,13 +3540,11 @@ msgstr "" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3576,10 +3573,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/fr/LC_MESSAGES/fr.mo b/locale/fr/LC_MESSAGES/fr.mo index b191a2d71944bf11287f576a25b85441832cb682..159ce477b579359737d2b980cfbea5201fe93111 100644 GIT binary patch delta 50 zcmZ2uzs7z;z6iIWk*=Yof}w$xk>TVjk&nElx&}tN29^p223Dp\n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Jamais appelé(e)" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Date/Heure" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Résultat" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Pas d'opérateur" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Retour" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Rendez-vous" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Notes" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Détails du contact" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Historique des appels" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Rendez-vous" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Performance" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Informations du projet" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Informations" @@ -175,9 +169,7 @@ msgstr "Informations" msgid "Stop REC" msgstr "Arrêter l'enregistrement" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Enregistrement" @@ -185,8 +177,7 @@ msgstr "Enregistrement" msgid "Beginning recording..." msgstr "Début de l'enregistrement" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Pas d'appel en cours, ne pas commencer l'enregistrement" @@ -194,8 +185,8 @@ msgstr "Pas d'appel en cours, ne pas commencer l'enregistrement" msgid "Begin the manual recording now..." msgstr "Commencer l'enregistrement manuel maintenant" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Enregistrer" @@ -207,43 +198,47 @@ msgstr "Arrêter l'enregistrement" msgid "Stop the manual recording now..." msgstr "Arrêter l'enregistrement manuel maintenant" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Vous êtes : " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Oui - Reprenez là où nous nous sommes arrêtés" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Appel non abouti : refus de l'appelé" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Oui - Continuez" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "Appel non abouti : hors panel (déjà interrogé par un autre moyen)" @@ -277,7 +272,7 @@ msgstr "" msgid "Select phone number:" msgstr "Sélectionner le numéro de téléphone :" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Aucun" @@ -303,7 +298,7 @@ msgstr "" msgid "Accept appointment from " msgstr "" -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr "" @@ -319,7 +314,8 @@ msgstr "activé" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -327,7 +323,7 @@ msgstr "" msgid "Call List" msgstr "Liste d'appels" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Aucun appel réalisé" @@ -335,12 +331,17 @@ msgstr "Aucun appel réalisé" msgid "Number called" msgstr "Numéro appelé" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Opérateur" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "" @@ -348,15 +349,18 @@ msgstr "" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Terminer" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Superviseur" @@ -364,11 +368,12 @@ msgstr "Superviseur" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -380,7 +385,11 @@ msgstr "Information" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -392,8 +401,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -409,116 +417,82 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Appel" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" "Appuyer sur le bouton d'appel pour composer le numéro de votre rendez-vous :" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Numéro à appeler :" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Sélectionner le numéro à composer" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" "Indiquer la raison de l'échec de l'appel avant de terminer ce dossier" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Erreur : fermer la fenêtre" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Appel répondu" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Raccrocher" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Sonnerie" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Répondu" @@ -546,7 +520,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -574,58 +550,50 @@ msgstr "" msgid "Go back to work" msgstr "Retour au travail" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "État" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Nom" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Téléphone Professionnel" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Répondeur" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "Appel non abouti : pas de réponse (occupé ou sonne dans le vide) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Appel non abouti : raccrochage accidentel" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Appel non abouti : refus par une personne inconnue" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "Appel non abouti : appelé jamais disponible à ce numéro" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -639,8 +607,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Démarrer" @@ -648,12 +618,14 @@ msgstr "Démarrer" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Questionnaire" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -661,48 +633,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Revenir en arrière" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Var" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Valeur" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -726,8 +696,7 @@ msgstr "" msgid "Reasons:" msgstr "Raisons" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -739,13 +708,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "Questionnaires attribués" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Description" @@ -757,7 +725,10 @@ msgstr "Erreur : Aucun questionnaire ne vous a été attribué" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Échantillon" @@ -830,34 +801,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Ajouter une note" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Pas de notes" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Note" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Complétions" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Réalisations par heure" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Ce projet" @@ -925,7 +895,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -964,8 +936,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -981,8 +952,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -1002,11 +972,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1026,11 +996,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1042,7 +1014,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1076,13 +1049,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1090,27 +1061,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Date" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1128,23 +1099,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1152,27 +1120,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1180,13 +1145,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "Fermé" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "Ouvrir" @@ -1246,7 +1209,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1258,36 +1221,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1304,8 +1276,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1313,11 +1284,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Heure de démarrage" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Heure de fin" @@ -1337,38 +1308,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Supprimer" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Éditer" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Nom de famille" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1376,9 +1348,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1394,11 +1364,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "pour" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1410,7 +1380,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1422,27 +1392,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1461,8 +1431,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1470,38 +1439,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Appels" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Temps total" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "Heure de l'appel" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1509,45 +1472,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1591,7 +1552,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1627,13 +1588,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1641,7 +1600,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1650,191 +1610,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Sortie des données" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Configuration du système" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1850,22 +1819,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1918,7 +1898,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1930,32 +1909,27 @@ msgstr "Rechercher:" msgid "Start search" msgstr "Lancer la recherche" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Numéro" @@ -1983,35 +1957,32 @@ msgstr "Min" msgid "Secs" msgstr "Secs" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Taux" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Comptes" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2023,7 +1994,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2047,13 +2018,14 @@ msgstr "" msgid "Shift" msgstr "Shift" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2119,17 +2091,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2139,17 +2106,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2157,11 +2122,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2175,11 +2138,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2187,7 +2152,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2242,8 +2208,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2253,9 +2218,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2278,9 +2243,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Jour" @@ -2292,8 +2256,36 @@ msgstr "" msgid "Submit changes" msgstr "Valider les modifications" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2309,9 +2301,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "comme" @@ -2319,8 +2309,7 @@ msgstr "comme" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2408,8 +2397,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2425,8 +2413,7 @@ msgstr "" msgid "tool" msgstr "outil" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2466,11 +2453,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2490,8 +2477,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Ajouter un utilisateur" @@ -2515,7 +2501,7 @@ msgstr "Liée à" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2523,8 +2509,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2540,71 +2525,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2621,13 +2606,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2891,7 +2874,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2923,7 +2906,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2931,11 +2914,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Projet" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2952,30 +2935,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Ajouter une ligne" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2986,8 +2973,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3040,8 +3026,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3085,8 +3070,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3130,8 +3114,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3269,23 +3252,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Fuseau horaire : " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "Tous les fuseaux horaires" @@ -3305,8 +3296,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3326,39 +3316,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3366,19 +3367,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3481,10 +3482,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3535,13 +3534,11 @@ msgstr "" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3570,10 +3567,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/gl/LC_MESSAGES/gl.mo b/locale/gl/LC_MESSAGES/gl.mo index a85d1964a87a38caed5118b808432c5730ecdf16..ca1c2087cfe62d59cbfa06c9c7cd58b35cf060b9 100644 GIT binary patch delta 52 zcmZ3qjcL&~rVXO8+=fQFhL#G323AIflNDk=^P1`!80i{VDi|18nHo)2h*M)WHa6Vs I8F$kL0Fkc_#Q*>R delta 52 zcmZ3qjcL&~rVXO8+y=(FhUN-}2398KlNDk=^P1=y8i7O%46KX{CM(3LF&kN!ZT5`2 GX#)U~KMu|S diff --git a/locale/gl/LC_MESSAGES/gl.po b/locale/gl/LC_MESSAGES/gl.po index c989bd19..6309afb2 100644 --- a/locale/gl/LC_MESSAGES/gl.po +++ b/locale/gl/LC_MESSAGES/gl.po @@ -7,169 +7,163 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Listaxe do Hitorial de Casos" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Non se fixeron chamadas" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Data/Hora" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "ID de caso" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Estado" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Entrevistado/a" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Sen operador/a" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Selección do/a entrevistado/a - Contestador automático" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Non deixe unha mensaxe, por favor colgue" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Finalizar a chamada co estado: Contestador automático de negocio" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" "Finalizar a chamada co estado: Contestador automático (deixouse mensaxe)" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" "Finalizar a chamada co estado: Contestador automático (non se deixou mensaxe)" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Voltar" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Selección do/a entrevistado/a - Respostas de negocios" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Sinto molestalo/a, trabuqueime co número" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Finallizar a chamada co estado: Número dun negocio" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Rechamada" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Finallizar o traballo" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Notas" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Historial de chamadas" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Quendas" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Rechamadas" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Rendemento" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Historial de traballo" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Información" @@ -177,9 +171,7 @@ msgstr "Información" msgid "Stop REC" msgstr "Deter a gravación" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Gravación" @@ -187,8 +179,7 @@ msgstr "Gravación" msgid "Beginning recording..." msgstr "A comezar a gravación..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Non se está a chamar, por iso non está a iniciar a gravación" @@ -196,8 +187,8 @@ msgstr "Non se está a chamar, por iso non está a iniciar a gravación" msgid "Begin the manual recording now..." msgstr "Comezar a gravación manual agora..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Comezar a gravación" @@ -209,37 +200,40 @@ msgstr "A deter a gravación..." msgid "Stop the manual recording now..." msgstr "Deter a gravación manual agora..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Selección do/a Entrevistado/a - Volver chamar" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Vostede é: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "% completado" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Si - Continuar onde o deixamos" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Finallizar a chamada co estado: Rexeitada polo/a entrevistado/a" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Selección do/a entrevistado/a - Introdución do Proxecto" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Si - Continuar" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -247,7 +241,8 @@ msgstr "" "Finallizar a chamada co estado: Non hai persoas elixíbeis (persoa non " "dispoñíbel neste número)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -282,7 +277,7 @@ msgstr "Engadir este/a entrevistado/a" msgid "Select phone number:" msgstr "Escoller o número de teléfono:" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Ningún" @@ -306,7 +301,7 @@ msgstr "Rechamada:" msgid "Accept appointment from " msgstr "Aceptar a rechamada de " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " até " @@ -322,7 +317,8 @@ msgstr "para" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -330,7 +326,7 @@ msgstr "" msgid "Call List" msgstr "Listaxe de Chamadas" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Non se fixeron chamadas" @@ -338,12 +334,17 @@ msgstr "Non se fixeron chamadas" msgid "Number called" msgstr "Número chamado" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operador/a" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Sen caso" @@ -351,15 +352,18 @@ msgstr "Sen caso" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Finallizar" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Chamar/Colgar" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Supervisor/a" @@ -367,11 +371,12 @@ msgstr "Supervisor/a" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -383,7 +388,11 @@ msgstr "Información" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -395,8 +404,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -412,55 +420,32 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Chamada" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Non a chamar" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Finallizar o caso" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "Calque o botón de chamar para marcar o número desta rechamada:" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Número para chamar:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -468,60 +453,49 @@ msgstr "" "O seu complemento de VoIP non está activado. Por favor, peche esta xanela e " "active a VoIP calcando unha vez no botón vermello que pon 'VoIP Desactivada'" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Escoller o número de teléfono a marcar:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "A última chamada xa completou este intento de chamada" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "Introduza unha razón para este estado antes de completar este caso:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Require codificación" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Asignar estado" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Erro: Pechar a xanela" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "A solicitar a chamada" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Chamara Atendida" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Colgar" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "A Soar" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Respondida" @@ -549,7 +523,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -577,53 +553,46 @@ msgstr "" msgid "Go back to work" msgstr "Voltar ao traballo" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Estado" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Nome" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Selección do/a entrevistado/a - Introdución" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Número do traballo" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Contestador automático" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" "Finallizar a chamada co estado: Sen resposta (acaba de soar ou ocupado) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Finallizar a chamada co estado: Corte accidental" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" "Finallizar a chamada co estado: Rexeitada por unha persoa descoñecida" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -631,8 +600,7 @@ msgstr "" "Finallizar a chamada co estado: Non hai entrevistados/as elixíbeis (persoa " "nunca dispoñíbel neste número)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -648,8 +616,10 @@ msgstr "Lista de Quendas" msgid "No shifts for this project" msgstr "Non hai quendas para este proxecto" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Comezar" @@ -657,12 +627,14 @@ msgstr "Comezar" msgid "No future shifts scheduled" msgstr "Non hai quendas previstas" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Cuestionario" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -670,48 +642,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Finaliza r a chamada co estado: Completado" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Engadir un entrevistado/a" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Voltar" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "ID de caso:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Entrevistado/a:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Var" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Valor" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -735,8 +705,7 @@ msgstr "Neste intre non hai casos dispoñíbeis" msgid "Reasons:" msgstr "Razóns:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -748,13 +717,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "Cuestionarios asignados:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Descrición" @@ -766,7 +734,10 @@ msgstr "ERRO: Non ten asignado ningún cuestionario" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Mostra" @@ -842,34 +813,33 @@ msgstr "POSÍBEL ERRO: Atinxiuse a cota de fila para esta pregunta" msgid "Case Notes" msgstr "Notas do caso" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Engadir unha nota" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Sen notas" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Nota" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Esta quenda" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Entrevistas" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Entrevistas por hora" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Este proxecto" @@ -937,7 +907,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -976,8 +948,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -993,8 +964,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "Selección do/a Entrevistado - Fin da Cota do Proxecto" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "Finallizar a chamada co estado: Cota completa" @@ -1014,11 +984,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1038,11 +1008,13 @@ msgstr "" msgid "Appointment List" msgstr "Listaxe de Rechamadas" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Non se chamou aínda" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1054,7 +1026,8 @@ msgstr "Non se concertaron rechamadas" msgid "No future appointments scheduled" msgstr "Non hai rechamadas previstas" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1092,13 +1065,11 @@ msgstr "" "Por favor, agarde a que respondan a chamada antes de tentar chamar o/a " "supervisor/a" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Proceso en curso:" @@ -1106,29 +1077,29 @@ msgstr "Proceso en curso:" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" "O proceso xa se pechou (ex.: reiniciouse o servidor) - calque aquí para " "confirmar" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Matar o proceso en curso" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Data" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1146,23 +1117,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Estado do último proceso executado (se houber)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "Listaxe do Historial de Chamadas" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Data/Hora de comezo da chamada" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Hora de finalización" @@ -1170,27 +1138,24 @@ msgstr "Hora de finalización" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Asignar clientes aos cuestionarios" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "Informe de cotas" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Escolla un cuestionario da lista inferior" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Escolla unha mostra da lista inferior" @@ -1198,13 +1163,11 @@ msgstr "Escolla unha mostra da lista inferior" msgid "Total sample" msgstr "Mostra total" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "pechado" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "aberto" @@ -1264,7 +1227,7 @@ msgstr "Por favor, retroceda no seu navegador e arranxe o problema" msgid "Import: Select columns to import" msgstr "Importar: Escolla as columnas a importar" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Importar: Escolla o ficheiro a cargar" @@ -1276,36 +1239,45 @@ msgstr "Escoller o ficheiro de mostra CSV a cargar:" msgid "Description for file:" msgstr "Descrición do ficheiro:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Engadir unha mostra" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1322,8 +1294,7 @@ msgstr "Borrouse a rechamada. Agora debe modificar o estado do caso" msgid "Modify case outcome" msgstr "Modificar o estado do caso" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "Editar a rechamada" @@ -1331,11 +1302,11 @@ msgstr "Editar a rechamada" msgid "Contact phone" msgstr "Teléfono de contacto" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Hora de comezo" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Hora de finalización" @@ -1355,38 +1326,39 @@ msgstr "Amosar as Rechamadas" msgid "All appointments (with times displayed in your time zone)" msgstr "Todas as rechamadas (coas horas amosadas no seu fuso horario)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Borrar" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Editar" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Nome do/a operador/a" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Nome do/a entrevistado/a" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Apelido" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Estado actual" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Operador/a que chamou" @@ -1394,9 +1366,7 @@ msgstr "Operador/a que chamou" msgid "No appointments in the future" msgstr "Non hai rechamadas previstas" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "Xestión de cotas" @@ -1412,11 +1382,11 @@ msgstr "Non hai cotas" msgid "Stop calling this sample when:" msgstr "Deixar de chamar a esta mostra cando:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "para" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "entrevistas" @@ -1428,7 +1398,7 @@ msgstr "Cubriuse a cota" msgid "Quota not yet reached" msgstr "Non se cubriu a cota" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "Entrevistas actuais " @@ -1440,27 +1410,27 @@ msgstr "Escolla unha pregunta para a cota" msgid "Enter the details for creating the quota:" msgstr "Introduza os detalles para crear a cota:" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "Valores predefinidos para esta pregunta:" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "Non se definiron etiquetas para este cuestionario" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "Valor de código" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "O valor de código a comparar" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "A clase de comparación" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "Número de entrevistas no que parar de chamar" @@ -1479,8 +1449,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "Modificar o nivel dos/das operadores/as" @@ -1488,38 +1457,32 @@ msgstr "Modificar o nivel dos/das operadores/as" msgid "Operator Performance" msgstr "Rendemento do/a operador/a" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Por favor, escolla un cuestionario" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Chamadas" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Tempo total" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "Tempo de chamadas" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "Entrevistas / h" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "Chamadas / h" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "Efectividade" @@ -1527,45 +1490,43 @@ msgstr "Efectividade" msgid "till" msgstr "até" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Por favor, escolla unha quenda" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "Informes da quenda" @@ -1609,7 +1570,7 @@ msgstr "Ferramentas Administrativas" msgid "Questionnaire creation and management" msgstr "Xestión e creación de cuestionarios" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1645,13 +1606,11 @@ msgstr "Asignar mostras a cuestionarios" msgid "Set values in questionnaire to pre fill" msgstr "Establecer os valores do cuestionario a preencher" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "Xestión de filas de cotas" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1659,7 +1618,8 @@ msgstr "" msgid "Add operators to the system" msgstr "Engadir operadores/as ao sistema" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Asignar operadores/as aos cuestionarios" @@ -1668,193 +1628,202 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "Xestión de quendas (engadir/eliminar)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Progreso do cuestionario" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Amosar todas as rechamadas previstas" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "Informe de intentos das chamadas de mostra" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "Estados do cuestionario" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Saída de datos" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Rendemento do/a operador/a" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Xestión de clientes" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Engadir clientes ao sistema" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Funcións do supervisor" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Asignar estados a casos" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Buscar na mostra" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Configuración do sistema" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "Establecer a lista predeterminada de fusos horarios" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "Establecer os horarios predeterminados das quendas" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "Establecer restricións temporais de chamada" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "Comezar e supervisar VoIP" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "Asignar unha Mostra: Escolla a mostra para asignar" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "Máximo de chamadas (0 para non limitalas)" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "Máximo de intentos de chamada (0 para non limitalos)" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" "Máximo de mensaxes de contestador a deixar por caso (0 para non limitalas)" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" "Escoller aleatoriamente da mostra? (secuencialmente en caso contrario)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "Mostras seleccionadas para este cuestionario" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "Premer para desmarcar" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "Escolla a mostra para este cuestionario:" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Escolla a mostra:" @@ -1870,22 +1839,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1938,7 +1918,6 @@ msgid "Search within this sample" msgstr "Buscar dentro desta mostra" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "Usar o carácter % como comodín" @@ -1950,32 +1929,27 @@ msgstr "Buscar por:" msgid "Start search" msgstr "Comezar a busca" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "Estados do Cuestionario" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "Estados" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Estado da mostra" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "Extraídos da mostra" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "Restantes na mostra" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Número" @@ -2003,35 +1977,32 @@ msgstr "Mínimo" msgid "Secs" msgstr "s" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Taxa" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "Taxa de Resposta 1" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "Taxa de Rexeitamento 1" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "Taxa de Cooperación 1" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "Taxa de Contacto 1" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Contaxe" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2043,7 +2014,7 @@ msgstr "Estados da chamada de operador" msgid "No outcomes recorded for this sample" msgstr "Non se rexistraron estados nesta mostra" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "Non se rexistraron estados neste cuestionario" @@ -2067,13 +2038,14 @@ msgstr "Non se definiron quendas neste cuestionario" msgid "Shift" msgstr "Quenda" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Informe da quenda" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "Proceso de Supervisión de VoIP" @@ -2142,17 +2114,12 @@ msgstr "ou: Escolla o predeterminado na listaxe da mostra" msgid "Add pre fill" msgstr "Engadir predefinida" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2162,17 +2129,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2180,11 +2145,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2198,11 +2161,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2210,7 +2175,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2265,8 +2231,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Engadir quendas" @@ -2276,9 +2241,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2303,9 +2268,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Día" @@ -2317,8 +2281,36 @@ msgstr "Usar quendas?" msgid "Submit changes" msgstr "Enviar os cambios" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "Cotas copiadas" @@ -2334,9 +2326,7 @@ msgstr "Sen cotas de fila neste intre" msgid "Replicate: Where" msgstr "Replicar: Onde" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "como" @@ -2344,8 +2334,7 @@ msgstr "como" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "filas desta mostra cando:" @@ -2434,8 +2423,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Engadir un/unha operador/a" @@ -2452,8 +2440,7 @@ msgstr "Asignar un/unha Operador ao Cuestionario" msgid "tool" msgstr "ferramenta" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2497,11 +2484,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "Usará este/a operador/a a VoIP?" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2521,8 +2508,7 @@ msgstr "É o/a operador/a un/unha supervisor/a?" msgid "Is the operator a refusal converter?" msgstr "É este/a operador/a un/unha conversor/a de rexeitamentos?" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Engadir un/unha usuario/a" @@ -2546,7 +2532,7 @@ msgstr "ligado a" msgid "Error: Failed to insert questionnaire" msgstr "Erro: Fallou o inserimento do cuestionario" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Nome para o cuestionario:" @@ -2554,8 +2540,7 @@ msgstr "Nome para o cuestionario:" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2571,72 +2556,72 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "Restrinxir as rechamadas ás quendas?" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "Restrinxir o traballo ás quendas?" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "Cuestionario só para probas?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "Introdución da selección do/a entrevistado/a:" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "Introdución do proxecto de selección do/a entrevistado/a:" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" "Rechamada de selección do/a entrevistado/a (cuestionario xa comezado)" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "Mensaxe a deixar no contestador automático:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2653,13 +2638,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2923,7 +2906,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Número de teléfono" @@ -2955,7 +2938,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2963,11 +2946,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Proxecto" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Estado actual:" @@ -2984,14 +2967,14 @@ msgid "Cannot connect to VoIP Server" msgstr "Non se pode conectar co servidor VoIP" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" @@ -2999,17 +2982,21 @@ msgstr "" "Introduza as horas de comezo e finalización para cada día da semana nas que " "restrinxir as chamadas" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Engadir unha fila" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -3020,8 +3007,7 @@ msgstr "Non se puido engadir" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Engadir un cliente" @@ -3079,8 +3065,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "Gardar os cambios nas quendas" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3124,8 +3109,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3169,8 +3153,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3308,23 +3291,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Engadir/Eliminar Fusos Horarios" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "Calque para eliminar un Fuso Horario da listaxe predeterminada" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "Engadir un Fuso Horario:" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Fuso Horario: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "Engadir un Fuso Horario" @@ -3344,8 +3335,7 @@ msgstr "Escoller o caso" msgid "Set an outcome for this call" msgstr "Establecer o estado para esta chamada" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "Establecer o estado" @@ -3365,39 +3355,50 @@ msgstr "Lista de chamadas" msgid "Change outcome" msgstr "Mudar o estado" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "Notas do caso" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "Modificar as respostas para este caso" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "O caso non comezou en Limesurve aínda" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "Establecer o estado do caso" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "O caso non existe" @@ -3405,19 +3406,19 @@ msgstr "O caso non existe" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "mañá" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "tarde" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "noite" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3522,10 +3523,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr " Extensión " @@ -3576,13 +3575,11 @@ msgstr "Non lle foi asignado cuestionario ningún" msgid "You are not a valid client" msgstr "Vostede non é un cliente válido" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3611,10 +3608,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/he/LC_MESSAGES/he.mo b/locale/he/LC_MESSAGES/he.mo index ade88547150b0f21fe804cc40d0a5a2db1ac9013..7978fc9d4171b6efa8c4ae48f19a936ea020f2c8 100644 GIT binary patch delta 50 zcmaE@{91W~8W*>rk*=Yof}w$xk>O-RuJ^pAx&}tN29^p223DpLv96)Hf}w$xiTPwhuJ^nqx`sv|5d#A&Bg4tM+-l557G|5nxTmrK E09v~YsQ>@~ diff --git a/locale/he/LC_MESSAGES/he.po b/locale/he/LC_MESSAGES/he.po index 3089792d..c214f73b 100644 --- a/locale/he/LC_MESSAGES/he.po +++ b/locale/he/LC_MESSAGES/he.po @@ -7,167 +7,161 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-12-30 05:48+0000\n" "Last-Translator: Gal Zilberman \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:21+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "רשימת התקשרויות קודמות" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "לא בוצעו שיחות בעבר" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "תאריך/שעה" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "קוד מקרה" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "תוצאה" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "אין להשאיר הודעה, נא לנתק" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "סיום שיחה עם תוצאה: מזכירה אלקטרונית עיסקית" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "סיום שיחה עם תוצאה: הושארה הודעה במענה קולי" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "סיום שיחה עם תוצאה: מענה קולי לא הושארה הודעה" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "חזרה" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "מתנצל על ההטרדה, חייגתי למספר שגוי" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "סיום שיחה עם תוצאה: מספר עסקי" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "פגישה" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "דוא\"ל" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "סיום עבודה" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "הערות" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "פרטי יצירת־קשר" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "היסטורית שיחות" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "משמרות" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "פגישות" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "ביצועים" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "היסטורית עבודה" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "פרטי הפרוייקט" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "פרטים" @@ -175,9 +169,7 @@ msgstr "פרטים" msgid "Stop REC" msgstr "" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "" @@ -185,8 +177,7 @@ msgstr "" msgid "Beginning recording..." msgstr "" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "" @@ -194,8 +185,8 @@ msgstr "" msgid "Begin the manual recording now..." msgstr "" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "התחל הקלטה" @@ -207,43 +198,47 @@ msgstr "" msgid "Stop the manual recording now..." msgstr "" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "" -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "כן - המשך" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -277,7 +272,7 @@ msgstr "" msgid "Select phone number:" msgstr "" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "" @@ -301,7 +296,7 @@ msgstr "" msgid "Accept appointment from " msgstr "" -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr "" @@ -317,7 +312,8 @@ msgstr "" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -325,7 +321,7 @@ msgstr "" msgid "Call List" msgstr "" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "" @@ -333,12 +329,17 @@ msgstr "" msgid "Number called" msgstr "" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "" @@ -346,15 +347,18 @@ msgstr "" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "סיום" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "חיוג/ניתוק" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "מפקח" @@ -362,11 +366,12 @@ msgstr "מפקח" msgid "Restart" msgstr "התחל מחדש" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "זמינות" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "שיחה עם מפקח" @@ -378,7 +383,11 @@ msgstr "" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -390,8 +399,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -407,55 +415,32 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "שיחה" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "סיום מקרה" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "לחץ על כפתור החיוג על מנת להתקשר למספר עבור פגישה זו" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "מספר לחיוג" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -463,60 +448,49 @@ msgstr "" "הרחבת VoIP איננה מופעלת, נא לסגור חלון זה ולהפעיל את הרחבת VoIP ע\"י לחיצה " "אחת על הכפתור האדום אשר רשום עליו \"VoIP כבוי\"" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "בחר מספר טלפון לחיוג" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "הכנס סיבה לתוצאה זו לפני השלמת המקרה" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "מצריך קידוד" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "הקצה תוצאה" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "תקלה: סגור חלון" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "מבקש שיחה" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "שיחה נענתה" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "נתק" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "מצלצל" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "נענה" @@ -544,7 +518,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -572,58 +548,50 @@ msgstr "" msgid "Go back to work" msgstr "" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "סטאטוס" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "שם" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "אין יותר מספרים לחיוג" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "מספר עיסקי" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "משיבון" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "סיום שיחה עם תוצאה: ניתוק בטעות" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -637,8 +605,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "" @@ -646,12 +616,14 @@ msgstr "" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -659,48 +631,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "הוסף משיב" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "חזור" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "קוד מקרה" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "משיב" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "ערך" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -724,8 +694,7 @@ msgstr "" msgid "Reasons:" msgstr "" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -737,13 +706,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "" @@ -755,7 +723,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "" @@ -828,34 +799,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "" @@ -923,7 +893,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -962,8 +934,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -979,8 +950,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -1000,11 +970,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1024,11 +994,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1040,7 +1012,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1074,13 +1047,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1088,27 +1059,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1126,23 +1097,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1150,27 +1118,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1178,13 +1143,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1244,7 +1207,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1256,36 +1219,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1302,8 +1274,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1311,11 +1282,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1335,38 +1306,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1374,9 +1346,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1392,11 +1362,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1408,7 +1378,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1420,27 +1390,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1459,8 +1429,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1468,38 +1437,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1507,45 +1470,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1589,7 +1550,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1625,13 +1586,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1639,7 +1598,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1648,191 +1608,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1848,22 +1817,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1916,7 +1896,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1928,32 +1907,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "" @@ -1981,35 +1955,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2021,7 +1992,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2045,13 +2016,14 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2117,17 +2089,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2137,17 +2104,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2155,11 +2120,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2173,11 +2136,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2185,7 +2150,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2240,8 +2206,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2251,9 +2216,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2276,9 +2241,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2290,8 +2254,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2307,9 +2299,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2317,8 +2307,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2406,8 +2395,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2423,8 +2411,7 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2464,11 +2451,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2488,8 +2475,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "" @@ -2513,7 +2499,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2521,8 +2507,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2538,71 +2523,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2619,13 +2604,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2889,7 +2872,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2921,7 +2904,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2929,11 +2912,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2950,30 +2933,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2984,8 +2971,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3038,8 +3024,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3083,8 +3068,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3128,8 +3112,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3267,23 +3250,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3303,8 +3294,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3324,39 +3314,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3364,19 +3365,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3479,10 +3480,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3533,13 +3532,11 @@ msgstr "" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3568,10 +3565,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/id/LC_MESSAGES/id.mo b/locale/id/LC_MESSAGES/id.mo index bd8fc2a596095be3d3df98e7453dcdd4c1c6215e..fb5f23a339c97a6c5fdb9e748ad9e700005f3ed5 100644 GIT binary patch delta 46 zcmcb@e1&nj@|x-z80i{VDi|18nHo)A!KlV&Y;35>#Q*?4 C&7Za)8t|R06$0z A>;M1& diff --git a/locale/id/LC_MESSAGES/id.po b/locale/id/LC_MESSAGES/id.po index de6ef8af..06ff3a6e 100644 --- a/locale/id/LC_MESSAGES/id.po +++ b/locale/id/LC_MESSAGES/id.po @@ -7,167 +7,161 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "" @@ -175,9 +169,7 @@ msgstr "" msgid "Stop REC" msgstr "" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "" @@ -185,8 +177,7 @@ msgstr "" msgid "Beginning recording..." msgstr "" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "" @@ -194,8 +185,8 @@ msgstr "" msgid "Begin the manual recording now..." msgstr "" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "" @@ -207,43 +198,47 @@ msgstr "" msgid "Stop the manual recording now..." msgstr "" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "" -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -277,7 +272,7 @@ msgstr "" msgid "Select phone number:" msgstr "" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "" @@ -301,7 +296,7 @@ msgstr "" msgid "Accept appointment from " msgstr "" -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr "" @@ -317,7 +312,8 @@ msgstr "" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -325,7 +321,7 @@ msgstr "" msgid "Call List" msgstr "" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "" @@ -333,12 +329,17 @@ msgstr "" msgid "Number called" msgstr "" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "" @@ -346,15 +347,18 @@ msgstr "" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "" @@ -362,11 +366,12 @@ msgstr "" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -378,7 +383,11 @@ msgstr "" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -390,8 +399,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -407,114 +415,80 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "" @@ -542,7 +516,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -570,58 +546,50 @@ msgstr "" msgid "Go back to work" msgstr "" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -635,8 +603,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "" @@ -644,12 +614,14 @@ msgstr "" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -657,48 +629,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -722,8 +692,7 @@ msgstr "" msgid "Reasons:" msgstr "" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -735,13 +704,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "" @@ -753,7 +721,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "" @@ -826,34 +797,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "" @@ -921,7 +891,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -960,8 +932,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -977,8 +948,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -998,11 +968,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1022,11 +992,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1038,7 +1010,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1072,13 +1045,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1086,27 +1057,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1124,23 +1095,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1148,27 +1116,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1176,13 +1141,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1242,7 +1205,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1254,36 +1217,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1300,8 +1272,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1309,11 +1280,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1333,38 +1304,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1372,9 +1344,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1390,11 +1360,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1406,7 +1376,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1418,27 +1388,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1457,8 +1427,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1466,38 +1435,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1505,45 +1468,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1587,7 +1548,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1623,13 +1584,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1637,7 +1596,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1646,191 +1606,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1846,22 +1815,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1914,7 +1894,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1926,32 +1905,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "" @@ -1979,35 +1953,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2019,7 +1990,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2043,13 +2014,14 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2115,17 +2087,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2135,17 +2102,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2153,11 +2118,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2171,11 +2134,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2183,7 +2148,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2238,8 +2204,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2249,9 +2214,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2274,9 +2239,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2288,8 +2252,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2305,9 +2297,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2315,8 +2305,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2404,8 +2393,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2421,8 +2409,7 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2462,11 +2449,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2486,8 +2473,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "" @@ -2511,7 +2497,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2519,8 +2505,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2536,71 +2521,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2617,13 +2602,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2887,7 +2870,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2919,7 +2902,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2927,11 +2910,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2948,30 +2931,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2982,8 +2969,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3036,8 +3022,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3081,8 +3066,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3126,8 +3110,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3265,23 +3248,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3301,8 +3292,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3322,39 +3312,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3362,19 +3363,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3477,10 +3478,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3531,13 +3530,11 @@ msgstr "" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3566,10 +3563,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/it/LC_MESSAGES/it.mo b/locale/it/LC_MESSAGES/it.mo index 940d253d250996a5310cf182b7a464fb87b2d640..bbce12c07cd51c03287c2b485d587dea68cd271c 100644 GIT binary patch delta 16384 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 F{{zC=w-x{Z diff --git a/locale/it/LC_MESSAGES/it.po b/locale/it/LC_MESSAGES/it.po index 2f5d6a4d..f2060fa8 100644 --- a/locale/it/LC_MESSAGES/it.po +++ b/locale/it/LC_MESSAGES/it.po @@ -7,169 +7,163 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-12-17 13:37+0000\n" "Last-Translator: Cristiano Santinello \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Lista campione" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Non sono mai state fatte chiamate" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Data/ora" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "Identificativo" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Esito" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Intervistato" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Nessun operatore" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Selezione dell'intervistato - segreteria telefonica" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Non lasciare un messaggio, riagganciare" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Termina la chiamata con esito: Segreteria telefonica aziendale" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "Termina la chiamata con esito: Messaggio lasciato in segreteria" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" "Termina la chiamata con esito: Segreteria telefonica, nessun messaggio " "lasciato" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Vai indietro" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Selezione dell'intervistato - Azienda" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Mi scusi il disturbo, ho chiamato il numero sbagliato" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Termina la chiamata con l'esito: Numero aziendale" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Appuntamento" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "Email" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Termina lavoro" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "Freccia per espandere o contrarre" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Note" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Contatti" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Cronologia delle chiamate" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Turni" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Appuntamenti" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Prestazioni" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Cronologia del lavoro" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Informazioni sul progetto" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Informazioni generali" @@ -177,9 +171,7 @@ msgstr "Informazioni generali" msgid "Stop REC" msgstr "Ferma reg" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Registra" @@ -187,8 +179,7 @@ msgstr "Registra" msgid "Beginning recording..." msgstr "La registrazione sta iniziando..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Non sto chiamando, quindi non posso registrare" @@ -196,8 +187,8 @@ msgstr "Non sto chiamando, quindi non posso registrare" msgid "Begin the manual recording now..." msgstr "Inizia la registrazione manuale ora..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Registra" @@ -209,37 +200,40 @@ msgstr "La registrazione si sta fermando..." msgid "Stop the manual recording now..." msgstr "Ferma la registrazione manuale ora..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Selezione dell'intervistato - Call back" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Tu sei: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "% completato" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Sì - Continua da dove si ha interrotto" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Termina chiamata con esito: Rifiuto a parte dell'intervistato" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Seleziona intervistato - Presentazione del progetto" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Si - continua" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -247,7 +241,8 @@ msgstr "" "Termina la chiamata con esito: Nessun intervistato idoneo (la persona non è " "disponibile su questo numero)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -285,7 +280,7 @@ msgstr "Aggiungi questo intervistato" msgid "Select phone number:" msgstr "Seleziona numero di telefono:" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Nessuno" @@ -309,7 +304,7 @@ msgstr "Appuntamento:" msgid "Accept appointment from " msgstr "Accetta appuntamento da " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " fino a " @@ -325,7 +320,8 @@ msgstr "on" msgid "Appointment with myself only?" msgstr "Appuntamento solo con me stesso?" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -333,7 +329,7 @@ msgstr "" msgid "Call List" msgstr "Lista di chiamate" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Nessuna chiamata effettuata" @@ -341,12 +337,17 @@ msgstr "Nessuna chiamata effettuata" msgid "Number called" msgstr "Numero chiamato" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operatore" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Nessun caso" @@ -354,15 +355,18 @@ msgstr "Nessun caso" msgid "Get a new case" msgstr "Prendi un nuovo caso" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Termina" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Chiama/Riaggancia" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Supervisore" @@ -370,11 +374,12 @@ msgstr "Supervisore" msgid "Restart" msgstr "Riavvia" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Disponibilità" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "Impostazioni della chat con il supervisore" @@ -386,7 +391,11 @@ msgstr "Informazioni" msgid "Me" msgstr "Io" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "Identificativo del caso" @@ -398,8 +407,7 @@ msgstr "Supervisore disponibile" msgid "Supervisor not available" msgstr "Supervisore non disponibile" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "Messaggio" @@ -415,56 +423,33 @@ msgstr "Da" msgid "Supervisor chat is not enabled" msgstr "La chat con il supervisore non è abilitata" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Chiama" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Non in chiamata" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Termina caso" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" "Premi il tasto di chiamata per comporre il numero per questo appuntamento:" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Numero da chiamare:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -472,60 +457,49 @@ msgstr "" "Non è abilitato il VoIP. Chiudi questa finestra e abilita il VoIP premendo " "una volta sul bottone rosso sul quale è scritto: \"VoIP Off\"" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Seleziona il numero di telefono da chiamare:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "L'ultima chiamata ha concluso questo tentativo di chiamata" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "Inserisci un motivo per questo esito prima di completare il caso:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Richiede codificazione" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Assegna esito" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Errore: Chiudi la finestra" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Sto prenotando la chiamata" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Chiamata risposta" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Riaggancia" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Sta squillando" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Risposto" @@ -553,7 +527,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "Numero interno" @@ -581,53 +557,46 @@ msgstr "" msgid "Go back to work" msgstr "Torna al lavoro" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Stato" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Nome" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "Nessun altro numero da chiamare" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Selezione intervistato - presentazione" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Numero aziendale" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Segreteria telefonica" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" "Termina chiamata con esito: Nessuna risposta (continua a squillare o " "occupato) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Termina chiamata con esito: Riaggancio accidentale" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Termina chiamata con esito: Rifiuto di una persona sconosciuta" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -635,8 +604,7 @@ msgstr "" "Termina chiamata con esito: Nessun intervistato idoneo (la persona non è mai " "disponibile su questo numero)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -652,8 +620,10 @@ msgstr "Lista turni" msgid "No shifts for this project" msgstr "Nessun turno per questo progetto" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Inizia" @@ -661,12 +631,14 @@ msgstr "Inizia" msgid "No future shifts scheduled" msgstr "Nessun turno previsto in futuro" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Questionario" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "Selezione dell'intervistato - Fine progetto" @@ -675,50 +647,48 @@ msgid "Call automatically ended with outcome: Complete - End case" msgstr "" "Chiamata terminata automaticamente con risultato: Completo - Termina caso" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Termina chiamata con esito: Completo" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Aggiungi intervistato" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Torna indietro" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "Identificativo:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Intervistato:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Var" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Valore" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" "Seleziona i gruppi per limitare la disponibilità (nessuna selezione " "significa sempre disponibile)" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "Disponibilità di gruppo non definita per questa survey" @@ -742,8 +712,7 @@ msgstr "Nessun caso attualmente disponibile" msgid "Reasons:" msgstr "Motivi:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "Abilitato" @@ -755,13 +724,12 @@ msgstr "Disabilitato" msgid "Assigned questionnaires:" msgstr "Questionari assegnati:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Descrizione" @@ -773,7 +741,10 @@ msgstr "ERRORE: Nessun questionario assegnato" msgid "Assigned samples:" msgstr "Campioni assegnati:" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Campione" @@ -852,34 +823,33 @@ msgstr "POSSIBILE ERRORE: quota di riga raggiunta per questa domanda" msgid "Case Notes" msgstr "Note sul caso" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Aggiungi nota" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Nessuna nota" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Nota" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Questo turno" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Completamenti" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Completamenti all'ora" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Questo progetto" @@ -947,7 +917,9 @@ msgstr "" msgid "Ending case now" msgstr "Chiudendo caso adesso" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "secondi" @@ -988,8 +960,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -1005,8 +976,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "Selezione dell'intervistato - Fine quota progetto" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "Termina la chiamata con esito: Quota raggiunta" @@ -1027,11 +997,11 @@ msgid "Email respondent for self completion" msgstr "" "Mandare una email all'intervistato per il questionario auto-somministrato" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "Nome" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "Cognome" @@ -1053,11 +1023,13 @@ msgstr "" msgid "Appointment List" msgstr "Lista di appuntamenti" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Non ancora chiamato" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "Qualsiasi operatore" @@ -1069,7 +1041,8 @@ msgstr "Nessun appuntamento creato" msgid "No future appointments scheduled" msgstr "Non è previsto alcun appuntamento futuro" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "Appuntamento con" @@ -1105,13 +1078,11 @@ msgid "" msgstr "" "Aspetta una risposta a questa telefonata prima di telefonare al supervisore" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "Monitora l'ordinamento sistemico dei casi" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Processo in esecuzione:" @@ -1119,29 +1090,29 @@ msgstr "Processo in esecuzione:" msgid "Kill signal sent: Please wait..." msgstr "Segnale d'arresto inviato: Attendi..." -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" "Il processo è già chiuso (ad esempio, il server è stato riavviato) - clicca " "qui per confermare" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Termina il processo in esecuzione" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "Log ID" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Data" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "Testo del log" @@ -1164,23 +1135,20 @@ msgstr "" "potrebbero essere migliori se ci sono molti casi o quota complesse. Se non " "si sono verificati rallentamenti, si sconsiglia questa funzionalità." -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Esito dell'ultima esecuzione del processo (se presente)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "Lista cronologica delle chiamate" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Data/orario della chiamata" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Orario di fine" @@ -1188,27 +1156,24 @@ msgstr "Orario di fine" msgid "Download Call History List" msgstr "Scarica la cronologia delle chiamate" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Assegna clienti ai questionari" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "Rapporto sulle quote" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Seleziona un questionario dalla lista" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Seleziona un campione dalla lista" @@ -1216,13 +1181,11 @@ msgstr "Seleziona un campione dalla lista" msgid "Total sample" msgstr "Campione totale" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "chiuso" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "aperto" @@ -1282,7 +1245,7 @@ msgstr "Torna indietro usando il browser per risolvere il problema" msgid "Import: Select columns to import" msgstr "Importazione: Seleziona le colonne da importare" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Importazione: Seleziona il file da caricare" @@ -1294,38 +1257,47 @@ msgstr "Seleziona il file campione CSV da caricare:" msgid "Description for file:" msgstr "Descrizione del file:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Aggiungi campione" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "Processo di ordinamento dei casi iniziato" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" -msgstr "Sto ordinando i casi" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" +msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" "Il sistema ha automaticamente chiuso un caso lasciato aperto per più di 24 " "ore" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" -msgstr "Ordinamento completato" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" +msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "Questo compito ha richiesto" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "Ordinamento completato" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "Impossibile completare l'ordinamento" @@ -1343,8 +1315,7 @@ msgstr "" msgid "Modify case outcome" msgstr "Modifica l'esito del caso" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "Modifica appuntamento" @@ -1352,11 +1323,11 @@ msgstr "Modifica appuntamento" msgid "Contact phone" msgstr "Contatto telefonico" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Orario d'inizio" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Orario di fine" @@ -1376,38 +1347,39 @@ msgstr "Mostra appuntamenti" msgid "All appointments (with times displayed in your time zone)" msgstr "Tutti gli appuntamenti (mostrando l'orario nel fuso orario corrente)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Elimina" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Modifica" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Nome operatore" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Nome intervistato" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Cognome" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Esito attuale" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Operatore che ha chiamato" @@ -1415,9 +1387,7 @@ msgstr "Operatore che ha chiamato" msgid "No appointments in the future" msgstr "Nessun appuntamento nel futuro" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "Gestisce le quote" @@ -1433,11 +1403,11 @@ msgstr "Nessuna quota al momento" msgid "Stop calling this sample when:" msgstr "Non chiamare più in questo campione quando:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "per" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "completamenti" @@ -1449,7 +1419,7 @@ msgstr "Quota raggiunta" msgid "Quota not yet reached" msgstr "Quota non ancora raggiunta" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "Completamenti correnti: " @@ -1461,27 +1431,27 @@ msgstr "Seleziona una domanda per questa quota" msgid "Enter the details for creating the quota:" msgstr "Inserisci i dettagli della quota:" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "Valori predefiniti per questa domanda:" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "Nessuna etichetta definita per questa domanda" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "Valore di codifica" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "Il valore di codifica da confrontare" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "Il tipo di confronto" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "Il numero di completamenti per terminare le chiamate a" @@ -1503,8 +1473,7 @@ msgstr "" "gli operatori possono assegnare qualsiasi esito ad un caso, questa procedura " "consente di restringere i casi assegnati ad un operatore." -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "Modifica le competenze degli operatori" @@ -1512,38 +1481,32 @@ msgstr "Modifica le competenze degli operatori" msgid "Operator Performance" msgstr "Prestazioni dell'operatore" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Seleziona un questionario" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Chiamate" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Tempo totale" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "Durata delle chiamate" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "Completamenti all'ora" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "Chiamate all'ora" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "Efficacia" @@ -1551,47 +1514,43 @@ msgstr "Efficacia" msgid "till" msgstr "fino a" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Seleziona un turno" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" -msgstr "Disponibilità di gruppo" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" +msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "Modifica" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" -"La disponibilità di gruppo indica i periodi in cui gli intervistati sono " -"disponibili." #: admin/availabilitygroup.php:117 -msgid "No availability groups" -msgstr "Non ci sono disponibilità di gruppo" - -#: admin/availabilitygroup.php:119 -msgid "Availablity group" -msgstr "Disponibilità di gruppo" - -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" -msgstr "Aggiungi disponibilità di gruppo" - -#: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "No time slots" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" +msgstr "" + +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" +msgstr "" + +#: admin/availabilitygroup.php:126 +msgid "Time slot name" +msgstr "" + +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "Rapporti sui turni" @@ -1635,7 +1594,7 @@ msgstr "Utilità di amministrazione" msgid "Questionnaire creation and management" msgstr "Creazione e gestione dei questionari" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "Crea uno strumento usando Limesurvey" @@ -1671,13 +1630,11 @@ msgstr "Assegna campioni ai questionari" msgid "Set values in questionnaire to pre fill" msgstr "Imposta le domande del questionario da precompilare" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "Gestisci le quote di riga" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "Gestisci gli operatori" @@ -1685,7 +1642,8 @@ msgstr "Gestisci gli operatori" msgid "Add operators to the system" msgstr "Aggiungi operatori al sistema" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Assegna operatori ai questionari" @@ -1694,191 +1652,200 @@ msgid "Availability and shift management" msgstr "Disponibilità e gestione dei turni" #: admin/index.php:73 -msgid "Manage availablity groups" -msgstr "Gestisci le disponibilità di gruppo" +msgid "Manage time slots" +msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "Assegna disponibilità ai questionari" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "Gestisci i turni (aggiungi/rimuovi)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Avanzamento del questionario" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Mostra tutti gli appuntamenti futuri" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "Rapporto sui tentativi di chiamata/campione" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "Esiti dei questionari" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Output dei dati" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Prestazioni degli operatori" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Gestione del cliente" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Aggiungi clienti al sistema" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Funzioni del supervisore" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Assegna esiti ai casi" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Cerca nel campione" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "Stato dei casi e assegnazione" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "Generatore di blocchi di appuntamenti" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Impostazioni di sistema" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "Imposta la lista dei fusi orari" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "Imposta gli orari di base dei turni" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "Imposta gli orari vincolati per le chiamate" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "Imposta le informazioni sul centro" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "Inizia l'ordinamento sistemico dei casi con monitoraggio" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "Inizia il VoIP con monitoraggio" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "Stato del numero interno" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "Assegnazione dei campioni: Seleziona il campione da assegnare" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "Modifica i dettagli del campione" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "Numero massimo di chiamate (0 per illimitato)" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "Numero massimo di tentativi di chiamata (0 per illimitato)" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "Numero di messaggi di segreteria telefonica da lasciare (0 per mai)" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "Seleziona dal campione in modo casuale? (altrimenti sequenziale)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "Campioni selezionati per questo questionario" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "Illimitato" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "Sequenziale" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "Casuale" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "Mai" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "Clicca per non assegnare" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "Numero massimo di chiamate" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "Numero massimo di tentativi di chiamata" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "Messaggi di segreteria telefonica" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "Tipo di selezione" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "Non assegnare campione" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "Nessun campione è stato selezionato per il questionario" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "Aggiungere un campione al questionario:" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Seleziona campione:" @@ -1894,22 +1861,33 @@ msgstr "Aggiorna le informazioni sul centro" msgid "Assign availability group to questionnaire" msgstr "Assegna una disponibilità di gruppo al questionario" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "Non è stata assegnata nessuna disponibilità di gruppo" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "Sono state assegnate disponibilità di gruppo al questionario" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "Aggiungi una disponibilità di gruppo al questionario:" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "Seleziona la disponibilità di gruppo:" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "Aggiungi disponibilità di gruppo" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1965,7 +1943,6 @@ msgid "Search within this sample" msgstr "Cerca all'interno di questo campione" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "Utilizza il carattere % come jolly" @@ -1977,32 +1954,27 @@ msgstr "Cerca:" msgid "Start search" msgstr "Inizia ricerca" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "Esiti dei questionari" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "Esiti" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Stato del campione" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "Preso dal campione" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "Rimani nel campione" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Numero" @@ -2030,35 +2002,32 @@ msgstr "Min" msgid "Secs" msgstr "Sec" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Tasso" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "Tasso di risposta 1" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "Tasso di rifiuto 1" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "Tasso di cooperazione 1" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "Tasso di contatto 1" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Conteggio" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2070,7 +2039,7 @@ msgstr "Esiti delle chiamate dell'operatore" msgid "No outcomes recorded for this sample" msgstr "Nessun esito registrato per questo campione" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "Nessun esito registrato per questo questionario" @@ -2094,13 +2063,14 @@ msgstr "Nessun turno definito per il questionario" msgid "Shift" msgstr "Turno" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Rapporto turno" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "Effettua monitoraggio del processo VoIP" @@ -2171,17 +2141,12 @@ msgstr "oppure: Seleziona precompilazione automatica da lista campione" msgid "Add pre fill" msgstr "Aggiungi precompilazione" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "Rinomina" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "Permessi di visualizzazione dell'operatore" @@ -2191,17 +2156,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "Seleziona i campi del campione da far visualizzare agli operatori" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "Campo" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "Esempio di dati" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "Consentire all'operatore di vedere?" @@ -2209,11 +2172,9 @@ msgstr "Consentire all'operatore di vedere?" msgid "Save changes" msgstr "Salva le modifiche" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "Deseleziona" @@ -2229,11 +2190,13 @@ msgstr "" msgid "Delete selected fields" msgstr "Elimina i campi selezionati" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "Abilita" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "Disabilita" @@ -2241,7 +2204,8 @@ msgstr "Disabilita" msgid "Sample list" msgstr "Lista campione" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "Abilita/disabilita" @@ -2305,8 +2269,7 @@ msgstr "Seleziona il file CSV da caricare:" msgid "Load bulk appointment CSV" msgstr "Carica un file CSV per creare blocchi di appuntamenti" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Aggiungi turni" @@ -2318,9 +2281,9 @@ msgstr "" "Devi essere operatore (oltre ad essere amministratore) per " "aggiungere/modificare i turni" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2348,9 +2311,8 @@ msgstr "Seleziona l'anno" msgid "Select week of year" msgstr "Seleziona la settimana" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Giorno" @@ -2362,8 +2324,36 @@ msgstr "Utlizza il turno?" msgid "Submit changes" msgstr "Invia le modifiche" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "Quote copiate" @@ -2379,9 +2369,7 @@ msgstr "Attalmente nessuna quota di riga" msgid "Replicate: Where" msgstr "Replicare: Quando" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "come" @@ -2389,8 +2377,7 @@ msgstr "come" msgid "Sample only. Stop calling where" msgstr "Solo campione. Smetti di chamare quando" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "righe di questo campione quando:" @@ -2486,8 +2473,7 @@ msgstr "" "Non è stato possibile aggiungere l'operatore. Potrebbe esserci già un " "operatore con questo nome:" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Aggiungi un operatore" @@ -2504,8 +2490,7 @@ msgstr "Assegna operatore al questionario" msgid "tool" msgstr "strumento" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2550,11 +2535,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "Questo operatore userà il VoIP?" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "Nome utente Jabber/XMPP" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "Password Jabber/XMPP" @@ -2574,8 +2559,7 @@ msgstr "L'operatore è un supervisore?" msgid "Is the operator a refusal converter?" msgstr "L'operatore è un operatore esperto nella trasformazione dei rifiuti?" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Aggiungi utente" @@ -2599,7 +2583,7 @@ msgstr "Legame creato con" msgid "Error: Failed to insert questionnaire" msgstr "Errore: Inserimento questionario non riuscito" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Nome del questionario:" @@ -2607,8 +2591,7 @@ msgstr "Nome del questionario:" msgid "Select limesurvey instrument:" msgstr "Seleziona lo strumento Limesurvey:" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "Strumento esistente:" @@ -2626,73 +2609,73 @@ msgid "Use basic respondent selection text (below)" msgstr "" "Utilizza il seguente testo di base per la selezione dell'intervistato" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "Restringi gli appuntamenti ai turni?" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "Restringi il lavoro ai turni?" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "Questionario di prova?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" "Consentire l'auto-somministrazione dell'intervista tramite invito email?" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "Modalità di visualizzazione del questionario per l'intervistato" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "Tutto in uno" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "Una domanda alla volta" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "Un gruppo alla volta" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "Modello Limesurvey per intervistato" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" "URL da utilizzare alla fine dell'auto-somministrazione (obbligatorio)" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "Presentazione della selezione dell'intervistato:" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "Presentazione del progetto per la selezione dell'intervistato" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "Selezione dell'intervistato per richiamata (questionario in corso):" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "Messaggio da lasciare sulla segreteria telefonica:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "Testo per la fine dell'intervista (schermata di ringraziamento):" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "Informazioni sul progetto per gli operatori:" @@ -2709,13 +2692,11 @@ msgstr "" msgid "Display extension status" msgstr "Mostra lo stato del numero interno" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2979,7 +2960,7 @@ msgstr "Il sabato" msgid "String" msgstr "Stringa" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Numero di telefono" @@ -3011,7 +2992,7 @@ msgstr "Indirizzo email" msgid "Self completion email invitation sent" msgstr "Invito al questionario auto-compilato inviato tramite l'email" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "Questionario auto-compilato in linea" @@ -3019,11 +3000,11 @@ msgstr "Questionario auto-compilato in linea" msgid "Cases by outcome" msgstr "Distribuzione dei casi per esito" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Progetto" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Esito corrente:" @@ -3040,14 +3021,14 @@ msgid "Cannot connect to VoIP Server" msgstr "Impossibile connettersi al server VoIP" #: admin/availability.php:57 -msgid "No availability group set" -msgstr "Nessuna disponibilità di gruppo impostata" +msgid "No time slot group set" +msgstr "" #: admin/availability.php:95 -msgid "Modify availability" -msgstr "Modifica disponibilità" +msgid "Modify time slots" +msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" @@ -3055,17 +3036,21 @@ msgstr "" "Inserisci gli orari di inizio e di fine per restringere le chiamate in tutti " "i giorni della settimana" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Aggiungi riga" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" -msgstr "Salva modifiche alle disponibilità" +msgid "Save changes to time slot group" +msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -3076,8 +3061,7 @@ msgstr "Impossibile aggiungere" msgid "There may already be a client of this name" msgstr "Potrebbe già esistere un cliente con questo nome" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Aggiungi cliente" @@ -3135,8 +3119,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "Salva le modifiche ai turni" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "Adesso" @@ -3183,8 +3166,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "Scarica dati relativi al questionario tramite Limesurvey" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "Seleziona un campione" @@ -3229,8 +3211,7 @@ msgstr "" msgid "Operator edit" msgstr "Modifica operatore" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "Nome utente" @@ -3376,23 +3357,31 @@ msgstr "Sei sicuro/a di voler eliminare il questionario?" msgid "Delete this questionnaire" msgstr "Elimina il questionario" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Aggiungi/rimuovi fuso orario" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "Clicca per rimuovere una zona di fuso orario dalla lista di default" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "Aggiungi una zona di fuso orario:" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Zona di fuso orario: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "Aggiungi fuso orario" @@ -3412,8 +3401,7 @@ msgstr "Seleziona caso" msgid "Set an outcome for this call" msgstr "Imposta un esito per questa chiamata" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "Imposta esito" @@ -3433,39 +3421,50 @@ msgstr "Lista chiamate" msgid "Change outcome" msgstr "Modifica l'esito" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "Note" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "Modifica le risposte per questo caso" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "Caso non ancora iniziato in Limesurvey" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "Imposta l'esito di un caso" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "Aggiorna la disponibilità dei casi" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "Assegna questo caso ad un operatore (sarà il prossimo caso)" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "Assegna questo caso ad un operatore" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "Il caso non esiste" @@ -3473,19 +3472,19 @@ msgstr "Il caso non esiste" msgid "Error: Cannot write to temporary directory" msgstr "Errore: Non si riesce a scrivere alla cartella provvisoria" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "mattino" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "pomeriggio" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "sera" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3590,10 +3589,8 @@ msgstr "Sconnesso" msgid "Reconnected" msgstr "Riconnesso" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr " Numero interno " @@ -3650,13 +3647,11 @@ msgstr "Non ti è stato assegnato alcun questionario" msgid "You are not a valid client" msgstr "Non sei un cliente valido" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3685,10 +3680,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" @@ -3769,8 +3770,32 @@ msgstr "" #~ msgid "No operators" #~ msgstr "Nessun operatore" +#~ msgid "Sorting cases" +#~ msgstr "Sto ordinando i casi" + #~ msgid "Enter the telephone extension number:" #~ msgstr "Inserisci il numero interno:" #~ msgid "Enter the telephone extension password:" #~ msgstr "Inserisci la password del numero telefonico interno:" + +#~ msgid "Availability groups" +#~ msgstr "Disponibilità di gruppo" + +#~ msgid "No availability groups" +#~ msgstr "Non ci sono disponibilità di gruppo" + +#~ msgid "Availablity group" +#~ msgstr "Disponibilità di gruppo" + +#~ msgid "No availability group set" +#~ msgstr "Nessuna disponibilità di gruppo impostata" + +#~ msgid "Modify availability" +#~ msgstr "Modifica disponibilità" + +#~ msgid "Save changes to availabilities" +#~ msgstr "Salva modifiche alle disponibilità" + +#~ msgid "Manage availablity groups" +#~ msgstr "Gestisci le disponibilità di gruppo" diff --git a/locale/lt/LC_MESSAGES/lt.mo b/locale/lt/LC_MESSAGES/lt.mo index 7ef38403fa058a2035a43450fcfaecde6b88afd6..8655dfce90e687f747e7b22fcf62a868ba8f8314 100644 GIT binary patch delta 52 zcmZpj!qhs2X@hPsx1o`)p{0VMft8WrWQ*Xhyr#MaM!E);3I+yNrbd&kLe!XzjSV*^ Ihb%G$0Dc_~M*si- delta 52 zcmZpj!qhs2X@hPsw}G*)p}B&gft88*WQ*Xhye7JaMj#Ob11lqg$yOn1%tjVwo0CHp GnF0WQtqxEC diff --git a/locale/lt/LC_MESSAGES/lt.po b/locale/lt/LC_MESSAGES/lt.po index 339493bc..c683daa8 100644 --- a/locale/lt/LC_MESSAGES/lt.po +++ b/locale/lt/LC_MESSAGES/lt.po @@ -7,167 +7,161 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Atvejų istorijos sąrašas" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Jokių skambučių nebuvo atlikta" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Data/Laikas" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "Bylos ID" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Rezultatas" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Respondentas" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Nėra operatoriaus" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Respondentų Atranka - Autoatsakiklis" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Nepalikinėkite žinutės, dėkite ragelį" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Baigti skambinimą su rezultatu: Verslo autoatsakiklis" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "Baigti skambinimą su rezultatu: Autoatsakiklis, palikta žinutė" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "Baigti skambinimą su rezultatu: Autoatsakiklis, nepalikta žinutė" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Atgal" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Respondentų Atranka - Verslo atsakymai" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Atleiskit, kad trukdau, surinkau ne tą numerį" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Baigti skambutį su rezultatu: Verslo numeris" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Perskambinimas" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Baigti darbą" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Pastabos" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Duomenys" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Istorija" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Pamaina" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Perskambinimai" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Aktyvumas" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Darbo istorija" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Projekto Informacija" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Informacija" @@ -175,9 +169,7 @@ msgstr "Informacija" msgid "Stop REC" msgstr "Sustabdyti įrašymą" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Įrašyti" @@ -185,8 +177,7 @@ msgstr "Įrašyti" msgid "Beginning recording..." msgstr "Pradeda įrašinėti..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Nepasirengęs (-usi), nepradėti įrašinėti" @@ -194,8 +185,8 @@ msgstr "Nepasirengęs (-usi), nepradėti įrašinėti" msgid "Begin the manual recording now..." msgstr "Dabar pradeti rankinį įrašą..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Įrašyti" @@ -207,37 +198,40 @@ msgstr "Stabdo įrašą" msgid "Stop the manual recording now..." msgstr "Dabar sustabdyti rankinį įrašą..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Respondento pasirinkimas - Perskambinti vėliau" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Jūs esate: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "% complete" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Taip - Tęsti kur nuo ten užbaigėte" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Skambučio statusas: Atsisakymas ( respondento)" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Respondentų pasirinkimas - Projekto įžanga" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Taip - Tęsti" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -245,7 +239,8 @@ msgstr "" "Baigti skambinimą su rezultatu: nėra pageidaujamo respondento (asmuo " "nepasiekiamas šiuo numeriu)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "Skambučio statusas: Dalyvavęs (asmuo jau dalyvavo tyrime)" @@ -279,7 +274,7 @@ msgstr "Pridėkite šį respondentą" msgid "Select phone number:" msgstr "Pasirinkite telefono numerį:" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Joks" @@ -303,7 +298,7 @@ msgstr "Perskambinimas:" msgid "Accept appointment from " msgstr "Priimti perskambinimą iš " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " iki " @@ -319,7 +314,8 @@ msgstr "įjungti" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -327,7 +323,7 @@ msgstr "" msgid "Call List" msgstr "Skambučių sąrašas" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Nebuvo skambinta" @@ -335,12 +331,17 @@ msgstr "Nebuvo skambinta" msgid "Number called" msgstr "Skambintas numeris" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operatorius" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Nėra jokios bylos" @@ -348,15 +349,18 @@ msgstr "Nėra jokios bylos" msgid "Get a new case" msgstr "Nauja byla" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Pabaiga" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Paskambinti/Padėti ragelį" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Supervizorius" @@ -364,11 +368,12 @@ msgstr "Supervizorius" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Pasiekiamumas" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -380,7 +385,11 @@ msgstr "Informacija" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -392,8 +401,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -409,57 +417,34 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Skambinti" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "laisvas" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Baigti atvejį" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" "Tam, kad skambinti šiam numatytąjam perskambinimui, spauskite mygtuką " "Skambinti" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Skambinti šiuo numeriu" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -467,62 +452,51 @@ msgstr "" "Jūsų VoIP išplėtinys nėra aktyvuotas. Prašome uždaryti langą ir dukart " "spustelėjus raudoną mygtuką \"VoIP Off\" aktyvuoti VoIP." -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Pasirinkite numerį kuriuo skambinti" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "Paskutinis skambutis užbaigtas, šiuo bandymu" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" "Nurodykite tokių rezultatų priežastis, prieš užbaigdami su šiuo konkrečiu " "atveju:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Reikia kodavimo" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Priskirti rezultatus" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Klaida: uždarykite langą" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Pageidaujamas skmbutis" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Skambutis" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Padėti ragelį" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Skambina" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Pakėlė ragelį" @@ -550,7 +524,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -578,60 +554,52 @@ msgstr "" msgid "Go back to work" msgstr "Atgal į darbą" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Statusas" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Vardas" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Respondento pasirinkimas - Prisistatymas" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Darbo numeris" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Telefono atsakiklis" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" "Skambučio statusas: Neatsakytas ( užimta arba niekas nekelia ragelio) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Skambučio statusas: Atsitiktinai nutrūkęs pokalbis" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Skambučio statusas: Atsisakymas ( nežinomo žmogaus)" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "" "Skambučio statusas: netinkamas kontaktas ( asmuo nepasiekiamas šiuo numeriu)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -647,8 +615,10 @@ msgstr "Pamainų sąrašas" msgid "No shifts for this project" msgstr "Nėra priskirtų pamainų šiam projektui" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Pradėti" @@ -656,12 +626,14 @@ msgstr "Pradėti" msgid "No future shifts scheduled" msgstr "Nėra numatomų pamainų" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Klausimynas" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -669,48 +641,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Baigti skambutį su rezultatu: Užpildyta" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Pridėti respondentą" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Sugrįšti atgal" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "Bylos id:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Respondentas:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Atributas" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Reikšmė" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -734,8 +704,7 @@ msgstr "Šiuo metu nėra prieinamų atvejų" msgid "Reasons:" msgstr "Priežastys:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -747,13 +716,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "Priskirti klausimynai:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "iD" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Aprašymas" @@ -765,7 +733,10 @@ msgstr "Klaida: Jokio priskirto klausimyno" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Imtis" @@ -839,34 +810,33 @@ msgstr "" msgid "Case Notes" msgstr "Pastabos" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Pridėti pastabą" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Jokių pastabų" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Pastaba" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Pamaina" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Užbaigimai" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Užpildymu per valanda" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Šis projektas" @@ -934,7 +904,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -973,8 +945,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -990,8 +961,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -1011,11 +981,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1035,11 +1005,13 @@ msgstr "" msgid "Appointment List" msgstr "Perskambinimų sąrašas" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Dar neskambinta" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1051,7 +1023,8 @@ msgstr "Neatlikta jokių perskambinimų" msgid "No future appointments scheduled" msgstr "Nesuplanuota perskambinti ateityje" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1085,13 +1058,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Vykstantis procesas:" @@ -1099,27 +1070,27 @@ msgstr "Vykstantis procesas:" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Nutraukti vykstantį procesą" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Data" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1137,23 +1108,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Praėjusio proceso rezultatai (jei tokių yra)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "Skambučių sarašas" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Data/Laikas skambučio pradžia" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Pabaigta" @@ -1161,27 +1129,24 @@ msgstr "Pabaigta" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Priskirti klientus klausimynams" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Pasirinkite klausimyną iš žemiau nurodyto sąrašo" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Pasirinkite imtį/atranką iš žemiau esančio sąrašo" @@ -1189,13 +1154,11 @@ msgstr "Pasirinkite imtį/atranką iš žemiau esančio sąrašo" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1255,7 +1218,7 @@ msgstr "Grįžkite į savo naršyklę ir pašalinkite problemą" msgid "Import: Select columns to import" msgstr "Importavimas: Pasirinkite stulpelė importavimui" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Importavimas: pasirinkite bylą įkėlimui" @@ -1267,36 +1230,45 @@ msgstr "Pasirinkite CSV pavyzdžio bylą, tam kad įkelti:" msgid "Description for file:" msgstr "Bylos aprašymas:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Pridėti imtį" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1315,8 +1287,7 @@ msgstr "" msgid "Modify case outcome" msgstr "Modifikuoti atvejo rezultatus" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "Keisti perskambinimą" @@ -1324,11 +1295,11 @@ msgstr "Keisti perskambinimą" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1348,38 +1319,39 @@ msgstr "Perskambinimų Peržiūra" msgid "All appointments (with times displayed in your time zone)" msgstr "Visi perskambinimai (su laiku jūsų laiko zonoje)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Ištrinti" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Redaguoti" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Operatoriaus vardas" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Respondento Vardas" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Pavardė" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Pastarasis rezultatas" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Skambinęs operatorius" @@ -1387,9 +1359,7 @@ msgstr "Skambinęs operatorius" msgid "No appointments in the future" msgstr "Nėra perskambinimų ateityje" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "Kvotų valdymas" @@ -1405,11 +1375,11 @@ msgstr "Šiuo metu nėra kvotų" msgid "Stop calling this sample when:" msgstr "Sustoti skambinti šiam sąrašui kai:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "tam" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "užpildymas" @@ -1421,7 +1391,7 @@ msgstr "Kvota pasiekta" msgid "Quota not yet reached" msgstr "Kvota dar nepasiekta" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "Šiuo metu užpildyta: " @@ -1433,27 +1403,27 @@ msgstr "Pasirinkite klausimą šiai kvotai" msgid "Enter the details for creating the quota:" msgstr "Įrašykite detales tam, kad sukuti šią kvotą:" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "Šio klausimo išakstinio užpildymo reikšmės" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "Jokių stulpelių reikšmių nėra nustatyta šiam klausimui" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "Atsakymų reikšmės" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "Atsakymų reikšmės su kuriom sulyginti" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "Palyginimo tipas" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "Reikiamų užpildymų skaičius" @@ -1472,8 +1442,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "Keisti operatorių" @@ -1481,38 +1450,32 @@ msgstr "Keisti operatorių" msgid "Operator Performance" msgstr "Operatoriaus darbų atlikimas" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Prašau pasirinkite klausimyną" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Bendras laikas" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1520,45 +1483,43 @@ msgstr "" msgid "till" msgstr "iki" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Prašau pasirinkti pamainą" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "Pakitimų pranešimai" @@ -1602,7 +1563,7 @@ msgstr "Administravimo įrankiai" msgid "Questionnaire creation and management" msgstr "Klausimyno sukurimas ir valdymas" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1640,13 +1601,11 @@ msgstr "" "Nurodykite reikšmes klausimyne, automatiniam išankstiniam pildymui (pre " "fill)" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1654,7 +1613,8 @@ msgstr "" msgid "Add operators to the system" msgstr "Prideti operatorius" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Priskirti operatorius klausimynams" @@ -1663,193 +1623,202 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "pakitimų valdymas (pridėti/pašalinti)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Klausimyno progresas" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Nurodykite visus ateities perskambinimus" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "Klausimyno rezultatai" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Duomenų išvedimas" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Operatoriaus efektingumas" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Kliento valdymas" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Pridėti klientų į sistemą" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Supervizoriaus funkcijos" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Priskirti rezultatus atvejams" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Ieškoti pavyzdžio" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Sistemos nustatymai" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "Nustayti numatytąją laiko juostą" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "Nustatyti numatytujų pakitimų skaičių" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "Nustatyti skmbučių apribojimo skaičių" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "Paleisti ir stebėti VoIP" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "Priskirkite atranką: pasirinkite atranką priskyrimui" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "Maksimalus skmbučių skaičius (nurodyti 0 kai neribotas)" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "Maksimalus bandymų (skambinti) skaičius (nurodyti 0 kai neribotas)" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" "Vienam atvejui skirtų autoatsakiklio žinučių skaičius (nurodyti 0 kai nei " "vieno)" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "Pasirinkti iš atrankos atsitiktinai? (kitu atveju nuosekliai)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "Pasirinktos atrankos/imtys šiam klausimynui" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "Spustelkite išsiregistravimui" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "Įkelti atranką šiam klausimynui" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Pasirinkti atranką/imtį" @@ -1865,22 +1834,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1934,7 +1914,6 @@ msgid "Search within this sample" msgstr "Paieška šioje imtyje/atrankoje" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "Use the % character as a wildcard" @@ -1946,32 +1925,27 @@ msgstr "Ieškoti:" msgid "Start search" msgstr "Pradėti paiešką" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "Klausimyno rezultatai" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "Rezultatai" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Pavyzdžio statusas" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "Išėmimas iš pavyzdžio" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "Pasilieka pavyzdyje" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Skaičius" @@ -1999,35 +1973,32 @@ msgstr "min" msgid "Secs" msgstr "sek." -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Dažnis" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "Atsakymų dažnumas" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "Atsisakymų dažnumas" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "Kooperacijos Rodiklis 1" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "Kontakto Rodiklis 1" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Skaičius" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2039,7 +2010,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "Jokių statusų nebuvo priskirta šiam sąrašui" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "Nėra išsaugotų rezultatų šiam klausimynui" @@ -2063,13 +2034,14 @@ msgstr "Nėra pakitimų priskirtų šiam klausimynui" msgid "Shift" msgstr "Pamaina" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Pamainos ataskaita" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "VoIP Proceso Stebįjimas" @@ -2141,17 +2113,12 @@ msgstr "" msgid "Add pre fill" msgstr "Priedėti automatinį užpildymą" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2161,17 +2128,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2179,11 +2144,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2197,11 +2160,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2209,7 +2174,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2264,8 +2230,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Pridėti pamainas" @@ -2275,9 +2240,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2301,9 +2266,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Diena" @@ -2315,8 +2279,36 @@ msgstr "naudoti pamainą?" msgid "Submit changes" msgstr "Patvirtinti pakeitimus" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2332,9 +2324,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2342,8 +2332,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2431,8 +2420,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Pridėkite operatorių" @@ -2448,8 +2436,7 @@ msgstr "Priskirkite operatorių klausimynui" msgid "tool" msgstr "įrankis" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2492,11 +2479,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2516,8 +2503,7 @@ msgstr "Ar operatorius yra supervizorius?" msgid "Is the operator a refusal converter?" msgstr "Ar operatorius yra atsisakymų perkalbėtojas?" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Pridėti vartotoją" @@ -2541,7 +2527,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Klausimyno vardas" @@ -2549,8 +2535,7 @@ msgstr "Klausimyno vardas" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2566,71 +2551,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "Apriboti perskambinimų pakeitimų galimybę?" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "Apriboti galimybe darbo pakeitimams?" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "Klausimynas tik testavimui?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "Įvadas į respondentų atranką" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "Įvadas į respondentų atrankos projektą" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "Respondentų atrankos perskambinimas (jau pradėtas klausimynas)" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "Žinutė skirta palikti autoatsakiklyje:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2647,13 +2632,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2917,7 +2900,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Telefono numeris" @@ -2949,7 +2932,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2957,11 +2940,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Projektas" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Pastarasisi rezultatas:" @@ -2978,14 +2961,14 @@ msgid "Cannot connect to VoIP Server" msgstr "Neįmanoma prisijungti prie VoIP serverio" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" @@ -2993,17 +2976,21 @@ msgstr "" "Įveskite kiekvienai savaitės dienai skambučio ribojimo laiko praždią ir " "pabaigą" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Pridėti eilutę" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -3014,8 +3001,7 @@ msgstr "Negalima pridėti" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Pridėti klientą" @@ -3073,8 +3059,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "Išsaugoti pakeitimus pamainoms" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3118,8 +3103,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3163,8 +3147,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3302,23 +3285,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Pridėti/Pašalinti Laiko juostas" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "Spustelkite, tam, kad pašalinti Laiko juostas iš numatytojo sąrašo" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "Pridėkite Laiko juostą:" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Laiko juosta: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "Pridėti laiko zoną" @@ -3338,8 +3329,7 @@ msgstr "Pasirinkite atvejį" msgid "Set an outcome for this call" msgstr "Nustatykite šio skambučio rezultatą" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "Nustatykite rezultatą" @@ -3359,39 +3349,50 @@ msgstr "Skambučių sąrašas" msgid "Change outcome" msgstr "Pakeiskite rezultatą:" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "Atvejo pastabos" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "Modifikuoti atsakymus šiai bylai" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "Byla dar nepradėta apklausų sistemoje" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "Nustaykite atvejo rezultatą" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "Atvejis neegzistuoja" @@ -3399,19 +3400,19 @@ msgstr "Atvejis neegzistuoja" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "rytas" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "po pietų" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "vakaras" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3516,10 +3517,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3570,13 +3569,11 @@ msgstr "Nėra Jums priskirtų klausimynų" msgid "You are not a valid client" msgstr "Jūs nesate galiojantis klientas" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3605,10 +3602,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/nl/LC_MESSAGES/nl.mo b/locale/nl/LC_MESSAGES/nl.mo index 26504168391260a013f8c99c37036e1b74d96d60..8f9e68bc95c70d3a96ae9585d907442aaf3e4d9c 100644 GIT binary patch delta 52 zcmdmemvQ%9#trA3xebkU4J{Q64Xlg|C*O4bz-y{&V5DncsbFAWWok6}nu{8XG>=BOu diff --git a/locale/nl/LC_MESSAGES/nl.po b/locale/nl/LC_MESSAGES/nl.po index e65ae504..43eac448 100644 --- a/locale/nl/LC_MESSAGES/nl.po +++ b/locale/nl/LC_MESSAGES/nl.po @@ -7,171 +7,165 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Case Geschiedenis Lijst" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Nooit gesprekken gedaan" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Datum/tijd" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "Case ID" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Resultaat" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Respondent" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Geen operator" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Respondent Keuze - Antwoordapparaat" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Laat geen bericht na, hang op" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Einde contactpoging met resultaat: Zakelijk antwoordapparaat" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" "Einde contactpoging met als resultaat: Antwoordapparaat Bericht nagelaten" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" "Einde contactpoging met als resultaat: Antwoordapparaat Geen bericht " "nagelaten" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Vorige" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Respondent Keuze - Bedrijf antwoord" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" "Het spijt me dat ik u gestoord heb, ik heb het verkeerde nummer gebeld" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Einde contactpoging met als resultaat: Zakelijk nummer" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Afspraak" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Einde werk" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Opmerking" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Bel geschiendenis" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Shifts" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Afpraken" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Prestaties" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Werk geschiedenis" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Info" @@ -179,9 +173,7 @@ msgstr "Info" msgid "Stop REC" msgstr "Stop opname" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Opnemen" @@ -189,8 +181,7 @@ msgstr "Opnemen" msgid "Beginning recording..." msgstr "Begint met opname..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Niet in gesprek, opname start dus niet" @@ -198,8 +189,8 @@ msgstr "Niet in gesprek, opname start dus niet" msgid "Begin the manual recording now..." msgstr "Begin de manuele opname nu..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Start opname" @@ -211,37 +202,40 @@ msgstr "Stopt met opname..." msgid "Stop the manual recording now..." msgstr "Stop de manuele opname nu..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Respondent Keuze - Bel terug" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "U bent: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Ja - Ga verder waar we waren gebleven" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Einde contactpoging met als resultaat: Weigering door respondent" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Respondent Keuze - Project inleiding" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Ja - Ga verder" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -249,7 +243,8 @@ msgstr "" "Einde contactpoging met als resultaat: Geen geschikte respondent (persoon " "niet beschikbaar op dit nummer)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -285,7 +280,7 @@ msgstr "Voeg deze respondent toe" msgid "Select phone number:" msgstr "Kies telefoonnummer:" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Geen" @@ -310,7 +305,7 @@ msgstr "Afspraak:" msgid "Accept appointment from " msgstr "Aanvaard afspraak van " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " tot " @@ -326,7 +321,8 @@ msgstr "op" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -334,7 +330,7 @@ msgstr "" msgid "Call List" msgstr "Gesprekken Lijst" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Geen gesprekken gevoerd" @@ -342,12 +338,17 @@ msgstr "Geen gesprekken gevoerd" msgid "Number called" msgstr "Nummer gebeld" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operator" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Geen case" @@ -355,15 +356,18 @@ msgstr "Geen case" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Einde" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Bell/Hang op" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Toezichthouder" @@ -371,11 +375,12 @@ msgstr "Toezichthouder" msgid "Restart" msgstr "" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -387,7 +392,11 @@ msgstr "Informatie" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -399,8 +408,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -416,55 +424,32 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Bellen" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Niet aan het bellen" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Einde case" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "Druk op de bellen knop om het nummer te vormen voor deze afspraak" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Nummer om te bellen:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -472,60 +457,49 @@ msgstr "" "VoIP extensie is uitgeschakeld. Sluit dit venster en schakel VoIP in door " "één maal op de rode knop waarop staat 'VoIP Uit' te klikken." -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Kies het telefoonnummer om te bellen" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "De laatste gesprekspoging werd zojuist afgewerkt" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "Geef een reden voor dit resultaat voor het beëindigen van deze case:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Vereist codering" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Ken resultaat toe" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Fout: Sluit venster" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Gesprekspoging" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Oproep beantwoord" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Ophangen" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Gaat over" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Beantwoord" @@ -553,7 +527,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -581,60 +557,52 @@ msgstr "" msgid "Go back to work" msgstr "Ga terug aan het werk" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Status" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Naam" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Respondent Keuze - Inleiding" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Zakelijk nummer" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Antwoordapparaat" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" "Einde contactpoging met als resultaat: Geen antwoord (beltoon gestopt of " "bezet) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Einde contactpoging met als resultaat: Toevallig opgehangen" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Einde contactpoging met als resultaat: Weigering door onbekende" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -650,8 +618,10 @@ msgstr "Shift Lijst" msgid "No shifts for this project" msgstr "Geen shift voor dit project" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Start" @@ -659,12 +629,14 @@ msgstr "Start" msgid "No future shifts scheduled" msgstr "Geen toekomstige shifts gepland" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Vragenlijst" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -672,48 +644,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Einde contactpoging met als resultaat: Afgewerkt" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Voeg respondent toe" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Ga terug" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "Case id:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Respondent:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Var" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Waarde" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -737,8 +707,7 @@ msgstr "Er is op dit ogenblik geen case beschikbaar" msgid "Reasons:" msgstr "Rede:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -750,13 +719,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "Toegewezen vragenlijsten:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "Identiteit" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Beschrijving" @@ -768,7 +736,10 @@ msgstr "FOUT: Er werd u geen vragenlijst toegewezen" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Steekproef" @@ -843,34 +814,33 @@ msgstr "" msgid "Case Notes" msgstr "Case opmerkingen" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Voeg opmerking toe" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Geen opmerkingen" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Opmerking" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Deze shift" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Afgewerkt" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Afgewerkt per uur" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Dit project" @@ -938,7 +908,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -977,8 +949,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -994,8 +965,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -1015,11 +985,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1039,11 +1009,13 @@ msgstr "" msgid "Appointment List" msgstr "Afspraken lijst" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Nog niet gebeld" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1055,7 +1027,8 @@ msgstr "Nog geen afspraken gemaakt" msgid "No future appointments scheduled" msgstr "Geen toekomstige afspraken" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1089,13 +1062,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Actief proces:" @@ -1103,27 +1074,27 @@ msgstr "Actief proces:" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Stop het actief proces" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Datum" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1141,23 +1112,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Resultaat van het laatst actief proces (als er een was)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "Bel Geschiedenis lijst" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Datum/Tijd gesprek start" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Einde tijd" @@ -1165,27 +1133,24 @@ msgstr "Einde tijd" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Wijs klanten aan vragenlijst toe" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Kies een vragenlijst van de onderstaande lijst" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Kies een steekproef uit de onderstaande lijst" @@ -1193,13 +1158,11 @@ msgstr "Kies een steekproef uit de onderstaande lijst" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1259,7 +1222,7 @@ msgstr "Ga terug in u browser en los het probleem op" msgid "Import: Select columns to import" msgstr "Importeren: Selecteer kolommen om te importeren" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Importeren: Selecteer bestand om te uploaden" @@ -1271,36 +1234,45 @@ msgstr "Kies het CSV steekproef bestand om te uploaden" msgid "Description for file:" msgstr "Beschrijving voor bestand:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1318,8 +1290,7 @@ msgstr "" msgid "Modify case outcome" msgstr "Wijzig case resultaat" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1327,11 +1298,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1351,38 +1322,39 @@ msgstr "Geef afspraken weer" msgid "All appointments (with times displayed in your time zone)" msgstr "Alle afspraken (met tijden weergegeven in je tijdzone)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Verwijder" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Bewerk" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Operator Naam" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Respodent Naam" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Achternaam" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Huidig resultaat" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Operator die belde" @@ -1390,9 +1362,7 @@ msgstr "Operator die belde" msgid "No appointments in the future" msgstr "Geen toekomstige afspraken" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1408,11 +1378,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1424,7 +1394,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1436,27 +1406,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1475,8 +1445,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "Wijzig operator kwaliteiten" @@ -1484,38 +1453,32 @@ msgstr "Wijzig operator kwaliteiten" msgid "Operator Performance" msgstr "Operator Prestaties" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Kies een vragenlijst" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Totale tijd" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1523,45 +1486,43 @@ msgstr "" msgid "till" msgstr "tot" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Kies een shift" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "Shift rapporten" @@ -1605,7 +1566,7 @@ msgstr "Administratieve hulpmiddelen" msgid "Questionnaire creation and management" msgstr "Vragenlijst opstellen en beheren" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1641,13 +1602,11 @@ msgstr "Voeg een steekproeven aan vragenlijsten toe" msgid "Set values in questionnaire to pre fill" msgstr "Configureer automatisch antwoordinvulling" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1655,7 +1614,8 @@ msgstr "" msgid "Add operators to the system" msgstr "Voeg operatoren aan systeem toe" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Voeg operators aan vragenlijst toe" @@ -1664,192 +1624,201 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "Shift management (voeg toe/verwijder)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Vragenlijst vooruitgang" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Geef alle toekomstige afspraken weer" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "Vragenlijst resultaten" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Data uitvoer" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Operator Prestaties" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Klanten beheer" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Voeg klanten aan systeem toe" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Functies voor de toezichthouder" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Ken resultaten aan cases toe" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Doorzoek de steekproef" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Systeeminstellingen" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "Stel standaard tijdzone lijst in" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "Stel standaard shift tijden in" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "Stel bel restrictie tijden in" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "Start en monitor VoIP" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "Steekproef toevoegen: Selecteer de toe te voegen steekproef" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "Max gesprekken" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "Max aantal bel pogingen (0 voor oneindig)" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" "Aantal antwoordapparaat berichten na te laten per case (o voor nooit)" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "Kies toevallig uit de steekproef? (anders opeenvolgend)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "Steekproeven geselecteerd voor deze vragenlijst" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "Klik om te verwijderen:" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "Voeg een steekproef aan deze vragenlijst toe:" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Kies steekproef:" @@ -1865,22 +1834,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1933,7 +1913,6 @@ msgid "Search within this sample" msgstr "Zoek in deze steekproef" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1945,32 +1924,27 @@ msgstr "Zoek naar:" msgid "Start search" msgstr "Begin met zoeken" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "Vragenlijst Resultaten" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "Resultaten" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Steekproef status" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "Gekozen uit steekproef" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "Behouden in steekproef" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Nummer" @@ -1998,35 +1972,32 @@ msgstr "Min" msgid "Secs" msgstr "Sec" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Ratio" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "Response Rate 1" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "Refusal Rate 1" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "Cooperation Rate 1" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "Contact Rate 1" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Aantal" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2038,7 +2009,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "Geen resultaten opgeslagen voor deze vragenlijst" @@ -2062,13 +2033,14 @@ msgstr "Geen shifts bepaald voor deze vragenlijst" msgid "Shift" msgstr "Shift" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Shift rapport" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "Vol VoIP Proces op" @@ -2139,17 +2111,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2159,17 +2126,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2177,11 +2142,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2195,11 +2158,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2207,7 +2172,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2262,8 +2228,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Voeg shifts toe" @@ -2273,9 +2238,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2300,9 +2265,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Dag" @@ -2314,8 +2278,36 @@ msgstr "Gebruik shift?" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2331,9 +2323,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2341,8 +2331,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2430,8 +2419,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Voeg een operator toe" @@ -2449,8 +2437,7 @@ msgstr "Voeg Operator aan Vragenlijst toe" msgid "tool" msgstr "pagina" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2494,11 +2481,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2518,8 +2505,7 @@ msgstr "Is the operator een toezichthouder" msgid "Is the operator a refusal converter?" msgstr "Is de operator een weigeraar hercontacteerder?" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Gebruiker toegoeven" @@ -2543,7 +2529,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Naam van de vragenlijst:" @@ -2551,8 +2537,7 @@ msgstr "Naam van de vragenlijst:" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2568,71 +2553,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "Beperk afspraken tot shifts?" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "Beperk werk tot shifts?" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "Enkel als testvragenlijst?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "Respondent selectie inleiding:" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "Respondent selectie project inleiding:" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "Respondent selectie bij het terugbellen (vragenlijst reeds gestart):" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "Bericht om na te laten op het antwoord apparaat:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2649,13 +2634,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2919,7 +2902,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Telefoonnummer" @@ -2951,7 +2934,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2959,11 +2942,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Project" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Huidig resultaat:" @@ -2980,14 +2963,14 @@ msgid "Cannot connect to VoIP Server" msgstr "Kan niet verbinden met VoIP Server" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" @@ -2995,17 +2978,21 @@ msgstr "" "Geef de start en eind tijd voor elke dag van de week waarbinnen u de " "gesprekken wil beperken" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Voeg rij toe" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -3016,8 +3003,7 @@ msgstr "Kon niet toevoegen" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Voeg een klant toe" @@ -3075,8 +3061,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "Bewaar wijzigingen in de shifts" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3120,8 +3105,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3165,8 +3149,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3304,23 +3287,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Voeg toe/verwijder Tijdzones" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "Klik om een tijdzone van de standaardlijst te verwijderen" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "Voeg een tijdzone toe:" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Tijdzone: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3341,8 +3332,7 @@ msgstr "Kies een case" msgid "Set an outcome for this call" msgstr "Stel een resultaat voor dit gesprek in" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "Stel resultaat in" @@ -3362,39 +3352,50 @@ msgstr "Gesprekslijst" msgid "Change outcome" msgstr "Wijzig resultaat" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "Case opmerkingen" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "Stel een case resultaat in" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "De case bestaat niet" @@ -3402,19 +3403,19 @@ msgstr "De case bestaat niet" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "ochtend" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "namiddag" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "avond" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3517,10 +3518,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3571,13 +3570,11 @@ msgstr "Er zijn geen vragenlijsten aan u toegekend" msgid "You are not a valid client" msgstr "U bent geen geldige klant" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3606,10 +3603,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/oc/LC_MESSAGES/oc.mo b/locale/oc/LC_MESSAGES/oc.mo index 18d32d67f0ba03c1b49a8b8f85c6bde48dfc2739..b48446f1c25bb2c9e1ee6fc299372da462e3e994 100644 GIT binary patch delta 50 zcmaE=`c!qpLmqBJBV9vF1w#WXBg4sWc>eL4>KYj78dxeA7+9GaP5#cS#%yeCxLJYk GC<_3Ztq$h^ delta 50 zcmaE=`c!qpLmqAeV_idY1w#WX6Z6S$c>eL4=o%V\n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Data / Ora" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Resultat" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Pas d'operador" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Tornar en rèire" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Rendètz-vos" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Arrestar de trabalhar" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Nòtas" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Istoric de las sonadas" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Rendètz-vos" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Performància" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Informacions sul projècte" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Info" @@ -175,9 +169,7 @@ msgstr "Info" msgid "Stop REC" msgstr "Arrestar l'enregistrament" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Enregistrament" @@ -185,8 +177,7 @@ msgstr "Enregistrament" msgid "Beginning recording..." msgstr "Començament de l'enregistrament" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "" @@ -194,8 +185,8 @@ msgstr "" msgid "Begin the manual recording now..." msgstr "" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Enregistrar" @@ -207,43 +198,47 @@ msgstr "Arrestar l'enregistrament" msgid "Stop the manual recording now..." msgstr "" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Sètz : " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -277,7 +272,7 @@ msgstr "" msgid "Select phone number:" msgstr "" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Pas cap" @@ -301,7 +296,7 @@ msgstr "" msgid "Accept appointment from " msgstr "" -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr "" @@ -317,7 +312,8 @@ msgstr "activat" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -325,7 +321,7 @@ msgstr "" msgid "Call List" msgstr "" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "" @@ -333,12 +329,17 @@ msgstr "" msgid "Number called" msgstr "Numèro sonat" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operador" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "" @@ -346,15 +347,18 @@ msgstr "" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Acabar" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Supervisor" @@ -362,11 +366,12 @@ msgstr "Supervisor" msgid "Restart" msgstr "Reaviar" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Disponibilitat" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -378,7 +383,11 @@ msgstr "Informacion" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -390,8 +399,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -407,114 +415,80 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Sonar" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Sonada responduda" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Penjar" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Sonariá" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Respondut" @@ -542,7 +516,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -570,58 +546,50 @@ msgstr "" msgid "Go back to work" msgstr "Retorn al trabalh" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Estatut" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Nom" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Telefòn Professional" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Respondedor" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -635,8 +603,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Començar" @@ -644,12 +614,14 @@ msgstr "Començar" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Questionari" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -657,48 +629,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Tornar en arrièr" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Var" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Valor" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -722,8 +692,7 @@ msgstr "" msgid "Reasons:" msgstr "Rasons :" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -735,13 +704,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "Identificant (ID)" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Descripcion" @@ -753,7 +721,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Escandalhatge" @@ -826,34 +797,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Apondre una nòta" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Nòta" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "" @@ -921,7 +891,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -960,8 +932,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -977,8 +948,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -998,11 +968,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1022,11 +992,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1038,7 +1010,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1072,13 +1045,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1086,27 +1057,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Data" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1124,23 +1095,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1148,27 +1116,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1176,13 +1141,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "tampat" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "Dobrir" @@ -1242,7 +1205,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1254,36 +1217,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1300,8 +1272,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1309,11 +1280,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Ora de començament" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1333,38 +1304,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Suprimir" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Editar" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Nom d'Ostal" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1372,9 +1344,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1390,11 +1360,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "per" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1406,7 +1376,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1418,27 +1388,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1457,8 +1427,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1466,38 +1435,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Temps total" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1505,45 +1468,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1587,7 +1548,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1623,13 +1584,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1637,7 +1596,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1646,191 +1606,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Sortida de las donadas" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Paramètres del sistèma" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1846,22 +1815,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1914,7 +1894,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1926,32 +1905,27 @@ msgstr "Recercar :" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Numèro" @@ -1979,35 +1953,32 @@ msgstr "Min" msgid "Secs" msgstr "Segs" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Debit" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Compte" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2019,7 +1990,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2043,13 +2014,14 @@ msgstr "" msgid "Shift" msgstr "Maj" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2115,17 +2087,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2135,17 +2102,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2153,11 +2118,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2171,11 +2134,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2183,7 +2148,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2238,8 +2204,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2249,9 +2214,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2274,9 +2239,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Jorn" @@ -2288,8 +2252,36 @@ msgstr "" msgid "Submit changes" msgstr "Validar las modificacions" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2305,9 +2297,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "coma" @@ -2315,8 +2305,7 @@ msgstr "coma" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2404,8 +2393,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2421,8 +2409,7 @@ msgstr "" msgid "tool" msgstr "esplech" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2462,11 +2449,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2486,8 +2473,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Apondre un utilizaire" @@ -2511,7 +2497,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2519,8 +2505,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2536,71 +2521,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2617,13 +2602,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2887,7 +2870,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Numèro de telefòn" @@ -2919,7 +2902,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2927,11 +2910,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Projècte" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2948,30 +2931,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2982,8 +2969,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3036,8 +3022,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3081,8 +3066,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3126,8 +3110,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3265,23 +3248,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3301,8 +3292,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3322,39 +3312,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3362,19 +3363,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3477,10 +3478,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3531,13 +3530,11 @@ msgstr "" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3566,10 +3563,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/pl/LC_MESSAGES/pl.mo b/locale/pl/LC_MESSAGES/pl.mo index 4b9ed3b1a6e91de3e097fedce3f7dd45b43821cc..1246bb166ea1614e982b70454f8f650242677a5a 100644 GIT binary patch delta 52 zcmcc9#(1ZVaYMQmx1o`)p{0VMft8Wr\n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-10-21 18:44+0000\n" "Last-Translator: Paweł Timler \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Historia wywiadów" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Data/Czas" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "ID wywiadu" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Wynik" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Respondent" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Brak operatora" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Wybór respondenta - sekretarka automatyczna" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Rozłącz się bez nagrywania wiadomości" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Zakończ połączenie z wynikiem: automatyczna sekretarka w firmie" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" "Zakończ połączenie z wynikiem: automatyczna sekretarka, pozostawiono " "wiadomość" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" "Zakończ połączenie z wynikiem: automatyczna sekretarka, nie pozostawiono " "wiadomości" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Cofnij" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Przepraszam za kłopot, wybrałem niewłaściwy numer" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Zakończ rozmowę z wynikiem: Numer firmowy" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Termin" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "Email" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Koniec pracy" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Notatki" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Dane kontaktowe" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Historia połączeń" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Zmiany" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Umówienia" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Wydajność" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Historia pracy" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Szczegóły projektu" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Informacje" @@ -179,9 +173,7 @@ msgstr "Informacje" msgid "Stop REC" msgstr "Zatrzymaj nagrywanie" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Nagraj" @@ -189,8 +181,7 @@ msgstr "Nagraj" msgid "Beginning recording..." msgstr "Nagrywaj" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Brak połączenia, nie rozpoczęto nagrywania" @@ -198,8 +189,8 @@ msgstr "Brak połączenia, nie rozpoczęto nagrywania" msgid "Begin the manual recording now..." msgstr "Nagrywanie manualne" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Nagrywaj" @@ -211,43 +202,47 @@ msgstr "Zatrzymaj nagrywanie" msgid "Stop the manual recording now..." msgstr "Zatrzymaj nagrywanie manualne" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Wybór respondenta - oddzwoń" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Jesteś: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Tak - kontynuuj w miejscu przerwania rozmowy" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Koniec połączenia - odmowa respondenta" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Wybór respondenta" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Tak - Kontynuuj" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "Koniec połączenia - respondent nieobecny pod wybranym numerem" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "Koniec połączenia - wywiad przeprowadzony w innym trybie" @@ -281,7 +276,7 @@ msgstr "Dodaj tego respondenta" msgid "Select phone number:" msgstr "Wybierz numer telefonu" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Żaden" @@ -305,7 +300,7 @@ msgstr "Termin" msgid "Accept appointment from " msgstr "Zaakceptuj termin od " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " do " @@ -321,7 +316,8 @@ msgstr "na" msgid "Appointment with myself only?" msgstr "Umówienie wyłącznie ze mną?" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -329,7 +325,7 @@ msgstr "" msgid "Call List" msgstr "lista połaczeń" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Brak wykonanych połaczeń" @@ -337,12 +333,17 @@ msgstr "Brak wykonanych połaczeń" msgid "Number called" msgstr "" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Brak wywiadu" @@ -350,15 +351,18 @@ msgstr "Brak wywiadu" msgid "Get a new case" msgstr "Następny przypadek" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Koniec" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Zadzwoń/Zakończ" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Koordynator" @@ -366,11 +370,12 @@ msgstr "Koordynator" msgid "Restart" msgstr "Restart" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Dostępność" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "Chat z Supervisorem" @@ -382,7 +387,11 @@ msgstr "Informacje" msgid "Me" msgstr "Ja" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "ID Wywiadu" @@ -394,8 +403,7 @@ msgstr "Supervisor jest dostępny" msgid "Supervisor not available" msgstr "Supervisor jest niedostępny" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "Wiadomość" @@ -411,115 +419,81 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Rozmowa" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Brak połączenia" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Zakończ wywiad" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" "Wciśnij przycisk \"połączenie\", aby wybrać numer przypisany do tego terminu:" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Numer do wybrania:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Wybierz numer telefonu:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "Ostatnie połączenie zakończyło pracę z tym wywiadem" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "Wpisz komentarz do tego wyniku przed zakończeniem wywiadu:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Wymaga kodowania" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Przypisz wynik" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Błąd: zamknij okno" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Łączenie" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Połączenie odebrane" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Rozłącz" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Dzwonienie" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Odebrane" @@ -547,7 +521,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -575,52 +551,45 @@ msgstr "" msgid "Go back to work" msgstr "Wróć do pracy" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Stan" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Imię" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "Brak numerów telefonów" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Wybór respondenta - wstęp" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Numer firmowy" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Automatyczna sekretarka" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" "Zakończ połączenie z wynikiem: Brak odpowiedzi (koniec dzwonków lub zajęty) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Zakończ połączenie z wynikiem: Przypadkowe rozłączenie" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Zakończ połączenie z wynikiem: Odmowa nieznanej osoby" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -628,8 +597,7 @@ msgstr "" "Zakończ połączenie z wynikiem: Brak odpowiedniego respondenta (osoba " "nigdynie była dostepna pod tym numerem" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -645,8 +613,10 @@ msgstr "Lista zmian" msgid "No shifts for this project" msgstr "Brak zmian dla tego projektu" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Początek" @@ -654,12 +624,14 @@ msgstr "Początek" msgid "No future shifts scheduled" msgstr "Brak zaplanowanych zmian w przyszłości" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Kwestionariusz" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "Wybór respondenta - koniec projektu" @@ -667,48 +639,46 @@ msgstr "Wybór respondenta - koniec projektu" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Zakończ połączenie z wynikiem: Kompletny" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Dodaj respondenta" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Cofnij się" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "Id wywiadu:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Respondent:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Zmienna" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Wartość" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -732,8 +702,7 @@ msgstr "Nie ma obecnie dostępnego wywiadu" msgid "Reasons:" msgstr "Przyczyny:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -745,13 +714,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "Przydzielone kwestionariusze:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Opis" @@ -763,7 +731,10 @@ msgstr "BŁĄD: Nie masz przydzielonych kwestionariuszy" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "" @@ -836,34 +807,33 @@ msgstr "OSTRZEŻENIE: Kwota w rzędach osiągnięta dla tego pytania" msgid "Case Notes" msgstr "Notatki wywiadu" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Dodaj notatkę" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Brak notatek" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Notatka" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Obecna zmiana" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Ukończone" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Ukończone na godzinę" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Obecny projekt" @@ -931,7 +901,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -970,8 +942,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -987,8 +958,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "Wybór respondenta - kwota wyczerpana" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "Zakończ rozmowę z wynikiem: kwota wyczerpana" @@ -1008,11 +978,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "Imię" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "Nazwisko" @@ -1032,11 +1002,13 @@ msgstr "" msgid "Appointment List" msgstr "Lista umówień" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Jeszcze nie wybierany" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1048,7 +1020,8 @@ msgstr "Brak umówień" msgid "No future appointments scheduled" msgstr "Brak zaplanowanych umówień w przyszłości" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1085,13 +1058,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1099,27 +1070,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Zatrzymaj działający proces" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Data" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1137,23 +1108,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1161,27 +1129,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "Raport kwoty" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Wybierz kwestionariusz z poniższej listy" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Wybierz próbę z poniższej listy" @@ -1189,13 +1154,11 @@ msgstr "Wybierz próbę z poniższej listy" msgid "Total sample" msgstr "Cała próba" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1255,7 +1218,7 @@ msgstr "Kliknij przycisk "wstecz" w przeglądarce i napraw problem" msgid "Import: Select columns to import" msgstr "Import: wybierz kolumny do importu" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Import: Wybierz plik do wgrania" @@ -1267,36 +1230,45 @@ msgstr "Wybierz plik próby w formacie CSV do wgrania:" msgid "Description for file:" msgstr "Opis pliku:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Dodaj próbę" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1313,8 +1285,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1322,11 +1293,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Czas rozpoczęcia" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Czas zakończenia" @@ -1346,38 +1317,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Usuń" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Edytuj" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1385,9 +1357,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1403,11 +1373,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1419,7 +1389,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1431,27 +1401,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1470,8 +1440,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1479,38 +1448,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Rozmowy" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Całkowity czas" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1518,45 +1481,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Wybierz zmianę" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "Modyfikuj" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1600,7 +1561,7 @@ msgstr "Narzędzia administracyjne" msgid "Questionnaire creation and management" msgstr "Tworzenie i zarządzanie kwestionariuszami" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "Utwórz kwestionariusz w Limesurvey" @@ -1636,13 +1597,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "Zarządzanie ankieterami" @@ -1650,7 +1609,8 @@ msgstr "Zarządzanie ankieterami" msgid "Add operators to the system" msgstr "Dodaj ankietera" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1659,191 +1619,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "Zarządzanie zmianami" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Pokaż przyszłe umówienia" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Szukaj w próbie" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Ustawienia systemu" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1859,22 +1828,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1927,7 +1907,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1939,32 +1918,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "" @@ -1992,35 +1966,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2032,7 +2003,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2056,13 +2027,14 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2128,17 +2100,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2148,17 +2115,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "Pokaż ankieterowi" @@ -2166,11 +2131,9 @@ msgstr "Pokaż ankieterowi" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2184,11 +2147,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "Włącz" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "Wyłącz" @@ -2196,7 +2161,8 @@ msgstr "Wyłącz" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "Włącz/Wyłącz" @@ -2251,8 +2217,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2262,9 +2227,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2287,9 +2252,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2301,8 +2265,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2318,9 +2310,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2328,8 +2318,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2417,8 +2406,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2434,8 +2422,7 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2475,11 +2462,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "Użytkownik chatu Jabber/XMPP" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "Hasło chatu Jabber/XMPP" @@ -2499,8 +2486,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Dodaj użytkownika" @@ -2524,7 +2510,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Nazwa kwestionariusza" @@ -2532,8 +2518,7 @@ msgstr "Nazwa kwestionariusza" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2549,71 +2534,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "Wiadomość do zostawienia na automatycznej sekretarce:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2630,13 +2615,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2900,7 +2883,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2932,7 +2915,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2940,11 +2923,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2961,30 +2944,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2995,8 +2982,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3049,8 +3035,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "Teraz" @@ -3094,8 +3079,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3139,8 +3123,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "Użytkownik" @@ -3278,23 +3261,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3314,8 +3305,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3335,39 +3325,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3375,19 +3376,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "Rano" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "Popołudnie" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "Wieczór" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3490,10 +3491,8 @@ msgstr "Rozłączone" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3544,13 +3543,11 @@ msgstr "Brak kwestionariuszy przypisanych do ciebie" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3579,10 +3576,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/pt/LC_MESSAGES/pt.mo b/locale/pt/LC_MESSAGES/pt.mo index b2a50fcbab6a83488032fbd583dda3d11c6f2171..0a0cda61507fcd30a0c2301a7390727d30d33b3d 100644 GIT binary patch delta 16350 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 delta 17059 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 diff --git a/locale/pt/LC_MESSAGES/pt.po b/locale/pt/LC_MESSAGES/pt.po index 7e93bbba..8795cc07 100644 --- a/locale/pt/LC_MESSAGES/pt.po +++ b/locale/pt/LC_MESSAGES/pt.po @@ -7,167 +7,161 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-12-04 16:38+0000\n" "Last-Translator: Marco Antonio Ciciliati \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:21+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Histórico de Casos" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Nenhuma ligação foi realizada" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Data/Hora" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "Caso Nr" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Resultado" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Respondente" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Sem operador" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Seleção do Entrevistado - Secretária Eletrônica/Caixa de Mensagens" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Não deixe uma mensagem, por favor, desligue" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Encerrado: URA ou Cx Msg Comercial" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "Encerrado: Recado gravado na Caixa de Mensagem" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "Encerrado: Caixa de Mensagens - Sem Recado Gravado" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Voltar" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Seleção do Entrevistado - Contato Empresarial" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Desculpe incomodá-lo, eu liguei para o número errado" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Chamada Encerrada: Telefone comercial" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Agendamentos" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "E-mail" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Encerrar trabalho" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "Expandir ou Contrair" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Notas" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Detalhes do contato" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Histórico de chamadas" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Turnos" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Agendamentos" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Desempenho" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Histórico de trabalho" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Informações do projeto" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Informações" @@ -175,9 +169,7 @@ msgstr "Informações" msgid "Stop REC" msgstr "Parar GRV" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Gravar" @@ -185,8 +177,7 @@ msgstr "Gravar" msgid "Beginning recording..." msgstr "Iniciando gravação..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Não há ligação ativa. Impossível iniciar uma gravação" @@ -194,8 +185,8 @@ msgstr "Não há ligação ativa. Impossível iniciar uma gravação" msgid "Begin the manual recording now..." msgstr "Iniciar gravação manual agora..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Gravar" @@ -207,43 +198,47 @@ msgstr "Parando a gravação..." msgid "Stop the manual recording now..." msgstr "Parando a gravação manual agora..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Seleção do entrevistado - Retornar ligação" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Estamos com: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "% concluído" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Sim - Continuar de onde paramos" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Encerrado: Recusa do Entrevistado" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Seleção do Entrevistado - Introdução do Projeto" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Sim - Continue" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "Encerrado: Entrevistado não disponível neste número" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "Encerrado: Fora da Listagem (Já completado em outro modo)" @@ -278,7 +273,7 @@ msgstr "Adicionar este respondente" msgid "Select phone number:" msgstr "Selecione o número de telefone" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Nenhum" @@ -303,7 +298,7 @@ msgstr "Agendamentos:" msgid "Accept appointment from " msgstr "Realizar agendamento das " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " até as " @@ -319,7 +314,8 @@ msgstr "para o número" msgid "Appointment with myself only?" msgstr "Agendar apenas para você mesmo?" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -327,7 +323,7 @@ msgstr "" msgid "Call List" msgstr "Lista de chamadas" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Não existem ligações efetuadas" @@ -335,12 +331,17 @@ msgstr "Não existem ligações efetuadas" msgid "Number called" msgstr "Número chamado" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operador(a)" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Sem caso" @@ -348,15 +349,18 @@ msgstr "Sem caso" msgid "Get a new case" msgstr "Obter um novo caso" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Encerrar" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Chamar/Encerrar" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Supervisor" @@ -364,11 +368,12 @@ msgstr "Supervisor" msgid "Restart" msgstr "Reiniciar" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Disponibilidade" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "Chat com o Supervisor" @@ -380,7 +385,11 @@ msgstr "Informações" msgid "Me" msgstr "Eu" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "Caso Nr" @@ -392,8 +401,7 @@ msgstr "Supervisor Disponível" msgid "Supervisor not available" msgstr "Supervisor Indisponível" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "Mensagem" @@ -409,55 +417,32 @@ msgstr "De" msgid "Supervisor chat is not enabled" msgstr "Chat com o Supervisor não habilitado" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Ligar" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Telefone Livre" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Encerrar caso" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "Pressione o botão LIGAR para discar para este agendamento." -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Número para discar:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -465,60 +450,49 @@ msgstr "" "Sua extensão VoIP não está habilitada. Por favor, feche esta janela e " "habilite o VoIP clicando um vez sobre o botão vermelho denominado 'VoIP Off'" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Selecione o número de telefone para discar:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "Última chamada concluída para esta tentativa" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "Informe um motivo ou resultado antes de encerrar este caso." -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Requer código" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Informe um resultado" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Erro: Feche a janela" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Solicitando chamada" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Chamada atendida" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Chamada desligada" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Chamando" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Atendida" @@ -546,7 +520,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "Ramal" @@ -574,58 +550,50 @@ msgstr "" msgid "Go back to work" msgstr "Voltar ao trabalho" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Situação" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Nome" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "Sem mais números para chamar" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Seleção do Entrevistado - Intrudução" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Encerrado: Fone Comercial" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Caixa de Mensagens" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "Encerrado: Não Atende ou Ocupado " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Encerrado: Queda de ligação" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Encerrado: Recusa de Terceiro" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "Encerrado: Entrevistado nunca encontrado neste número" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -639,8 +607,10 @@ msgstr "Lista de Agendamentos" msgid "No shifts for this project" msgstr "Não existem agendamentos para este projeto" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Iniciar" @@ -648,12 +618,14 @@ msgstr "Iniciar" msgid "No future shifts scheduled" msgstr "Não existem agendamentos futuros" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Questionário" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "Seleção do Entrevistado - Projeto Encerrado." @@ -661,50 +633,48 @@ msgstr "Seleção do Entrevistado - Projeto Encerrado." msgid "Call automatically ended with outcome: Complete - End case" msgstr "Encerrado Automaticamente: Entrevista realizada - Término do caso" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Ligação encerrada: Entrevista Completa" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Adicionar respondente" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Voltar" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "Caso Nr:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Respondente:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Variável" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Valor" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" "Selecione grupos para limitar a disponibilidade (Selecione Nenhum para " "manter sempre disponível)" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "Grupos de disponibilidade não definidos para este questionário" @@ -728,8 +698,7 @@ msgstr "Sem casos disponíveis" msgid "Reasons:" msgstr "Motivos:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "Ativado" @@ -741,13 +710,12 @@ msgstr "Desativado" msgid "Assigned questionnaires:" msgstr "Questionários atribuídos:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "NR" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Descrição" @@ -759,7 +727,10 @@ msgstr "ERRO: Não há questionários atribuídos à você" msgid "Assigned samples:" msgstr "Listagens atribuídas:" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Lista" @@ -834,34 +805,33 @@ msgstr "POSSÍVEL ERRO: Amostra encerrada para esta questão" msgid "Case Notes" msgstr "Notas do Caso" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Adicionar nota" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Sem observações" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Nota" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Neste turno" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Realizadas" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Realizadas por hora" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Este projeto" @@ -929,7 +899,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "segundos" @@ -968,8 +940,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -985,8 +956,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "Seleção do Entrevistado - Encerramento da amostra do projeto" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "Encerrado: Amostra Encerrada" @@ -1006,11 +976,11 @@ msgstr "Endereço de e-mail inválido" msgid "Email respondent for self completion" msgstr "E-mail do entrevistado para auto-resposta" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "Primeiro nome" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "Sobrenome" @@ -1030,11 +1000,13 @@ msgstr "E-mail de auto-resposta não disponível para este questionário" msgid "Appointment List" msgstr "Lista de Agendamentos" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Disponível" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "Qualquer operador" @@ -1046,7 +1018,8 @@ msgstr "Não existem agendamentos" msgid "No future appointments scheduled" msgstr "Não existem agendamentos futuros" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "Agendado para" @@ -1085,13 +1058,11 @@ msgid "" msgstr "" "Por favor, aguarde esta chamada responder antes de tentar chamar o Supervisor" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "Monitorar o sistema de sorteio de casos" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Processo em execução:" @@ -1099,29 +1070,29 @@ msgstr "Processo em execução:" msgid "Kill signal sent: Please wait..." msgstr "Interromper o comando enviado: Por favor aguarde..." -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" "Processo já foi encerrado (ex.: servidor foi reiniciado) - clique aqui para " "confirmar" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Encerrar o processo em execução" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "Nr Log" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Data" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "Situação" @@ -1146,23 +1117,20 @@ msgstr "" "você não estiver com dificuldades de desempenho, não é recomendado usar este " "recurso." -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Resultado do último processo em curso (se algum)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "Histórico de Chamadas" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Data/Hora início da chamada" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Hora do término" @@ -1170,27 +1138,24 @@ msgstr "Hora do término" msgid "Download Call History List" msgstr "Efetuar Download do Histórico de Chamadas" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Atribuir clientes aos questionários" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "Relatório de Amostragem" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Selecione um questionário na lista abaixo" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Selecione uma amostra da lista abaixo" @@ -1198,13 +1163,11 @@ msgstr "Selecione uma amostra da lista abaixo" msgid "Total sample" msgstr "Amostra Total" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "fechada" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "aberta" @@ -1264,7 +1227,7 @@ msgstr "Por favor retorne no seu navegador e corrija o problema" msgid "Import: Select columns to import" msgstr "Importação: Selecione as colunas para importar" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Importar: Selecione o arquivo para carregar" @@ -1276,38 +1239,47 @@ msgstr "Escolha uma listagem no formato CSV para carregar" msgid "Description for file:" msgstr "Descrição para o arquivo:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Adicionar Listagem" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "Iniciando o processo de sorteio de casos" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" -msgstr "Sorteando casos" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" +msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" "O sistema fechou automaticamente o caso como caso não fechado por mais de 24 " "horas" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" -msgstr "Sorteio completado" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" +msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "Esta tarefa levou" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "Sorteio completado" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "Falha para completar o sorteio" @@ -1326,8 +1298,7 @@ msgstr "" msgid "Modify case outcome" msgstr "Modificar resultado" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "Editar agendamento" @@ -1335,11 +1306,11 @@ msgstr "Editar agendamento" msgid "Contact phone" msgstr "Telefone de contato" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Horário Inicial" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Horário final" @@ -1359,38 +1330,39 @@ msgstr "Mostrar agendamentos" msgid "All appointments (with times displayed in your time zone)" msgstr "Todos os agendamentos (horário local)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Excluir" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Alterar" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Nome do(a) Pesquisador(a)" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Nome do Entrevistado" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Sobrenome" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Resultado atual" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Pesquisador que chamou" @@ -1398,9 +1370,7 @@ msgstr "Pesquisador que chamou" msgid "No appointments in the future" msgstr "Sem agendamentos futuros" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "Amostras - Gerenciamento" @@ -1416,11 +1386,11 @@ msgstr "Sem amostras em execução atualmente" msgid "Stop calling this sample when:" msgstr "Pare de chamar esta listagem quando:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "para" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "completas" @@ -1432,7 +1402,7 @@ msgstr "Amostra encerrada (fechada)" msgid "Quota not yet reached" msgstr "Amostra ainda não encerrada (aberta)" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "Atualmente realizadas: " @@ -1444,27 +1414,27 @@ msgstr "Selecione uma pergunta para a amostra" msgid "Enter the details for creating the quota:" msgstr "Informe os detalhes para criar a amostra:" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "Valores pré-definidos para esta pergunta:" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "Sem opções de respostas definidas para esta pergunta" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "Código da resposta" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "Código da resposta para comparar" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "Tipo de comparação" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "Parar de chamar quando o número de entrevistas nesta cota for" @@ -1487,8 +1457,7 @@ msgstr "" "todos os possíveis resultados a um caso. Isto restringe o que será atribuído " "para um pesquisador." -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "12. Alterar permissões dos operadores" @@ -1496,38 +1465,32 @@ msgstr "12. Alterar permissões dos operadores" msgid "Operator Performance" msgstr "Desempenho do Operador" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Por favor, selecione um quesionário" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Chamadas" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Tempo total" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "Tempo de chamada" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "Completadas por hora" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "Chamadas por hora" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "Efetividade" @@ -1535,47 +1498,43 @@ msgstr "Efetividade" msgid "till" msgstr "até" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Selecione o Turno" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" -msgstr "Grupos de disponibilidade" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" +msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "Modificar" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" -"Os grupos de disponibilidade definem os períodos de tempo autorizados para " -"resposta." #: admin/availabilitygroup.php:117 -msgid "No availability groups" -msgstr "Não existem grupos de disponibilidade" +msgid "No time slots" +msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" -msgstr "Grupo de disponibilidade" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" +msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" -msgstr "Adicionar grupo de disponibilidade" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" +msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" -msgstr "Nome do grupo de disponibilidade" +msgid "Time slot name" +msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "Relatórios de Turnos" @@ -1619,7 +1578,7 @@ msgstr "Ferramentas Administrativas" msgid "Questionnaire creation and management" msgstr "Questionários - Criação e Gerenciamento" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "Criar um Questionário no LimeSurvey" @@ -1655,13 +1614,11 @@ msgstr "Atribuir listagens a questionários" msgid "Set values in questionnaire to pre fill" msgstr "Definir auto-respostas no questionário" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "Gerenciar grupos de amostras" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "Operadores - Gerenciamento" @@ -1669,7 +1626,8 @@ msgstr "Operadores - Gerenciamento" msgid "Add operators to the system" msgstr "Adicionar Pesquisadores no sistema" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Atribuir pesquisadores aos questionários" @@ -1678,194 +1636,203 @@ msgid "Availability and shift management" msgstr "Cronograma e Gerenciamento de Turnos" #: admin/index.php:73 -msgid "Manage availablity groups" -msgstr "Gerenciar grupos de disponibilidade" +msgid "Manage time slots" +msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "Atribuir grupos de disponibilidade" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "Gerenciar Turnos (adicionar/remover)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Evolução do Estudo" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Mostrar todos os agendamentos futuros" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "Relatório de Chamadas Realizadas" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "Resultados de Ligações" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Exportação de Resultados" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Produtividade dos Pesquisadores" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Clientes - Gerenciamento" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Adicionar clientes ao sistema" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Supervisão - Funções" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Atribuir Resultados de Ligações aos casos" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Localizar na listagem" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "Redistribuir ligações" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "Gerador de Agendamentos em Massa" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Sistema - Configurações" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "Definir o Fuso Horário padrão" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "Definir os turnos padrões" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "Ajustar restrições de chamadas" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "Ajustar informações gerais" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "Gerenciar e Monitorar o sistema de sorteio" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "Telefonia - Gerenciamento" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "Iniciar e Monitorar Telefonia" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "Registro de Ramais" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "Atribui Listagem: Selecione uma lista para atribuir" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "Edita detalhes da listagem" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "Máximo de chamadas (0 para ilimitado)" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "Máximo de tentativas (0 para ilimitado)" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" "Número de recados para deixar na secretária eletrônica (0 para nunca)" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" "Selecionar os casos da listagem de forma aleatória? (desliga a forma " "sequencial)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "Listagens selecionadas para este questionário" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "Ilimitado" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "Sequencial" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "Aleatório" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "Nunca" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "Clique para desmarcar" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "Max Chamadas" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "Max Tentativas" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "Recados na Cx Msg" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "Tipo de seleção" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "Desativar listagem" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "Não foram selecionadas listagens para este questionário" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "Adicionar uma listagem para este questionário:" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Selecionar listagem:" @@ -1881,22 +1848,33 @@ msgstr "Atualizar" msgid "Assign availability group to questionnaire" msgstr "Atribuir um grupo de disponibilidade para o questionário" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "Não há grupos de disponibilidade selecionados para este questionário" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "Grupos de disponibilidade selecionados para este questionário" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "Adicione um grupo de disponibilidade para este questionário" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "Selecione um grupo de disponibilidade:" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "Adicionar grupo de disponibilidade" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1952,7 +1930,6 @@ msgid "Search within this sample" msgstr "Pesquisar dentro desta listagem" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "Use the % character as a wildcard" @@ -1964,32 +1941,27 @@ msgstr "Buscar por:" msgid "Start search" msgstr "Iniciar busca" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "Resultados do Questionário" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "Resultados" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Situação da Listagem" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "Utilizados" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "Livres na listagem" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Quantidade" @@ -2018,35 +1990,32 @@ msgstr "Minutos" msgid "Secs" msgstr "Segundos" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Taxa" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "Taxa de Resposta 1" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "Taxa de Recusa 1" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "Taxa de Cooperação 1" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "Taxa de Contato 1" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Qtde" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2058,7 +2027,7 @@ msgstr "Resultados por operador" msgid "No outcomes recorded for this sample" msgstr "Não há resultados gravados para esta listagem" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "Resultados de ligação não foram gravados neste questionário" @@ -2082,13 +2051,14 @@ msgstr "Sem turnos definidos para este questionário" msgid "Shift" msgstr "Turno" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Ocorrência do turno" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "Monitora a comunicação VoIP" @@ -2159,17 +2129,12 @@ msgstr "ou: Selecione uma auto-resposta da listagem" msgid "Add pre fill" msgstr "Adicionar auto-resposta" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "Renomear" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "Exibição de Campos" @@ -2180,17 +2145,15 @@ msgid "" msgstr "" "Selecione quais campos desta listagem deverão ser mostrados aos pesquisadores" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "Campo" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "Dados de Exemplo" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "Habilita o operador para ver?" @@ -2198,11 +2161,9 @@ msgstr "Habilita o operador para ver?" msgid "Save changes" msgstr "Salvar alterações" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "Desvinculação" @@ -2218,11 +2179,13 @@ msgstr "" msgid "Delete selected fields" msgstr "Deletar os campos selecionados" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "Habilitado" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "Desabilitado" @@ -2230,7 +2193,8 @@ msgstr "Desabilitado" msgid "Sample list" msgstr "Listagens" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "Habilitar/Desabilitar" @@ -2297,8 +2261,7 @@ msgstr "Escolha o arquivo CSV para carregar:" msgid "Load bulk appointment CSV" msgstr "Carregar arquivo de agendamento em massa" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Adicionar turnos" @@ -2310,9 +2273,9 @@ msgstr "" "Você deve ser um operador (bem como ter acesso administrativo) para " "adicionar ou editar os turnos" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2340,9 +2303,8 @@ msgstr "Selecione o Ano" msgid "Select week of year" msgstr "Selecione a semana do ano" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Dia" @@ -2354,8 +2316,36 @@ msgstr "Utilizar turnos?" msgid "Submit changes" msgstr "Enviar alterações" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "Amostras copiadas" @@ -2371,9 +2361,7 @@ msgstr "Atualmente não existem amostras definidas" msgid "Replicate: Where" msgstr "Replicar: Onde" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "conter" @@ -2381,8 +2369,7 @@ msgstr "conter" msgid "Sample only. Stop calling where" msgstr "Somente listagem. Pare de chamar quando" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "os registros desta listagem quando:" @@ -2478,8 +2465,7 @@ msgid "" msgstr "" "Não foi possível adicionar o operador. Já existe um operador com este nome:" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Adicionar um operador" @@ -2496,8 +2482,7 @@ msgstr "Atribuir um Operador ao Questionário" msgid "tool" msgstr "Ferramenta" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2542,11 +2527,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "Este operador usará VoIP?" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "Usuário do Chat Jabber/XMPP" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "Senha do usuário do chat Jabber/XMPP" @@ -2566,8 +2551,7 @@ msgstr "Este operador é um Supervisor?" msgid "Is the operator a refusal converter?" msgstr "Este operador tem habilidade para converter recusas?" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Adicionar Usuário" @@ -2591,7 +2575,7 @@ msgstr "vinculado em/para" msgid "Error: Failed to insert questionnaire" msgstr "ERRO: Falha ao inserir o questionário" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Nome para o questionário:" @@ -2599,8 +2583,7 @@ msgstr "Nome para o questionário:" msgid "Select limesurvey instrument:" msgstr "Selecione um instrumento do LimeSurvey:" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "Instrumentos existentes:" @@ -2616,72 +2599,72 @@ msgstr "Sem pré-seleção (vai direto ao questionário)" msgid "Use basic respondent selection text (below)" msgstr "Usar texto de seleção básico (abaixo)" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "Restringir agendamentos aos turnos?" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "Restringir trabalho aos turnos?" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "Questionário apenas de teste?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "Habilitar para auto-resposta via email?" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "Modo de visualização do questionário pelo entrevistado" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "Tudo em um" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "Questão por questão" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "Um grupo por vez" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "Modelo do LimeSurvey para o respondente" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "URL para encaminhar os respondentes para auto-resposta (obrigatório)" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "Introdução para a seleção do respondente:" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "Introdução do Projeto para seleção do respondente" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" "Ligação de Retorno Seleção do Entrevistado (questionário já iniciado):" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "Mensagem para deixar na caixa de mensagens:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "Texto de Encerramento do projeto (Tela de agradecimento):" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "Informações do Projeto para os pesquisadores/operadores:" @@ -2698,13 +2681,11 @@ msgstr "" msgid "Display extension status" msgstr "Mosta a situação do ramal" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2968,7 +2949,7 @@ msgstr "Sábados" msgid "String" msgstr "Texto" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Telefone" @@ -3000,7 +2981,7 @@ msgstr "E-mail" msgid "Self completion email invitation sent" msgstr "Auto Resposta com envio de email" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "Auto Resposta online" @@ -3008,11 +2989,11 @@ msgstr "Auto Resposta online" msgid "Cases by outcome" msgstr "Casos por Resultados" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Projeto" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Resultado atual:" @@ -3029,14 +3010,14 @@ msgid "Cannot connect to VoIP Server" msgstr "Não foi possível conectar ao seu servidor VoIP" #: admin/availability.php:57 -msgid "No availability group set" -msgstr "Não foi ajustado um grupo de disponibilidade" +msgid "No time slot group set" +msgstr "" #: admin/availability.php:95 -msgid "Modify availability" -msgstr "Modificar disponibilidade" +msgid "Modify time slots" +msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" @@ -3044,18 +3025,22 @@ msgstr "" "Informe os horários de início e término para cada dia da semana para " "autorizar as chamadas dentro desses intervalos" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Adicionar linha" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" -msgstr "Salvar alterações para as disponibilidades" +msgid "Save changes to time slot group" +msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" -msgstr "Deletar este grupo de disponibilidade" +msgid "Delete this time slot group" +msgstr "" #: admin/clients.php:84 msgid "Could not add" @@ -3065,8 +3050,7 @@ msgstr "Impossível adicionar" msgid "There may already be a client of this name" msgstr "Já deve existir um cliente com este nome" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Adicionar um cliente" @@ -3124,8 +3108,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "Salvar alterações para os turnos" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "Agora" @@ -3174,8 +3157,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "Efetuar Download dos resultados deste questionário via Limesurvey" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "Por favor, selecione uma listagem" @@ -3219,8 +3201,7 @@ msgstr "" msgid "Operator edit" msgstr "Edição do Operador" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "Usuário" @@ -3365,23 +3346,31 @@ msgstr "Por favor, confirme se você quer mesmo deletar o questionário" msgid "Delete this questionnaire" msgstr "Deleta este questionário" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Adicionar/Remover fusos horários" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "Clique para remover um fuso horário da lista padrão" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "Adicionar um fuso horário:" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Fuso horário: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "Adicionar Fuso horário" @@ -3401,8 +3390,7 @@ msgstr "Selecionar caso" msgid "Set an outcome for this call" msgstr "Definir um resultado para esta chamada" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "Definir resultado" @@ -3422,41 +3410,52 @@ msgstr "Lista de chamadas" msgid "Change outcome" msgstr "Mudar resultado" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "Observações do caso" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "Modificar respostas deste caso" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "Caso não iniciado ainda no Limesurvey" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "Definir um resultado para o caso" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "Atualizar a disponibilidade do caso" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" "Atribuir este caso para um pesquisador (aparecerá como o próximo caso para " "ele)" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "Atribuir para o pesquisador" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "Caso inexistente" @@ -3464,19 +3463,19 @@ msgstr "Caso inexistente" msgid "Error: Cannot write to temporary directory" msgstr "ERRO: não foi possível gravar no diretório temporário" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "manhã" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "tarde" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "noite" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3581,10 +3580,8 @@ msgstr "Desconectado" msgid "Reconnected" msgstr "Reconectado" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr " Ramal " @@ -3640,13 +3637,11 @@ msgstr "Não existem questionários atribuídos à você" msgid "You are not a valid client" msgstr "Desculpe, você não é um cliente autorizado" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3675,10 +3670,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" @@ -3744,11 +3745,35 @@ msgstr "" "Assim começa a história\n" "\n" +#~ msgid "Sorting cases" +#~ msgstr "Sorteando casos" + #~ msgid "Enter the telephone extension number:" #~ msgstr "Informe o número da extensão/ramal:" #~ msgid "Enter the telephone extension password:" #~ msgstr "Informe a senha da extensão:" +#~ msgid "Availability groups" +#~ msgstr "Grupos de disponibilidade" + +#~ msgid "Availablity group" +#~ msgstr "Grupo de disponibilidade" + +#~ msgid "No availability groups" +#~ msgstr "Não existem grupos de disponibilidade" + #~ msgid "No operators" #~ msgstr "Sem pesquisadores" + +#~ msgid "No availability group set" +#~ msgstr "Não foi ajustado um grupo de disponibilidade" + +#~ msgid "Modify availability" +#~ msgstr "Modificar disponibilidade" + +#~ msgid "Save changes to availabilities" +#~ msgstr "Salvar alterações para as disponibilidades" + +#~ msgid "Manage availablity groups" +#~ msgstr "Gerenciar grupos de disponibilidade" diff --git a/locale/ro/LC_MESSAGES/ro.mo b/locale/ro/LC_MESSAGES/ro.mo index 6607e03d451022a993c7b44293b9b7605c881637..9e32b076b59abdd35d894901957fc961118e2f37 100644 GIT binary patch delta 50 zcmey&^OKYj78dxeA7+9GaO}@pV#%yeCxS5%? GfDr(SqYdl; delta 50 zcmey&^O diff --git a/locale/ro/LC_MESSAGES/ro.po b/locale/ro/LC_MESSAGES/ro.po index bd0e9806..ae927a83 100644 --- a/locale/ro/LC_MESSAGES/ro.po +++ b/locale/ro/LC_MESSAGES/ro.po @@ -7,167 +7,161 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Dată/Oră" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Rezultat" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Respondent" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Înapoi" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Programare" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Notițe" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Detalii de contact" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Istoric apeluri" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Programări" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Performanţă" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Informații" @@ -175,9 +169,7 @@ msgstr "Informații" msgid "Stop REC" msgstr "Opriti inregistrarea" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Înregistrare" @@ -185,8 +177,7 @@ msgstr "Înregistrare" msgid "Beginning recording..." msgstr "" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "" @@ -194,8 +185,8 @@ msgstr "" msgid "Begin the manual recording now..." msgstr "" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "" @@ -207,43 +198,47 @@ msgstr "" msgid "Stop the manual recording now..." msgstr "" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "" -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -277,7 +272,7 @@ msgstr "" msgid "Select phone number:" msgstr "Alegeti numarul de telefon" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "" @@ -301,7 +296,7 @@ msgstr "" msgid "Accept appointment from " msgstr "" -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr "" @@ -317,7 +312,8 @@ msgstr "" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -325,7 +321,7 @@ msgstr "" msgid "Call List" msgstr "" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "" @@ -333,12 +329,17 @@ msgstr "" msgid "Number called" msgstr "Numarul sunat" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Operator" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "" @@ -346,15 +347,18 @@ msgstr "" msgid "Get a new case" msgstr "" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "" @@ -362,11 +366,12 @@ msgstr "" msgid "Restart" msgstr "Reporniţi" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -378,7 +383,11 @@ msgstr "Informații" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "" @@ -390,8 +399,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -407,114 +415,80 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "" @@ -542,7 +516,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "" @@ -570,58 +546,50 @@ msgstr "" msgid "Go back to work" msgstr "" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "" -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -635,8 +603,10 @@ msgstr "" msgid "No shifts for this project" msgstr "" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "" @@ -644,12 +614,14 @@ msgstr "" msgid "No future shifts scheduled" msgstr "" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "" @@ -657,48 +629,46 @@ msgstr "" msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -722,8 +692,7 @@ msgstr "" msgid "Reasons:" msgstr "" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -735,13 +704,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "" @@ -753,7 +721,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "" @@ -826,34 +797,33 @@ msgstr "" msgid "Case Notes" msgstr "" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "" @@ -921,7 +891,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "" @@ -960,8 +932,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -977,8 +948,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "" @@ -998,11 +968,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1022,11 +992,13 @@ msgstr "" msgid "Appointment List" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1038,7 +1010,8 @@ msgstr "" msgid "No future appointments scheduled" msgstr "" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1072,13 +1045,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "" @@ -1086,27 +1057,27 @@ msgstr "" msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "" @@ -1124,23 +1095,20 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "" @@ -1148,27 +1116,24 @@ msgstr "" msgid "Download Call History List" msgstr "" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1176,13 +1141,11 @@ msgstr "" msgid "Total sample" msgstr "" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "" @@ -1242,7 +1205,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "" @@ -1254,36 +1217,45 @@ msgstr "" msgid "Description for file:" msgstr "" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "" @@ -1300,8 +1272,7 @@ msgstr "" msgid "Modify case outcome" msgstr "" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "" @@ -1309,11 +1280,11 @@ msgstr "" msgid "Contact phone" msgstr "" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "" @@ -1333,38 +1304,39 @@ msgstr "" msgid "All appointments (with times displayed in your time zone)" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "" @@ -1372,9 +1344,7 @@ msgstr "" msgid "No appointments in the future" msgstr "" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "" @@ -1390,11 +1360,11 @@ msgstr "" msgid "Stop calling this sample when:" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "" @@ -1406,7 +1376,7 @@ msgstr "" msgid "Quota not yet reached" msgstr "" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "" @@ -1418,27 +1388,27 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "" @@ -1457,8 +1427,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "" @@ -1466,38 +1435,32 @@ msgstr "" msgid "Operator Performance" msgstr "" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "" @@ -1505,45 +1468,43 @@ msgstr "" msgid "till" msgstr "" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" +msgid "No time slots" msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "Time slot name" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "" @@ -1587,7 +1548,7 @@ msgstr "" msgid "Questionnaire creation and management" msgstr "" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "" @@ -1623,13 +1584,11 @@ msgstr "" msgid "Set values in questionnaire to pre fill" msgstr "" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "" @@ -1637,7 +1596,8 @@ msgstr "" msgid "Add operators to the system" msgstr "" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "" @@ -1646,191 +1606,200 @@ msgid "Availability and shift management" msgstr "" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "" @@ -1846,22 +1815,33 @@ msgstr "" msgid "Assign availability group to questionnaire" msgstr "" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1914,7 +1894,6 @@ msgid "Search within this sample" msgstr "" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1926,32 +1905,27 @@ msgstr "" msgid "Start search" msgstr "" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "" @@ -1979,35 +1953,32 @@ msgstr "" msgid "Secs" msgstr "" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2019,7 +1990,7 @@ msgstr "" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2043,13 +2014,14 @@ msgstr "" msgid "Shift" msgstr "" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2115,17 +2087,12 @@ msgstr "" msgid "Add pre fill" msgstr "" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2135,17 +2102,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2153,11 +2118,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2171,11 +2134,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "" @@ -2183,7 +2148,8 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "" @@ -2238,8 +2204,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "" @@ -2249,9 +2214,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2274,9 +2239,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "" @@ -2288,8 +2252,36 @@ msgstr "" msgid "Submit changes" msgstr "" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2305,9 +2297,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "" @@ -2315,8 +2305,7 @@ msgstr "" msgid "Sample only. Stop calling where" msgstr "" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2404,8 +2393,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "" @@ -2421,8 +2409,7 @@ msgstr "" msgid "tool" msgstr "" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2462,11 +2449,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2486,8 +2473,7 @@ msgstr "" msgid "Is the operator a refusal converter?" msgstr "" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "" @@ -2511,7 +2497,7 @@ msgstr "" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "" @@ -2519,8 +2505,7 @@ msgstr "" msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2536,71 +2521,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2617,13 +2602,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2887,7 +2870,7 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "" @@ -2919,7 +2902,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2927,11 +2910,11 @@ msgstr "" msgid "Cases by outcome" msgstr "" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "" @@ -2948,30 +2931,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" +msgid "Modify time slots" msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" +msgid "Save changes to time slot group" msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -2982,8 +2969,7 @@ msgstr "" msgid "There may already be a client of this name" msgstr "" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "" @@ -3036,8 +3022,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3081,8 +3066,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "" @@ -3126,8 +3110,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "" @@ -3265,23 +3248,31 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "" -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "" @@ -3301,8 +3292,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "" @@ -3322,39 +3312,50 @@ msgstr "" msgid "Change outcome" msgstr "" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "" @@ -3362,19 +3363,19 @@ msgstr "" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3477,10 +3478,8 @@ msgstr "" msgid "Reconnected" msgstr "" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr "" @@ -3531,13 +3530,11 @@ msgstr "Nu sunt chestionare asignate dumneavoastra" msgid "You are not a valid client" msgstr "" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3566,10 +3563,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" diff --git a/locale/ru/LC_MESSAGES/ru.mo b/locale/ru/LC_MESSAGES/ru.mo index 9be5f67b7fe3d87a35629e92144bc61772eb12f0..f253f3d8c694808f7cfaa63086099c2abd25e188 100644 GIT binary patch delta 22232 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\n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" -"PO-Revision-Date: 2014-10-08 22:21+0000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" +"PO-Revision-Date: 2015-01-19 10:50+0000\n" "Last-Translator: Alex \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" "Language: ru\n" #: callhistory.php:56 msgid "Case History List" msgstr "История задания" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Не сделано ни одного звонка" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Дата/время" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "ID задания" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Результат" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Респондент" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Оператор отсутствует" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Отбор респондентов - Автоответчик" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Не оставляйте сообщение, повесьте трубку, пожалуйста" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Закончить звонок с результатом: автоответчик в офисе / организации" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "Закончить звонок с результатом: Автоответчик , сообщение оставлено" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" "Закончить звонок с результатом: Автоответчик , сообщение НЕ оставлено" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Вернуться" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Отбор респондента - Организация" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Извините за беспокойство, я набрал(а) неверный номер" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Закончить звонок с результатом: тел Организации /Компании" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Повторный звонок" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "Адрес эл.почты" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "Ссылка" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Закончить работу" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "Стрелка для изменения размера" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Примечания" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Контактная информация" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "История звонков" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Смены" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Повторные звонки" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Производительность" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "История" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "О проекте" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Информация" @@ -177,9 +171,7 @@ msgstr "Информация" msgid "Stop REC" msgstr "Остановить запись" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Записать" @@ -187,8 +179,7 @@ msgstr "Записать" msgid "Beginning recording..." msgstr "Запись начинается" -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Нет соединения, запись не начата" @@ -196,8 +187,8 @@ msgstr "Нет соединения, запись не начата" msgid "Begin the manual recording now..." msgstr "Запустить запись вручную сейчас" -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Начать запись" @@ -209,36 +200,40 @@ msgstr "Останавливаю запись" msgid "Stop the manual recording now..." msgstr "Остановить запись" -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Отбор респондентов - Обратный звонок" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Вы: " -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" -msgstr "" +msgstr "% завершено" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Да - Продолжить с момента окончания предыдущего разговора" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Закончить звонок с результатом: Отказ респондента" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Отбор респондентов - Вступительная часть проекта" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Да - Продолжить" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -246,7 +241,8 @@ msgstr "" "Закончить звонок с результатом: по этому номеру нужного Респондента не " "существует" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -283,7 +279,7 @@ msgstr "Добавить этого респондента" msgid "Select phone number:" msgstr "Выбрать номер телефона:" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Ни одного" @@ -307,7 +303,7 @@ msgstr "Повторный звонок:" msgid "Accept appointment from " msgstr "Принять повторный звонок от " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " до " @@ -323,7 +319,8 @@ msgstr "на" msgid "Appointment with myself only?" msgstr "Повторный звонок только себе?" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "Запланировать повторный звонок" @@ -331,7 +328,7 @@ msgstr "Запланировать повторный звонок" msgid "Call List" msgstr "Список звонков" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Звонки не проводились" @@ -339,12 +336,17 @@ msgstr "Звонки не проводились" msgid "Number called" msgstr "Набранный номер" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Оператор" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Нет задания" @@ -352,15 +354,18 @@ msgstr "Нет задания" msgid "Get a new case" msgstr "Следующее задание" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Завершить" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Вызов / Отмена" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Супервайзер" @@ -368,11 +373,12 @@ msgstr "Супервайзер" msgid "Restart" msgstr "Перезапуск" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Доступность" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "Супервайзер чат" @@ -384,7 +390,11 @@ msgstr "Сведения" msgid "Me" msgstr "Мне" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "№ задания" @@ -396,8 +406,7 @@ msgstr "Супервайзер доступен" msgid "Supervisor not available" msgstr "Супервайзер недоступен" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "Сообщение" @@ -413,55 +422,32 @@ msgstr "От" msgid "Supervisor chat is not enabled" msgstr "Супервайзер чат недоступен" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Позвонить" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "В данный момент не звонит" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Завершить задание" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "Нажмите кнопку 'Вызов' для набора номера этого повторного звонка" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Номер для звонка:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -469,60 +455,49 @@ msgstr "" "Ваш номер не зарегистрирован. Закройте это окно и кликните на красную кнопку " "с надписью 'IP ТЕЛ Выключен'" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Выберите номер для звонка:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "Последний звонок завершил количество попыток для этого номера" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "Введите причину этого рузультата перед завершением задания :" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Требуется ввести значение кодировки" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Присвоить результат" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Ошибка: Закройте окно программы" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Вызываем звонок" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Активный звонок" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Отбой" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Звоним" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Отвечен" @@ -552,7 +527,9 @@ msgid "" "extension'" msgstr "Выберите ваш внутр. номер из списка и нажмите 'Выбрать внутр. номер'" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "Внутренний номер" @@ -580,52 +557,45 @@ msgstr "Вас отсоединили от внутреннего номера" msgid "Go back to work" msgstr "Вернуться к работе" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Состояние" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Имя" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "номеров больше нет" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Отбор респондентов - Вступление" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Рабочий телефон" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Автоответчик" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "Закончить звонок с результатом: Нет ответа (или занято) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Закончить звонок с результатом: Внезапно разъединилось" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "" "Закончить звонок с результатом: Отказ другого (неизвестного) человека" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -633,8 +603,7 @@ msgstr "" "Закончить звонок с результатом: по этому номеру нужного Респондента не " "существует ( Респондент никогда недоступен по этому номеру )" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -650,8 +619,10 @@ msgstr "Список смен" msgid "No shifts for this project" msgstr "Нет смен для этого проекта" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Начать" @@ -659,12 +630,14 @@ msgstr "Начать" msgid "No future shifts scheduled" msgstr "Будущих смен не запланировано" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "ОПРОС" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "Отбор респондентов - Конец проекта" @@ -673,50 +646,48 @@ msgid "Call automatically ended with outcome: Complete - End case" msgstr "" "Звонок автоматически завершился с результатом: Завершено - Конец задания" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Закончить звонок с результатом: Завершено" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Добавить респондента" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Вернуться" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "ID задания:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Респондент:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Переменная" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Значение" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" "Выберите группы для ограничения времени звонков (Если ни одна не выбрана - " "значит всегда доступен)" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "Не назначены группы для этого ОПРОСа" @@ -740,8 +711,7 @@ msgstr "В данный момент нет доступного задания" msgid "Reasons:" msgstr "Причины:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "Включено" @@ -753,13 +723,12 @@ msgstr "Выключено" msgid "Assigned questionnaires:" msgstr "Назначенные опросы :" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Описание" @@ -771,7 +740,10 @@ msgstr "ОШИБКА: Для Вас опросы не назначены" msgid "Assigned samples:" msgstr "Назначенные Списки контактов:" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Список контактов" @@ -847,34 +819,33 @@ msgstr "ВОЗМОЖНАЯ ОШИБКА: квота по строке для э msgid "Case Notes" msgstr "Примечания к заданию" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Добавить примечание" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Нет примечаний" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Примечание" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Эта смена" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Завершено" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Завершено в час" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Этот проект" @@ -942,7 +913,9 @@ msgstr "Закончим задание через" msgid "Ending case now" msgstr "Завершаем задание сейчас" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "секунды" @@ -984,8 +957,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "Необходимо предоставить Основной номер телефона" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "Создать ссылку" @@ -1001,10 +973,9 @@ msgstr "Для этой Анкеты Ссылки не заданы" msgid "Respondent Selection - Project Quota End" msgstr "Отбор Респондентов - В случае закрытия квоты по проекту" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" -msgstr "Закончить звонок с результатом: Не является клиентом ..." +msgstr "Закончить звонок с результатом: Квота заполнена" #: email.php:241 msgid "Self completion invitation sent via email to" @@ -1025,11 +996,11 @@ msgid "Email respondent for self completion" msgstr "" "Отправить сообщение по эл. почте для самостоятельного заполнения анкеты" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "Имя" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "Фамилия" @@ -1050,11 +1021,13 @@ msgstr "" msgid "Appointment List" msgstr "Список Повторных звонков" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Еще не звонили" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "Любой Оператор" @@ -1066,7 +1039,8 @@ msgstr "Повторные звонки не назначены" msgid "No future appointments scheduled" msgstr "Повторных звонков не запланировано" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "Повторный звонок с" @@ -1100,13 +1074,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "Подождите ответа на этот звонок перед звонком Супервайзеру" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "Монитор автоматической расширенной сортировки заданий" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Текущий процесс:" @@ -1114,29 +1086,29 @@ msgstr "Текущий процесс:" msgid "Kill signal sent: Please wait..." msgstr "Сигнал остановки отправлен. Пожалуйста, подождите..." -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" "Процесс уже закрыт (напр. серевер был перезагружен) - нажмите для " "подтверждения" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Остановить текущий процесс" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "ID записи в журнале" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Дата" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "Запись в журнале" @@ -1162,23 +1134,20 @@ msgstr "" "Если вы не испытываете никаких проблем с производительностью, не " "рекомендуется использовать эту функцию." -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Результат последних процессов" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "История звонков" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Дата/время начала звонка" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Время окончания" @@ -1186,27 +1155,24 @@ msgstr "Время окончания" msgid "Download Call History List" msgstr "Скачать Историю звонков" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Привязать клиентов к Опросам" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "Отчет по Квоте" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Выберите опрос из списка" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Выберите Список контактов из списка" @@ -1214,13 +1180,11 @@ msgstr "Выберите Список контактов из списка" msgid "Total sample" msgstr "Общее количество контактов в списке" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "закрыто" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "открыто" @@ -1280,7 +1244,7 @@ msgstr "Перейдите назад в броузере и устраните msgid "Import: Select columns to import" msgstr "Импорт : Выберите столбцы для импорта" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Импорт : Выберите файл для импорта" @@ -1292,38 +1256,47 @@ msgstr "Выберите файл в формате CSV для загрузки msgid "Description for file:" msgstr "Введите название для списка контактов:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Добавить список контактов" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "Запуск сортировки заданий" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" -msgstr "Сортировка заданий" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" +msgstr "Проверка заданий открытых более 24 часов" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" "Система автоматически закрыла задание, т.к. оно не было закрыто более 24х " "часов" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" -msgstr "Сортировка завершена" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" +msgstr "Закрытие завершенных заданий" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "Эта задача заняла" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "Не удалось закрыть завершенные задания" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "Сортировка заданий по " + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "Сортировка завершена" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "Не могу завершить сортировку" @@ -1340,8 +1313,7 @@ msgstr "Повторный звонок был удален. Необходим msgid "Modify case outcome" msgstr "Изменить результат задания" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "Редактировать повторный звонок" @@ -1349,11 +1321,11 @@ msgstr "Редактировать повторный звонок" msgid "Contact phone" msgstr "Контактный телефон" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Время начала" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Время окончания" @@ -1374,38 +1346,39 @@ msgid "All appointments (with times displayed in your time zone)" msgstr "" "Все повторные звонки (с временем в соответствии с вашей временной зоной)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Удалить" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Редактировать" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Имя Оператора" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Имя Респондента" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Фамилия" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Текущий результат" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Оператор кто звонил" @@ -1413,9 +1386,7 @@ msgstr "Оператор кто звонил" msgid "No appointments in the future" msgstr "Нет повторных звонков в будущем" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "Управление квотами" @@ -1431,11 +1402,11 @@ msgstr "В данный момент квоты не заданы" msgid "Stop calling this sample when:" msgstr "Остановить звонки по Списку контактов при условии:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "для" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "Завершения" @@ -1447,7 +1418,7 @@ msgstr "Квота Достигнута" msgid "Quota not yet reached" msgstr "Квота еще не Достигнута" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "Текущие завершения: " @@ -1459,27 +1430,27 @@ msgstr "Выберите вопрос для квоты" msgid "Enter the details for creating the quota:" msgstr "Введите параметры для задания квоты" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "Предопределенные значение для этого вопроса:" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "Для этого вопроса не заданы эрлыки" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "Значение кода" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "Значение кода для сравнения" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "тип сравнения" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "Количесто завершений для остановки звонков" @@ -1499,10 +1470,9 @@ msgid "" msgstr "" "Задать типы результатов доступные для каждого оператора. Обратите ВНИМАНИЕ " "что ВСЕМ операторам будет разрешено присваивать заданиям ВСЕ возможные " -"результаты. Здесь Вы можете задать ограничения для конкретного опреатора." +"результаты. Здесь Вы можете задать ограничения для конкретного оператора." -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "Изменить навыки и возможности операторов" @@ -1510,38 +1480,32 @@ msgstr "Изменить навыки и возможности оператор msgid "Operator Performance" msgstr "Производительность Оператора" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Выберите опрос" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Звонков" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Общее время" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "Время звонка" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "Завершено в час" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "Звонков в час" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "Эффективность" @@ -1549,47 +1513,46 @@ msgstr "Эффективность" msgid "till" msgstr "до" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Выберите смену" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" -msgstr "Группы доступности времени звонка" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" +msgstr "Временные интервалы" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "Изменить" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" -"Группы доступности определяют периоды времени для звонков Респондентам (в " -"соответствии с часовой зоной Респондента )" +"Временные интервалы определяют промежутки времени в течение заданных дней " +"недели. Используются для функции доступности и функции Временного интервала " +"попытки звонка." #: admin/availabilitygroup.php:117 -msgid "No availability groups" -msgstr "Не заданы группы доступности" +msgid "No time slots" +msgstr "Нет Временных интервалов" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" -msgstr "Группа доступности времени звонка" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" +msgstr "Временной интервал" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" -msgstr "Добавить группу доступности" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" +msgstr "Добавить Временной интервал" #: admin/availabilitygroup.php:126 -msgid "Availability group name" -msgstr "Название группы доступности времени звонка" +msgid "Time slot name" +msgstr "Название для Временного интервала" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "отчеты по сменам" @@ -1633,7 +1596,7 @@ msgstr "Административные инструменты" msgid "Questionnaire creation and management" msgstr "Создание и управление опросами" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "Создать анекту в Limesurvey:" @@ -1669,13 +1632,11 @@ msgstr "Привязать Списки контактов к опросам" msgid "Set values in questionnaire to pre fill" msgstr "Задать значения для Анкеты по умолчанию" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "Управление квотой по строке" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "Управление записями операторов" @@ -1683,7 +1644,8 @@ msgstr "Управление записями операторов" msgid "Add operators to the system" msgstr "Добавить операторов" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Привязать операторов к опросам" @@ -1692,194 +1654,203 @@ msgid "Availability and shift management" msgstr "Управление доступностью и сменами" #: admin/index.php:73 -msgid "Manage availablity groups" -msgstr "Управление группами доступности" +msgid "Manage time slots" +msgstr "Управление Временными интервалами" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "Привязать группы доступности к опросам" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "Привязать Временные интервалы попыток звонков к опросу" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "Управление сменами (добавить /удалить)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Прогресс по Опросу" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "Показать все будущие повторные звонки" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "Отчет по звонкам по Списку контактов" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "Результаты опроса" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Вывод данных" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Производительность Операторов" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Управление учетными записями клиентов" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Добавить клиента" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Функции Супервайзера" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Назначить результаты заданиям" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Поиск по Списку контактов" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "Статус и привязка задания" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "Генератор повторных звонков" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Установки системы" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "Задать список временных зон по умолчанию" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "Задать времена для смен по умолчанию" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "Задать ограничение времени звонков" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "Сведения о Колл-Центре" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "Запуск и монитор сортировки заданий" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "IP ТЕЛЕФОН" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "Запуск и мониторинг IP Телефонии" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "Статус внутр. тел.номера" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "Привязать Список контактов: Выберите Список контактов для привязки" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "Редактировать параметры Списка контактов" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "Макс. количество звонков для всех номеров ( 0 = без ограничений )" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "" "Макс. количество попыток звонков по каждому номеру ( 0 = без ограничений " ")" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "Количество сообщений оставить на автоответчике ( 0 = не оставлять)" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" "Выбор респондента из Списка контактов случайно ? ( иначе последовательно)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "Разрешить использовать новые номера из списка контактов?" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "Списки контактов выбранные для этого опроса" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "Без ограничений" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "Последовательно" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "Случайно" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "Никогда" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "Нет" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "Да" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "Кликнуть для отсоединения" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "Макс. количество звонков" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "Макс. число попыток звонков" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "Кол-во Сообщений для Автоответчика" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "Порядок выбора респондентов из списка" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "Отсоединиить Список контактов" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "Для этого опроса не выбраны Списки контактов" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "Добавить Список контактов к опросу :" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Выбрать список контактов:" @@ -1895,22 +1866,36 @@ msgstr "Обновить информацию о Центре" msgid "Assign availability group to questionnaire" msgstr "Задать группы доступности для опроса" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" +"Привязка группы доступности к опросу позволит операторам выбрать и " +"ограничить допустимое время звонка для конкретного задания в пределах " +"выбранных групп" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "Для этого опроса не выбраны группы доступности" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "Группы доступности выбранные для этого Опроса" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "Добавить группу доступности для этого Опроса :" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "Выбрать группу доступности:" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "Добавить группу доступности" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1967,7 +1952,7 @@ msgstr "Поиск по Списку контактов" #: admin/samplesearch.php:151 msgid "Use the % character as a wildcard" -msgstr "" +msgstr "Используйте символ % для подстановки любого значения" #: admin/samplesearch.php:156 msgid "Search for:" @@ -1977,32 +1962,27 @@ msgstr "Искать:" msgid "Start search" msgstr "Начать поиск" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "Результаты Опроса" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "Результаты" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Состояние списка контактов" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "Завершено из списка контактов" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "Осталось в Списке контактов" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Количество" @@ -2031,35 +2011,32 @@ msgstr "Минут" msgid "Secs" msgstr "Секунд" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Соотношение" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "Соотношение ответов" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "Соотношение отказов" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "Соотношение сотрудничества" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "Соотношение контактов" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Сумма" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2071,7 +2048,7 @@ msgstr "Результаты звонков оператора" msgid "No outcomes recorded for this sample" msgstr "Для этого списка контактов НЕТ записей результатов" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "Для этого опроса НЕТ записей результатов" @@ -2095,13 +2072,14 @@ msgstr "Для этого опроса смены не заданы" msgid "Shift" msgstr "Смена" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Отчет по смене" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "Мониторинг IP Телефонии" @@ -2175,17 +2153,12 @@ msgstr "или : Выберите Предварительное заполн msgid "Add pre fill" msgstr "Добавить Предварительное заполнение" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "Переименовать" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "Разрешения операторам на просмотр" @@ -2195,17 +2168,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "Выберите какие поля из Списка контактов будут видны операторам" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "Поле" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "Пример данных" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "Показать поле Операторам ?" @@ -2213,11 +2184,9 @@ msgstr "Показать поле Операторам ?" msgid "Save changes" msgstr "Сохранить изменения" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "Редактировать" @@ -2233,11 +2202,13 @@ msgstr "" msgid "Delete selected fields" msgstr "Удалить выбранные поля" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "Включить" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "Выключить" @@ -2245,7 +2216,8 @@ msgstr "Выключить" msgid "Sample list" msgstr "Список контактов" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "Включить / Выключить" @@ -2313,8 +2285,7 @@ msgstr "Выберите файл в формате CSV для загрузки: msgid "Load bulk appointment CSV" msgstr "Загрузить файл CSV для массовых повторных звонков" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Добавить смены" @@ -2326,9 +2297,9 @@ msgstr "" "Для добавления/редактирования смен вы должны быть оператором и иметь доступ " "администратора" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2355,9 +2326,8 @@ msgstr "Выбрать год:" msgid "Select week of year" msgstr "Выбрать неделю года:" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "День" @@ -2369,8 +2339,42 @@ msgstr "Использовать смены?" msgid "Submit changes" msgstr "Отправить изменения" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" +"Назначение временных интервалов попыток звонков для опросов позволит " +"совершить N + 1 попытку для задания в этот интервал времени, где N - " +"количество предыдущих попыток во всех назначенных временных интервалах. \r\n" +"Обратите внимание, временные интервалы должны охватывать все возможные " +"периоды времени, иначе ни одно задание не будет доступно в течение " +"пропущенных временных интервалов." + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "Для этого опроса Временные интервалы попытки звонка не выбраны" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "Временные интервалы попытки звонка выбранные для этого опроса" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "Добавить Временной интервал попытки звонка для этого опроса :" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "Выберите Временной интервал попытки звонка :" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "Добавить Временной интервал попытки звонка" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "Квоты скопированы" @@ -2386,9 +2390,7 @@ msgstr "В данный момент нет квот по строке" msgid "Replicate: Where" msgstr "Дублировать: Где" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "подобен (похож)" @@ -2396,8 +2398,7 @@ msgstr "подобен (похож)" msgid "Sample only. Stop calling where" msgstr "Только для Списка контактов! Прекратить звонить когда" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "сроки из этого списка контактов когда :" @@ -2495,8 +2496,7 @@ msgstr "" "Невозможно добавить оператора. Возможно оператор с таким именем уже " "существует:" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Добавить оператора" @@ -2512,8 +2512,7 @@ msgstr "Привязать оператора к Опросу" msgid "tool" msgstr "инструмент" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2558,11 +2557,11 @@ msgstr "Выбрать внутр. номер для этого оператор msgid "Will this operator be using VoIP?" msgstr "Будет использовать IP телефон ?" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "Введите Логин для Jabber/XMPP чата" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "Введите Пароль для Jabber/XMPP чата" @@ -2582,8 +2581,7 @@ msgstr "Функция Супервайзера?" msgid "Is the operator a refusal converter?" msgstr "Будт обрабатывать отказы?" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Добавить пользователя" @@ -2607,7 +2605,7 @@ msgstr "связан с" msgid "Error: Failed to insert questionnaire" msgstr "ОШИБКА: Не удалось вставить опрос" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Название Опроса :" @@ -2615,8 +2613,7 @@ msgstr "Название Опроса :" msgid "Select limesurvey instrument:" msgstr "Выбрать Анкету из списка:" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "Существующая анкета:" @@ -2632,75 +2629,75 @@ msgstr "Без отбора респондента ( переход прямо msgid "Use basic respondent selection text (below)" msgstr "Использовать базовый текст для отбора респондентов (ниже)" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "Привязать повторные звонки к сменам?" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "Ограничить временем смен?" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "Опрос только для тестирования?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "Разрешить операторам создавать ссылки для доступа к анкете?" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" "Разрешить респондентам самостоятельно отвечать на анкету ? (после отправки " "приглашения по эл. почте)" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "Режим отображения Анкеты для Респондента" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "Все сразу на одной странице" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "Вопрос за вопросом" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "Группа за группой" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "Шаблон Анкеты для показа Респонденту" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" "Ссылка переадресации респондентов для самостоятельного запонения Анкеты " "(обязательна)" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "Отбор респондентов Вступление:" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "Отбор респондентов Вступительная часть проекта:" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "Отбор респондентов обратный звонок (опрос уже начат) :" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "Текст сообщения для автоответчика:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "Сообщение по окончании опроса (страница СПАСИБО):" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "Информация о проекте для интервьюеров / операторов:" @@ -2719,13 +2716,11 @@ msgstr "" msgid "Display extension status" msgstr "Показать статус внутр. номера" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "Название внутр. номера (напр. SIP/1000) :" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "Пароль для внутр. номера:" @@ -2972,7 +2967,7 @@ msgstr "Воскресенье" #: admin/databasestrings.php:76 msgid "Quota filled" -msgstr "Не является клиентом ..." +msgstr "Квота заполнена" #: admin/databasestrings.php:77 msgid "Weekday mornings (Before 12pm)" @@ -2994,7 +2989,7 @@ msgstr "Субботы" msgid "String" msgstr "Строковые данные" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Номер телефона" @@ -3026,7 +3021,7 @@ msgstr "Адрес эл. почты" msgid "Self completion email invitation sent" msgstr "Письмо с приглашением для самостоятельного заполнения отправлено" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "Заполнено самостоятельно онлайн" @@ -3034,11 +3029,11 @@ msgstr "Заполнено самостоятельно онлайн" msgid "Cases by outcome" msgstr "Заданиия по типу результата" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Проект" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Текущий результат:" @@ -3055,14 +3050,14 @@ msgid "Cannot connect to VoIP Server" msgstr "Не могу соединиться с сервером IP Телефонии" #: admin/availability.php:57 -msgid "No availability group set" -msgstr "Группы доступности не заданы" +msgid "No time slot group set" +msgstr "НЕ УСТАНОВЛЕНО Групп Временного интервала" #: admin/availability.php:95 -msgid "Modify availability" -msgstr "Изменить Доступность" +msgid "Modify time slots" +msgstr "Изменить Временные интервалы" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" @@ -3070,18 +3065,22 @@ msgstr "" "Для ограничения времени звонков, задайте время начала и окончания для " "каждого требуемого дня недели" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Добавить строку" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "Название для группы Временного интервала" + #: admin/availability.php:162 -msgid "Save changes to availabilities" -msgstr "Сохранить изменения для доступности" +msgid "Save changes to time slot group" +msgstr "Сохранить изменения для группы Временного интервала" #: admin/availability.php:166 -msgid "Delete this availability group" -msgstr "Удалить эту группу доступности" +msgid "Delete this time slot group" +msgstr "Удалить эту группу Временного интервала" #: admin/clients.php:84 msgid "Could not add" @@ -3091,8 +3090,7 @@ msgstr "Не могу добавить" msgid "There may already be a client of this name" msgstr "Клиент с таким именен может уже существует" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Добавить клиента" @@ -3150,8 +3148,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "Сохранить изменеия по сменам" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "Сейчас" @@ -3191,7 +3188,7 @@ msgid "" "soon as the operator is available." msgstr "" "Вывести список заданий по опросу и списку контактов с возможностью " -"назначения следующего звонка в очередь конкретного опреатора. Если вы " +"назначения следующего звонка в очередь конкретного оператора. Если вы " "назначите задания операторам, это изменит порядок звонков и поставит в " "начало списка." @@ -3199,8 +3196,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "Скачать данные для этого опроса с помощью Lime" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "Выберите Список контактов" @@ -3247,8 +3243,7 @@ msgstr "" msgid "Operator edit" msgstr "Редактировать данные оператора" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "Логин (Имя пользователя)" @@ -3301,7 +3296,7 @@ msgstr "" "Скачайте файл для каждого пользователя и сохраните в той-же папке что и " "файл voip.exe (программа IP Телефонии). При запуск этого файла, запустится " "программа voip.exe с требуемыми параметрами соединения для подключения " -"этого опреатора к серверу IP телефонии" +"этого оператора к серверу IP телефонии" #: admin/operatorlist.php:299 msgid "Download Windows VoIP Executable" @@ -3381,9 +3376,9 @@ msgid "" "case notes, respondent details, appointments and the links between " "operators, clients and the questionnaire" msgstr "" -"Этот опрос будет удален из базы CATI, включая историю звонков, заданий, " +"Этот опрос будет удален из базы queXS, включая историю звонков, заданий, " "примечаний, деталей респондентов, повторных звонков их связми между " -"опреаторами, клиентами и опросом" +"операторами, клиентами и опросом" #: admin/questionnairelist.php:386 msgid "Please confirm you wish to delete the questionnaire" @@ -3393,23 +3388,31 @@ msgstr "Подтвердите намерение удалить этот Оп msgid "Delete this questionnaire" msgstr "Удалить этот Опрос" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Редактировать список Временных зон" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "Задать Временную зону по умолчанию:" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "Временная зона по умолчанию: " + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "Нажмите для удаления Временной зоны из списка" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "Добавить временную зону :" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Временная зона : " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "Добавить временную зону" @@ -3429,8 +3432,7 @@ msgstr "Выберите задание" msgid "Set an outcome for this call" msgstr "Установить результат для этого звонка" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "Установить результат" @@ -3450,42 +3452,53 @@ msgstr "Список звонков" msgid "Change outcome" msgstr "Изменить результат" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "Попытки звонка за Временной интервал" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "Попытки звонка" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "Примечания по заданию" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "Изменить ответы для этого задания" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "Заполнение Анкеты для этого задания еще не начиналось" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "Установите результа для задания" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "Обновить Доступность для задания" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" "Назначить это задание оператору (появится как следующее задание для " "оператора)" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "Назначить это задание оператору" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" "Удалить все контактные данные и номера телефонов для этого Респондента" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "Задание не существует" @@ -3493,19 +3506,19 @@ msgstr "Задание не существует" msgid "Error: Cannot write to temporary directory" msgstr "ОШИБКА : Невозможно записать во временную директорию" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "утро" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "день" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "вечер" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3610,10 +3623,8 @@ msgstr "Разъединено" msgid "Reconnected" msgstr "Переподключился" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr " Внутренний тел.номер " @@ -3672,13 +3683,11 @@ msgstr "Для Вас анкеты не назначены" msgid "You are not a valid client" msgstr "Пользователь с таким Логином и Паролем не существует" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "Не назначен повторный звонок" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "Назначен повторный звонок" @@ -3707,10 +3716,16 @@ msgid "Self completion refused via opt out function" msgstr "Отказ от самостоятельго заполнения переход по по ссылке отказа" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "Выбор Опроса и Списка контактов:" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "Все Опросы и Списки контактов для этой Анкете" @@ -3775,3 +3790,27 @@ msgid "" msgstr "" "Вот такие пироги...\n" "\n" + +#~ msgid "Sorting cases" +#~ msgstr "Сортировка заданий" + +#~ msgid "Availability groups" +#~ msgstr "Группы доступности времени звонка" + +#~ msgid "No availability groups" +#~ msgstr "Не заданы группы доступности" + +#~ msgid "Availablity group" +#~ msgstr "Группа доступности времени звонка" + +#~ msgid "Manage availablity groups" +#~ msgstr "Управление группами доступности" + +#~ msgid "No availability group set" +#~ msgstr "Группы доступности не заданы" + +#~ msgid "Modify availability" +#~ msgstr "Изменить Доступность" + +#~ msgid "Save changes to availabilities" +#~ msgstr "Сохранить изменения для доступности" diff --git a/locale/sv/LC_MESSAGES/sv.mo b/locale/sv/LC_MESSAGES/sv.mo index bb1e8e404586a6cd0ea6a209f5c1e881f99afee3..be6db8e14396e35e05fd94690d2ac40224bcb8ea 100644 GIT binary patch delta 11192 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 delta 11427 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 F{{UrLeZ~L) diff --git a/locale/sv/LC_MESSAGES/sv.po b/locale/sv/LC_MESSAGES/sv.po index b6519fc2..45ea3dd1 100644 --- a/locale/sv/LC_MESSAGES/sv.po +++ b/locale/sv/LC_MESSAGES/sv.po @@ -7,171 +7,165 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" #: callhistory.php:56 msgid "Case History List" msgstr "Historiklista intervjuer" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "Inga samtal genomförda" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "Datum/Tid" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "Intervju ID" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "Resultat" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "Kontaktperson" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "Ingen intervjuare" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "Val kontaktperson - Telefonsvarare" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "Lämna ej något meddelande, vänligen lägg på" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "Avsluta samtal med resultatet: Telefonsvarare" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "" "Avsluta samtal med resultatet: Lämnat meddelande på " "telefonsvararen" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "" "Avsluta samtal med resultatet: Ej lämnat meddelande på " "telefonsvararen" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "Tillbaka" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "Val kontaktperson - Företagssvar" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "Förlåt att jag störde, jag ringde fel nummer" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "Avsluta samtal med resultatet: Företagsnummer" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "Find´Em" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "Återkontakt" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "Avsluta jobb" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "Pil för att expandera eller dra ihop" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "Kommentarer" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "Kontaktinformation" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "Samtalshistorik" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "Skift" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "Återkontakter" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "Prestanda" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "Arbetshistoria" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "Projektinformation" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "Information" @@ -179,9 +173,7 @@ msgstr "Information" msgid "Stop REC" msgstr "Stoppa inspelning" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "Spela in" @@ -189,8 +181,7 @@ msgstr "Spela in" msgid "Beginning recording..." msgstr "Startar inspelning..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "Inte i ett samtal, påbörja inte en inspelning" @@ -198,8 +189,8 @@ msgstr "Inte i ett samtal, påbörja inte en inspelning" msgid "Begin the manual recording now..." msgstr "Påbörja manuell inspelning nu..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "Starta inspelning" @@ -211,37 +202,40 @@ msgstr "Stoppar inspelning..." msgid "Stop the manual recording now..." msgstr "Stoppa manuella inspelningen..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "Val kontaktperson - Ring tillbaka" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "Du är: " -#: rs_callback_interface2.php:80 -#, php-format +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "% complete" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "Ja - Fortsätt där vi slutade" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "Avsluta samtal med resultatet: Kontaktperson vägrade" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "Val kontaktperson - Projektinledning" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "Ja, fortsätt" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" @@ -249,7 +243,8 @@ msgstr "" "Avsluta samtal med resultatet: Ingen giltig kontaktperson (personen finns " "inte tillgänglig på detta nummer)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "" @@ -287,7 +282,7 @@ msgstr "Lägg till denna kontaktperson" msgid "Select phone number:" msgstr "Välj telefonnummer" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "Ingen" @@ -312,7 +307,7 @@ msgstr "Återkontakt:" msgid "Accept appointment from " msgstr "Acceptera återkontakt från " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " tills " @@ -328,7 +323,8 @@ msgstr "den" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "" @@ -336,7 +332,7 @@ msgstr "" msgid "Call List" msgstr "Samtalslista" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "Inga samtal gjorda" @@ -344,12 +340,17 @@ msgstr "Inga samtal gjorda" msgid "Number called" msgstr "Uppringt nummer" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "Intervjuare" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "Ingen intervju" @@ -357,15 +358,18 @@ msgstr "Ingen intervju" msgid "Get a new case" msgstr "Gör en ny intervju" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "Slut" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "Ring/lägg på" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "Handledare" @@ -373,11 +377,12 @@ msgstr "Handledare" msgid "Restart" msgstr "Starta om" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "Tillgänglighet" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "" @@ -389,7 +394,11 @@ msgstr "Information" msgid "Me" msgstr "" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "Intervju ID" @@ -401,8 +410,7 @@ msgstr "" msgid "Supervisor not available" msgstr "" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "" @@ -418,57 +426,34 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "Ring" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "Inte i samtal" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "Avsluta ärende" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "" "Tryck på samtalsknappen för att ringa numret för denna " "återkontakt:" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "Nummer att ringa:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" @@ -477,61 +462,50 @@ msgstr "" "VoIP genom att klicka en gång på den röda knappen som " "säger \"VoIP Off\"" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "Välj telefonnummer att ringa:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "Det sista samtalet avslutade detta uppringningsförsök" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "" "Ange en anledning till detta resultat innan du avslutar detta ärende:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "Kräver kodande" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "Tilldela resultat" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "Error: Stäng fönster" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "Begär samtal" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "Kontaktperson svarade" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "Lägg på" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "Ringer" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "Besvarat" @@ -559,7 +533,9 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "Tillägg" @@ -589,51 +565,44 @@ msgstr "" msgid "Go back to work" msgstr "Gå tillbaka till arbete" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "Status" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "Namn" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "Inga fler nummer att ringa" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "Val kontaktperson - Introduktion" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "Företagsnummer" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "Telefonsvarare" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "Avsluta samtal med resultatet: Inget svar (samtal eller upptagen) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "Avsluta samtal med resultatet: Råkade lägga på" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "Avsluta samtal med resultatet: Vägran av okänd person" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" @@ -641,8 +610,7 @@ msgstr "" "Avsluta samtal med resultatet: Ingen giltig kontaktperson (personen finns " "inte på detta nummer)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -656,8 +624,10 @@ msgstr "Skiftlista" msgid "No shifts for this project" msgstr "Inga skift för detta projekt" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "Start" @@ -665,12 +635,14 @@ msgstr "Start" msgid "No future shifts scheduled" msgstr "Inga framtida skift schemalagda" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "Frågeformulär" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "Kontaktperson val - Projekt slut" @@ -678,50 +650,48 @@ msgstr "Kontaktperson val - Projekt slut" msgid "Call automatically ended with outcome: Complete - End case" msgstr "Samtal automatiskt slutade med resultatet: Klar - avsluta intervju" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "Avsluta samtal med resultat: Klar" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "Lägg till kontaktperson" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "Gå tillbaka" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "Intervju ID:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "Kontaktperson:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "Var" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "Värde" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" "Välj grupp för att begränsa tillgänglighet (Ingen vald " "menas alltid tillgängliga)" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "" "Tillgängligehtsgrupper inte definierade för denna enkät" @@ -746,8 +716,7 @@ msgstr "Det finns ingen intervju tillgänglig just nu" msgid "Reasons:" msgstr "Orsak:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "" @@ -759,13 +728,12 @@ msgstr "" msgid "Assigned questionnaires:" msgstr "Tilldelade frågeformulär:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "ID" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "Beskrivning" @@ -777,7 +745,10 @@ msgstr "Fel: Ingen enkät tilldelad till dig" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "Kontakter" @@ -854,34 +825,33 @@ msgstr "ANTAGLIGEN FEL: Rad kvot fylld för denna fråga" msgid "Case Notes" msgstr "Intervju kommentarer" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "Lägg till kommentar" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "Inga kommentarer" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "Kommentar" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "Detta skift" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "Intervjuer" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "Intervjuer per timme" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "Detta projekt" @@ -949,7 +919,9 @@ msgstr "" msgid "Ending case now" msgstr "" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "sekunder" @@ -988,8 +960,7 @@ msgstr "" msgid "You must supply a primary phone number" msgstr "" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "" @@ -1005,8 +976,7 @@ msgstr "" msgid "Respondent Selection - Project Quota End" msgstr "Kontaktperson val - Projekt kvot slut" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "Avsluta samtal med resultatet: Kvot fylld" @@ -1026,11 +996,11 @@ msgstr "" msgid "Email respondent for self completion" msgstr "" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "" @@ -1050,11 +1020,13 @@ msgstr "" msgid "Appointment List" msgstr "Återkontaktlista" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "Inte ringd ännu" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "" @@ -1066,7 +1038,8 @@ msgstr "Inga återkontakter gjorda" msgid "No future appointments scheduled" msgstr "Inga framtida återkontakter schemalagda" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "" @@ -1106,13 +1079,11 @@ msgstr "" "Vänta för detta samtal att svara innan du försöker ringa " "handledaren" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "Övervaka hela systemet intervju sortering" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "Running process:" @@ -1120,29 +1091,29 @@ msgstr "Running process:" msgid "Kill signal sent: Please wait..." msgstr "Död signal skickad: Vänligen vänta" -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" "Processen är redan stängd (t.ex. server startas om) - klicka " "här för att bekräfta" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "Döda process" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "Logg ID" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "Datum" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "Loggpost" @@ -1170,23 +1141,20 @@ msgstr "" "prestandaproblem, är det inte rekommenderat att använda den " "här funktionen." -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "Resultatet av förra processen kör (om någon)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "Samtalshistorik" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "Datum/Tid samtalstart" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "Sluttid" @@ -1194,27 +1162,24 @@ msgstr "Sluttid" msgid "Download Call History List" msgstr "Ladda ned Samtalshistorik" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "Tilldela klienter till enkäter" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "Kvot rapport" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "Välj en enkät från listan nedan" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "Välj en kontakt frän listan nedan" @@ -1222,13 +1187,11 @@ msgstr "Välj en kontakt frän listan nedan" msgid "Total sample" msgstr "Kontakter totalt" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "stängd" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "öppen" @@ -1289,7 +1252,7 @@ msgstr "" msgid "Import: Select columns to import" msgstr "Importera: Välj kolumner att importera" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "Importera: Välj fil att importera" @@ -1301,36 +1264,45 @@ msgstr "Välj CSV kontaktsfil för uppladdning" msgid "Description for file:" msgstr "Beskrivning för fil:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "Lägg till kontakter" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "Sortering intervju som startar" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" -msgstr "Sortera intervjuer" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" +msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" -msgstr "Sortering klar" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" +msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "Denna uppgift tog" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "Sortering klar" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "Misslyckades med att slutföra sortering" @@ -1349,8 +1321,7 @@ msgstr "" msgid "Modify case outcome" msgstr "Ändra intervju resultat" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "Redigera återkontakt" @@ -1358,11 +1329,11 @@ msgstr "Redigera återkontakt" msgid "Contact phone" msgstr "Telefon" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "Starttid" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "Sluttid" @@ -1382,38 +1353,39 @@ msgstr "Visa återkontakter" msgid "All appointments (with times displayed in your time zone)" msgstr "Alla återkontakter (med visad tid i din tidszon)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "Radera" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "Redigera" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "Namn intervjuare" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "Namn kontaktperson" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "Efternamn" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "Nuvarande resultat" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "Intervjuare som ringde" @@ -1421,9 +1393,7 @@ msgstr "Intervjuare som ringde" msgid "No appointments in the future" msgstr "Inga framtida återkontakter" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "Kvothanterare" @@ -1439,11 +1409,11 @@ msgstr "För tillfället inga kvoter" msgid "Stop calling this sample when:" msgstr "Sluta ring denna kontakt när:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "för" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "Intervjuer" @@ -1455,7 +1425,7 @@ msgstr "Kvot nådd" msgid "Quota not yet reached" msgstr "Kvot ännu inte nådd" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "Aktuella intervjuer: " @@ -1467,27 +1437,27 @@ msgstr "Välj en fråga för denna kvot" msgid "Enter the details for creating the quota:" msgstr "Ange informationen för att skapa kvoten:" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "Fördefinierade värden för denna fråga:" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "Ingen rubrik definierad för denna fråga:" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "Kod värde" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "Kodvärdet som ska jämföras" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "Typen av jämförelse" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "Antal intervjuer innan projektet ska brytas" @@ -1506,8 +1476,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "Ändra intervjuar rättigheter" @@ -1515,38 +1484,32 @@ msgstr "Ändra intervjuar rättigheter" msgid "Operator Performance" msgstr "Intervjuare statistik" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "Vänligen välj en enkät" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "Samtal" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "Totaltid" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "Samtalstid" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "Intervjuer/h" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "Samtal/h" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "Effektivitet" @@ -1554,45 +1517,43 @@ msgstr "Effektivitet" msgid "till" msgstr "tills" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "Vänligen välj ett skift" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" -msgstr "Tillgänglighetsgrupper" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" +msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "Ändra" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" -msgstr "Ingen tillgänglighet grupp" - -#: admin/availabilitygroup.php:119 -msgid "Availablity group" -msgstr "Tillgänglighetsgrupper" - -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" -msgstr "Lägg till tillgänglighetsgrupp" - -#: admin/availabilitygroup.php:126 -msgid "Availability group name" +msgid "No time slots" msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" +msgstr "" + +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" +msgstr "" + +#: admin/availabilitygroup.php:126 +msgid "Time slot name" +msgstr "" + +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "Skift rapport" @@ -1636,7 +1597,7 @@ msgstr "Adminverktyg" msgid "Questionnaire creation and management" msgstr "Enkät framtagning och hantering" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "Skapa nytt instrument" @@ -1672,13 +1633,11 @@ msgstr "Tilldela kontakter till enkät" msgid "Set values in questionnaire to pre fill" msgstr "Ställ värden i enkäten att i förväg fylla" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "Intervjuare hanterare" @@ -1686,7 +1645,8 @@ msgstr "Intervjuare hanterare" msgid "Add operators to the system" msgstr "Lägg till intervjuare i systemet" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "Tilldela intervjuare till enkäter" @@ -1695,192 +1655,201 @@ msgid "Availability and shift management" msgstr "Tillgänglighet och skift hanterare" #: admin/index.php:73 -msgid "Manage availablity groups" +msgid "Manage time slots" msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "Tlldela tillgänglighet till enkäter" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "Skift hanterare (lägg till/ta bort)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "Enkät framsteg" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "Kontakt samtalsförsöksrapport" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "Enkät resultat" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "Skriv ut data" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "Intervjuare statistik" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "Klient hanterare" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "Lägg till klienter i systemet" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "Chefsfunktioner" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "Tilldela resultat till intervju" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "Sök kontakter" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "Systeminställningar" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "Tilldela kontakter: Välj kontakter att tilldela" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "Max antal samtal (0 för oändligt)" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "Max antal samtalsförsök (0 för oändligt)" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "" "Välj från kontakter slumpmässigt? (annars i följd)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "Kontakter valda för denna enkät" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "Klicka för att ta bort tilldelning" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "Lägg till kontakter till denna enkät" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "Välj kontakter:" @@ -1896,22 +1865,33 @@ msgstr "Uppdatera callcenter information" msgid "Assign availability group to questionnaire" msgstr "Tilldela tillgänglighetsgrupper till enkäter" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "Tillgängligehtsgrupper valda fär denna enkät" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "Lägg till en tillgänglighetsgrupp till denna enkät" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "Välj tillgänglighetsgrupp" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "Lägg till tillgänglighetsgrupp" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1964,7 +1944,6 @@ msgid "Search within this sample" msgstr "Sök inom dessa kontakter" #: admin/samplesearch.php:151 -#, php-format msgid "Use the % character as a wildcard" msgstr "" @@ -1976,32 +1955,27 @@ msgstr "Sök efter:" msgid "Start search" msgstr "Starta sökning" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "Enkät resultat" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "Resultat" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "Kontaktstatus" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "Nummer" @@ -2029,35 +2003,32 @@ msgstr "" msgid "Secs" msgstr "sekunder" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "Rank" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "Vägran rank 1" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "Kontakt rank 1" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "Räkna" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "" @@ -2069,7 +2040,7 @@ msgstr "Intervjuar samtalsresultat" msgid "No outcomes recorded for this sample" msgstr "" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "" @@ -2093,13 +2064,14 @@ msgstr "" msgid "Shift" msgstr "Skift" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "Skift rapport" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "" @@ -2165,17 +2137,12 @@ msgstr "" msgid "Add pre fill" msgstr "Lägg till fyll i förvä" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "" @@ -2185,17 +2152,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "" @@ -2203,11 +2168,9 @@ msgstr "" msgid "Save changes" msgstr "" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "" @@ -2221,11 +2184,13 @@ msgstr "" msgid "Delete selected fields" msgstr "" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "Aktivera" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "Inaktivera" @@ -2233,7 +2198,8 @@ msgstr "Inaktivera" msgid "Sample list" msgstr "" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "Aktivera/inaktivera" @@ -2288,8 +2254,7 @@ msgstr "" msgid "Load bulk appointment CSV" msgstr "" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "Lägg till skift" @@ -2299,9 +2264,9 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" @@ -2324,9 +2289,8 @@ msgstr "" msgid "Select week of year" msgstr "" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "Dag" @@ -2338,8 +2302,36 @@ msgstr "Använda skift?" msgid "Submit changes" msgstr "Skicka förändringar" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "" @@ -2355,9 +2347,7 @@ msgstr "" msgid "Replicate: Where" msgstr "" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "som" @@ -2365,8 +2355,7 @@ msgstr "som" msgid "Sample only. Stop calling where" msgstr "Endast kontakt. Sluta ring vart" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "" @@ -2454,8 +2443,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "Lägg till en intervjuare" @@ -2471,8 +2459,7 @@ msgstr "Tilldela intervjuare till enkäter" msgid "tool" msgstr "verktyg" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2512,11 +2499,11 @@ msgstr "" msgid "Will this operator be using VoIP?" msgstr "" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "" @@ -2536,8 +2523,7 @@ msgstr "Är intervjuaren en chef" msgid "Is the operator a refusal converter?" msgstr "Är intervjuaren en vägran omvandlare" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "Lägg till användare" @@ -2561,7 +2547,7 @@ msgstr "länkad till" msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "Namn på enkät:" @@ -2569,8 +2555,7 @@ msgstr "Namn på enkät:" msgid "Select limesurvey instrument:" msgstr "Välj enkätinstrument" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "" @@ -2586,71 +2571,71 @@ msgstr "" msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "Enkät för enbart test?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "" @@ -2667,13 +2652,11 @@ msgstr "" msgid "Display extension status" msgstr "" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "" @@ -2937,7 +2920,7 @@ msgstr "Lördagar" msgid "String" msgstr "" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "Telefonnummer" @@ -2969,7 +2952,7 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "" @@ -2977,11 +2960,11 @@ msgstr "" msgid "Cases by outcome" msgstr "Intervjuer genom resultat" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "Projekt" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "Aktuellt resultat:" @@ -2998,30 +2981,34 @@ msgid "Cannot connect to VoIP Server" msgstr "" #: admin/availability.php:57 -msgid "No availability group set" +msgid "No time slot group set" msgstr "" #: admin/availability.php:95 -msgid "Modify availability" -msgstr "Ändra tillgänglighet" +msgid "Modify time slots" +msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "Lägg till rad" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" -msgstr "Spara ändringar för tillgängligheter" +msgid "Save changes to time slot group" +msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" +msgid "Delete this time slot group" msgstr "" #: admin/clients.php:84 @@ -3032,8 +3019,7 @@ msgstr "Kunde ej lägga till" msgid "There may already be a client of this name" msgstr "Det kanske redan finns en klient med samma namn" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "Lägg till klient" @@ -3089,8 +3075,7 @@ msgstr "" msgid "Save changes to shifts" msgstr "Spara ändringar för skift" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "" @@ -3134,8 +3119,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "Vänligen välj kontakter" @@ -3179,8 +3163,7 @@ msgstr "" msgid "Operator edit" msgstr "" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "Användarnamn" @@ -3318,24 +3301,32 @@ msgstr "" msgid "Delete this questionnaire" msgstr "" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "Lägg till/Ta bort tidszoner" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "" "Klicka här för att ta bort ett tidszon från standardlistan" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "Lägg till tidszon:" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "Tidszon: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "Lägg till tidszon" @@ -3355,8 +3346,7 @@ msgstr "Välj intervju" msgid "Set an outcome for this call" msgstr "Sätt resultat för detta samtal" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "Sätt resultat" @@ -3376,41 +3366,52 @@ msgstr "Samtalslista" msgid "Change outcome" msgstr "Ändra resultat" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "Intervju kommentarer" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "Ändra svar för detta ärende" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "Intervju inte påbörjad ännu i projektet" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "Sätt ärende resultat" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "Uppdatera intervju tillgänglighet" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "" "Tilldela denna intervju till en intervjuare (kommer upp som nästa " "intervju för dom)" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "Tilldela denna intervju till en intervjuare" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "Intervju finns ej" @@ -3418,19 +3419,19 @@ msgstr "Intervju finns ej" msgid "Error: Cannot write to temporary directory" msgstr "" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "förmiddag" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "eftermiddag" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "kväll" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3534,10 +3535,8 @@ msgstr "Frånkopplad" msgid "Reconnected" msgstr "Kopplas om" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr " Tillägg " @@ -3588,13 +3587,11 @@ msgstr "Det finns inga frågeformulär som tilldelats dig" msgid "You are not a valid client" msgstr "Du har inte ett giltigt klientcertifikat" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "" @@ -3623,10 +3620,16 @@ msgid "Self completion refused via opt out function" msgstr "" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" @@ -3701,6 +3704,9 @@ msgstr "" #~ msgid "No operators" #~ msgstr "Inga intervjuare" +#~ msgid "Sorting cases" +#~ msgstr "Sortera intervjuer" + #~ msgid "Randomly selected" #~ msgstr "Slumpmässigt valda" @@ -3709,3 +3715,18 @@ msgstr "" #~ msgid "Max call attempts:" #~ msgstr "Max antal samtalsförsök" + +#~ msgid "Modify availability" +#~ msgstr "Ändra tillgänglighet" + +#~ msgid "Save changes to availabilities" +#~ msgstr "Spara ändringar för tillgängligheter" + +#~ msgid "Availability groups" +#~ msgstr "Tillgänglighetsgrupper" + +#~ msgid "No availability groups" +#~ msgstr "Ingen tillgänglighet grupp" + +#~ msgid "Availablity group" +#~ msgstr "Tillgänglighetsgrupper" diff --git a/locale/zh/LC_MESSAGES/zh.mo b/locale/zh/LC_MESSAGES/zh.mo index 84e8392db7e3f8b6f8399ddf0a05d3ceabce7fd4..fbc6fd580bee86e6f5e2ad67258b89cec70566b9 100644 GIT binary patch delta 17583 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 delta 18141 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 X02j{u;$n`Zofn@5Cau1)EYtr1gO0e( diff --git a/locale/zh/LC_MESSAGES/zh.po b/locale/zh/LC_MESSAGES/zh.po index 1e794786..ee95fe3c 100644 --- a/locale/zh/LC_MESSAGES/zh.po +++ b/locale/zh/LC_MESSAGES/zh.po @@ -7,168 +7,162 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2014-03-17 10:47+1000\n" +"POT-Creation-Date: 2014-12-19 10:21+1000\n" "PO-Revision-Date: 2014-09-01 03:16+0000\n" "Last-Translator: Daniel lee \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-12-17 00:20+0000\n" -"X-Generator: Launchpad (build 17286)\n" +"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n" +"X-Generator: Launchpad (build 17331)\n" "Language: zh\n" #: callhistory.php:56 msgid "Case History List" msgstr "访问历史记录" -#: callhistory.php:79 +#: callhistory.php:79 admin/callhistory.php:81 msgid "No calls ever made" msgstr "没有打过电话" -#: callhistory.php:83 -#: calllist.php:84 +#: callhistory.php:83 calllist.php:84 casenote.php:110 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Date/Time" msgstr "日期/时间" -#: callhistory.php:83 +#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/displayappointments.php:243 admin/extensionstatus.php:200 +#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 msgid "Case ID" msgstr "访问编号" -#: callhistory.php:83 -#: index_interface2.php:212 -#: calllist.php:84 +#: callhistory.php:83 index_interface2.php:215 calllist.php:84 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 +#: client/index.php:91 client/index.php:110 msgid "Outcome" msgstr "结果" -#: callhistory.php:83 +#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 msgid "Respondent" msgstr "受访者" -#: callhistory.php:87 +#: callhistory.php:87 status.php:59 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 msgid "No operator" msgstr "没有电话调查员" -#: rs_answeringmachine_interface2.php:64 -#: rs_answeringmachine.php:64 +#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 msgid "Respondent Selection - Answering machine" msgstr "受访者筛选 - 电话答录机" -#: rs_answeringmachine_interface2.php:78 -#: rs_answeringmachine.php:78 +#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 msgid "Do not leave a message, please hang up" msgstr "不留言,直接挂机" -#: rs_answeringmachine_interface2.php:81 -#: rs_answeringmachine.php:81 +#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 msgid "End call with outcome: Business answering machine" msgstr "结束电话:业务电话答录机" -#: rs_answeringmachine_interface2.php:86 -#: rs_answeringmachine.php:86 +#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 msgid "End call with outcome: Answering machine Message left" msgstr "结束电话:已给答录机留言" -#: rs_answeringmachine_interface2.php:90 -#: rs_answeringmachine.php:90 +#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 msgid "End call with outcome: Answering machine No message left" msgstr "结束电话:未给答录机留言" -#: rs_answeringmachine_interface2.php:91 -#: rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 -#: rs_project_intro.php:85 -#: rs_answeringmachine.php:91 +#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 +#: rs_callback_interface2.php:89 rs_project_intro.php:85 +#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 +#: rs_callback.php:89 rs_business.php:62 msgid "Go Back" msgstr "返回" -#: rs_business_interface2.php:55 +#: rs_business_interface2.php:55 rs_business.php:55 msgid "Respondent Selection - Business answers" msgstr "受访者筛选-商业电话" -#: rs_business_interface2.php:59 +#: rs_business_interface2.php:59 rs_business.php:59 msgid "Sorry to bother you, I have called the wrong number" msgstr "对不起,打扰了,我拨错号码了" -#: rs_business_interface2.php:61 +#: rs_business_interface2.php:61 rs_business.php:61 msgid "End call with outcome: Business number" msgstr "结束电话:业务号码" -#: index_interface2.php:195 -#: waitnextcase_interface2.php:49 -#: index.php:145 +#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 +#: selectextension.php:88 msgid "queXS" msgstr "queXS" -#: index_interface2.php:213 -#: appointment.php:121 -#: index.php:163 +#: index_interface2.php:216 appointment.php:121 index.php:163 +#: status_interface2.php:176 msgid "Appointment" msgstr "预约" -#: index_interface2.php:214 -#: index.php:166 +#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 +#: email.php:288 email.php:309 email.php:339 msgid "Email" msgstr "邮件" -#: index_interface2.php:215 -#: index.php:167 +#: index_interface2.php:218 index.php:167 referral.php:198 msgid "Referral" msgstr "被引荐的受访者" -#: index_interface2.php:216 -#: waitnextcase_interface2.php:55 +#: index_interface2.php:219 waitnextcase_interface2.php:55 +#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 +#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 +#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 +#: call.php:421 msgid "End work" msgstr "结束工作" -#: index_interface2.php:294 -#: index.php:169 +#: index_interface2.php:310 index.php:169 msgid "Arrow for expanding or contracting" msgstr "伸缩轴" -#: index_interface2.php:306 -#: index.php:220 +#: index_interface2.php:322 index.php:223 msgid "Notes" msgstr "备注" -#: index_interface2.php:314 -#: index.php:238 +#: index_interface2.php:330 index.php:241 contactdetails.php:70 msgid "Contact details" msgstr "联络详细信息" -#: index_interface2.php:323 -#: index.php:247 +#: index_interface2.php:339 index.php:250 admin/index.php:95 msgid "Call history" msgstr "呼叫历史" -#: index_interface2.php:332 -#: index.php:256 +#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 msgid "Shifts" msgstr "调查时段" -#: index_interface2.php:341 -#: index.php:265 +#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 admin/supervisor.php:281 msgid "Appointments" msgstr "预约" -#: index_interface2.php:350 -#: index.php:274 +#: index_interface2.php:366 index.php:277 performance.php:61 +#: admin/index.php:85 msgid "Performance" msgstr "表现" -#: index_interface2.php:358 -#: index.php:282 +#: index_interface2.php:374 index.php:285 msgid "Work history" msgstr "工作历史" -#: index_interface2.php:366 -#: project_info.php:61 -#: index.php:290 +#: index_interface2.php:382 project_info.php:61 index.php:293 msgid "Project information" msgstr "项目信息" -#: index_interface2.php:375 -#: index.php:306 +#: index_interface2.php:391 index.php:309 msgid "Info" msgstr "信息" @@ -176,9 +170,7 @@ msgstr "信息" msgid "Stop REC" msgstr "停止录音" -#: record.php:56 -#: record.php:79 -#: record.php:96 +#: record.php:56 record.php:79 record.php:96 msgid "Record" msgstr "录音" @@ -186,8 +178,7 @@ msgstr "录音" msgid "Beginning recording..." msgstr "开始录音..." -#: record.php:69 -#: record.php:97 +#: record.php:69 record.php:97 msgid "Not on a call, so not beginning a recording" msgstr "未接通,所以不能开始录音" @@ -195,8 +186,8 @@ msgstr "未接通,所以不能开始录音" msgid "Begin the manual recording now..." msgstr "启动手动录音..." -#: record.php:78 -#: index.php:168 +#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 email.php:273 msgid "Start REC" msgstr "开始录音" @@ -208,42 +199,47 @@ msgstr "正在停止录音..." msgid "Stop the manual recording now..." msgstr "停止手动录音..." -#: rs_callback_interface2.php:66 +#: rs_callback_interface2.php:66 rs_callback.php:66 msgid "Respondent Selection - Call back" msgstr "受访者筛选-稍后回拨" -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "You are: " msgstr "您是: " -#: rs_callback_interface2.php:80 +#: rs_callback_interface2.php:80 rs_callback.php:80 msgid "% complete" msgstr "" -#: rs_callback_interface2.php:87 +#: rs_callback_interface2.php:87 rs_callback.php:87 msgid "Yes - Continue where we left off" msgstr "是的 - 继续上次没说完的" -#: rs_callback_interface2.php:88 -#: rs_project_intro.php:81 +#: rs_callback_interface2.php:88 rs_project_intro.php:81 +#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 +#: rs_intro_interface2.php:122 msgid "End call with outcome: Refusal by respondent" msgstr "结束电话:受访者拒访" -#: rs_project_intro.php:59 +#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 msgid "Respondent Selection - Project Introduction" msgstr "受访者筛选-项目介绍" -#: rs_project_intro.php:79 +#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 +#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 +#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 msgid "Yes - Continue" msgstr "是 - 请继续" -#: rs_project_intro.php:82 +#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 msgid "" "End call with outcome: No eligible respondent (person not available on this " "number)" msgstr "结束电话:没有符合条件的调查对象(此号码无人接听)" -#: rs_project_intro.php:83 +#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 +#: rs_intro_interface2.php:125 msgid "" "End call with outcome: Out of sample (already completed in another mode)" msgstr "结束电话:样本用尽(样本已经采用其他方式访问完成)" @@ -277,7 +273,7 @@ msgstr "增加该受访者" msgid "Select phone number:" msgstr "选择电话号码:" -#: appointment.php:164 +#: appointment.php:164 functions/functions.calendar.php:197 msgid "None" msgstr "无" @@ -301,7 +297,7 @@ msgstr "预约:" msgid "Accept appointment from " msgstr "接受来自 的预约 " -#: appointment.php:208 +#: appointment.php:208 functions/functions.calendar.php:328 msgid " till " msgstr " 到 " @@ -317,7 +313,8 @@ msgstr "在" msgid "Appointment with myself only?" msgstr "只与我预约?" -#: appointment.php:219 +#: appointment.php:219 include/limesurvey/qanda.php:1701 +#: include/limesurvey/qanda.php:1921 msgid "Schedule Appointment" msgstr "预约" @@ -325,7 +322,7 @@ msgstr "预约" msgid "Call List" msgstr "呼叫清单" -#: calllist.php:80 +#: calllist.php:80 admin/supervisor.php:316 msgid "No calls made" msgstr "没有打过电话" @@ -333,12 +330,17 @@ msgstr "没有打过电话" msgid "Number called" msgstr "已呼叫的号码" -#: calllist.php:84 +#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 +#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/shiftreport.php:104 admin/outcomes.php:187 +#: admin/extensionstatus.php:200 admin/operatorlist.php:293 +#: admin/supervisor.php:320 admin/supervisor.php:361 msgid "Operator" msgstr "电话调查员" -#: calllist.php:88 -#: project_info.php:82 +#: calllist.php:88 project_info.php:82 status_interface2.php:231 +#: casenote.php:113 status.php:134 msgid "No case" msgstr "无受访者" @@ -346,15 +348,18 @@ msgstr "无受访者" msgid "Get a new case" msgstr "调取新样本" -#: index.php:162 +#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "End" msgstr "结束" -#: index.php:164 +#: index.php:164 nocallavailable.php:83 msgid "Call/Hangup" msgstr "呼叫/挂机" -#: index.php:165 +#: index.php:165 supervisorchat.php:79 supervisor.php:52 msgid "Supervisor" msgstr "督导员" @@ -362,11 +367,12 @@ msgstr "督导员" msgid "Restart" msgstr "重新开始" -#: index.php:228 +#: index.php:231 availability.php:56 msgid "Availability" msgstr "可选时间" -#: index.php:298 +#: index.php:301 supervisorchat.php:56 admin/index.php:105 +#: admin/supervisorchat.php:61 msgid "Supervisor chat" msgstr "与督导通话" @@ -378,7 +384,11 @@ msgstr "信息" msgid "Me" msgstr "我" -#: supervisorchat.php:82 +#: supervisorchat.php:82 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:111 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 msgid "Case id" msgstr "访问编号" @@ -390,8 +400,7 @@ msgstr "调查督导员在线" msgid "Supervisor not available" msgstr "调查督导员离开" -#: supervisorchat.php:90 -#: supervisorchat.php:93 +#: supervisorchat.php:90 supervisorchat.php:93 msgid "Message" msgstr "留言" @@ -407,114 +416,80 @@ msgstr "从" msgid "Supervisor chat is not enabled" msgstr "调查督导员聊天室未启用" -#: call_interface2.php:181 -#: call_interface2.php:210 -#: call_interface2.php:242 -#: call_interface2.php:246 -#: call_interface2.php:264 -#: call_interface2.php:295 -#: call_interface2.php:343 -#: call_interface2.php:414 -#: call.php:191 -#: call.php:211 -#: call.php:227 -#: call.php:258 -#: call.php:306 -#: call.php:377 +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 msgid "Call" msgstr "呼叫" -#: call_interface2.php:302 -#: call.php:265 +#: call_interface2.php:302 call.php:265 msgid "Not on a call" msgstr "呼叫未接通" -#: call_interface2.php:314 -#: call_interface2.php:430 -#: call_interface2.php:435 -#: call_interface2.php:451 -#: call_interface2.php:457 -#: call.php:277 -#: call.php:393 -#: call.php:398 -#: call.php:414 -#: call.php:420 +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 msgid "End case" msgstr "结束访问" -#: call_interface2.php:339 -#: call.php:302 +#: call_interface2.php:339 call.php:302 msgid "Press the call button to dial the number for this appointment:" msgstr "拨打该预约电话请按呼叫键:" -#: call_interface2.php:342 -#: call.php:305 +#: call_interface2.php:342 call.php:305 msgid "Number to call:" msgstr "呼叫号码:" -#: call_interface2.php:346 -#: call_interface2.php:417 -#: call.php:309 -#: call.php:380 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" "Your VoIP extension is not enabled. Please close this window and enable VoIP " "by clicking once on the red button that says 'VoIP Off'" msgstr "您的VoIP分机未启用。请关闭窗口并点击一下标有‘VoIP关闭’字样的红色按键以启用VoIP" -#: call_interface2.php:407 -#: call.php:370 +#: call_interface2.php:407 call.php:370 msgid "Select phone number to dial:" msgstr "选择所拨电话号码:" -#: call_interface2.php:422 -#: call_interface2.php:456 -#: call.php:385 -#: call.php:419 +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 msgid "The last call completed this call attempt" msgstr "上次呼叫完成了本次呼叫尝试" -#: call_interface2.php:426 -#: call_interface2.php:449 -#: call.php:389 -#: call.php:412 +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 msgid "Enter a reason for this outcome before completing this case:" msgstr "完成本次访问前请输入此次结果的成因:" -#: call_interface2.php:467 -#: call.php:448 +#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 msgid "Requires coding" msgstr "需要区号" -#: call_interface2.php:470 -#: call.php:451 +#: call_interface2.php:470 call.php:451 msgid "Assign outcome" msgstr "分派结果" -#: call_interface2.php:474 -#: call.php:455 +#: call_interface2.php:474 call.php:455 msgid "Error: Close window" msgstr "错误:关闭窗口" -#: call.php:427 +#: call.php:427 admin/extensionstatus.php:170 msgid "Requesting call" msgstr "需要呼叫" -#: call.php:428 -#: call.php:435 +#: call.php:428 call.php:435 msgid "Call Answered" msgstr "呼叫已接通" -#: call.php:431 -#: call.php:438 -#: call.php:445 +#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 msgid "Hangup" msgstr "挂机" -#: call.php:434 +#: call.php:434 status.php:118 admin/extensionstatus.php:170 +#: functions/functions.voip.php:553 msgid "Ringing" msgstr "响铃" -#: call.php:441 +#: call.php:441 status.php:122 admin/extensionstatus.php:170 +#: functions/functions.voip.php:565 msgid "Answered" msgstr "接通" @@ -542,7 +517,9 @@ msgid "" "extension'" msgstr "请从以下列表中选择您的分机并点击“选择分机”" -#: selectextension.php:108 +#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: functions/functions.voip.php:449 msgid "Extension" msgstr "分机" @@ -570,58 +547,50 @@ msgstr "您已注销分机" msgid "Go back to work" msgstr "返回工作" -#: status_interface2.php:70 +#: status_interface2.php:70 status.php:58 status.php:77 +#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "状态" -#: status_interface2.php:79 +#: status_interface2.php:79 functions/functions.import.php:127 msgid "Name" msgstr "姓名" -#: status_interface2.php:225 -#: status_interface2.php:228 +#: status_interface2.php:225 status_interface2.php:228 msgid "No more numbers to call" msgstr "无可呼叫电话号码" -#: rs_intro.php:65 -#: rs_intro_interface2.php:65 +#: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "受访者筛选 - 介绍" -#: rs_intro.php:117 -#: rs_intro_interface2.php:117 +#: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "业务电话号码" -#: rs_intro.php:118 -#: rs_intro_interface2.php:118 +#: rs_intro.php:118 rs_intro_interface2.php:118 msgid "Answering machine" msgstr "电话答录机" -#: rs_intro.php:119 -#: rs_intro_interface2.php:119 +#: rs_intro.php:119 rs_intro_interface2.php:119 msgid "End call with outcome: No answer (ring out or busy) " msgstr "结束电话:无应答(无人接听或线路繁忙) " -#: rs_intro.php:120 -#: rs_intro_interface2.php:120 +#: rs_intro.php:120 rs_intro_interface2.php:120 msgid "End call with outcome: Accidental hang up" msgstr "结束电话:掉线" -#: rs_intro.php:121 -#: rs_intro_interface2.php:121 +#: rs_intro.php:121 rs_intro_interface2.php:121 msgid "End call with outcome: Refusal by unknown person" msgstr "结束电话:非受访者本人拒绝接受访问" -#: rs_intro.php:123 -#: rs_intro_interface2.php:123 +#: rs_intro.php:123 rs_intro_interface2.php:123 msgid "" "End call with outcome: No eligible respondent (person never available on " "this number)" msgstr "结束电话:无合适的受访者(此电话号码联系人没时间参与调查)" -#: rs_intro.php:124 -#: rs_intro_interface2.php:124 +#: rs_intro.php:124 rs_intro_interface2.php:124 msgid "" "End call with outcome: Non contact (person not currently available on this " "number: no appointment made)" @@ -635,8 +604,10 @@ msgstr "可用调查时段" msgid "No shifts for this project" msgstr "无可用的调查时段" -#: shifts.php:82 -#: shifts.php:103 +#: shifts.php:82 shifts.php:103 appointmentlist.php:90 +#: admin/displayappointments.php:243 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +#: admin/callrestrict.php:118 admin/supervisor.php:297 msgid "Start" msgstr "开始" @@ -644,12 +615,14 @@ msgstr "开始" msgid "No future shifts scheduled" msgstr "还未设置调查时段计划" -#: shifts.php:103 -#: nocaseavailable.php:138 +#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:243 +#: admin/assignsample.php:138 admin/casestatus.php:207 +#: admin/questionnairelist.php:396 admin/supervisor.php:297 msgid "Questionnaire" msgstr "问卷" -#: rs_project_end_interface2.php:62 +#: rs_project_end_interface2.php:62 rs_project_end.php:71 msgid "Respondent Selection - Project end" msgstr "受访者筛选 - 项目结束" @@ -657,48 +630,46 @@ msgstr "受访者筛选 - 项目结束" msgid "Call automatically ended with outcome: Complete - End case" msgstr "自动结束电话:完成 - 结束访问" -#: rs_project_end_interface2.php:85 +#: rs_project_end_interface2.php:85 rs_project_end.php:93 msgid "End call with outcome: Complete" msgstr "结束电话:完成" -#: contactdetails.php:90 -#: contactdetails.php:128 -#: respondent.php:94 -#: respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 +#: respondent.php:132 functions/functions.calendar.php:215 msgid "Add respondent" msgstr "添加受访者" -#: contactdetails.php:92 -#: respondent.php:96 +#: contactdetails.php:92 respondent.php:96 casenote.php:69 +#: admin/assignsample.php:141 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/extensionstatus.php:143 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/questionnairelist.php:328 +#: admin/questionnairelist.php:382 msgid "Go back" msgstr "返回" -#: contactdetails.php:98 -#: respondent.php:102 +#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 msgid "Case id:" msgstr "访问编号:" -#: contactdetails.php:99 -#: respondent.php:103 +#: contactdetails.php:99 respondent.php:103 msgid "Respondent:" msgstr "受访者:" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Var" msgstr "变量" -#: contactdetails.php:163 -#: respondent.php:171 +#: contactdetails.php:163 respondent.php:171 msgid "Value" msgstr "值" -#: availability.php:123 +#: availability.php:123 admin/supervisor.php:417 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "选择分组以限定可选时间(不选表示随时都可以)" -#: availability.php:143 +#: availability.php:143 admin/supervisor.php:440 msgid "Availability groups not defined for this questionnaire" msgstr "本次调查问卷未定义可选时间分组" @@ -722,8 +693,7 @@ msgstr "当前无可用访问" msgid "Reasons:" msgstr "原因:" -#: nocaseavailable.php:80 -#: nocaseavailable.php:91 +#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 msgid "Enabled" msgstr "已启用" @@ -735,13 +705,12 @@ msgstr "未启用" msgid "Assigned questionnaires:" msgstr "被分派的问卷是:" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 msgid "ID" msgstr "序号" -#: nocaseavailable.php:91 -#: nocaseavailable.php:113 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 +#: admin/samplelist.php:132 admin/quotarow.php:294 msgid "Description" msgstr "描述" @@ -753,7 +722,10 @@ msgstr "错误:您未被分派问卷" msgid "Assigned samples:" msgstr "被分派的样本是:" -#: nocaseavailable.php:113 +#: nocaseavailable.php:113 admin/quotareport.php:284 +#: admin/assignsample.php:139 admin/assignsample.php:203 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 +#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 msgid "Sample" msgstr "样本" @@ -826,34 +798,33 @@ msgstr "可能错误:该问题达到行指标" msgid "Case Notes" msgstr "访问备注" -#: casenote.php:66 -#: casenote.php:105 +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 msgid "Add note" msgstr "添加备注" -#: casenote.php:108 +#: casenote.php:108 admin/supervisor.php:359 msgid "No notes" msgstr "无备注" -#: casenote.php:110 +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 msgid "Note" msgstr "备注" -#: performance.php:77 +#: performance.php:77 admin/operatorperformance.php:103 msgid "This shift" msgstr "当前调查时段" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +#: admin/outcomes.php:297 msgid "Completions" msgstr "完成调查数" -#: performance.php:78 -#: performance.php:85 +#: performance.php:78 performance.php:85 msgid "Completions per hour" msgstr "每小时完成调查数" -#: performance.php:84 +#: performance.php:84 admin/operatorperformance.php:80 msgid "This project" msgstr "本次调查项目" @@ -921,7 +892,9 @@ msgstr "将结束访问" msgid "Ending case now" msgstr "正在结束访问" -#: nocallavailable.php:203 +#: nocallavailable.php:203 admin/systemsortprocess.php:194 +#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 +#: admin/systemsortprocess.php:325 msgid "seconds" msgstr "秒" @@ -960,8 +933,7 @@ msgstr "创建被引荐受访者的访问失败 - 请检查您的输入并重试 msgid "You must supply a primary phone number" msgstr "您必须提供一个主电话号码" -#: referral.php:209 -#: referral.php:243 +#: referral.php:209 referral.php:243 msgid "Create referral" msgstr "创建被引荐的受访者" @@ -977,8 +949,7 @@ msgstr "被引荐的受访者没时间接受本次问卷调查" msgid "Respondent Selection - Project Quota End" msgstr "受访者筛选 - 项目配额结束" -#: rs_quota_end.php:72 -#: rs_quota_end.php:78 +#: rs_quota_end.php:72 rs_quota_end.php:78 msgid "End call with outcome: Quota filled" msgstr "结束电话:配额已满" @@ -998,11 +969,11 @@ msgstr "邮件地址无效" msgid "Email respondent for self completion" msgstr "发邮件请受访员参与自助问卷调查" -#: email.php:337 +#: email.php:337 admin/operatorlist.php:165 msgid "First name" msgstr "名" -#: email.php:338 +#: email.php:338 admin/operatorlist.php:166 msgid "Last name" msgstr "姓" @@ -1022,11 +993,13 @@ msgstr "本次调查问卷未预备自助完成问卷邮件" msgid "Appointment List" msgstr "预约列表" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:229 +#: admin/supervisor.php:284 msgid "Not yet called" msgstr "尚未呼叫" -#: appointmentlist.php:70 +#: appointmentlist.php:70 admin/displayappointments.php:209 +#: admin/displayappointments.php:229 msgid "Any operator" msgstr "任何电话调查员" @@ -1038,7 +1011,8 @@ msgstr "无预约" msgid "No future appointments scheduled" msgstr "无预约时刻表" -#: appointmentlist.php:90 +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 msgid "Appointment with" msgstr "预约" @@ -1072,13 +1046,11 @@ msgid "" "Please wait for this call to answer before attempting to call the supervisor" msgstr "呼叫调查督导员前,请等待本次呼叫应答" -#: admin/systemsort.php:75 -#: admin/systemsort.php:98 -#: admin/systemsort.php:99 +#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "监控全系统访问排序" -#: admin/systemsort.php:77 +#: admin/systemsort.php:77 admin/voipmonitor.php:75 msgid "Running process:" msgstr "运行进程:" @@ -1086,27 +1058,27 @@ msgstr "运行进程:" msgid "Kill signal sent: Please wait..." msgstr "终止信号发送:请等待..." -#: admin/systemsort.php:82 +#: admin/systemsort.php:82 admin/voipmonitor.php:80 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "进程已关闭(例如:服务器重启) - 点击确认" -#: admin/systemsort.php:86 +#: admin/systemsort.php:86 admin/voipmonitor.php:84 msgid "Kill the running process" msgstr "终止运行进程" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log id" msgstr "登录编号" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 msgid "Date" msgstr "日期" -#: admin/systemsort.php:92 -#: admin/systemsort.php:106 +#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 +#: admin/voipmonitor.php:102 msgid "Log entry" msgstr "登录" @@ -1127,23 +1099,20 @@ msgstr "" "而不是在每次电话调查员请求一个新访问的时候寻找最合适的访问对象。这样可以在有大量访问或复杂配额的时候提高效率。如果您没有任何访问效率方面的问题,我们不推荐" "您使用本功能。" -#: admin/systemsort.php:102 +#: admin/systemsort.php:102 admin/voipmonitor.php:98 msgid "Outcome of last process run (if any)" msgstr "最近的进程运行结果(如果有的话)" -#: admin/callhistory.php:80 -#: admin/callhistory.php:109 +#: admin/callhistory.php:80 admin/callhistory.php:109 #: admin/callhistory.php:117 msgid "Call History List" msgstr "呼叫历史列表" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Date/Time call start" msgstr "日期/时间呼叫开始" -#: admin/callhistory.php:96 -#: admin/callhistory.php:111 +#: admin/callhistory.php:96 admin/callhistory.php:111 msgid "Time end" msgstr "时间结束" @@ -1151,27 +1120,24 @@ msgstr "时间结束" msgid "Download Call History List" msgstr "下载呼叫历史列表" -#: admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:90 msgid "Assign clients to questionnaires" msgstr "给项目分派客户" -#: admin/quotareport.php:109 -#: admin/index.php:80 +#: admin/quotareport.php:109 admin/index.php:81 msgid "Quota report" msgstr "配额报表" -#: admin/quotareport.php:111 -#: admin/quota.php:110 -#: admin/assignsample.php:171 -#: admin/questionnaireavailability.php:94 -#: admin/outcomes.php:80 +#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 +#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 +#: admin/questionnaireprefill.php:100 admin/addshift.php:168 +#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 msgid "Select a questionnaire from the list below" msgstr "从下列列表中选择一张问卷" -#: admin/quotareport.php:118 -#: admin/quota.php:123 -#: admin/samplesearch.php:84 +#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "从下列列表中选择一批样本" @@ -1179,13 +1145,11 @@ msgstr "从下列列表中选择一批样本" msgid "Total sample" msgstr "样本总量" -#: admin/quotareport.php:233 -#: admin/quotareport.php:240 +#: admin/quotareport.php:233 admin/quotareport.php:240 msgid "closed" msgstr "已关闭" -#: admin/quotareport.php:235 -#: admin/quotareport.php:242 +#: admin/quotareport.php:235 admin/quotareport.php:242 msgid "open" msgstr "开启" @@ -1245,7 +1209,7 @@ msgstr "请回到您的浏览器修正问题" msgid "Import: Select columns to import" msgstr "导入:选择要导入的列" -#: admin/import.php:112 +#: admin/import.php:112 admin/bulkappointment.php:248 msgid "Import: Select file to upload" msgstr "导入:选择文件上传" @@ -1257,36 +1221,45 @@ msgstr "选择要上传的CSV样本文件:" msgid "Description for file:" msgstr "文件描述:" -#: admin/import.php:119 -#: admin/assignsample.php:227 +#: admin/import.php:119 admin/assignsample.php:238 msgid "Add sample" msgstr "添加样本" -#: admin/systemsortprocess.php:91 +#: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" msgstr "访问排序程序开始" -#: admin/systemsortprocess.php:100 -msgid "Sorting cases" -msgstr "访问排序" +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" +msgstr "" -#: admin/systemsortprocess.php:130 -#: admin/systemsortprocess.php:142 -#: admin/systemsortprocess.php:168 -#: admin/systemsortprocess.php:180 +#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 msgid "System automatically closed case as not closed for more than 24 hours" msgstr "由于访问24小时以上未被关闭,系统自动关闭该访问" -#: admin/systemsortprocess.php:293 -msgid "Completed sort" -msgstr "完成排序" +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" +msgstr "" -#: admin/systemsortprocess.php:293 -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 msgid "This task took" msgstr "本次任务需要" -#: admin/systemsortprocess.php:295 +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" +msgstr "" + +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " +msgstr "" + +#: admin/systemsortprocess.php:323 +msgid "Completed sort" +msgstr "完成排序" + +#: admin/systemsortprocess.php:325 msgid "Failed to complete sort" msgstr "排序未完成" @@ -1303,8 +1276,7 @@ msgstr "预约已删除。现在您必须修改访问结果" msgid "Modify case outcome" msgstr "修改访问结果" -#: admin/displayappointments.php:159 -#: admin/displayappointments.php:212 +#: admin/displayappointments.php:159 admin/displayappointments.php:212 msgid "Edit appointment" msgstr "编辑预约" @@ -1312,11 +1284,11 @@ msgstr "编辑预约" msgid "Contact phone" msgstr "联系电话" -#: admin/displayappointments.php:193 +#: admin/displayappointments.php:193 admin/bulkappointment.php:230 msgid "Start time" msgstr "开始时间" -#: admin/displayappointments.php:194 +#: admin/displayappointments.php:194 admin/bulkappointment.php:230 msgid "End time" msgstr "结束时间" @@ -1336,38 +1308,39 @@ msgstr "显示预约" msgid "All appointments (with times displayed in your time zone)" msgstr "所有预约(按您的时区显示时间)" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 +#: admin/supervisor.php:361 msgid "Delete" msgstr "删除" -#: admin/displayappointments.php:229 -#: admin/displayappointments.php:243 -#: admin/shiftreport.php:96 -#: admin/shiftreport.php:104 -#: admin/assignsample.php:149 -#: admin/assignsample.php:184 -#: admin/assignsample.php:193 +#: admin/displayappointments.php:229 admin/displayappointments.php:243 +#: admin/shiftreport.php:96 admin/shiftreport.php:104 +#: admin/assignsample.php:158 admin/assignsample.php:194 +#: admin/assignsample.php:203 admin/operatorlist.php:144 +#: admin/operatorlist.php:283 admin/operatorlist.php:293 +#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 msgid "Edit" msgstr "编辑" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator Name" msgstr "电话调查员姓名" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Respondent Name" msgstr "受访者姓名" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Surname" msgstr "姓" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Current outcome" msgstr "当前结果" -#: admin/displayappointments.php:243 +#: admin/displayappointments.php:243 admin/supervisor.php:297 msgid "Operator who called" msgstr "拨打过电话的电话调查员" @@ -1375,9 +1348,7 @@ msgstr "拨打过电话的电话调查员" msgid "No appointments in the future" msgstr "未来无预约" -#: admin/quota.php:109 -#: admin/index.php:62 -#: admin/index.php:63 +#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 msgid "Quota management" msgstr "配额管理" @@ -1393,11 +1364,11 @@ msgstr "当前无配额" msgid "Stop calling this sample when:" msgstr "以下情况发生时停止呼叫该样本:" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:187 msgid "for" msgstr "给" -#: admin/quota.php:152 +#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187 msgid "completions" msgstr "完成" @@ -1409,7 +1380,7 @@ msgstr "达到配额" msgid "Quota not yet reached" msgstr "配额尚未达到" -#: admin/quota.php:159 +#: admin/quota.php:159 admin/quotarow.php:195 msgid "Current completions: " msgstr "当前完成: " @@ -1421,27 +1392,27 @@ msgstr "给配额选择一个问卷" msgid "Enter the details for creating the quota:" msgstr "输入详细信息以创建配额:" -#: admin/quota.php:193 +#: admin/quota.php:193 admin/quotarow.php:275 msgid "Pre defined values for this question:" msgstr "该问卷预先定义值:" -#: admin/quota.php:205 +#: admin/quota.php:205 admin/quotarow.php:292 msgid "No labels defined for this question" msgstr "该问卷尚未定义标题" -#: admin/quota.php:207 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Code value" msgstr "编码值" -#: admin/quota.php:213 +#: admin/quota.php:213 admin/quotarow.php:304 msgid "The code value to compare" msgstr "要比较的编码值" -#: admin/quota.php:214 +#: admin/quota.php:214 admin/quotarow.php:305 msgid "The type of comparison" msgstr "比较类型" -#: admin/quota.php:215 +#: admin/quota.php:215 admin/quotarow.php:310 msgid "The number of completions to stop calling at" msgstr "停止呼叫的已完成数量" @@ -1460,8 +1431,7 @@ msgid "" "case. This restricts which ones will be assigned to an operator." msgstr "给每位调查员设置可访样本。请注意,每个调查员都有权给访问样本选择所有可能的结果。这里的设置可以设置各位调查员可以被分派的样本类型。" -#: admin/operatorskill.php:272 -#: admin/index.php:70 +#: admin/operatorskill.php:272 admin/index.php:70 msgid "Modify operator skills" msgstr "修改电话调查员职能" @@ -1469,38 +1439,32 @@ msgstr "修改电话调查员职能" msgid "Operator Performance" msgstr "电话调查员绩效" -#: admin/operatorperformance.php:73 -#: admin/shiftreport.php:65 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 msgid "Please select a questionnaire" msgstr "请选择一个问卷" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls" msgstr "呼叫" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Total time" msgstr "总时间" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Call time" msgstr "呼叫时间" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Completions p/h" msgstr "完成数 人/小时" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Calls p/h" msgstr "呼叫数 人/小时" -#: admin/operatorperformance.php:81 -#: admin/operatorperformance.php:104 +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 msgid "Effectiveness" msgstr "有效时间" @@ -1508,45 +1472,43 @@ msgstr "有效时间" msgid "till" msgstr "直到" -#: admin/operatorperformance.php:96 -#: admin/shiftreport.php:72 +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 msgid "Please select a shift" msgstr "请选择一个可用调查时段" -#: admin/availabilitygroup.php:70 -#: admin/availabilitygroup.php:112 -msgid "Availability groups" -msgstr "可用组" +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" +msgstr "" -#: admin/availabilitygroup.php:107 -#: admin/availabilitygroup.php:119 +#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 +#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 msgid "Modify" msgstr "修改" #: admin/availabilitygroup.php:114 msgid "" -"Availability groups define periods of time of respondent availability." -msgstr "可用组定义了受访者的可接受访问时间。" +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." +msgstr "" #: admin/availabilitygroup.php:117 -msgid "No availability groups" -msgstr "无有效组" +msgid "No time slots" +msgstr "" -#: admin/availabilitygroup.php:119 -msgid "Availablity group" -msgstr "有效组" +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" +msgstr "" -#: admin/availabilitygroup.php:123 -#: admin/availabilitygroup.php:127 -msgid "Add availability group" -msgstr "添加有效组" +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" +msgstr "" #: admin/availabilitygroup.php:126 -msgid "Availability group name" -msgstr "可用组名" +msgid "Time slot name" +msgstr "" -#: admin/shiftreport.php:61 -#: admin/index.php:95 +#: admin/shiftreport.php:61 admin/index.php:96 msgid "Shift reports" msgstr "调查时段报告" @@ -1590,7 +1552,7 @@ msgstr "管理工具" msgid "Questionnaire creation and management" msgstr "问卷创建及管理" -#: admin/index.php:51 +#: admin/index.php:51 admin/new.php:153 msgid "Create an instrument in Limesurvey" msgstr "在LimeSurvey中创建主问卷" @@ -1626,13 +1588,11 @@ msgstr "给问卷分派样本" msgid "Set values in questionnaire to pre fill" msgstr "问卷预设值" -#: admin/index.php:64 +#: admin/index.php:64 admin/quotarow.php:126 msgid "Quota row management" msgstr "配额行管理" -#: admin/index.php:66 -#: admin/index.php:68 -#: admin/index.php:111 +#: admin/index.php:66 admin/index.php:68 admin/index.php:112 msgid "Operator management" msgstr "电话调查员管理" @@ -1640,7 +1600,8 @@ msgstr "电话调查员管理" msgid "Add operators to the system" msgstr "添加电话调查员" -#: admin/index.php:69 +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 msgid "Assign operators to questionnaires" msgstr "给问卷分派电话调查员" @@ -1649,191 +1610,200 @@ msgid "Availability and shift management" msgstr "受访对象可及性及访问员电访时段管理" #: admin/index.php:73 -msgid "Manage availablity groups" -msgstr "管理可用组" +msgid "Manage time slots" +msgstr "" #: admin/index.php:74 msgid "Assign availabilities to questionnaires" msgstr "给问卷分派有效时间" -#: admin/index.php:75 +#: admin/index.php:75 admin/questionnairecatimeslots.php:93 +msgid "Assign call attempt time slots to questionnaire" +msgstr "" + +#: admin/index.php:76 msgid "Shift management (add/remove)" msgstr "调查时段管理(添加/移除)" -#: admin/index.php:77 +#: admin/index.php:78 msgid "Questionnaire progress" msgstr "问卷进度" -#: admin/index.php:78 +#: admin/index.php:79 msgid "Display all future appointments" msgstr "显示全部未来预约" -#: admin/index.php:79 +#: admin/index.php:80 msgid "Sample call attempts report" msgstr "样本呼叫尝试报告" -#: admin/index.php:81 +#: admin/index.php:82 msgid "Questionnaire outcomes" msgstr "问卷结果" -#: admin/index.php:82 +#: admin/index.php:83 admin/dataoutput.php:186 msgid "Data output" msgstr "数据输出" -#: admin/index.php:85 -#: admin/outcomes.php:297 +#: admin/index.php:86 admin/outcomes.php:297 msgid "Operator performance" msgstr "电话调查员绩效" -#: admin/index.php:87 +#: admin/index.php:88 msgid "Client management" msgstr "客户管理" -#: admin/index.php:88 +#: admin/index.php:89 msgid "Add clients to the system" msgstr "在系统中添加客户" -#: admin/index.php:91 +#: admin/index.php:92 admin/supervisor.php:131 msgid "Supervisor functions" msgstr "调查督导员功能" -#: admin/index.php:92 +#: admin/index.php:93 msgid "Assign outcomes to cases" msgstr "给访问分派结果" -#: admin/index.php:93 +#: admin/index.php:94 msgid "Search the sample" msgstr "查询样本" -#: admin/index.php:96 +#: admin/index.php:97 admin/casestatus.php:197 msgid "Case status and assignment" msgstr "访问状态及分派" -#: admin/index.php:97 +#: admin/index.php:98 admin/bulkappointment.php:250 msgid "Bulk appointment generator" msgstr "批量预约生成器" -#: admin/index.php:99 +#: admin/index.php:100 msgid "System settings" msgstr "系统设置" -#: admin/index.php:100 +#: admin/index.php:101 msgid "Set default timezone list" msgstr "设置默认时区列表" -#: admin/index.php:101 +#: admin/index.php:102 msgid "Set default shift times" msgstr "设置默认的调查时段" -#: admin/index.php:102 +#: admin/index.php:103 msgid "Set call restriction times" msgstr "设置呼叫限定时间" -#: admin/index.php:103 -#: admin/centreinfo.php:62 +#: admin/index.php:104 admin/centreinfo.php:62 msgid "Set centre information" msgstr "设置中心信息" -#: admin/index.php:105 +#: admin/index.php:106 msgid "Start and monitor system wide case sorting" msgstr "开始并监控全系统访问排序" -#: admin/index.php:109 +#: admin/index.php:110 msgid "VoIP" msgstr "VoIP" -#: admin/index.php:110 +#: admin/index.php:111 msgid "Start and monitor VoIP" msgstr "启动并监控VoIP" -#: admin/index.php:112 +#: admin/index.php:113 msgid "Extension status" msgstr "分机状态" -#: admin/assignsample.php:115 -#: admin/assignsample.php:170 +#: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "分派样本:选择要分派的样本" -#: admin/assignsample.php:131 +#: admin/assignsample.php:137 msgid "Edit sample details" msgstr "编辑样本详细信息" -#: admin/assignsample.php:143 -#: admin/assignsample.php:222 +#: admin/assignsample.php:151 admin/assignsample.php:232 msgid "Max calls (0 for unlimited)" msgstr "最多呼叫次数(0表示无限制)" -#: admin/assignsample.php:144 -#: admin/assignsample.php:223 +#: admin/assignsample.php:152 admin/assignsample.php:233 msgid "Max call attempts (0 for unlimited)" msgstr "最多呼叫尝试(0表示无限制)" -#: admin/assignsample.php:145 -#: admin/assignsample.php:224 +#: admin/assignsample.php:153 admin/assignsample.php:234 msgid "Number of answering machine messages to leave per case (0 for never)" msgstr "每个访问电话答录机的留言数量(0表示从不留言)" -#: admin/assignsample.php:146 -#: admin/assignsample.php:225 +#: admin/assignsample.php:154 admin/assignsample.php:235 msgid "Select from sample randomly? (otherwise sequentially)" msgstr "从样本中随机选择?(否则按顺序选择)" -#: admin/assignsample.php:177 +#: admin/assignsample.php:155 admin/assignsample.php:203 +#: admin/assignsample.php:236 +msgid "Allow new numbers to be drawn?" +msgstr "" + +#: admin/assignsample.php:186 msgid "Samples selected for this questionnaire" msgstr "该问卷选择的样本" -#: admin/assignsample.php:180 -#: admin/assignsample.php:181 +#: admin/assignsample.php:189 admin/assignsample.php:190 msgid "Unlimited" msgstr "无限制" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Sequential" msgstr "按顺序" -#: admin/assignsample.php:182 +#: admin/assignsample.php:191 msgid "Random" msgstr "随机" -#: admin/assignsample.php:183 +#: admin/assignsample.php:192 msgid "Never" msgstr "从不" -#: admin/assignsample.php:185 -#: admin/questionnaireavailability.php:117 +#: admin/assignsample.php:193 +msgid "No" +msgstr "" + +#: admin/assignsample.php:193 +msgid "Yes" +msgstr "" + +#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 +#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 msgid "Click to unassign" msgstr "点击解除分派" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max calls" msgstr "最多呼叫数" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Max call attempts" msgstr "最多呼叫尝试数" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Answering machine messages" msgstr "电话答录机留言" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Selection type" msgstr "受访者筛选方式" -#: admin/assignsample.php:193 +#: admin/assignsample.php:203 msgid "Unassign sample" msgstr "尚未分派样本" -#: admin/assignsample.php:195 +#: admin/assignsample.php:205 msgid "No samples selected for this questionnaire" msgstr "该问卷未选择样本" -#: admin/assignsample.php:209 +#: admin/assignsample.php:219 msgid "Add a sample to this questionnaire:" msgstr "给该问卷添加样本:" -#: admin/assignsample.php:212 +#: admin/assignsample.php:222 msgid "Select sample:" msgstr "选择样本:" @@ -1849,22 +1819,33 @@ msgstr "更新中心信息" msgid "Assign availability group to questionnaire" msgstr "给问卷分派有效组" -#: admin/questionnaireavailability.php:110 +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 msgid "There are no availability groups selected for this questionnaire" msgstr "该问卷没有选择有效组" -#: admin/questionnaireavailability.php:114 +#: admin/questionnaireavailability.php:117 msgid "Availability groups selected for this questionnaire" msgstr "该问卷选择的有效组" -#: admin/questionnaireavailability.php:132 +#: admin/questionnaireavailability.php:135 msgid "Add an availability group to this questionnaire:" msgstr "给该问卷添加有效组:" -#: admin/questionnaireavailability.php:135 +#: admin/questionnaireavailability.php:138 msgid "Select availability group:" msgstr "选择有效组:" +#: admin/questionnaireavailability.php:149 +msgid "Add availability group" +msgstr "添加有效组" + #: admin/supervisorchat.php:63 msgid "" "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " @@ -1930,32 +1911,27 @@ msgstr "查询:" msgid "Start search" msgstr "开始查询" -#: admin/outcomes.php:77 +#: admin/outcomes.php:77 client/index.php:59 msgid "Questionnaire Outcomes" msgstr "问卷结果" -#: admin/outcomes.php:86 -#: admin/outcomes.php:244 +#: admin/outcomes.php:86 admin/outcomes.php:244 msgid "Outcomes" msgstr "结果" -#: admin/outcomes.php:88 -#: admin/outcomes.php:231 +#: admin/outcomes.php:88 admin/outcomes.php:231 msgid "Sample status" msgstr "样本状态" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Drawn from sample" msgstr "从样本中提取" -#: admin/outcomes.php:90 -#: admin/outcomes.php:233 +#: admin/outcomes.php:90 admin/outcomes.php:233 msgid "Remain in sample" msgstr "保留在样本中" -#: admin/outcomes.php:97 -#: admin/outcomes.php:241 +#: admin/outcomes.php:97 admin/outcomes.php:241 msgid "Number" msgstr "数字" @@ -1983,35 +1959,32 @@ msgstr "最小" msgid "Secs" msgstr "秒" -#: admin/outcomes.php:155 +#: admin/outcomes.php:155 client/index.php:91 msgid "Rate" msgstr "率" -#: admin/outcomes.php:156 +#: admin/outcomes.php:156 client/index.php:92 msgid "Response Rate 1" msgstr "回应率 1" -#: admin/outcomes.php:157 +#: admin/outcomes.php:157 client/index.php:93 msgid "Refusal Rate 1" msgstr "拒绝率 1" -#: admin/outcomes.php:158 +#: admin/outcomes.php:158 client/index.php:94 msgid "Cooperation Rate 1" msgstr "合作率 1" -#: admin/outcomes.php:159 +#: admin/outcomes.php:159 client/index.php:95 msgid "Contact Rate 1" msgstr "联系率 1" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: client/index.php:110 msgid "Count" msgstr "总数" -#: admin/outcomes.php:174 -#: admin/outcomes.php:208 -#: admin/outcomes.php:261 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 msgid "%" msgstr "%" @@ -2023,7 +1996,7 @@ msgstr "电话调查员呼叫结果" msgid "No outcomes recorded for this sample" msgstr "该样本无结果记录" -#: admin/outcomes.php:269 +#: admin/outcomes.php:269 client/index.php:113 msgid "No outcomes recorded for this questionnaire" msgstr "该问卷无结果记录" @@ -2047,13 +2020,14 @@ msgstr "该问卷没有设置可用调查时段" msgid "Shift" msgstr "调查时段(访问员轮班)" -#: admin/outcomes.php:297 +#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 msgid "Shift report" msgstr "时段报告" -#: admin/voipmonitor.php:73 -#: admin/voipmonitor.php:95 -#: admin/voipmonitor.php:96 +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 msgid "Monitor VoIP Process" msgstr "监控VoIP进程" @@ -2119,17 +2093,12 @@ msgstr "或者:从样本列表中选择预设" msgid "Add pre fill" msgstr "添加预设" -#: admin/samplelist.php:117 -#: admin/samplelist.php:127 -#: admin/samplelist.php:134 -#: admin/samplelist.php:270 -#: admin/samplelist.php:279 +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:270 admin/samplelist.php:279 msgid "Rename" msgstr "重命名" -#: admin/samplelist.php:146 -#: admin/samplelist.php:179 -#: admin/samplelist.php:269 +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 #: admin/samplelist.php:279 msgid "Operator viewing permissions" msgstr "电话调查员浏览权限" @@ -2139,17 +2108,15 @@ msgid "" "Select which fields from this sample should be able to be viewed by operators" msgstr "设置调查员可浏览的样本信息" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Field" msgstr "域" -#: admin/samplelist.php:187 -#: admin/samplelist.php:224 +#: admin/samplelist.php:187 admin/samplelist.php:224 msgid "Example data" msgstr "样例数据" -#: admin/samplelist.php:187 +#: admin/samplelist.php:187 functions/functions.import.php:127 msgid "Allow operator to see?" msgstr "允许电话调查员查看?" @@ -2157,11 +2124,9 @@ msgstr "允许电话调查员查看?" msgid "Save changes" msgstr "保存修改" -#: admin/samplelist.php:202 -#: admin/samplelist.php:216 -#: admin/samplelist.php:224 -#: admin/samplelist.php:268 -#: admin/samplelist.php:279 +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 +#: admin/supervisor.php:468 msgid "Deidentify" msgstr "删除" @@ -2175,11 +2140,13 @@ msgstr "选择样本中哪些域要删除。删除域将永久从样本中删除 msgid "Delete selected fields" msgstr "删除所选域" -#: admin/samplelist.php:263 +#: admin/samplelist.php:263 admin/operatorlist.php:273 +#: admin/questionnairelist.php:401 msgid "Enable" msgstr "启用" -#: admin/samplelist.php:265 +#: admin/samplelist.php:265 admin/operatorlist.php:275 +#: admin/questionnairelist.php:403 msgid "Disable" msgstr "禁用" @@ -2187,7 +2154,8 @@ msgstr "禁用" msgid "Sample list" msgstr "样本列表" -#: admin/samplelist.php:279 +#: admin/samplelist.php:279 admin/operatorlist.php:293 +#: admin/questionnairelist.php:396 msgid "Enable/Disable" msgstr "启用/禁用" @@ -2244,8 +2212,7 @@ msgstr "选择要上传的CSV文件:" msgid "Load bulk appointment CSV" msgstr "加载批量预约CSV" -#: admin/addshift.php:87 -#: admin/addshift.php:140 +#: admin/addshift.php:87 admin/addshift.php:140 msgid "Add shifts" msgstr "添加调查时段" @@ -2255,9 +2222,9 @@ msgid "" "shifts" msgstr "您必须是电话调查员(以及具有管理员访问权限)才可以添加/编辑调查时段" -#: admin/addshift.php:151 -#: admin/availability.php:106 -#: admin/shifttemplate.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 admin/callrestrict.php:93 +#: admin/timezonetemplate.php:104 msgid "" "Your database does not have timezones installed, please see here for details" msgstr "您的数据库没有安装时区,请看这里查看详细信息" @@ -2280,9 +2247,8 @@ msgstr "选择年份" msgid "Select week of year" msgstr "选择星期" -#: admin/addshift.php:238 -#: admin/availability.php:144 -#: admin/shifttemplate.php:118 +#: admin/addshift.php:238 admin/availability.php:144 +#: admin/shifttemplate.php:118 admin/callrestrict.php:118 msgid "Day" msgstr "日" @@ -2294,8 +2260,36 @@ msgstr "使用调查时段?" msgid "Submit changes" msgstr "提交修改" -#: admin/quotarow.php:154 -#: admin/quotarow.php:160 +#: admin/questionnairecatimeslots.php:95 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." +msgstr "" + +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" +msgstr "" + +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" +msgstr "" + +#: admin/questionnairecatimeslots.php:138 +msgid "Select call attempt time slot:" +msgstr "" + +#: admin/questionnairecatimeslots.php:149 +msgid "Add call attempt time slot" +msgstr "" + +#: admin/quotarow.php:154 admin/quotarow.php:160 msgid "Copied quotas" msgstr "复制的配额" @@ -2311,9 +2305,7 @@ msgstr "当前无行配额" msgid "Replicate: Where" msgstr "复制:在" -#: admin/quotarow.php:182 -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187 msgid "like" msgstr "像" @@ -2321,8 +2313,7 @@ msgstr "像" msgid "Sample only. Stop calling where" msgstr "仅样本。停止呼叫于" -#: admin/quotarow.php:184 -#: admin/quotarow.php:187 +#: admin/quotarow.php:184 admin/quotarow.php:187 msgid "rows from this sample when:" msgstr "行在该样本中当:" @@ -2410,8 +2401,7 @@ msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "无法添加调查员。系统中可能已有同名访问员:" -#: admin/operators.php:182 -#: admin/operators.php:203 +#: admin/operators.php:182 admin/operators.php:203 msgid "Add an operator" msgstr "添加电话调查员" @@ -2427,8 +2417,7 @@ msgstr "给问卷分派电话调查员" msgid "tool" msgstr "工具" -#: admin/operators.php:205 -#: admin/clients.php:106 +#: admin/operators.php:205 admin/clients.php:106 msgid "" "Use this form to enter the username of a user based on your directory " "security system. For example, if you have secured the base directory of " @@ -2468,11 +2457,11 @@ msgstr "给该电话调查员选择一个分机:" msgid "Will this operator be using VoIP?" msgstr "该电话调查员使用VoIP吗?" -#: admin/operators.php:219 +#: admin/operators.php:219 admin/operatorlist.php:168 msgid "Jabber/XMPP chat user" msgstr "Jabber/XMPP聊天室用户名" -#: admin/operators.php:220 +#: admin/operators.php:220 admin/operatorlist.php:169 msgid "Jabber/XMPP chat password" msgstr "Jabber/XMPP聊天室密码" @@ -2492,8 +2481,7 @@ msgstr "该调查员是调查督导员吗?" msgid "Is the operator a refusal converter?" msgstr "该调查员可以转接拒绝访问的样本吗?" -#: admin/operators.php:225 -#: admin/clients.php:115 +#: admin/operators.php:225 admin/clients.php:115 msgid "Add user" msgstr "添加电话调查员" @@ -2517,7 +2505,7 @@ msgstr "连接到" msgid "Error: Failed to insert questionnaire" msgstr "错误:添加问卷失败" -#: admin/new.php:132 +#: admin/new.php:132 admin/questionnairelist.php:332 msgid "Name for questionnaire:" msgstr "问卷名:" @@ -2525,8 +2513,7 @@ msgstr "问卷名:" msgid "Select limesurvey instrument:" msgstr "选择LimeSurvey主问卷:" -#: admin/new.php:147 -#: admin/new.php:171 +#: admin/new.php:147 admin/new.php:171 msgid "Existing instrument:" msgstr "已有问卷工具:" @@ -2542,71 +2529,71 @@ msgstr "不进行受访者筛选(直接开始问卷)" msgid "Use basic respondent selection text (below)" msgstr "使用基本的受访者筛选文本(如下)" -#: admin/new.php:195 +#: admin/new.php:195 admin/questionnairelist.php:333 msgid "Restrict appointments to shifts?" msgstr "将预约限定在调查时段内?" -#: admin/new.php:196 +#: admin/new.php:196 admin/questionnairelist.php:334 msgid "Restrict work to shifts?" msgstr "将访问限定在调查时段内?" -#: admin/new.php:197 +#: admin/new.php:197 admin/questionnairelist.php:335 msgid "Questionnaire for testing only?" msgstr "问卷仅用于测试吗?" -#: admin/new.php:198 +#: admin/new.php:198 admin/questionnairelist.php:336 msgid "Allow operators to generate referrals?" msgstr "允许电话调查员生成被引荐的受访者吗?" -#: admin/new.php:199 +#: admin/new.php:199 admin/questionnairelist.php:337 msgid "Allow for respondent self completion via email invitation?" msgstr "允许受访者通过邮件邀请自助完成访问吗?" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Questionnaire display mode for respondent" msgstr "受访者问卷显示模式" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "All in one" msgstr "在一页中显示所有问题" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Question by question" msgstr "按问题显示" -#: admin/new.php:201 +#: admin/new.php:201 admin/questionnairelist.php:339 msgid "Group at a time" msgstr "按组显示" -#: admin/new.php:202 +#: admin/new.php:202 admin/questionnairelist.php:340 msgid "Limesurvey template for respondent" msgstr "受访者LimeSurvey模板" -#: admin/new.php:214 +#: admin/new.php:214 admin/questionnairelist.php:355 msgid "URL to forward respondents on self completion (required)" msgstr "受访者自助完成问卷后的跳转链接(必要)" -#: admin/new.php:217 +#: admin/new.php:217 admin/questionnairelist.php:358 msgid "Respondent selection introduction:" msgstr "受访者筛选说明:" -#: admin/new.php:218 +#: admin/new.php:218 admin/questionnairelist.php:359 msgid "Respondent selection project introduction:" msgstr "受访者筛选-项目说明:" -#: admin/new.php:219 +#: admin/new.php:219 admin/questionnairelist.php:360 msgid "Respondent selection callback (already started questionnaire):" msgstr "受访者筛选回叫(已开始的问卷):" -#: admin/new.php:220 +#: admin/new.php:220 admin/questionnairelist.php:361 msgid "Message to leave on an answering machine:" msgstr "电话答录机留言:" -#: admin/new.php:222 +#: admin/new.php:222 admin/questionnairelist.php:363 msgid "Project end text (thank you screen):" msgstr "项目结束文本(感谢结语):" -#: admin/new.php:223 +#: admin/new.php:223 admin/questionnairelist.php:364 msgid "Project information for interviewers/operators:" msgstr "提供给访问员/电话调查员的项目信息:" @@ -2623,13 +2610,11 @@ msgstr "添加分机失败。该姓名可能已有分机" msgid "Display extension status" msgstr "显示分机状态" -#: admin/extensionstatus.php:146 -#: admin/extensionstatus.php:209 +#: admin/extensionstatus.php:146 admin/extensionstatus.php:209 msgid "Extension name (such as SIP/1000):" msgstr "分机名称(如SIP/1000):" -#: admin/extensionstatus.php:147 -#: admin/extensionstatus.php:210 +#: admin/extensionstatus.php:147 admin/extensionstatus.php:210 msgid "Extension password:" msgstr "分机密码:" @@ -2893,7 +2878,7 @@ msgstr "周六" msgid "String" msgstr "字符串" -#: admin/databasestrings.php:82 +#: admin/databasestrings.php:82 admin/supervisor.php:320 msgid "Phone number" msgstr "电话号码" @@ -2925,7 +2910,7 @@ msgstr "电子邮箱地址" msgid "Self completion email invitation sent" msgstr "自助完成邮件邀请已发送" -#: admin/databasestrings.php:90 +#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 msgid "Self completed online" msgstr "在线自助完成" @@ -2933,11 +2918,11 @@ msgstr "在线自助完成" msgid "Cases by outcome" msgstr "访问结果" -#: admin/casesbyoutcome.php:72 +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 msgid "Project" msgstr "项目" -#: admin/casesbyoutcome.php:73 +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 msgid "Current outcome:" msgstr "当前结果:" @@ -2954,31 +2939,35 @@ msgid "Cannot connect to VoIP Server" msgstr "无法连接到VoIP服务器" #: admin/availability.php:57 -msgid "No availability group set" -msgstr "未设立有效组" +msgid "No time slot group set" +msgstr "" #: admin/availability.php:95 -msgid "Modify availability" -msgstr "修改有效时间" +msgid "Modify time slots" +msgstr "" -#: admin/availability.php:122 +#: admin/availability.php:122 admin/callrestrict.php:96 msgid "" "Enter the start and end times for each day of the week to restrict calls " "within" msgstr "输入一周每天的起止时间来限定呼叫时间在" -#: admin/availability.php:160 -#: admin/shifttemplate.php:134 +#: admin/availability.php:160 admin/shifttemplate.php:134 +#: admin/callrestrict.php:134 msgid "Add row" msgstr "添加行" +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + #: admin/availability.php:162 -msgid "Save changes to availabilities" -msgstr "保存对有效时间的修改" +msgid "Save changes to time slot group" +msgstr "" #: admin/availability.php:166 -msgid "Delete this availability group" -msgstr "删除该可用组" +msgid "Delete this time slot group" +msgstr "" #: admin/clients.php:84 msgid "Could not add" @@ -2988,8 +2977,7 @@ msgstr "不能添加" msgid "There may already be a client of this name" msgstr "可能客户姓名已存在" -#: admin/clients.php:89 -#: admin/clients.php:104 +#: admin/clients.php:89 admin/clients.php:104 msgid "Add a client" msgstr "添加客户" @@ -3042,8 +3030,7 @@ msgstr "按当地时间输入一周每天的标准调查起止时段" msgid "Save changes to shifts" msgstr "保存对调查时段的修改" -#: admin/casestatus.php:88 -#: admin/casestatus.php:89 +#: admin/casestatus.php:88 admin/casestatus.php:89 msgid "Now" msgstr "现在" @@ -3088,8 +3075,7 @@ msgstr "" msgid "Download data for this questionnaire via Limesurvey" msgstr "使用LimeSurvey下载该问卷数据" -#: admin/dataoutput.php:204 -#: admin/samplecallattempts.php:184 +#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 msgid "Please select a sample" msgstr "请选择样本" @@ -3133,8 +3119,7 @@ msgstr "更新用户信息失败。请确认用户名唯一" msgid "Operator edit" msgstr "电话调查员信息编辑" -#: admin/operatorlist.php:158 -#: admin/operatorlist.php:293 +#: admin/operatorlist.php:158 admin/operatorlist.php:293 msgid "Username" msgstr "用户名" @@ -3274,23 +3259,31 @@ msgstr "请确认您想删除问卷" msgid "Delete this questionnaire" msgstr "删除该问卷" -#: admin/timezonetemplate.php:87 +#: admin/timezonetemplate.php:92 msgid "Add/Remove Timezones" msgstr "添加/移除时区" -#: admin/timezonetemplate.php:101 +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" +msgstr "" + +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " +msgstr "" + +#: admin/timezonetemplate.php:115 msgid "Click to remove a Timezone from the default list" msgstr "点击从默认列表中移除一个时区" -#: admin/timezonetemplate.php:113 +#: admin/timezonetemplate.php:127 msgid "Add a Timezone:" msgstr "添加时区:" -#: admin/timezonetemplate.php:116 +#: admin/timezonetemplate.php:130 msgid "Timezone: " msgstr "时区: " -#: admin/timezonetemplate.php:117 +#: admin/timezonetemplate.php:131 msgid "Add Timezone" msgstr "添加时区" @@ -3310,8 +3303,7 @@ msgstr "选择访问" msgid "Set an outcome for this call" msgstr "给该呼叫设置一个结果" -#: admin/supervisor.php:189 -#: admin/supervisor.php:374 +#: admin/supervisor.php:189 admin/supervisor.php:397 msgid "Set outcome" msgstr "设置结果" @@ -3331,39 +3323,50 @@ msgstr "呼叫列表" msgid "Change outcome" msgstr "修改结果" -#: admin/supervisor.php:333 +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" +msgstr "" + +#: admin/supervisor.php:342 +msgid "Call attempts" +msgstr "" + +#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 msgid "Case notes" msgstr "访问备注" -#: admin/supervisor.php:355 +#: admin/supervisor.php:378 msgid "Modify responses for this case" msgstr "修改该访问受访者" -#: admin/supervisor.php:357 +#: admin/supervisor.php:380 msgid "Case not yet started in Limesurvey" msgstr "访问尚未在LimeSurvey中开始" -#: admin/supervisor.php:361 +#: admin/supervisor.php:384 msgid "Set a case outcome" msgstr "设置一个访问结果" -#: admin/supervisor.php:411 +#: admin/supervisor.php:434 msgid "Update case availability" msgstr "更新访问有效时间" -#: admin/supervisor.php:423 +#: admin/supervisor.php:445 msgid "Assign this case to operator (will appear as next case for them)" msgstr "将该样本分派给电话调查员(作为下一个访问样本出现在调查员的访问页面)" -#: admin/supervisor.php:435 +#: admin/supervisor.php:457 msgid "Assign this case to operator" msgstr "将该访问分派给电话调查员" -#: admin/supervisor.php:441 +#: admin/supervisor.php:463 msgid "Remove all sample details and contact numbers from this case" msgstr "从该访问移除所有的样本详细信息和联系电话" -#: admin/supervisor.php:454 +#: admin/supervisor.php:476 msgid "Case does not exist" msgstr "访问不存在" @@ -3371,19 +3374,19 @@ msgstr "访问不存在" msgid "Error: Cannot write to temporary directory" msgstr "错误:无法写入临时目录" -#: functions/functions.operator.php:167 +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 msgid "morning" msgstr "上午" -#: functions/functions.operator.php:168 +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" msgstr "下午" -#: functions/functions.operator.php:169 +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" msgstr "晚间" -#: functions/functions.operator.php:903 +#: functions/functions.operator.php:904 msgid "" "ERROR: You do not have server side authentication enabled therefore queXS " "cannot determine which user is accessing the system." @@ -3486,10 +3489,8 @@ msgstr "掉线" msgid "Reconnected" msgstr "重新连线" -#: functions/functions.voip.php:553 -#: functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -#: functions/functions.voip.php:587 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 #: functions/functions.voip.php:596 msgid " Extension " msgstr " 分机 " @@ -3540,13 +3541,11 @@ msgstr "没有分派给您的问卷" msgid "You are not a valid client" msgstr "您不是已验证客户" -#: include/limesurvey/quexs.php:674 -#: include/limesurvey/quexs.php:753 +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 msgid "Not on an appointment" msgstr "无预约" -#: include/limesurvey/quexs.php:676 -#: include/limesurvey/quexs.php:755 +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "On an appointment" msgstr "预约中" @@ -3575,10 +3574,16 @@ msgid "Self completion refused via opt out function" msgstr "通过选择功能拒绝自助完成调查" #: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 msgid "Questionnaire and Sample selection:" msgstr "问卷及样本选择:" #: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "所有与该主问卷相关的queXS问卷和样本" @@ -3644,11 +3649,35 @@ msgstr "" "事情是这样的。\n" "\n" +#~ msgid "Sorting cases" +#~ msgstr "访问排序" + #~ msgid "Enter the telephone extension number:" #~ msgstr "输入要添加的电话调查员的分机号:" #~ msgid "Enter the telephone extension password:" #~ msgstr "输入要添加的电话调查员的分机密码:" +#~ msgid "Availability groups" +#~ msgstr "可用组" + +#~ msgid "No availability groups" +#~ msgstr "无有效组" + +#~ msgid "Availablity group" +#~ msgstr "有效组" + #~ msgid "No operators" #~ msgstr "无电话调查员" + +#~ msgid "No availability group set" +#~ msgstr "未设立有效组" + +#~ msgid "Modify availability" +#~ msgstr "修改有效时间" + +#~ msgid "Save changes to availabilities" +#~ msgstr "保存对有效时间的修改" + +#~ msgid "Manage availablity groups" +#~ msgstr "管理可用组" From 38d59dd4b7b4ab4ea44e386b32d7eba132cbe31f Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 9 Feb 2015 11:59:44 +1100 Subject: [PATCH 26/34] New Feature: Allow time slots to be set on a sample by sample basis as well --- CHANGELOG | 9 ++ admin/index.php | 1 + admin/questionnairecatimeslotssample.php | 172 +++++++++++++++++++++++ admin/systemsortprocess.php | 2 + database/quexs.sql | 9 ++ functions/functions.operator.php | 2 + 6 files changed, 195 insertions(+) create mode 100644 admin/questionnairecatimeslotssample.php diff --git a/CHANGELOG b/CHANGELOG index 6a13703d..21de19e3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +Database updates: + +CREATE TABLE `questionnaire_sample_timeslot` ( +`questionnaire_id` bigint( 20 ) NOT NULL , +`sample_import_id` bigint( 20 ) NOT NULL , +`availability_group_id` bigint( 20 ) NOT NULL , +PRIMARY KEY ( `questionnaire_id` , `availability_group_id` , `sample_import_id` ) +) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci; + queXS 1.11.1 - Changes since 1.11.0 Fixed Bug: Quota priority not able to override sort of last call made diff --git a/admin/index.php b/admin/index.php index a54c34fb..48d620d5 100644 --- a/admin/index.php +++ b/admin/index.php @@ -73,6 +73,7 @@ print "
  • " . T_("Availability and shift management") . "

  • "; print "
  • " . T_("Questionnaire progress") . "

    "; diff --git a/admin/questionnairecatimeslotssample.php b/admin/questionnairecatimeslotssample.php new file mode 100644 index 00000000..49c151ba --- /dev/null +++ b/admin/questionnairecatimeslotssample.php @@ -0,0 +1,172 @@ + + * @copyright Australian Consortium for Social and Political Research Inc (ACSPRI) 2011 + * @package queXS + * @subpackage admin + * @link http://www.acspri.org.au queXS was writen for ACSPRI + * @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2 + * + * + */ + +/** + * Configuration file + */ +include("../config.inc.php"); + +/** + * Database file + */ +include ("../db.inc.php"); + +/** + * XHTML functions + */ +include("../functions/functions.xhtml.php"); + +/** + * Display functions + */ +include("../functions/functions.display.php"); + +/** + * Input functions + */ +include("../functions/functions.input.php"); + +global $db; + + +if (isset($_GET['questionnaire_id']) && isset($_GET['sample_import_id']) && isset($_GET['availability_group'])) +{ + //need to add availability_group to questionnaire + + $questionnaire_id = bigintval($_GET['questionnaire_id']); + $sample_import_id = bigintval($_GET['sample_import_id']); + $availability_group = bigintval($_GET['availability_group']); + + $sql = "INSERT INTO questionnaire_sample_timeslot (questionnaire_id,sample_import_id,availability_group_id) + VALUES('$questionnaire_id','$sample_import_id','$availability_group')"; + + $db->Execute($sql); + +} + +if (isset($_GET['questionnaire_id']) && isset($_GET['sample_import_id']) && isset($_GET['ravailability_group'])) +{ + //need to remove rsid from questionnaire + + $questionnaire_id = bigintval($_GET['questionnaire_id']); + $sample_import_id = bigintval($_GET['sample_import_id']); + $availability_group = bigintval($_GET['ravailability_group']); + + $sql = "DELETE FROM questionnaire_sample_timeslot + WHERE questionnaire_id = '$questionnaire_id' + AND sample_import_id = '$sample_import_id' + AND availability_group_id = '$availability_group'"; + + + $db->Execute($sql); +} + + +$questionnaire_id = false; +if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']); + +xhtml_head(T_("Assign call attempt time slots to questionnaire sample"),true,false,array("../js/window.js")); + +print "

    " . T_("Assigning call attempt time slots to questionnaires will only allow cases to be attempted in a time slot for the n + 1th time where it has been attempted at least n times in all assigned timeslots. Please note timeslots must cover all possible time periods otherwise no cases will be available during missing timeslots.") ."

    "; + +print "

    " . T_("Select a questionnaire from the list below") . "

    "; +display_questionnaire_chooser($questionnaire_id); + + +if ($questionnaire_id != false) +{ + print "

    " . T_("Select a sample from the list below") . "

    "; + + $sample_import_id = false; + if (isset($_GET['sample_import_id'])) $sample_import_id = bigintval($_GET['sample_import_id']); + display_sample_chooser($questionnaire_id,$sample_import_id); + + if ($sample_import_id !== false) + { + + $sql = "SELECT q.availability_group_id,a.description as description + FROM questionnaire_sample_timeslot as q, availability_group as a + WHERE q.availability_group_id = a.availability_group_id + AND q.questionnaire_id = '$questionnaire_id' + AND q.sample_import_id = '$sample_import_id'"; + + $qs = $db->GetAll($sql); + + if (empty($qs)) + { + print "

    " . T_("There are no call attempt time slots selected for this questionnaire sample") . "

    "; + } + else + { + print "

    " . T_("Call attempt time slots selected for this questionnaire sample") . "

    "; + foreach($qs as $q) + { + print "

    {$q['availability_group_id']} - {$q['description']} (" . T_("Click to unassign") . ")

    "; + } + } + + $sql = "SELECT si.availability_group_id,si.description + FROM availability_group as si + LEFT JOIN questionnaire_sample_timeslot as q ON (q.sample_import_id = '$sample_import_id' AND q.questionnaire_id = '$questionnaire_id' AND q.availability_group_id = si.availability_group_id) + WHERE q.questionnaire_id is NULL"; + + $qs = $db->GetAll($sql); + + if (!empty($qs)) + { + + + print "

    " . T_("Add a call attempt time slot to this questionnaire sample:") . "

    "; + ?> +
    +


    + + + "/>

    +
    + diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index f043c104..8de238df 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -244,10 +244,12 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id) LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id) LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id) + LEFT JOIN questionnaire_sample_timeslot AS qasts ON (qasts.questionnaire_id = c.questionnaire_id AND quasts.sample_import_id = si.sample_import_id) WHERE c.current_operator_id IS NULL AND c.questionnaire_id = '$questionnaire_id' AND ((apn.appointment_id IS NOT NULL) OR casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) AND ((apn.appointment_id IS NOT NULL) OR qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) + AND ((apn.appointment_id IS NOT NULL) OR qasts.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qasts.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qasts.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_sample_timeslot WHERE questionnaire_sample_timeslot.questionnaire_id = c.questionnaire_id AND questionnaire_sample_timeslot.sample_import_id = si.sample_import_id AND availability_group.availability_group_id = questionnaire_sample_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) diff --git a/database/quexs.sql b/database/quexs.sql index 1e443b29..f8ba9dba 100644 --- a/database/quexs.sql +++ b/database/quexs.sql @@ -1554,6 +1554,15 @@ CREATE TABLE `questionnaire_sample_quota_row_exclude` ( -- Dumping data for table `questionnaire_sample_quota_row_exclude` -- +CREATE TABLE `questionnaire_sample_timeslot` ( +`questionnaire_id` bigint( 20 ) NOT NULL , +`sample_import_id` bigint( 20 ) NOT NULL , +`availability_group_id` bigint( 20 ) NOT NULL , +PRIMARY KEY ( `questionnaire_id` , `availability_group_id` , `sample_import_id` ) +) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci; + +-- -------------------------------------------------------- + CREATE TABLE `questionnaire_timeslot` ( diff --git a/functions/functions.operator.php b/functions/functions.operator.php index d7a31d47..4f9b2be7 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -625,10 +625,12 @@ function get_case_id($operator_id, $create = false) LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id) LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id) LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id) + LEFT JOIN questionnaire_sample_timeslot AS qasts ON (qasts.questionnaire_id = c.questionnaire_id AND quasts.sample_import_id = si.sample_import_id) JOIN operator_skill as os on (os.operator_id = op.operator_id and os.outcome_type_id = ou.outcome_type_id) WHERE c.current_operator_id IS NULL AND ((apn.appointment_id IS NOT NULL) OR casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) AND ((apn.appointment_id IS NOT NULL) OR qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) + AND ((apn.appointment_id IS NOT NULL) OR qasts.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qasts.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qasts.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_sample_timeslot WHERE questionnaire_sample_timeslot.questionnaire_id = c.questionnaire_id AND questionnaire_sample_timeslot.sample_import_id = si.sample_import_id AND availability_group.availability_group_id = questionnaire_sample_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) From bf59fb04d02a05d6d0375afc05829ab461abf300 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 9 Feb 2015 12:25:40 +1100 Subject: [PATCH 27/34] Updated translation file Added PO update script to avoid using poedit --- locale/quexs.pot | 4610 ++++++++++++++++++++++---------------------- locale/updatepo.sh | 9 + 2 files changed, 2267 insertions(+), 2352 deletions(-) create mode 100755 locale/updatepo.sh diff --git a/locale/quexs.pot b/locale/quexs.pot index 1b402e5d..324be679 100644 --- a/locale/quexs.pot +++ b/locale/quexs.pot @@ -2,10 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: queXS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-12-19 10:21+1000\n" +"POT-Creation-Date: 2015-02-09 12:09+1100\n" "PO-Revision-Date: \n" "Last-Translator: Adam Zammit \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -15,232 +16,6 @@ msgstr "" "X-Generator: Poedit 1.5.4\n" "X-Poedit-SearchPath-0: .\n" -#: callhistory.php:56 -msgid "Case History List" -msgstr "" - -#: callhistory.php:79 admin/callhistory.php:81 -msgid "No calls ever made" -msgstr "" - -#: callhistory.php:83 calllist.php:84 casenote.php:110 -#: admin/supervisor.php:320 admin/supervisor.php:361 -msgid "Date/Time" -msgstr "" - -#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111 -#: admin/displayappointments.php:243 admin/extensionstatus.php:200 -#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258 -#: include/limesurvey/admin/exportresults.php:643 -#: include/limesurvey/admin/exportresults.php:644 -#: include/limesurvey/admin/exportresults.php:966 -msgid "Case ID" -msgstr "" - -#: callhistory.php:83 index_interface2.php:215 calllist.php:84 -#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 -#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208 -#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320 -#: client/index.php:91 client/index.php:110 -msgid "Outcome" -msgstr "" - -#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96 -#: admin/callhistory.php:111 admin/displayappointments.php:179 -msgid "Respondent" -msgstr "" - -#: callhistory.php:87 status.php:59 admin/callhistory.php:118 -#: admin/casesbyoutcome.php:94 -msgid "No operator" -msgstr "" - -#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64 -msgid "Respondent Selection - Answering machine" -msgstr "" - -#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78 -msgid "Do not leave a message, please hang up" -msgstr "" - -#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81 -msgid "End call with outcome: Business answering machine" -msgstr "" - -#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86 -msgid "End call with outcome: Answering machine Message left" -msgstr "" - -#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90 -msgid "End call with outcome: Answering machine No message left" -msgstr "" - -#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62 -#: rs_callback_interface2.php:89 rs_project_intro.php:85 -#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85 -#: rs_callback.php:89 rs_business.php:62 -msgid "Go Back" -msgstr "" - -#: rs_business_interface2.php:55 rs_business.php:55 -msgid "Respondent Selection - Business answers" -msgstr "" - -#: rs_business_interface2.php:59 rs_business.php:59 -msgid "Sorry to bother you, I have called the wrong number" -msgstr "" - -#: rs_business_interface2.php:61 rs_business.php:61 -msgid "End call with outcome: Business number" -msgstr "" - -#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145 -#: selectextension.php:88 -msgid "queXS" -msgstr "" - -#: index_interface2.php:216 appointment.php:121 index.php:163 -#: status_interface2.php:176 -msgid "Appointment" -msgstr "" - -#: index_interface2.php:217 index.php:166 email.php:278 email.php:282 -#: email.php:288 email.php:309 email.php:339 -msgid "Email" -msgstr "" - -#: index_interface2.php:218 index.php:167 referral.php:198 -msgid "Referral" -msgstr "" - -#: index_interface2.php:219 waitnextcase_interface2.php:55 -#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431 -#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458 -#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415 -#: call.php:421 -msgid "End work" -msgstr "" - -#: index_interface2.php:310 index.php:169 -msgid "Arrow for expanding or contracting" -msgstr "" - -#: index_interface2.php:322 index.php:223 -msgid "Notes" -msgstr "" - -#: index_interface2.php:330 index.php:241 contactdetails.php:70 -msgid "Contact details" -msgstr "" - -#: index_interface2.php:339 index.php:250 admin/index.php:95 -msgid "Call history" -msgstr "" - -#: index_interface2.php:348 index.php:259 admin/outcomes.php:273 -msgid "Shifts" -msgstr "" - -#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227 -#: admin/databasestrings.php:68 admin/supervisor.php:281 -msgid "Appointments" -msgstr "" - -#: index_interface2.php:366 index.php:277 performance.php:61 -#: admin/index.php:85 -msgid "Performance" -msgstr "" - -#: index_interface2.php:374 index.php:285 -msgid "Work history" -msgstr "" - -#: index_interface2.php:382 project_info.php:61 index.php:293 -msgid "Project information" -msgstr "" - -#: index_interface2.php:391 index.php:309 -msgid "Info" -msgstr "" - -#: record.php:55 -msgid "Stop REC" -msgstr "" - -#: record.php:56 record.php:79 record.php:96 -msgid "Record" -msgstr "" - -#: record.php:66 -msgid "Beginning recording..." -msgstr "" - -#: record.php:69 record.php:97 -msgid "Not on a call, so not beginning a recording" -msgstr "" - -#: record.php:73 -msgid "Begin the manual recording now..." -msgstr "" - -#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261 -#: call.php:206 call.php:224 email.php:273 -msgid "Start REC" -msgstr "" - -#: record.php:86 -msgid "Stopping recording..." -msgstr "" - -#: record.php:90 -msgid "Stop the manual recording now..." -msgstr "" - -#: rs_callback_interface2.php:66 rs_callback.php:66 -msgid "Respondent Selection - Call back" -msgstr "" - -#: rs_callback_interface2.php:80 rs_callback.php:80 -msgid "You are: " -msgstr "" - -#: rs_callback_interface2.php:80 rs_callback.php:80 -msgid "% complete" -msgstr "" - -#: rs_callback_interface2.php:87 rs_callback.php:87 -msgid "Yes - Continue where we left off" -msgstr "" - -#: rs_callback_interface2.php:88 rs_project_intro.php:81 -#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122 -#: rs_intro_interface2.php:122 -msgid "End call with outcome: Refusal by respondent" -msgstr "" - -#: rs_project_intro.php:59 rs_project_intro_interface2.php:59 -msgid "Respondent Selection - Project Introduction" -msgstr "" - -#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92 -#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 -#: rs_intro_interface2.php:92 rs_intro_interface2.php:98 -#: rs_intro_interface2.php:106 rs_intro_interface2.php:112 -msgid "Yes - Continue" -msgstr "" - -#: rs_project_intro.php:82 rs_project_intro_interface2.php:82 -msgid "" -"End call with outcome: No eligible respondent (person not available on this " -"number)" -msgstr "" - -#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125 -#: rs_intro_interface2.php:125 -msgid "" -"End call with outcome: Out of sample (already completed in another mode)" -msgstr "" - #: appointment.php:69 msgid "Appointment error" msgstr "" @@ -254,6 +29,11 @@ msgstr "" msgid "Appointment made" msgstr "" +#: appointment.php:121 status_interface2.php:176 index.php:163 +#: index_interface2.php:216 +msgid "Appointment" +msgstr "" + #: appointment.php:124 msgid "Select a respondent" msgstr "" @@ -310,188 +90,248 @@ msgstr "" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:219 include/limesurvey/qanda.php:1701 -#: include/limesurvey/qanda.php:1921 -msgid "Schedule Appointment" -msgstr "" - -#: calllist.php:56 -msgid "Call List" -msgstr "" - -#: calllist.php:80 admin/supervisor.php:316 -msgid "No calls made" -msgstr "" - -#: calllist.php:84 -msgid "Number called" -msgstr "" - -#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85 -#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111 -#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 -#: admin/shiftreport.php:104 admin/outcomes.php:187 -#: admin/extensionstatus.php:200 admin/operatorlist.php:293 -#: admin/supervisor.php:320 admin/supervisor.php:361 -msgid "Operator" -msgstr "" - -#: calllist.php:88 project_info.php:82 status_interface2.php:231 -#: casenote.php:113 status.php:134 -msgid "No case" -msgstr "" - -#: waitnextcase_interface2.php:54 -msgid "Get a new case" -msgstr "" - -#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90 -#: admin/displayappointments.php:243 admin/addshift.php:238 -#: admin/availability.php:144 admin/shifttemplate.php:118 -#: admin/callrestrict.php:118 admin/supervisor.php:297 -msgid "End" -msgstr "" - -#: index.php:164 nocallavailable.php:83 -msgid "Call/Hangup" -msgstr "" - -#: index.php:165 supervisorchat.php:79 supervisor.php:52 -msgid "Supervisor" -msgstr "" - -#: index.php:170 -msgid "Restart" -msgstr "" - -#: index.php:231 availability.php:56 -msgid "Availability" -msgstr "" - -#: index.php:301 supervisorchat.php:56 admin/index.php:105 -#: admin/supervisorchat.php:61 -msgid "Supervisor chat" -msgstr "" - #: info.php:56 msgid "Information" msgstr "" -#: supervisorchat.php:80 -msgid "Me" +#: rs_project_end.php:71 rs_project_end_interface2.php:62 +msgid "Respondent Selection - Project end" msgstr "" -#: supervisorchat.php:82 admin/systemsortprocess.php:147 -#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 -#: admin/bulkappointment.php:230 admin/casestatus.php:111 -#: functions/functions.voip.php:553 functions/functions.voip.php:565 -#: functions/functions.voip.php:577 -msgid "Case id" +#: rs_project_end.php:88 +msgid "Call automatically ended with outcome: Complete" msgstr "" -#: supervisorchat.php:87 -msgid "Supervisor is available" +#: rs_project_end.php:93 rs_project_end_interface2.php:85 +msgid "End call with outcome: Complete" msgstr "" -#: supervisorchat.php:88 -msgid "Supervisor not available" +#: functions/functions.import.php:89 +msgid "Duplicate name" msgstr "" -#: supervisorchat.php:90 supervisorchat.php:93 -msgid "Message" +#: functions/functions.import.php:111 +msgid "You must select one and one only Primary Phone number" msgstr "" -#: supervisorchat.php:90 -msgid "Send" +#: functions/functions.import.php:127 +msgid "Import?" msgstr "" -#: supervisorchat.php:93 -msgid "From" +#: functions/functions.import.php:127 status_interface2.php:79 +msgid "Name" msgstr "" -#: supervisorchat.php:96 -msgid "Supervisor chat is not enabled" +#: functions/functions.import.php:127 +msgid "Type" msgstr "" -#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 -#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 -#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 -#: call.php:227 call.php:258 call.php:306 call.php:377 -msgid "Call" +#: functions/functions.import.php:127 admin/samplelist.php:187 +msgid "Allow operator to see?" msgstr "" -#: call_interface2.php:302 call.php:265 -msgid "Not on a call" +#: functions/functions.freepbx.php:138 +#, php-format +msgid "Reload failed because retrieve_conf encountered an error: %s" msgstr "" -#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 -#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 -#: call.php:398 call.php:414 call.php:420 -msgid "End case" +#: functions/functions.freepbx.php:140 +msgid "retrieve_conf failed, config not applied" msgstr "" -#: call_interface2.php:339 call.php:302 -msgid "Press the call button to dial the number for this appointment:" -msgstr "" - -#: call_interface2.php:342 call.php:305 -msgid "Number to call:" -msgstr "" - -#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 +#: functions/functions.freepbx.php:146 msgid "" -"Your VoIP extension is not enabled. Please close this window and enable VoIP " -"by clicking once on the red button that says 'VoIP Off'" +"Reload failed because FreePBX could not connect to the asterisk manager " +"interface." msgstr "" -#: call_interface2.php:407 call.php:370 -msgid "Select phone number to dial:" +#: functions/functions.freepbx.php:165 +msgid "" +"Could not reload the FOP operator panel server using the bounce_op.sh " +"script. Configuration changes may not be reflected in the panel display." msgstr "" -#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 -msgid "The last call completed this call attempt" +#: functions/functions.freepbx.php:174 +#, php-format +msgid "Exit code was %s and output was: %s" msgstr "" -#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 -msgid "Enter a reason for this outcome before completing this case:" +#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 +msgid "morning" msgstr "" -#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170 -msgid "Requires coding" +#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 +msgid "afternoon" msgstr "" -#: call_interface2.php:470 call.php:451 -msgid "Assign outcome" +#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 +msgid "evening" msgstr "" -#: call_interface2.php:474 call.php:455 -msgid "Error: Close window" +#: functions/functions.operator.php:906 +msgid "" +"ERROR: You do not have server side authentication enabled therefore queXS " +"cannot determine which user is accessing the system." msgstr "" -#: call.php:427 admin/extensionstatus.php:170 -msgid "Requesting call" +#: functions/functions.performance.php:469 +msgid "No shift" msgstr "" -#: call.php:428 call.php:435 -msgid "Call Answered" +#: functions/functions.performance.php:492 +msgid "Total completions" msgstr "" -#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577 -msgid "Hangup" +#: functions/functions.performance.php:521 +msgid "Completions this shift" msgstr "" -#: call.php:434 status.php:118 admin/extensionstatus.php:170 -#: functions/functions.voip.php:553 +#: functions/functions.performance.php:544 +#: functions/functions.performance.php:590 +msgid "No previous shift" +msgstr "" + +#: functions/functions.performance.php:564 +msgid "Completions on the previous shift" +msgstr "" + +#: functions/functions.performance.php:611 +msgid "Completions this time on the previous shift" +msgstr "" + +#: functions/functions.performance.php:629 +msgid "No calls made for this shift" +msgstr "" + +#: functions/functions.performance.php:631 +msgid "Top CPH for this shift" +msgstr "" + +#: functions/functions.performance.php:648 +msgid "No calls made for this project" +msgstr "" + +#: functions/functions.performance.php:650 +msgid "Top CPH" +msgstr "" + +#: functions/functions.calendar.php:215 respondent.php:94 respondent.php:132 +#: contactdetails.php:90 contactdetails.php:128 +msgid "Add respondent" +msgstr "" + +#: functions/functions.calendar.php:265 +msgid "First name:" +msgstr "" + +#: functions/functions.calendar.php:266 +msgid "Last name:" +msgstr "" + +#: functions/functions.calendar.php:271 +msgid "Time Zone:" +msgstr "" + +#: functions/functions.calendar.php:328 +msgid "Shift from:" +msgstr "" + +#: functions/functions.calendar.php:335 +msgid "Start Time" +msgstr "" + +#: functions/functions.calendar.php:385 +msgid "End Time" +msgstr "" + +#: functions/functions.voip.php:449 selectextension.php:108 status.php:99 +#: admin/operatorlist.php:167 admin/operatorlist.php:293 +#: admin/exten_tab.php:155 admin/extensionstatus.php:200 +msgid "Extension" +msgstr "" + +#: functions/functions.voip.php:449 +msgid "online" +msgstr "" + +#: functions/functions.voip.php:449 +msgid "offline" +msgstr "" + +#: functions/functions.voip.php:528 +msgid "Disconnected" +msgstr "" + +#: functions/functions.voip.php:530 +msgid "Reconnected" +msgstr "" + +#: functions/functions.voip.php:553 status.php:118 call.php:434 msgid "Ringing" msgstr "" -#: call.php:441 status.php:122 admin/extensionstatus.php:170 -#: functions/functions.voip.php:565 +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 functions/functions.voip.php:587 +#: functions/functions.voip.php:596 +msgid " Extension " +msgstr "" + +#: functions/functions.voip.php:553 functions/functions.voip.php:565 +#: functions/functions.voip.php:577 admin/systemsortprocess.php:147 +#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209 +#: admin/bulkappointment.php:230 admin/casestatus.php:112 +msgid "Case id" +msgstr "" + +#: functions/functions.voip.php:565 status.php:122 call.php:441 msgid "Answered" msgstr "" -#: call.php:442 -msgid "Not Answered" +#: functions/functions.voip.php:577 call.php:431 call.php:438 call.php:445 +msgid "Hangup" +msgstr "" + +#: functions/functions.voip.php:587 +msgid "Unregistered" +msgstr "" + +#: functions/functions.voip.php:596 +msgid "Registered" +msgstr "" + +#: rs_callback.php:66 rs_callback_interface2.php:66 +msgid "Respondent Selection - Call back" +msgstr "" + +#: rs_callback.php:80 rs_callback_interface2.php:80 +msgid "You are: " +msgstr "" + +#: rs_callback.php:80 rs_callback_interface2.php:80 +#, php-format +msgid "% complete" +msgstr "" + +#: rs_callback.php:87 rs_callback_interface2.php:87 +msgid "Yes - Continue where we left off" +msgstr "" + +#: rs_callback.php:88 rs_callback_interface2.php:88 rs_intro.php:122 +#: rs_project_intro_interface2.php:81 rs_intro_interface2.php:122 +#: rs_project_intro.php:81 +msgid "End call with outcome: Refusal by respondent" +msgstr "" + +#: rs_callback.php:89 rs_callback_interface2.php:89 +#: rs_project_intro_interface2.php:85 rs_answeringmachine.php:91 +#: rs_business.php:62 rs_answeringmachine_interface2.php:91 +#: rs_project_intro.php:85 rs_business_interface2.php:62 +msgid "Go Back" +msgstr "" + +#: selectextension.php:88 waitnextcase_interface2.php:49 index.php:145 +#: index_interface2.php:198 +msgid "queXS" msgstr "" #: selectextension.php:99 @@ -514,53 +354,179 @@ msgid "" "extension'" msgstr "" -#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200 -#: admin/operatorlist.php:167 admin/operatorlist.php:293 -#: functions/functions.voip.php:449 -msgid "Extension" -msgstr "" - #: selectextension.php:110 msgid "Choose extension" msgstr "" -#: endwork.php:45 -msgid "End of work" -msgstr "" - -#: endwork.php:49 -msgid "You have been automatically logged out of work due to inactivity" -msgstr "" - -#: endwork.php:52 -msgid "Work has ended. That is it" -msgstr "" - -#: endwork.php:70 -msgid "You have been unassigned from your extension" -msgstr "" - -#: endwork.php:75 -msgid "Go back to work" -msgstr "" - -#: status_interface2.php:70 status.php:58 status.php:77 +#: status.php:58 status.php:77 status_interface2.php:70 #: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241 msgid "Status" msgstr "" -#: status_interface2.php:79 functions/functions.import.php:127 -msgid "Name" +#: status.php:59 callhistory.php:87 admin/callhistory.php:118 +#: admin/casesbyoutcome.php:94 +msgid "No operator" msgstr "" -#: status_interface2.php:225 status_interface2.php:228 -msgid "No more numbers to call" +#: status.php:95 +msgid "VoIP On" +msgstr "" + +#: status.php:97 +msgid "VoIP Off" +msgstr "" + +#: status.php:102 +msgid "No VoIP" +msgstr "" + +#: status.php:106 +msgid "No call" +msgstr "" + +#: status.php:110 +msgid "To be coded" +msgstr "" + +#: status.php:114 +msgid "Requesting" +msgstr "" + +#: status.php:130 +msgid "APPT" +msgstr "" + +#: status.php:131 +msgid "MISSED" +msgstr "" + +#: status.php:134 casenote.php:113 status_interface2.php:231 calllist.php:88 +#: project_info.php:82 +msgid "No case" +msgstr "" + +#: referral.php:167 +msgid "Generated referral to case id" +msgstr "" + +#: referral.php:173 +msgid "Generated as referral from case id" +msgstr "" + +#: referral.php:179 +msgid "Created referral case - you may now close this window" +msgstr "" + +#: referral.php:183 +msgid "Failed to create referral case - please check your input and try again" +msgstr "" + +#: referral.php:189 +msgid "You must supply a primary phone number" +msgstr "" + +#: referral.php:198 index.php:167 index_interface2.php:218 +msgid "Referral" +msgstr "" + +#: referral.php:209 referral.php:243 +msgid "Create referral" +msgstr "" + +#: referral.php:241 +msgid "Call this new referral immediately after this case?" +msgstr "" + +#: referral.php:248 +msgid "Referrals not available for this questionnaire" +msgstr "" + +#: performance.php:61 admin/index_3.php:382 admin/index.php:86 index.php:277 +#: index_interface2.php:366 +msgid "Performance" +msgstr "" + +#: performance.php:77 admin/operatorperformance.php:103 +msgid "This shift" +msgstr "" + +#: performance.php:78 performance.php:85 casenote.php:110 +#: appointmentlist.php:90 calllist.php:84 admin/outcomes.php:187 +#: admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/operatorlist.php:293 admin/supervisor.php:320 +#: admin/supervisor.php:361 admin/operatorperformance.php:81 +#: admin/operatorperformance.php:104 admin/shiftreport.php:104 +#: admin/exten_tab.php:155 admin/extensionstatus.php:200 +msgid "Operator" +msgstr "" + +#: performance.php:78 performance.php:85 admin/quotareport.php:284 +#: admin/outcomes.php:297 admin/operatorperformance.php:81 +#: admin/operatorperformance.php:104 +msgid "Completions" +msgstr "" + +#: performance.php:78 performance.php:85 +msgid "Completions per hour" +msgstr "" + +#: performance.php:84 admin/operatorperformance.php:80 +msgid "This project" +msgstr "" + +#: casenote.php:56 +msgid "Case Notes" +msgstr "" + +#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 +msgid "Add note" +msgstr "" + +#: casenote.php:69 admin/index_3.php:88 admin/samplelist.php:128 +#: admin/samplelist.php:180 admin/samplelist.php:217 +#: admin/questionnairelist.php:329 admin/questionnairelist.php:383 +#: admin/availability.php:109 admin/operatorlist.php:145 +#: admin/assignsample.php:141 admin/extensionstatus.php:143 respondent.php:96 +#: contactdetails.php:92 +msgid "Go back" +msgstr "" + +#: casenote.php:108 admin/supervisor.php:359 +msgid "No notes" +msgstr "" + +#: casenote.php:110 callhistory.php:83 calllist.php:84 +#: admin/supervisor.php:320 admin/supervisor.php:361 +msgid "Date/Time" +msgstr "" + +#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 +msgid "Note" +msgstr "" + +#: waitnextcase_interface2.php:54 +msgid "Get a new case" +msgstr "" + +#: waitnextcase_interface2.php:55 call_interface2.php:313 +#: call_interface2.php:315 call_interface2.php:431 call_interface2.php:436 +#: call_interface2.php:452 call_interface2.php:458 call.php:276 call.php:278 +#: call.php:394 call.php:399 call.php:415 call.php:421 +#: index_interface2.php:219 +msgid "End work" msgstr "" #: rs_intro.php:65 rs_intro_interface2.php:65 msgid "Respondent Selection - Introduction" msgstr "" +#: rs_intro.php:92 rs_intro.php:98 rs_intro.php:106 rs_intro.php:112 +#: rs_project_intro_interface2.php:79 rs_intro_interface2.php:92 +#: rs_intro_interface2.php:98 rs_intro_interface2.php:106 +#: rs_intro_interface2.php:112 rs_project_intro.php:79 +msgid "Yes - Continue" +msgstr "" + #: rs_intro.php:117 rs_intro_interface2.php:117 msgid "Business number" msgstr "" @@ -593,72 +559,354 @@ msgid "" "number: no appointment made)" msgstr "" -#: shifts.php:57 -msgid "Shift List" +#: rs_intro.php:125 rs_project_intro_interface2.php:83 +#: rs_intro_interface2.php:125 rs_project_intro.php:83 +msgid "" +"End call with outcome: Out of sample (already completed in another mode)" msgstr "" -#: shifts.php:80 -msgid "No shifts for this project" +#: record.php:55 +msgid "Stop REC" msgstr "" -#: shifts.php:82 shifts.php:103 appointmentlist.php:90 -#: admin/displayappointments.php:243 admin/addshift.php:238 -#: admin/availability.php:144 admin/shifttemplate.php:118 -#: admin/callrestrict.php:118 admin/supervisor.php:297 +#: record.php:56 record.php:79 record.php:96 +msgid "Record" +msgstr "" + +#: record.php:66 +msgid "Beginning recording..." +msgstr "" + +#: record.php:69 record.php:97 +msgid "Not on a call, so not beginning a recording" +msgstr "" + +#: record.php:73 +msgid "Begin the manual recording now..." +msgstr "" + +#: record.php:78 email.php:273 call_interface2.php:196 call_interface2.php:261 +#: call.php:206 call.php:224 index.php:168 +msgid "Start REC" +msgstr "" + +#: record.php:86 +msgid "Stopping recording..." +msgstr "" + +#: record.php:90 +msgid "Stop the manual recording now..." +msgstr "" + +#: include/php-gettext-1.0.11/examples/pigs_fallback.php:76 +#: include/php-gettext-1.0.11/examples/pigs_dropin.php:77 +msgid "" +"This is how the story goes.\n" +"\n" +msgstr "" + +#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 +msgid "Not on an appointment" +msgstr "" + +#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 +msgid "On an appointment" +msgstr "" + +#: include/limesurvey/common_functions.php:6298 +msgid "queXS: Number of call attempts" +msgstr "" + +#: include/limesurvey/common_functions.php:6299 +msgid "queXS: On appointment?" +msgstr "" + +#: include/limesurvey/common_functions.php:6300 +msgid "queXS: Percentage complete" +msgstr "" + +#: include/limesurvey/common_functions.php:6301 +msgid "queXS: Number of answering machine messages left" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:110 +#: include/limesurvey/admin/statistics.php:268 +#: include/limesurvey/admin/browse.php:791 +#: include/limesurvey/admin/vvexport.php:69 +msgid "Questionnaire and Sample selection:" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:111 +#: include/limesurvey/admin/statistics.php:269 +#: include/limesurvey/admin/browse.php:792 +#: include/limesurvey/admin/vvexport.php:70 +msgid "All queXS questionnaires and samples associated with this instrument" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:257 +msgid "Token" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:258 +#: include/limesurvey/admin/exportresults.php:643 +#: include/limesurvey/admin/exportresults.php:644 +#: include/limesurvey/admin/exportresults.php:966 callhistory.php:83 +#: admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/casesbyoutcome.php:87 admin/exten_tab.php:155 +#: admin/extensionstatus.php:200 admin/displayappointments.php:243 +msgid "Case ID" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:259 +#: include/limesurvey/admin/exportresults.php:648 +#: include/limesurvey/admin/exportresults.php:649 +#: include/limesurvey/admin/exportresults.php:969 +msgid "Case outcome" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:260 +#: include/limesurvey/admin/exportresults.php:603 +#: include/limesurvey/admin/exportresults.php:604 +#: include/limesurvey/admin/exportresults.php:972 +msgid "Number of call attempts" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:261 +#: include/limesurvey/admin/exportresults.php:608 +#: include/limesurvey/admin/exportresults.php:609 +#: include/limesurvey/admin/exportresults.php:975 +msgid "Number of answering machine messages left" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:262 +#: include/limesurvey/admin/exportresults.php:613 +#: include/limesurvey/admin/exportresults.php:614 +#: include/limesurvey/admin/exportresults.php:978 admin/supervisor.php:356 +msgid "Case notes" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:263 +#: include/limesurvey/admin/exportresults.php:618 +#: include/limesurvey/admin/exportresults.php:619 +#: include/limesurvey/admin/exportresults.php:981 +msgid "Total interview time over all calls (mins)" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:264 +#: include/limesurvey/admin/exportresults.php:623 +#: include/limesurvey/admin/exportresults.php:624 +#: include/limesurvey/admin/exportresults.php:984 +msgid "Interview time for last call (mins)" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:265 +#: include/limesurvey/admin/exportresults.php:628 +#: include/limesurvey/admin/exportresults.php:629 +#: include/limesurvey/admin/exportresults.php:987 +msgid "Last number dialled" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:266 +#: include/limesurvey/admin/exportresults.php:633 +#: include/limesurvey/admin/exportresults.php:634 +#: include/limesurvey/admin/exportresults.php:990 +msgid "Operator username for last call" +msgstr "" + +#: include/limesurvey/admin/exportresults.php:267 +#: include/limesurvey/admin/exportresults.php:638 +#: include/limesurvey/admin/exportresults.php:639 +#: include/limesurvey/admin/exportresults.php:993 admin/outcomes.php:297 +msgid "Shift report" +msgstr "" + +#: include/limesurvey/qanda.php:1701 include/limesurvey/qanda.php:1921 +msgid "Schedule Appointment" +msgstr "" + +#: voip/downloadvoipclient.php:52 +msgid "Error: Cannot write to temporary directory" +msgstr "" + +#: status_interface2.php:225 status_interface2.php:228 +msgid "No more numbers to call" +msgstr "" + +#: appointmentlist.php:56 +msgid "Appointment List" +msgstr "" + +#: appointmentlist.php:83 +msgid "No appointments made" +msgstr "" + +#: appointmentlist.php:85 +msgid "No future appointments scheduled" +msgstr "" + +#: appointmentlist.php:90 admin/callrestrict.php:118 admin/addshift.php:238 +#: admin/availability.php:144 admin/supervisor.php:297 +#: admin/shifttemplate.php:118 admin/displayappointments.php:243 shifts.php:82 +#: shifts.php:103 msgid "Start" msgstr "" -#: shifts.php:101 -msgid "No future shifts scheduled" +#: appointmentlist.php:90 admin/callrestrict.php:118 admin/addshift.php:238 +#: admin/availability.php:144 admin/supervisor.php:297 +#: admin/shifttemplate.php:118 admin/displayappointments.php:243 index.php:162 +#: shifts.php:82 shifts.php:103 +msgid "End" msgstr "" -#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96 -#: admin/callhistory.php:111 admin/displayappointments.php:243 -#: admin/assignsample.php:138 admin/casestatus.php:207 -#: admin/questionnairelist.php:396 admin/supervisor.php:297 -msgid "Questionnaire" +#: appointmentlist.php:90 callhistory.php:83 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/displayappointments.php:179 +msgid "Respondent" msgstr "" -#: rs_project_end_interface2.php:62 rs_project_end.php:71 -msgid "Respondent Selection - Project end" +#: appointmentlist.php:90 admin/displayappointments.php:195 +#: admin/displayappointments.php:243 +msgid "Appointment with" +msgstr "" + +#: appointmentlist.php:90 client/index.php:91 client/index.php:110 +#: callhistory.php:83 calllist.php:84 admin/outcomes.php:155 +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +#: admin/callhistory.php:96 admin/callhistory.php:111 admin/supervisor.php:320 +#: admin/casestatus.php:112 index_interface2.php:215 +msgid "Outcome" msgstr "" #: rs_project_end_interface2.php:80 msgid "Call automatically ended with outcome: Complete - End case" msgstr "" -#: rs_project_end_interface2.php:85 rs_project_end.php:93 -msgid "End call with outcome: Complete" +#: client/index.php:59 admin/outcomes.php:77 +msgid "Questionnaire Outcomes" msgstr "" -#: contactdetails.php:90 contactdetails.php:128 respondent.php:94 -#: respondent.php:132 functions/functions.calendar.php:215 -msgid "Add respondent" +#: client/index.php:72 +msgid "There are no questionnaires assigned to you" msgstr "" -#: contactdetails.php:92 respondent.php:96 casenote.php:69 -#: admin/assignsample.php:141 admin/samplelist.php:128 -#: admin/samplelist.php:180 admin/samplelist.php:217 -#: admin/extensionstatus.php:143 admin/availability.php:109 -#: admin/operatorlist.php:145 admin/questionnairelist.php:328 -#: admin/questionnairelist.php:382 -msgid "Go back" +#: client/index.php:91 admin/outcomes.php:155 +msgid "Rate" msgstr "" -#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152 -msgid "Case id:" +#: client/index.php:92 admin/outcomes.php:156 +msgid "Response Rate 1" msgstr "" -#: contactdetails.php:99 respondent.php:103 -msgid "Respondent:" +#: client/index.php:93 admin/outcomes.php:157 +msgid "Refusal Rate 1" msgstr "" -#: contactdetails.php:163 respondent.php:171 -msgid "Var" +#: client/index.php:94 admin/outcomes.php:158 +msgid "Cooperation Rate 1" msgstr "" -#: contactdetails.php:163 respondent.php:171 -msgid "Value" +#: client/index.php:95 admin/outcomes.php:159 +msgid "Contact Rate 1" +msgstr "" + +#: client/index.php:110 admin/outcomes.php:174 admin/outcomes.php:208 +#: admin/outcomes.php:261 +msgid "Count" +msgstr "" + +#: client/index.php:113 admin/outcomes.php:269 +msgid "No outcomes recorded for this questionnaire" +msgstr "" + +#: client/index.php:123 +msgid "You are not a valid client" +msgstr "" + +#: rs_project_intro_interface2.php:59 rs_project_intro.php:59 +msgid "Respondent Selection - Project Introduction" +msgstr "" + +#: rs_project_intro_interface2.php:82 rs_project_intro.php:82 +msgid "" +"End call with outcome: No eligible respondent (person not available on this " +"number)" +msgstr "" + +#: supervisorchat.php:56 admin/index_3.php:436 admin/supervisorchat.php:61 +#: admin/index.php:106 index.php:301 +msgid "Supervisor chat" +msgstr "" + +#: supervisorchat.php:87 +msgid "Supervisor is available" +msgstr "" + +#: supervisorchat.php:88 +msgid "Supervisor not available" +msgstr "" + +#: supervisorchat.php:90 supervisorchat.php:93 +msgid "Message" +msgstr "" + +#: supervisorchat.php:90 +msgid "Send" +msgstr "" + +#: supervisorchat.php:93 +msgid "From" +msgstr "" + +#: supervisorchat.php:96 +msgid "Supervisor chat is not enabled" +msgstr "" + +#: email.php:278 email.php:282 email.php:288 email.php:309 email.php:339 +#: index.php:166 index_interface2.php:217 +msgid "Email" +msgstr "" + +#: email.php:295 +msgid "The email did not send" +msgstr "" + +#: email.php:300 +msgid "The email address is not valid" +msgstr "" + +#: email.php:329 +msgid "Email respondent for self completion" +msgstr "" + +#: email.php:337 admin/operatorlist.php:165 +msgid "First name" +msgstr "" + +#: email.php:338 admin/operatorlist.php:166 +msgid "Last name" +msgstr "" + +#: email.php:342 +msgid "Send invitation" +msgstr "" + +#: email.php:344 +msgid "Send invitation and Hang up" +msgstr "" + +#: email.php:348 +msgid "Self completion email not available for this questionnaire" +msgstr "" + +#: callhistory.php:56 +msgid "Case History List" +msgstr "" + +#: callhistory.php:79 admin/callhistory.php:81 +msgid "No calls ever made" +msgstr "" + +#: availability.php:56 index.php:231 +msgid "Availability" msgstr "" #: availability.php:123 admin/supervisor.php:417 @@ -670,12 +918,16 @@ msgstr "" msgid "Availability groups not defined for this questionnaire" msgstr "" -#: respondent.php:70 -msgid "Respondent Selector" +#: calllist.php:56 +msgid "Call List" msgstr "" -#: respondent.php:167 -msgid "Show details" +#: calllist.php:80 admin/supervisor.php:316 +msgid "No calls made" +msgstr "" + +#: calllist.php:84 +msgid "Number called" msgstr "" #: nocaseavailable.php:63 @@ -690,14 +942,6 @@ msgstr "" msgid "Reasons:" msgstr "" -#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172 -msgid "Enabled" -msgstr "" - -#: nocaseavailable.php:80 -msgid "Disabled" -msgstr "" - #: nocaseavailable.php:88 msgid "Assigned questionnaires:" msgstr "" @@ -706,11 +950,15 @@ msgstr "" msgid "ID" msgstr "" -#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207 -#: admin/samplelist.php:132 admin/quotarow.php:294 +#: nocaseavailable.php:91 nocaseavailable.php:113 admin/samplelist.php:132 +#: admin/quota.php:207 admin/quotarow.php:294 msgid "Description" msgstr "" +#: nocaseavailable.php:91 admin/operatorlist.php:172 +msgid "Enabled" +msgstr "" + #: nocaseavailable.php:94 msgid "ERROR: No questionnaires assigned to you" msgstr "" @@ -719,10 +967,10 @@ msgstr "" msgid "Assigned samples:" msgstr "" -#: nocaseavailable.php:113 admin/quotareport.php:284 -#: admin/assignsample.php:139 admin/assignsample.php:203 -#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279 -#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274 +#: nocaseavailable.php:113 admin/samplelist.php:279 admin/quotareport.php:284 +#: admin/outcomes.php:135 admin/outcomes.php:224 admin/assignsample.php:139 +#: admin/assignsample.php:203 admin/supervisor.php:274 +#: admin/casestatus.php:112 admin/casestatus.php:210 msgid "Sample" msgstr "" @@ -734,6 +982,14 @@ msgstr "" msgid "Current shifts available:" msgstr "" +#: nocaseavailable.php:138 admin/index_3.php:309 +#: admin/questionnairelist.php:397 admin/callhistory.php:96 +#: admin/callhistory.php:111 admin/assignsample.php:138 +#: admin/supervisor.php:297 admin/casestatus.php:208 +#: admin/displayappointments.php:243 shifts.php:103 +msgid "Questionnaire" +msgstr "" + #: nocaseavailable.php:138 msgid "Shift start" msgstr "" @@ -790,292 +1046,481 @@ msgstr "" msgid "POSSIBLE ERROR: Row quota reached for this question" msgstr "" -#: casenote.php:56 -msgid "Case Notes" +#: admin/timezonetemplate.php:92 +msgid "Add/Remove Timezones" msgstr "" -#: casenote.php:66 casenote.php:105 admin/supervisor.php:368 -msgid "Add note" +#: admin/timezonetemplate.php:104 admin/callrestrict.php:93 +#: admin/addshift.php:151 admin/availability.php:106 +#: admin/shifttemplate.php:93 +msgid "" +"Your database does not have timezones installed, please see here for details" msgstr "" -#: casenote.php:108 admin/supervisor.php:359 -msgid "No notes" +#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 +msgid "Set default timezone" msgstr "" -#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361 -msgid "Note" +#: admin/timezonetemplate.php:110 +msgid "Default Timezone: " msgstr "" -#: performance.php:77 admin/operatorperformance.php:103 -msgid "This shift" +#: admin/timezonetemplate.php:115 +msgid "Click to remove a Timezone from the default list" msgstr "" -#: performance.php:78 performance.php:85 admin/quotareport.php:284 -#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 -#: admin/outcomes.php:297 -msgid "Completions" +#: admin/timezonetemplate.php:127 +msgid "Add a Timezone:" msgstr "" -#: performance.php:78 performance.php:85 -msgid "Completions per hour" +#: admin/timezonetemplate.php:130 +msgid "Timezone: " msgstr "" -#: performance.php:84 admin/operatorperformance.php:80 -msgid "This project" +#: admin/timezonetemplate.php:131 +msgid "Add Timezone" msgstr "" -#: status.php:95 -msgid "VoIP On" +#: admin/questionnairecatimeslots.php:93 admin/index.php:75 +msgid "Assign call attempt time slots to questionnaire" msgstr "" -#: status.php:97 -msgid "VoIP Off" +#: admin/questionnairecatimeslots.php:95 +#: admin/questionnairecatimeslotssample.php:99 +msgid "" +"Assigning call attempt time slots to questionnaires will only allow cases to " +"be attempted in a time slot for the n + 1th time where it has been attempted " +"at least n times in all assigned timeslots. Please note timeslots must cover " +"all possible time periods otherwise no cases will be available during " +"missing timeslots." msgstr "" -#: status.php:102 -msgid "No VoIP" +#: admin/questionnairecatimeslots.php:97 admin/quotareport.php:111 +#: admin/questionnaireprefill.php:100 admin/outcomes.php:80 +#: admin/questionnairecatimeslotssample.php:101 admin/addshift.php:168 +#: admin/questionnaireavailability.php:97 admin/quota.php:110 +#: admin/assignsample.php:180 admin/quotarow.php:127 +msgid "Select a questionnaire from the list below" msgstr "" -#: status.php:106 -msgid "No call" +#: admin/questionnairecatimeslots.php:113 +msgid "There are no call attempt time slots selected for this questionnaire" msgstr "" -#: status.php:110 -msgid "To be coded" +#: admin/questionnairecatimeslots.php:117 +msgid "Call attempt time slots selected for this questionnaire" msgstr "" -#: status.php:114 -msgid "Requesting" +#: admin/questionnairecatimeslots.php:120 +#: admin/questionnairecatimeslotssample.php:133 +#: admin/questionnaireavailability.php:120 +msgid "Click to unassign" msgstr "" -#: status.php:130 -msgid "APPT" +#: admin/questionnairecatimeslots.php:135 +msgid "Add a call attempt time slot to this questionnaire:" msgstr "" -#: status.php:131 -msgid "MISSED" +#: admin/questionnairecatimeslots.php:138 +#: admin/questionnairecatimeslotssample.php:151 +msgid "Select call attempt time slot:" msgstr "" -#: rs_project_end.php:88 -msgid "Call automatically ended with outcome: Complete" +#: admin/index_3.php:27 admin/index.php:46 +msgid "Administrative Tools" msgstr "" -#: nocallavailable.php:80 -msgid "No call available" +#: admin/index_3.php:72 +msgid "MENU toggle" msgstr "" -#: nocallavailable.php:83 -msgid "Please click on:" +#: admin/index_3.php:82 +msgid "Home" msgstr "" -#: nocallavailable.php:83 -msgid "to display call script" +#: admin/index_3.php:92 +msgid "Current page" msgstr "" -#: nocallavailable.php:177 -msgid "Will dial in" +#: admin/index_3.php:308 +msgid "Dashboard" msgstr "" -#: nocallavailable.php:178 -msgid "Dialling now" +#: admin/index_3.php:311 admin/index.php:51 admin/new.php:153 +msgid "Create an instrument in Limesurvey" msgstr "" -#: nocallavailable.php:184 -msgid "Will end case in" +#: admin/index_3.php:312 admin/index.php:52 +msgid "Create a new questionnaire" msgstr "" -#: nocallavailable.php:185 -msgid "Ending case now" +#: admin/index_3.php:313 admin/index.php:53 +msgid "Questionnaire management" msgstr "" -#: nocallavailable.php:203 admin/systemsortprocess.php:194 -#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323 -#: admin/systemsortprocess.php:325 +#: admin/index_3.php:314 admin/index.php:54 +msgid "Administer instruments with Limesurvey" +msgstr "" + +#: admin/index_3.php:317 +msgid "Sample Lists" +msgstr "" + +#: admin/index_3.php:319 admin/index.php:57 +msgid "Import a sample file (in CSV form)" +msgstr "" + +#: admin/index_3.php:320 admin/index.php:58 +msgid "Sample management" +msgstr "" + +#: admin/index_3.php:321 admin/index.php:59 +msgid "Assign samples to questionnaires" +msgstr "" + +#: admin/index_3.php:322 admin/index.php:60 +msgid "Set values in questionnaire to pre fill" +msgstr "" + +#: admin/index_3.php:325 +msgid "Quotas" +msgstr "" + +#: admin/index_3.php:327 admin/index.php:62 admin/index.php:63 +#: admin/quota.php:109 +msgid "Quota management" +msgstr "" + +#: admin/index_3.php:328 admin/index.php:64 admin/quotarow.php:126 +msgid "Quota row management" +msgstr "" + +#: admin/index_3.php:331 +msgid "Operators" +msgstr "" + +#: admin/index_3.php:334 admin/index.php:67 +msgid "Add operators to the system" +msgstr "" + +#: admin/index_3.php:337 admin/index_3.php:456 admin/index.php:66 +#: admin/index.php:68 admin/index.php:113 +msgid "Operator management" +msgstr "" + +#: admin/index_3.php:340 admin/index_3.php:459 admin/index.php:114 +msgid "Extension status" +msgstr "" + +#: admin/index_3.php:343 admin/index.php:69 +#: admin/operatorquestionnaire.php:155 admin/operatorquestionnaire.php:276 +msgid "Assign operators to questionnaires" +msgstr "" + +#: admin/index_3.php:346 admin/index.php:70 admin/operatorskill.php:272 +msgid "Modify operator skills" +msgstr "" + +#: admin/index_3.php:350 admin/index.php:72 +msgid "Availability and shift management" +msgstr "" + +#: admin/index_3.php:353 +msgid "Manage availablity groups" +msgstr "" + +#: admin/index_3.php:356 admin/index.php:74 +msgid "Assign availabilities to questionnaires" +msgstr "" + +#: admin/index_3.php:359 admin/index.php:77 +msgid "Shift management (add/remove)" +msgstr "" + +#: admin/index_3.php:363 admin/index.php:79 +msgid "Questionnaire progress" +msgstr "" + +#: admin/index_3.php:366 admin/index.php:80 +msgid "Display all future appointments" +msgstr "" + +#: admin/index_3.php:369 admin/index.php:81 +msgid "Sample call attempts report" +msgstr "" + +#: admin/index_3.php:372 admin/quotareport.php:109 admin/index.php:82 +msgid "Quota report" +msgstr "" + +#: admin/index_3.php:375 admin/index.php:83 +msgid "Questionnaire outcomes" +msgstr "" + +#: admin/index_3.php:378 admin/index.php:84 admin/dataoutput.php:186 +msgid "Data output" +msgstr "" + +#: admin/index_3.php:385 admin/outcomes.php:297 admin/index.php:87 +msgid "Operator performance" +msgstr "" + +#: admin/index_3.php:389 admin/index.php:89 +msgid "Client management" +msgstr "" + +#: admin/index_3.php:392 admin/index.php:90 +msgid "Add clients to the system" +msgstr "" + +#: admin/index_3.php:395 admin/clientquestionnaire.php:150 +#: admin/clientquestionnaire.php:271 admin/index.php:91 +msgid "Assign clients to questionnaires" +msgstr "" + +#: admin/index_3.php:399 admin/index.php:93 admin/supervisor.php:131 +msgid "Supervisor functions" +msgstr "" + +#: admin/index_3.php:402 admin/index.php:94 +msgid "Assign outcomes to cases" +msgstr "" + +#: admin/index_3.php:405 admin/index.php:95 +msgid "Search the sample" +msgstr "" + +#: admin/index_3.php:408 admin/index.php:96 index.php:250 +#: index_interface2.php:339 +msgid "Call history" +msgstr "" + +#: admin/index_3.php:411 admin/index.php:97 admin/shiftreport.php:61 +msgid "Shift reports" +msgstr "" + +#: admin/index_3.php:414 admin/index.php:98 admin/casestatus.php:198 +msgid "Case status and assignment" +msgstr "" + +#: admin/index_3.php:417 admin/bulkappointment.php:250 admin/index.php:99 +msgid "Bulk appointment generator" +msgstr "" + +#: admin/index_3.php:421 admin/index.php:101 +msgid "System settings" +msgstr "" + +#: admin/index_3.php:424 admin/index.php:102 +msgid "Set default timezone list" +msgstr "" + +#: admin/index_3.php:427 admin/index.php:103 +msgid "Set default shift times" +msgstr "" + +#: admin/index_3.php:430 admin/index.php:104 +msgid "Set call restriction times" +msgstr "" + +#: admin/index_3.php:433 admin/centreinfo.php:63 admin/index.php:105 +msgid "Set centre information" +msgstr "" + +#: admin/index_3.php:439 admin/index.php:107 +msgid "Start and monitor system wide case sorting" +msgstr "" + +#: admin/index_3.php:450 admin/index.php:111 +msgid "VoIP" +msgstr "" + +#: admin/index_3.php:453 admin/index.php:112 +msgid "Start and monitor VoIP" +msgstr "" + +#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 +#: admin/samplelist.php:279 +msgid "Rename" +msgstr "" + +#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:279 +msgid "Operator viewing permissions" +msgstr "" + +#: admin/samplelist.php:182 +msgid "" +"Select which fields from this sample should be able to be viewed by operators" +msgstr "" + +#: admin/samplelist.php:187 admin/samplelist.php:224 +msgid "Field" +msgstr "" + +#: admin/samplelist.php:187 admin/samplelist.php:224 +msgid "Example data" +msgstr "" + +#: admin/samplelist.php:190 +msgid "Save changes" +msgstr "" + +#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 +#: admin/samplelist.php:279 admin/supervisor.php:462 admin/supervisor.php:468 +msgid "Deidentify" +msgstr "" + +#: admin/samplelist.php:219 +msgid "" +"Select which fields from this sample to deidentify. Deidentified fields will " +"be permanently deleted from the sample." +msgstr "" + +#: admin/samplelist.php:227 +msgid "Delete selected fields" +msgstr "" + +#: admin/samplelist.php:276 +msgid "Sample list" +msgstr "" + +#: admin/samplelist.php:279 admin/questionnairelist.php:397 +#: admin/operatorlist.php:293 +msgid "Enable/Disable" +msgstr "" + +#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 +msgid "Monitor VoIP Process" +msgstr "" + +#: admin/voipmonitor.php:75 admin/systemsort.php:77 +msgid "Running process:" +msgstr "" + +#: admin/voipmonitor.php:79 +msgid "" +"Kill signal sent: Please wait... (Note: Process will be stalled until there " +"is activity on the VoIP Server)" +msgstr "" + +#: admin/voipmonitor.php:80 admin/systemsort.php:82 +msgid "" +"Process is already closed (eg. server was rebooted) - click here to confirm" +msgstr "" + +#: admin/voipmonitor.php:84 admin/systemsort.php:86 +msgid "Kill the running process" +msgstr "" + +#: admin/voipmonitor.php:84 +msgid "(requires activity on the VoIP Server to take effect)" +msgstr "" + +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 admin/systemsort.php:92 +#: admin/systemsort.php:106 +msgid "Log id" +msgstr "" + +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 admin/systemsort.php:92 +#: admin/systemsort.php:106 admin/shiftreport.php:104 +msgid "Date" +msgstr "" + +#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 admin/systemsort.php:92 +#: admin/systemsort.php:106 +msgid "Log entry" +msgstr "" + +#: admin/voipmonitor.php:97 +msgid "Click here to begin monitoring the VoIP Process" +msgstr "" + +#: admin/voipmonitor.php:98 admin/systemsort.php:102 +msgid "Outcome of last process run (if any)" +msgstr "" + +#: admin/systemsortprocess.php:93 +msgid "Sorting cases process starting" +msgstr "" + +#: admin/systemsortprocess.php:106 +msgid "Checking for cases open for more than 24 hours" +msgstr "" + +#: admin/systemsortprocess.php:147 admin/systemsortprocess.php:185 +msgid "System automatically closed case as not closed for more than 24 hours" +msgstr "" + +#: admin/systemsortprocess.php:194 +msgid "Completed case closing" +msgstr "" + +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:325 admin/systemsortprocess.php:327 +msgid "This task took" +msgstr "" + +#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 +#: admin/systemsortprocess.php:325 admin/systemsortprocess.php:327 msgid "seconds" msgstr "" -#: nocallavailable.php:216 -msgid "" -"Your VoIP extension is not active. Please activate VoIP by clicking once on " -"the red button that says 'VoIP Off'" +#: admin/systemsortprocess.php:196 +msgid "Failed to complete case closing" msgstr "" -#: nocallavailable.php:222 -msgid "Auto dialling unavailable as VoIP is not enabled" +#: admin/systemsortprocess.php:211 +msgid "Sorting cases for " msgstr "" -#: nocallavailable.php:228 -msgid "Auto dialling unavailable as you are already on a call" +#: admin/systemsortprocess.php:325 +msgid "Completed sort" msgstr "" -#: referral.php:167 -msgid "Generated referral to case id" +#: admin/systemsortprocess.php:327 +msgid "Failed to complete sort" msgstr "" -#: referral.php:173 -msgid "Generated as referral from case id" +#: admin/login.php:11 +msgid "Login to " msgstr "" -#: referral.php:179 -msgid "Created referral case - you may now close this window" +#: admin/login.php:31 admin/login.php:61 +msgid "LOG IN" msgstr "" -#: referral.php:183 -msgid "Failed to create referral case - please check your input and try again" +#: admin/login.php:31 +msgid "to continue..." msgstr "" -#: referral.php:189 -msgid "You must supply a primary phone number" +#: admin/login.php:39 +msgid "Your Photo " msgstr "" -#: referral.php:209 referral.php:243 -msgid "Create referral" +#: admin/login.php:49 admin/operatorlist.php:158 admin/operatorlist.php:293 +msgid "Username" msgstr "" -#: referral.php:241 -msgid "Call this new referral immediately after this case?" +#: admin/login.php:57 +msgid "Password" msgstr "" -#: referral.php:248 -msgid "Referrals not available for this questionnaire" +#: admin/login.php:69 +msgid "Don't have an account?" msgstr "" -#: rs_quota_end.php:61 -msgid "Respondent Selection - Project Quota End" -msgstr "" - -#: rs_quota_end.php:72 rs_quota_end.php:78 -msgid "End call with outcome: Quota filled" -msgstr "" - -#: email.php:241 -msgid "Self completion invitation sent via email to" -msgstr "" - -#: email.php:295 -msgid "The email did not send" -msgstr "" - -#: email.php:300 -msgid "The email address is not valid" -msgstr "" - -#: email.php:329 -msgid "Email respondent for self completion" -msgstr "" - -#: email.php:337 admin/operatorlist.php:165 -msgid "First name" -msgstr "" - -#: email.php:338 admin/operatorlist.php:166 -msgid "Last name" -msgstr "" - -#: email.php:342 -msgid "Send invitation" -msgstr "" - -#: email.php:344 -msgid "Send invitation and Hang up" -msgstr "" - -#: email.php:348 -msgid "Self completion email not available for this questionnaire" -msgstr "" - -#: appointmentlist.php:56 -msgid "Appointment List" -msgstr "" - -#: appointmentlist.php:70 admin/displayappointments.php:229 -#: admin/supervisor.php:284 -msgid "Not yet called" -msgstr "" - -#: appointmentlist.php:70 admin/displayappointments.php:209 -#: admin/displayappointments.php:229 -msgid "Any operator" -msgstr "" - -#: appointmentlist.php:83 -msgid "No appointments made" -msgstr "" - -#: appointmentlist.php:85 -msgid "No future appointments scheduled" -msgstr "" - -#: appointmentlist.php:90 admin/displayappointments.php:195 -#: admin/displayappointments.php:243 -msgid "Appointment with" -msgstr "" - -#: supervisor.php:61 -msgid "Please wait till you have ended this call to call the supervisor" -msgstr "" - -#: supervisor.php:105 -msgid "You may now close this window" -msgstr "" - -#: supervisor.php:110 -msgid "Calling the supervisor, you may close this window" -msgstr "" - -#: supervisor.php:115 -msgid "Click here to call the supervisor's phone. Otherwise close this window" -msgstr "" - -#: supervisor.php:116 -msgid "Hangup when calling the supervisor" -msgstr "" - -#: supervisor.php:121 -msgid "Try calling the supervisor" -msgstr "" - -#: supervisor.php:128 -msgid "" -"Please wait for this call to answer before attempting to call the supervisor" +#: admin/login.php:69 +msgid "Register Here " msgstr "" #: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" -#: admin/systemsort.php:77 admin/voipmonitor.php:75 -msgid "Running process:" -msgstr "" - #: admin/systemsort.php:81 msgid "Kill signal sent: Please wait..." msgstr "" -#: admin/systemsort.php:82 admin/voipmonitor.php:80 -msgid "" -"Process is already closed (eg. server was rebooted) - click here to confirm" -msgstr "" - -#: admin/systemsort.php:86 admin/voipmonitor.php:84 -msgid "Kill the running process" -msgstr "" - -#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 -#: admin/voipmonitor.php:102 -msgid "Log id" -msgstr "" - -#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104 -#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 -msgid "Date" -msgstr "" - -#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90 -#: admin/voipmonitor.php:102 -msgid "Log entry" -msgstr "" - #: admin/systemsort.php:100 msgid "Click here to enable and begin system wide case sorting" msgstr "" @@ -1090,44 +1535,104 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/systemsort.php:102 admin/voipmonitor.php:98 -msgid "Outcome of last process run (if any)" +#: admin/operators.php:147 +msgid "Added:" msgstr "" -#: admin/callhistory.php:80 admin/callhistory.php:109 -#: admin/callhistory.php:117 -msgid "Call History List" +#: admin/operators.php:150 +msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgstr "" -#: admin/callhistory.php:96 admin/callhistory.php:111 -msgid "Date/Time call start" +#: admin/operators.php:174 +msgid "Could not add operator. There may already be an operator of this name:" msgstr "" -#: admin/callhistory.php:96 admin/callhistory.php:111 -msgid "Time end" +#: admin/operators.php:182 admin/operators.php:203 +msgid "Add an operator" msgstr "" -#: admin/callhistory.php:110 -msgid "Download Call History List" +#: admin/operators.php:204 +msgid "Adding an operator here will give the user the ability to call cases" msgstr "" -#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 -#: admin/index.php:90 -msgid "Assign clients to questionnaires" +#: admin/operators.php:204 +msgid "Assign Operator to Questionnaire" msgstr "" -#: admin/quotareport.php:109 admin/index.php:81 -msgid "Quota report" +#: admin/operators.php:204 +msgid "tool" msgstr "" -#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180 -#: admin/questionnaireavailability.php:97 admin/outcomes.php:80 -#: admin/questionnaireprefill.php:100 admin/addshift.php:168 -#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127 -msgid "Select a questionnaire from the list below" +#: admin/operators.php:205 admin/clients.php:106 +msgid "" +"Use this form to enter the username of a user based on your directory " +"security system. For example, if you have secured the base directory of " +"queXS using Apache file based security, enter the usernames of the users " +"here." msgstr "" -#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84 +#: admin/operators.php:206 +msgid "The username and extension must be unique for each operator." +msgstr "" + +#: admin/operators.php:208 +msgid "Enter the username of an operator to add:" +msgstr "" + +#: admin/operators.php:210 +msgid "Enter the password of an operator to add:" +msgstr "" + +#: admin/operators.php:212 +msgid "Enter the first name of an operator to add:" +msgstr "" + +#: admin/operators.php:213 +msgid "Enter the surname of an operator to add:" +msgstr "" + +#: admin/operators.php:214 +msgid "Enter the Time Zone of an operator to add:" +msgstr "" + +#: admin/operators.php:216 +msgid "Select an extension for this operator:" +msgstr "" + +#: admin/operators.php:218 +msgid "Will this operator be using VoIP?" +msgstr "" + +#: admin/operators.php:219 admin/operatorlist.php:168 +msgid "Jabber/XMPP chat user" +msgstr "" + +#: admin/operators.php:220 admin/operatorlist.php:169 +msgid "Jabber/XMPP chat password" +msgstr "" + +#: admin/operators.php:221 +msgid "Will this operator be using chat?" +msgstr "" + +#: admin/operators.php:222 +msgid "Is the operator a normal interviewer?" +msgstr "" + +#: admin/operators.php:223 +msgid "Is the operator a supervisor?" +msgstr "" + +#: admin/operators.php:224 +msgid "Is the operator a refusal converter?" +msgstr "" + +#: admin/operators.php:225 admin/clients.php:115 +msgid "Add user" +msgstr "" + +#: admin/quotareport.php:118 admin/samplesearch.php:84 +#: admin/questionnairecatimeslotssample.php:107 admin/quota.php:123 #: admin/quotarow.php:140 msgid "Select a sample from the list below" msgstr "" @@ -1172,8 +1677,648 @@ msgstr "" msgid "Auto prioritise" msgstr "" -#: admin/quotareport.php:285 -msgid "Update priorities" +#: admin/questionnaireprefill.php:99 +msgid "Pre fill questionnaire: Set values for questionnaire to prefill" +msgstr "" + +#: admin/questionnaireprefill.php:110 +msgid "Current pre fills (click to delete)" +msgstr "" + +#: admin/questionnaireprefill.php:120 +msgid "Currently no pre fills" +msgstr "" + +#: admin/questionnaireprefill.php:132 +msgid "Select a question to pre fill" +msgstr "" + +#: admin/questionnaireprefill.php:164 +msgid "Enter a value to pre fill this question with:" +msgstr "" + +#: admin/questionnaireprefill.php:166 +msgid "Possible uses:" +msgstr "" + +#: admin/questionnaireprefill.php:168 +msgid "{Respondent:firstName} First name of the respondent" +msgstr "" + +#: admin/questionnaireprefill.php:169 +msgid "{Respondent:lastName} Last name of the respondent" +msgstr "" + +#: admin/questionnaireprefill.php:170 +msgid "{Sample:var} A record from the sample where the column name is 'var'" +msgstr "" + +#: admin/questionnaireprefill.php:183 +msgid "The value to pre fill" +msgstr "" + +#: admin/questionnaireprefill.php:184 +msgid "or: Select pre fill from sample list" +msgstr "" + +#: admin/questionnaireprefill.php:190 +msgid "Add pre fill" +msgstr "" + +#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 +msgid "Time slots" +msgstr "" + +#: admin/availabilitygroup.php:114 +msgid "" +"Time slots define periods of time during particular days of the week. These " +"are used for the availability function and also the call attempt time slot " +"function." +msgstr "" + +#: admin/availabilitygroup.php:117 +msgid "No time slots" +msgstr "" + +#: admin/availabilitygroup.php:119 admin/supervisor.php:342 +msgid "Time slot" +msgstr "" + +#: admin/availabilitygroup.php:119 admin/questionnairelist.php:397 +msgid "Modify" +msgstr "" + +#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 +msgid "Add time slot" +msgstr "" + +#: admin/availabilitygroup.php:126 +msgid "Time slot name" +msgstr "" + +#: admin/outcomes.php:86 admin/outcomes.php:244 +msgid "Outcomes" +msgstr "" + +#: admin/outcomes.php:88 admin/outcomes.php:231 +msgid "Sample status" +msgstr "" + +#: admin/outcomes.php:97 admin/outcomes.php:241 +msgid "Number" +msgstr "" + +#: admin/outcomes.php:99 +msgid "Case availability (cases with temporary or appointment outcomes)" +msgstr "" + +#: admin/outcomes.php:131 +msgid "No cases currently available to call" +msgstr "" + +#: admin/outcomes.php:135 +msgid "Cases currently available to call" +msgstr "" + +#: admin/outcomes.php:142 +msgid "Average time on a completed questionnaire" +msgstr "" + +#: admin/outcomes.php:142 +msgid "Min" +msgstr "" + +#: admin/outcomes.php:142 +msgid "Secs" +msgstr "" + +#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 +msgid "%" +msgstr "" + +#: admin/outcomes.php:193 +msgid "Operator call outcomes" +msgstr "" + +#: admin/outcomes.php:264 +msgid "No outcomes recorded for this sample" +msgstr "" + +#: admin/outcomes.php:273 index.php:259 index_interface2.php:348 +msgid "Shifts" +msgstr "" + +#: admin/outcomes.php:295 +msgid "No shifts defined for this questionnaire" +msgstr "" + +#: admin/outcomes.php:297 +msgid "Shift" +msgstr "" + +#: admin/samplesearch.php:83 +msgid "Search sample" +msgstr "" + +#: admin/samplesearch.php:110 +msgid "No records in this sample match this search criteria" +msgstr "" + +#: admin/samplesearch.php:121 +msgid "Sample id" +msgstr "" + +#: admin/samplesearch.php:130 +msgid "Link" +msgstr "" + +#: admin/samplesearch.php:149 +msgid "Search within this sample" +msgstr "" + +#: admin/samplesearch.php:151 +#, php-format +msgid "Use the % character as a wildcard" +msgstr "" + +#: admin/samplesearch.php:156 +msgid "Search for:" +msgstr "" + +#: admin/samplesearch.php:158 +msgid "Start search" +msgstr "" + +#: admin/bulkappointment.php:199 +msgid "Added appointment" +msgstr "" + +#: admin/bulkappointment.php:203 +msgid "" +"No such case id, or case set to a final outcome, or case currently assigned " +"to an operator" +msgstr "" + +#: admin/bulkappointment.php:209 +msgid "Result" +msgstr "" + +#: admin/bulkappointment.php:229 +msgid "" +"Please check the case id's, appointment start and end times and notes are " +"correct before accepting below" +msgstr "" + +#: admin/bulkappointment.php:230 admin/displayappointments.php:193 +msgid "Start time" +msgstr "" + +#: admin/bulkappointment.php:230 admin/displayappointments.php:194 +msgid "End time" +msgstr "" + +#: admin/bulkappointment.php:235 +msgid "Accept and generate bulk appointments" +msgstr "" + +#: admin/bulkappointment.php:240 +msgid "" +"The file does not contain at least caseid, starttime and endtime columns. " +"Please try again." +msgstr "" + +#: admin/bulkappointment.php:248 admin/import.php:112 +msgid "Import: Select file to upload" +msgstr "" + +#: admin/bulkappointment.php:251 +msgid "" +"Provide a headered CSV file containing at least 3 columns - caseid, " +"starttime and endtime. Optionally you can include a note column to attach a " +"note to the case in addition to setting an appointment. Only cases that have " +"temporary (non final) outcomes will have appointments generated, and the " +"outcome of the case will be updated to an appointment outcome." +msgstr "" + +#: admin/bulkappointment.php:252 +msgid "Example CSV file:" +msgstr "" + +#: admin/bulkappointment.php:261 +msgid "Choose the CSV file to upload:" +msgstr "" + +#: admin/bulkappointment.php:262 +msgid "Load bulk appointment CSV" +msgstr "" + +#: admin/callrestrict.php:82 +msgid "Modify call restriction times" +msgstr "" + +#: admin/callrestrict.php:96 admin/availability.php:122 +msgid "" +"Enter the start and end times for each day of the week to restrict calls " +"within" +msgstr "" + +#: admin/callrestrict.php:118 admin/addshift.php:238 +#: admin/availability.php:144 admin/shifttemplate.php:118 +msgid "Day" +msgstr "" + +#: admin/callrestrict.php:134 admin/availability.php:160 +#: admin/shifttemplate.php:134 +msgid "Add row" +msgstr "" + +#: admin/callrestrict.php:135 +msgid "Save changes to restriction times" +msgstr "" + +#: admin/questionnairecatimeslotssample.php:97 admin/index.php:76 +msgid "Assign call attempt time slots to questionnaire sample" +msgstr "" + +#: admin/questionnairecatimeslotssample.php:126 +msgid "" +"There are no call attempt time slots selected for this questionnaire sample" +msgstr "" + +#: admin/questionnairecatimeslotssample.php:130 +msgid "Call attempt time slots selected for this questionnaire sample" +msgstr "" + +#: admin/questionnairecatimeslotssample.php:148 +msgid "Add a call attempt time slot to this questionnaire sample:" +msgstr "" + +#: admin/addshift.php:87 admin/addshift.php:140 +msgid "Add shifts" +msgstr "" + +#: admin/addshift.php:88 +msgid "" +"You must be an operator (as well as have administrator access) to add/edit " +"shifts" +msgstr "" + +#: admin/addshift.php:163 +msgid "Add shifts in your Time Zone" +msgstr "" + +#: admin/addshift.php:166 +msgid "" +"Shifts allow you to restrict appointments being made, and interviewers to " +"working on a particlar project at defined times." +msgstr "" + +#: admin/addshift.php:173 +msgid "Select year" +msgstr "" + +#: admin/addshift.php:184 +msgid "Select week of year" +msgstr "" + +#: admin/addshift.php:238 +msgid "Use shift?" +msgstr "" + +#: admin/addshift.php:263 +msgid "Submit changes" +msgstr "" + +#: admin/process.php:90 +msgid "Cannot connect to VoIP Server" +msgstr "" + +#: admin/supervisorchat.php:63 +msgid "" +"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " +"is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will " +"need XMPP/Jabber accounts." +msgstr "" + +#: admin/supervisorchat.php:73 +msgid "Enable supervisor chat?" +msgstr "" + +#: admin/supervisorchat.php:74 +msgid "Set BOSH URL" +msgstr "" + +#: admin/supervisorchat.php:75 +msgid "Supervisor XMPP/Jabber id" +msgstr "" + +#: admin/supervisorchat.php:76 +msgid "Update" +msgstr "" + +#: admin/questionnairelist.php:277 +msgid "Questionnaire list" +msgstr "" + +#: admin/questionnairelist.php:330 +msgid "Edit instrument in Limesurvey" +msgstr "" + +#: admin/questionnairelist.php:333 admin/new.php:132 +msgid "Name for questionnaire:" +msgstr "" + +#: admin/questionnairelist.php:334 admin/new.php:195 +msgid "Restrict appointments to shifts?" +msgstr "" + +#: admin/questionnairelist.php:335 admin/new.php:196 +msgid "Restrict work to shifts?" +msgstr "" + +#: admin/questionnairelist.php:336 admin/new.php:197 +msgid "Questionnaire for testing only?" +msgstr "" + +#: admin/questionnairelist.php:337 admin/new.php:198 +msgid "Allow operators to generate referrals?" +msgstr "" + +#: admin/questionnairelist.php:338 admin/new.php:199 +msgid "Allow for respondent self completion via email invitation?" +msgstr "" + +#: admin/questionnairelist.php:340 admin/new.php:201 +msgid "Questionnaire display mode for respondent" +msgstr "" + +#: admin/questionnairelist.php:340 admin/new.php:201 +msgid "All in one" +msgstr "" + +#: admin/questionnairelist.php:340 admin/new.php:201 +msgid "Question by question" +msgstr "" + +#: admin/questionnairelist.php:340 admin/new.php:201 +msgid "Group at a time" +msgstr "" + +#: admin/questionnairelist.php:341 admin/new.php:202 +msgid "Limesurvey template for respondent" +msgstr "" + +#: admin/questionnairelist.php:356 admin/new.php:214 +msgid "URL to forward respondents on self completion (required)" +msgstr "" + +#: admin/questionnairelist.php:359 admin/new.php:217 +msgid "Respondent selection introduction:" +msgstr "" + +#: admin/questionnairelist.php:360 admin/new.php:218 +msgid "Respondent selection project introduction:" +msgstr "" + +#: admin/questionnairelist.php:361 admin/new.php:219 +msgid "Respondent selection callback (already started questionnaire):" +msgstr "" + +#: admin/questionnairelist.php:362 admin/new.php:220 +msgid "Message to leave on an answering machine:" +msgstr "" + +#: admin/questionnairelist.php:363 +msgid "Edit respondent selection instrument in Limesurvey" +msgstr "" + +#: admin/questionnairelist.php:364 admin/new.php:222 +msgid "Project end text (thank you screen):" +msgstr "" + +#: admin/questionnairelist.php:365 admin/new.php:223 +msgid "Project information for interviewers/operators:" +msgstr "" + +#: admin/questionnairelist.php:366 +msgid "Update Questionnaire" +msgstr "" + +#: admin/questionnairelist.php:385 +msgid "Any collected data and the limesurvey instrument will NOT be deleted" +msgstr "" + +#: admin/questionnairelist.php:386 +msgid "" +"The questionnaire will be deleted from queXS including call history, cases, " +"case notes, respondent details, appointments and the links between " +"operators, clients and the questionnaire" +msgstr "" + +#: admin/questionnairelist.php:387 +msgid "Please confirm you wish to delete the questionnaire" +msgstr "" + +#: admin/questionnairelist.php:390 +msgid "Delete this questionnaire" +msgstr "" + +#: admin/questionnairelist.php:397 admin/supervisor.php:297 +#: admin/supervisor.php:361 admin/displayappointments.php:243 +msgid "Delete" +msgstr "" + +#: admin/callhistory.php:80 admin/callhistory.php:109 +#: admin/callhistory.php:117 +msgid "Call History List" +msgstr "" + +#: admin/callhistory.php:96 admin/callhistory.php:111 +msgid "Date/Time call start" +msgstr "" + +#: admin/callhistory.php:96 admin/callhistory.php:111 +msgid "Time end" +msgstr "" + +#: admin/callhistory.php:110 +msgid "Download Call History List" +msgstr "" + +#: admin/clients.php:84 +msgid "Could not add" +msgstr "" + +#: admin/clients.php:84 +msgid "There may already be a client of this name" +msgstr "" + +#: admin/clients.php:89 admin/clients.php:104 +msgid "Add a client" +msgstr "" + +#: admin/clients.php:105 +msgid "" +"Adding a client here will allow them to access project information in the " +"client subdirectory. You can assign a client to a particular project using " +"the" +msgstr "" + +#: admin/clients.php:105 +msgid "Assign client to Questionnaire" +msgstr "" + +#: admin/clients.php:105 +msgid "tool." +msgstr "" + +#: admin/clients.php:108 +msgid "Enter the username of a client to add:" +msgstr "" + +#: admin/clients.php:110 +msgid "Enter the password of a client to add:" +msgstr "" + +#: admin/clients.php:112 +msgid "Enter the first name of a client to add:" +msgstr "" + +#: admin/clients.php:113 +msgid "Enter the surname of a client to add:" +msgstr "" + +#: admin/clients.php:114 +msgid "Enter the Time Zone of a client to add:" +msgstr "" + +#: admin/availability.php:57 +msgid "No time slot group set" +msgstr "" + +#: admin/availability.php:95 +msgid "Modify time slots" +msgstr "" + +#: admin/availability.php:161 +msgid "Time slot group name" +msgstr "" + +#: admin/availability.php:162 +msgid "Save changes to time slot group" +msgstr "" + +#: admin/availability.php:166 +msgid "Delete this time slot group" +msgstr "" + +#: admin/questionnaireavailability.php:93 +msgid "Assign availability group to questionnaire" +msgstr "" + +#: admin/questionnaireavailability.php:95 +msgid "" +"Assigning an availability group to a questionnaire will allow interviewers " +"to select from those groups to restrict calls to a particular case to the " +"times within the group" +msgstr "" + +#: admin/questionnaireavailability.php:113 +msgid "There are no availability groups selected for this questionnaire" +msgstr "" + +#: admin/questionnaireavailability.php:117 +msgid "Availability groups selected for this questionnaire" +msgstr "" + +#: admin/questionnaireavailability.php:135 +msgid "Add an availability group to this questionnaire:" +msgstr "" + +#: admin/questionnaireavailability.php:138 +msgid "Select availability group:" +msgstr "" + +#: admin/operatorlist.php:60 +msgid "If changing usernames, you must specify a new password" +msgstr "" + +#: admin/operatorlist.php:116 +msgid "Successfully updated user" +msgstr "" + +#: admin/operatorlist.php:120 +msgid "Failed to update user. Please make sure the username is unique" +msgstr "" + +#: admin/operatorlist.php:129 +msgid "Operator edit" +msgstr "" + +#: admin/operatorlist.php:144 admin/operatorlist.php:293 +#: admin/assignsample.php:158 admin/assignsample.php:203 +#: admin/supervisor.php:297 admin/shiftreport.php:104 +#: admin/displayappointments.php:243 +msgid "Edit" +msgstr "" + +#: admin/operatorlist.php:162 +msgid "Update password (leave blank to keep existing password)" +msgstr "" + +#: admin/operatorlist.php:170 +msgid "Uses chat" +msgstr "" + +#: admin/operatorlist.php:171 +msgid "Timezone" +msgstr "" + +#: admin/operatorlist.php:173 +msgid "Uses VoIP" +msgstr "" + +#: admin/operatorlist.php:176 +msgid "Update operator" +msgstr "" + +#: admin/operatorlist.php:290 +msgid "Operator list" +msgstr "" + +#: admin/operatorlist.php:297 +msgid "" +"Download the file for each user and save in the same folder as the voip.exe " +"executable. When the file is executed, it will run the voip.exe program with " +"the correct connection details to connect the operator to the VoIP server" +msgstr "" + +#: admin/operatorlist.php:299 +msgid "Download Windows VoIP Executable" +msgstr "" + +#: admin/operatorlist.php:300 +msgid "Download Linux VoIP Executable" +msgstr "" + +#: admin/operatorlist.php:305 +msgid "Enable/Disable VoIP" +msgstr "" + +#: admin/operatorlist.php:306 +msgid "Windows VoIP" +msgstr "" + +#: admin/operatorlist.php:307 +msgid "*nix VoIP" +msgstr "" + +#: admin/centreinfo.php:67 +msgid "Set centre information: " +msgstr "" + +#: admin/centreinfo.php:68 +msgid "Update centre information" msgstr "" #: admin/import.php:51 @@ -1200,10 +2345,6 @@ msgstr "" msgid "Import: Select columns to import" msgstr "" -#: admin/import.php:112 admin/bulkappointment.php:248 -msgid "Import: Select file to upload" -msgstr "" - #: admin/import.php:117 msgid "Choose the CSV sample file to upload:" msgstr "" @@ -1216,130 +2357,77 @@ msgstr "" msgid "Add sample" msgstr "" -#: admin/systemsortprocess.php:93 -msgid "Sorting cases process starting" +#: admin/index.php:50 +msgid "Questionnaire creation and management" msgstr "" -#: admin/systemsortprocess.php:106 -msgid "Checking for cases open for more than 24 hours" +#: admin/index.php:56 +msgid "Sample/List management" msgstr "" -#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147 -#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185 -msgid "System automatically closed case as not closed for more than 24 hours" +#: admin/index.php:73 +msgid "Manage time slots" msgstr "" -#: admin/systemsortprocess.php:194 -msgid "Completed case closing" +#: admin/samplecallattempts.php:107 +msgid "Number of cases" msgstr "" -#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 -#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325 -msgid "This task took" +#: admin/samplecallattempts.php:107 +msgid "Call attempts made" msgstr "" -#: admin/systemsortprocess.php:196 -msgid "Failed to complete case closing" +#: admin/samplecallattempts.php:170 +msgid "Sample call attempt" msgstr "" -#: admin/systemsortprocess.php:211 -msgid "Sorting cases for " +#: admin/samplecallattempts.php:172 admin/dataoutput.php:188 +#: admin/operatorperformance.php:73 admin/shiftreport.php:65 +msgid "Please select a questionnaire" msgstr "" -#: admin/systemsortprocess.php:323 -msgid "Completed sort" +#: admin/samplecallattempts.php:175 +msgid "Overall" msgstr "" -#: admin/systemsortprocess.php:325 -msgid "Failed to complete sort" +#: admin/samplecallattempts.php:184 admin/dataoutput.php:204 +msgid "Please select a sample" msgstr "" -#: admin/displayappointments.php:149 -msgid "Now modify case outcome" +#: admin/samplecallattempts.php:195 +msgid "Please select a quota" msgstr "" -#: admin/displayappointments.php:151 -msgid "The appointment has been deleted. Now you must modify the case outcome" +#: admin/samplecallattempts.php:201 +msgid "No calls for this quota" msgstr "" -#: admin/displayappointments.php:152 -msgid "Modify case outcome" +#: admin/samplecallattempts.php:205 +msgid "No calls for this sample" msgstr "" -#: admin/displayappointments.php:159 admin/displayappointments.php:212 -msgid "Edit appointment" +#: admin/samplecallattempts.php:210 +msgid "No calls for this questionnaire" msgstr "" -#: admin/displayappointments.php:185 -msgid "Contact phone" +#: admin/casesbyoutcome.php:52 +msgid "Cases by outcome" msgstr "" -#: admin/displayappointments.php:193 admin/bulkappointment.php:230 -msgid "Start time" +#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 +msgid "Project" msgstr "" -#: admin/displayappointments.php:194 admin/bulkappointment.php:230 -msgid "End time" +#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 +msgid "Current outcome:" msgstr "" -#: admin/displayappointments.php:215 -msgid "Cancel edit" +#: admin/casesbyoutcome.php:84 +msgid "No cases with this outcome" msgstr "" -#: admin/displayappointments.php:216 -msgid "Delete this appointment" -msgstr "" - -#: admin/displayappointments.php:225 -msgid "Display Appointments" -msgstr "" - -#: admin/displayappointments.php:227 -msgid "All appointments (with times displayed in your time zone)" -msgstr "" - -#: admin/displayappointments.php:229 admin/displayappointments.php:243 -#: admin/questionnairelist.php:396 admin/questionnairelist.php:407 -#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347 -#: admin/supervisor.php:361 -msgid "Delete" -msgstr "" - -#: admin/displayappointments.php:229 admin/displayappointments.php:243 -#: admin/shiftreport.php:96 admin/shiftreport.php:104 -#: admin/assignsample.php:158 admin/assignsample.php:194 -#: admin/assignsample.php:203 admin/operatorlist.php:144 -#: admin/operatorlist.php:283 admin/operatorlist.php:293 -#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306 -msgid "Edit" -msgstr "" - -#: admin/displayappointments.php:243 admin/supervisor.php:297 -msgid "Operator Name" -msgstr "" - -#: admin/displayappointments.php:243 admin/supervisor.php:297 -msgid "Respondent Name" -msgstr "" - -#: admin/displayappointments.php:243 admin/supervisor.php:297 -msgid "Surname" -msgstr "" - -#: admin/displayappointments.php:243 admin/supervisor.php:297 -msgid "Current outcome" -msgstr "" - -#: admin/displayappointments.php:243 admin/supervisor.php:297 -msgid "Operator who called" -msgstr "" - -#: admin/displayappointments.php:246 -msgid "No appointments in the future" -msgstr "" - -#: admin/quota.php:109 admin/index.php:62 admin/index.php:63 -msgid "Quota management" +#: admin/casesbyoutcome.php:91 +msgid "Error with input" msgstr "" #: admin/quota.php:134 @@ -1410,299 +2498,6 @@ msgstr "" msgid "Add quota" msgstr "" -#: admin/operatorskill.php:149 -msgid "Assign operators to Skills" -msgstr "" - -#: admin/operatorskill.php:151 -msgid "" -"Set which types of cases will be made available to each operator. Please " -"note that all operators will be allowed to assign all possible outcomes to a " -"case. This restricts which ones will be assigned to an operator." -msgstr "" - -#: admin/operatorskill.php:272 admin/index.php:70 -msgid "Modify operator skills" -msgstr "" - -#: admin/operatorperformance.php:66 -msgid "Operator Performance" -msgstr "" - -#: admin/operatorperformance.php:73 admin/shiftreport.php:65 -#: admin/dataoutput.php:188 admin/samplecallattempts.php:172 -msgid "Please select a questionnaire" -msgstr "" - -#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 -msgid "Calls" -msgstr "" - -#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 -msgid "Total time" -msgstr "" - -#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 -msgid "Call time" -msgstr "" - -#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 -msgid "Completions p/h" -msgstr "" - -#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 -msgid "Calls p/h" -msgstr "" - -#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 -msgid "Effectiveness" -msgstr "" - -#: admin/operatorperformance.php:88 -msgid "till" -msgstr "" - -#: admin/operatorperformance.php:96 admin/shiftreport.php:72 -msgid "Please select a shift" -msgstr "" - -#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112 -msgid "Time slots" -msgstr "" - -#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119 -#: admin/questionnairelist.php:396 admin/questionnairelist.php:406 -msgid "Modify" -msgstr "" - -#: admin/availabilitygroup.php:114 -msgid "" -"Time slots define periods of time during particular days of the week. These " -"are used for the availability function and also the call attempt time slot " -"function." -msgstr "" - -#: admin/availabilitygroup.php:117 -msgid "No time slots" -msgstr "" - -#: admin/availabilitygroup.php:119 admin/supervisor.php:342 -msgid "Time slot" -msgstr "" - -#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127 -msgid "Add time slot" -msgstr "" - -#: admin/availabilitygroup.php:126 -msgid "Time slot name" -msgstr "" - -#: admin/shiftreport.php:61 admin/index.php:96 -msgid "Shift reports" -msgstr "" - -#: admin/shiftreport.php:92 -msgid "Reports for this shift" -msgstr "" - -#: admin/shiftreport.php:104 -msgid "Report" -msgstr "" - -#: admin/shiftreport.php:107 -msgid "Create new report for this shift" -msgstr "" - -#: admin/shiftreport.php:113 -msgid "Enter report for this shift" -msgstr "" - -#: admin/shiftreport.php:117 -msgid "Add report" -msgstr "" - -#: admin/shiftreport.php:153 -msgid "This report does not exist in the database" -msgstr "" - -#: admin/shiftreport.php:158 -msgid "Edit report for this shift" -msgstr "" - -#: admin/shiftreport.php:163 -msgid "Modify report" -msgstr "" - -#: admin/index.php:46 -msgid "Administrative Tools" -msgstr "" - -#: admin/index.php:50 -msgid "Questionnaire creation and management" -msgstr "" - -#: admin/index.php:51 admin/new.php:153 -msgid "Create an instrument in Limesurvey" -msgstr "" - -#: admin/index.php:52 -msgid "Create a new questionnaire" -msgstr "" - -#: admin/index.php:53 -msgid "Questionnaire management" -msgstr "" - -#: admin/index.php:54 -msgid "Administer instruments with Limesurvey" -msgstr "" - -#: admin/index.php:56 -msgid "Sample/List management" -msgstr "" - -#: admin/index.php:57 -msgid "Import a sample file (in CSV form)" -msgstr "" - -#: admin/index.php:58 -msgid "Sample management" -msgstr "" - -#: admin/index.php:59 -msgid "Assign samples to questionnaires" -msgstr "" - -#: admin/index.php:60 -msgid "Set values in questionnaire to pre fill" -msgstr "" - -#: admin/index.php:64 admin/quotarow.php:126 -msgid "Quota row management" -msgstr "" - -#: admin/index.php:66 admin/index.php:68 admin/index.php:112 -msgid "Operator management" -msgstr "" - -#: admin/index.php:67 -msgid "Add operators to the system" -msgstr "" - -#: admin/index.php:69 admin/operatorquestionnaire.php:155 -#: admin/operatorquestionnaire.php:276 -msgid "Assign operators to questionnaires" -msgstr "" - -#: admin/index.php:72 -msgid "Availability and shift management" -msgstr "" - -#: admin/index.php:73 -msgid "Manage time slots" -msgstr "" - -#: admin/index.php:74 -msgid "Assign availabilities to questionnaires" -msgstr "" - -#: admin/index.php:75 admin/questionnairecatimeslots.php:93 -msgid "Assign call attempt time slots to questionnaire" -msgstr "" - -#: admin/index.php:76 -msgid "Shift management (add/remove)" -msgstr "" - -#: admin/index.php:78 -msgid "Questionnaire progress" -msgstr "" - -#: admin/index.php:79 -msgid "Display all future appointments" -msgstr "" - -#: admin/index.php:80 -msgid "Sample call attempts report" -msgstr "" - -#: admin/index.php:82 -msgid "Questionnaire outcomes" -msgstr "" - -#: admin/index.php:83 admin/dataoutput.php:186 -msgid "Data output" -msgstr "" - -#: admin/index.php:86 admin/outcomes.php:297 -msgid "Operator performance" -msgstr "" - -#: admin/index.php:88 -msgid "Client management" -msgstr "" - -#: admin/index.php:89 -msgid "Add clients to the system" -msgstr "" - -#: admin/index.php:92 admin/supervisor.php:131 -msgid "Supervisor functions" -msgstr "" - -#: admin/index.php:93 -msgid "Assign outcomes to cases" -msgstr "" - -#: admin/index.php:94 -msgid "Search the sample" -msgstr "" - -#: admin/index.php:97 admin/casestatus.php:197 -msgid "Case status and assignment" -msgstr "" - -#: admin/index.php:98 admin/bulkappointment.php:250 -msgid "Bulk appointment generator" -msgstr "" - -#: admin/index.php:100 -msgid "System settings" -msgstr "" - -#: admin/index.php:101 -msgid "Set default timezone list" -msgstr "" - -#: admin/index.php:102 -msgid "Set default shift times" -msgstr "" - -#: admin/index.php:103 -msgid "Set call restriction times" -msgstr "" - -#: admin/index.php:104 admin/centreinfo.php:62 -msgid "Set centre information" -msgstr "" - -#: admin/index.php:106 -msgid "Start and monitor system wide case sorting" -msgstr "" - -#: admin/index.php:110 -msgid "VoIP" -msgstr "" - -#: admin/index.php:111 -msgid "Start and monitor VoIP" -msgstr "" - -#: admin/index.php:113 -msgid "Extension status" -msgstr "" - #: admin/assignsample.php:120 admin/assignsample.php:179 msgid "Assign Sample: Select sample to assign" msgstr "" @@ -1736,35 +2531,6 @@ msgstr "" msgid "Samples selected for this questionnaire" msgstr "" -#: admin/assignsample.php:189 admin/assignsample.php:190 -msgid "Unlimited" -msgstr "" - -#: admin/assignsample.php:191 -msgid "Sequential" -msgstr "" - -#: admin/assignsample.php:191 -msgid "Random" -msgstr "" - -#: admin/assignsample.php:192 -msgid "Never" -msgstr "" - -#: admin/assignsample.php:193 -msgid "No" -msgstr "" - -#: admin/assignsample.php:193 -msgid "Yes" -msgstr "" - -#: admin/assignsample.php:195 admin/questionnaireavailability.php:120 -#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93 -msgid "Click to unassign" -msgstr "" - #: admin/assignsample.php:203 msgid "Max calls" msgstr "" @@ -1797,482 +2563,117 @@ msgstr "" msgid "Select sample:" msgstr "" -#: admin/centreinfo.php:66 -msgid "Set centre information: " +#: admin/supervisor.php:133 +msgid "Enter a case id or select a case from the list below:" msgstr "" -#: admin/centreinfo.php:67 -msgid "Update centre information" +#: admin/supervisor.php:144 +msgid "Select case from list of cases referred to the supervisor:" msgstr "" -#: admin/questionnaireavailability.php:93 -msgid "Assign availability group to questionnaire" +#: admin/supervisor.php:152 respondent.php:102 contactdetails.php:98 +msgid "Case id:" msgstr "" -#: admin/questionnaireavailability.php:95 -msgid "" -"Assigning an availability group to a questionnaire will allow interviewers " -"to select from those groups to restrict calls to a particular case to the " -"times within the group" +#: admin/supervisor.php:153 +msgid "Select case" msgstr "" -#: admin/questionnaireavailability.php:113 -msgid "There are no availability groups selected for this questionnaire" +#: admin/supervisor.php:176 +msgid "Set an outcome for this call" msgstr "" -#: admin/questionnaireavailability.php:117 -msgid "Availability groups selected for this questionnaire" +#: admin/supervisor.php:189 admin/supervisor.php:397 +msgid "Set outcome" msgstr "" -#: admin/questionnaireavailability.php:135 -msgid "Add an availability group to this questionnaire:" +#: admin/supervisor.php:281 admin/displayappointments.php:227 +#: admin/databasestrings.php:68 index.php:268 index_interface2.php:357 +msgid "Appointments" msgstr "" -#: admin/questionnaireavailability.php:138 -msgid "Select availability group:" +#: admin/supervisor.php:284 +msgid "Not yet called" msgstr "" -#: admin/questionnaireavailability.php:149 -msgid "Add availability group" +#: admin/supervisor.php:297 admin/displayappointments.php:243 +msgid "Operator Name" msgstr "" -#: admin/supervisorchat.php:63 -msgid "" -"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required " -"is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will " -"need XMPP/Jabber accounts." +#: admin/supervisor.php:297 admin/displayappointments.php:243 +msgid "Respondent Name" msgstr "" -#: admin/supervisorchat.php:73 -msgid "Enable supervisor chat?" +#: admin/supervisor.php:297 admin/displayappointments.php:243 +msgid "Surname" msgstr "" -#: admin/supervisorchat.php:74 -msgid "Set BOSH URL" +#: admin/supervisor.php:297 admin/displayappointments.php:243 +msgid "Current outcome" msgstr "" -#: admin/supervisorchat.php:75 -msgid "Supervisor XMPP/Jabber id" +#: admin/supervisor.php:297 admin/displayappointments.php:243 +msgid "Operator who called" msgstr "" -#: admin/supervisorchat.php:76 -msgid "Update" +#: admin/supervisor.php:300 +msgid "No appointments for this case" msgstr "" -#: admin/samplesearch.php:83 -msgid "Search sample" +#: admin/supervisor.php:302 +msgid "Create appointment for this case" msgstr "" -#: admin/samplesearch.php:100 -msgid "No cases yet assigned: Delete this sample record" +#: admin/supervisor.php:314 +msgid "Call list" msgstr "" -#: admin/samplesearch.php:100 -msgid "Assigned to questionnaire: " +#: admin/supervisor.php:320 admin/databasestrings.php:82 +msgid "Phone number" msgstr "" -#: admin/samplesearch.php:110 -msgid "No records in this sample match this search criteria" +#: admin/supervisor.php:320 +msgid "Change outcome" msgstr "" -#: admin/samplesearch.php:121 -msgid "Sample id" +#: admin/supervisor.php:331 +msgid "Call attempts by timeslot" msgstr "" -#: admin/samplesearch.php:130 -msgid "Link" +#: admin/supervisor.php:342 +msgid "Call attempts" msgstr "" -#: admin/samplesearch.php:149 -msgid "Search within this sample" +#: admin/supervisor.php:378 +msgid "Modify responses for this case" msgstr "" -#: admin/samplesearch.php:151 -msgid "Use the % character as a wildcard" +#: admin/supervisor.php:380 +msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/samplesearch.php:156 -msgid "Search for:" +#: admin/supervisor.php:384 +msgid "Set a case outcome" msgstr "" -#: admin/samplesearch.php:158 -msgid "Start search" +#: admin/supervisor.php:434 +msgid "Update case availability" msgstr "" -#: admin/outcomes.php:77 client/index.php:59 -msgid "Questionnaire Outcomes" +#: admin/supervisor.php:445 +msgid "Assign this case to operator (will appear as next case for them)" msgstr "" -#: admin/outcomes.php:86 admin/outcomes.php:244 -msgid "Outcomes" +#: admin/supervisor.php:457 +msgid "Assign this case to operator" msgstr "" -#: admin/outcomes.php:88 admin/outcomes.php:231 -msgid "Sample status" +#: admin/supervisor.php:463 +msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/outcomes.php:90 admin/outcomes.php:233 -msgid "Drawn from sample" -msgstr "" - -#: admin/outcomes.php:90 admin/outcomes.php:233 -msgid "Remain in sample" -msgstr "" - -#: admin/outcomes.php:97 admin/outcomes.php:241 -msgid "Number" -msgstr "" - -#: admin/outcomes.php:99 -msgid "Case availability (cases with temporary or appointment outcomes)" -msgstr "" - -#: admin/outcomes.php:131 -msgid "No cases currently available to call" -msgstr "" - -#: admin/outcomes.php:135 -msgid "Cases currently available to call" -msgstr "" - -#: admin/outcomes.php:142 -msgid "Average time on a completed questionnaire" -msgstr "" - -#: admin/outcomes.php:142 -msgid "Min" -msgstr "" - -#: admin/outcomes.php:142 -msgid "Secs" -msgstr "" - -#: admin/outcomes.php:155 client/index.php:91 -msgid "Rate" -msgstr "" - -#: admin/outcomes.php:156 client/index.php:92 -msgid "Response Rate 1" -msgstr "" - -#: admin/outcomes.php:157 client/index.php:93 -msgid "Refusal Rate 1" -msgstr "" - -#: admin/outcomes.php:158 client/index.php:94 -msgid "Cooperation Rate 1" -msgstr "" - -#: admin/outcomes.php:159 client/index.php:95 -msgid "Contact Rate 1" -msgstr "" - -#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 -#: client/index.php:110 -msgid "Count" -msgstr "" - -#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261 -msgid "%" -msgstr "" - -#: admin/outcomes.php:193 -msgid "Operator call outcomes" -msgstr "" - -#: admin/outcomes.php:264 -msgid "No outcomes recorded for this sample" -msgstr "" - -#: admin/outcomes.php:269 client/index.php:113 -msgid "No outcomes recorded for this questionnaire" -msgstr "" - -#: admin/outcomes.php:276 -msgid "No shift reports: Add report" -msgstr "" - -#: admin/outcomes.php:276 -msgid "View shift reports" -msgstr "" - -#: admin/outcomes.php:276 -msgid "View operator performance" -msgstr "" - -#: admin/outcomes.php:295 -msgid "No shifts defined for this questionnaire" -msgstr "" - -#: admin/outcomes.php:297 -msgid "Shift" -msgstr "" - -#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267 -#: include/limesurvey/admin/exportresults.php:638 -#: include/limesurvey/admin/exportresults.php:639 -#: include/limesurvey/admin/exportresults.php:993 -msgid "Shift report" -msgstr "" - -#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96 -msgid "Monitor VoIP Process" -msgstr "" - -#: admin/voipmonitor.php:79 -msgid "" -"Kill signal sent: Please wait... (Note: Process will be stalled until there " -"is activity on the VoIP Server)" -msgstr "" - -#: admin/voipmonitor.php:84 -msgid "(requires activity on the VoIP Server to take effect)" -msgstr "" - -#: admin/voipmonitor.php:97 -msgid "Click here to begin monitoring the VoIP Process" -msgstr "" - -#: admin/questionnaireprefill.php:99 -msgid "Pre fill questionnaire: Set values for questionnaire to prefill" -msgstr "" - -#: admin/questionnaireprefill.php:110 -msgid "Current pre fills (click to delete)" -msgstr "" - -#: admin/questionnaireprefill.php:120 -msgid "Currently no pre fills" -msgstr "" - -#: admin/questionnaireprefill.php:132 -msgid "Select a question to pre fill" -msgstr "" - -#: admin/questionnaireprefill.php:164 -msgid "Enter a value to pre fill this question with:" -msgstr "" - -#: admin/questionnaireprefill.php:166 -msgid "Possible uses:" -msgstr "" - -#: admin/questionnaireprefill.php:168 -msgid "{Respondent:firstName} First name of the respondent" -msgstr "" - -#: admin/questionnaireprefill.php:169 -msgid "{Respondent:lastName} Last name of the respondent" -msgstr "" - -#: admin/questionnaireprefill.php:170 -msgid "{Sample:var} A record from the sample where the column name is 'var'" -msgstr "" - -#: admin/questionnaireprefill.php:183 -msgid "The value to pre fill" -msgstr "" - -#: admin/questionnaireprefill.php:184 -msgid "or: Select pre fill from sample list" -msgstr "" - -#: admin/questionnaireprefill.php:190 -msgid "Add pre fill" -msgstr "" - -#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 -#: admin/samplelist.php:270 admin/samplelist.php:279 -msgid "Rename" -msgstr "" - -#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269 -#: admin/samplelist.php:279 -msgid "Operator viewing permissions" -msgstr "" - -#: admin/samplelist.php:182 -msgid "" -"Select which fields from this sample should be able to be viewed by operators" -msgstr "" - -#: admin/samplelist.php:187 admin/samplelist.php:224 -msgid "Field" -msgstr "" - -#: admin/samplelist.php:187 admin/samplelist.php:224 -msgid "Example data" -msgstr "" - -#: admin/samplelist.php:187 functions/functions.import.php:127 -msgid "Allow operator to see?" -msgstr "" - -#: admin/samplelist.php:190 -msgid "Save changes" -msgstr "" - -#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224 -#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462 -#: admin/supervisor.php:468 -msgid "Deidentify" -msgstr "" - -#: admin/samplelist.php:219 -msgid "" -"Select which fields from this sample to deidentify. Deidentified fields will " -"be permanently deleted from the sample." -msgstr "" - -#: admin/samplelist.php:227 -msgid "Delete selected fields" -msgstr "" - -#: admin/samplelist.php:263 admin/operatorlist.php:273 -#: admin/questionnairelist.php:401 -msgid "Enable" -msgstr "" - -#: admin/samplelist.php:265 admin/operatorlist.php:275 -#: admin/questionnairelist.php:403 -msgid "Disable" -msgstr "" - -#: admin/samplelist.php:276 -msgid "Sample list" -msgstr "" - -#: admin/samplelist.php:279 admin/operatorlist.php:293 -#: admin/questionnairelist.php:396 -msgid "Enable/Disable" -msgstr "" - -#: admin/bulkappointment.php:199 -msgid "Added appointment" -msgstr "" - -#: admin/bulkappointment.php:203 -msgid "" -"No such case id, or case set to a final outcome, or case currently assigned " -"to an operator" -msgstr "" - -#: admin/bulkappointment.php:209 -msgid "Result" -msgstr "" - -#: admin/bulkappointment.php:229 -msgid "" -"Please check the case id's, appointment start and end times and notes are " -"correct before accepting below" -msgstr "" - -#: admin/bulkappointment.php:235 -msgid "Accept and generate bulk appointments" -msgstr "" - -#: admin/bulkappointment.php:240 -msgid "" -"The file does not contain at least caseid, starttime and endtime columns. " -"Please try again." -msgstr "" - -#: admin/bulkappointment.php:251 -msgid "" -"Provide a headered CSV file containing at least 3 columns - caseid, " -"starttime and endtime. Optionally you can include a note column to attach a " -"note to the case in addition to setting an appointment. Only cases that have " -"temporary (non final) outcomes will have appointments generated, and the " -"outcome of the case will be updated to an appointment outcome." -msgstr "" - -#: admin/bulkappointment.php:252 -msgid "Example CSV file:" -msgstr "" - -#: admin/bulkappointment.php:261 -msgid "Choose the CSV file to upload:" -msgstr "" - -#: admin/bulkappointment.php:262 -msgid "Load bulk appointment CSV" -msgstr "" - -#: admin/addshift.php:87 admin/addshift.php:140 -msgid "Add shifts" -msgstr "" - -#: admin/addshift.php:88 -msgid "" -"You must be an operator (as well as have administrator access) to add/edit " -"shifts" -msgstr "" - -#: admin/addshift.php:151 admin/availability.php:106 -#: admin/shifttemplate.php:93 admin/callrestrict.php:93 -#: admin/timezonetemplate.php:104 -msgid "" -"Your database does not have timezones installed, please see here for details" -msgstr "" - -#: admin/addshift.php:163 -msgid "Add shifts in your Time Zone" -msgstr "" - -#: admin/addshift.php:166 -msgid "" -"Shifts allow you to restrict appointments being made, and interviewers to " -"working on a particlar project at defined times." -msgstr "" - -#: admin/addshift.php:173 -msgid "Select year" -msgstr "" - -#: admin/addshift.php:184 -msgid "Select week of year" -msgstr "" - -#: admin/addshift.php:238 admin/availability.php:144 -#: admin/shifttemplate.php:118 admin/callrestrict.php:118 -msgid "Day" -msgstr "" - -#: admin/addshift.php:238 -msgid "Use shift?" -msgstr "" - -#: admin/addshift.php:263 -msgid "Submit changes" -msgstr "" - -#: admin/questionnairecatimeslots.php:95 -msgid "" -"Assigning call attempt time slots to questionnaires will only allow cases to " -"be attempted in a time slot for the n + 1th time where it has been attempted " -"at least n times in all assigned timeslots. Please note timeslots must cover " -"all possible time periods otherwise no cases will be available during " -"missing timeslots." -msgstr "" - -#: admin/questionnairecatimeslots.php:113 -msgid "There are no call attempt time slots selected for this questionnaire" -msgstr "" - -#: admin/questionnairecatimeslots.php:117 -msgid "Call attempt time slots selected for this questionnaire" -msgstr "" - -#: admin/questionnairecatimeslots.php:135 -msgid "Add a call attempt time slot to this questionnaire:" -msgstr "" - -#: admin/questionnairecatimeslots.php:138 -msgid "Select call attempt time slot:" -msgstr "" - -#: admin/questionnairecatimeslots.php:149 -msgid "Add call attempt time slot" +#: admin/supervisor.php:476 +msgid "Case does not exist" msgstr "" #: admin/quotarow.php:154 admin/quotarow.php:160 @@ -2374,222 +2775,163 @@ msgstr "" msgid "Add row quota" msgstr "" -#: admin/operators.php:147 -msgid "Added:" +#: admin/operatorskill.php:149 +msgid "Assign operators to Skills" msgstr "" -#: admin/operators.php:150 -msgid "FreePBX has been reloaded for the new VoIP extension to take effect" -msgstr "" - -#: admin/operators.php:174 -msgid "Could not add operator. There may already be an operator of this name:" -msgstr "" - -#: admin/operators.php:182 admin/operators.php:203 -msgid "Add an operator" -msgstr "" - -#: admin/operators.php:204 -msgid "Adding an operator here will give the user the ability to call cases" -msgstr "" - -#: admin/operators.php:204 -msgid "Assign Operator to Questionnaire" -msgstr "" - -#: admin/operators.php:204 -msgid "tool" -msgstr "" - -#: admin/operators.php:205 admin/clients.php:106 +#: admin/operatorskill.php:151 msgid "" -"Use this form to enter the username of a user based on your directory " -"security system. For example, if you have secured the base directory of " -"queXS using Apache file based security, enter the usernames of the users " -"here." +"Set which types of cases will be made available to each operator. Please " +"note that all operators will be allowed to assign all possible outcomes to a " +"case. This restricts which ones will be assigned to an operator." msgstr "" -#: admin/operators.php:206 -msgid "The username and extension must be unique for each operator." +#: admin/dataoutput.php:202 +msgid "Download data for this questionnaire via Limesurvey" msgstr "" -#: admin/operators.php:208 -msgid "Enter the username of an operator to add:" +#: admin/dataoutput.php:211 +msgid "Download data for this sample via Limesurvey" msgstr "" -#: admin/operators.php:210 -msgid "Enter the password of an operator to add:" +#: admin/dataoutput.php:218 +msgid "Download key file: select sample var" msgstr "" -#: admin/operators.php:212 -msgid "Enter the first name of an operator to add:" +#: admin/dataoutput.php:222 +msgid "Download complete key file" msgstr "" -#: admin/operators.php:213 -msgid "Enter the surname of an operator to add:" +#: admin/dataoutput.php:225 +msgid "Download complete sample file with current outcomes" msgstr "" -#: admin/operators.php:214 -msgid "Enter the Time Zone of an operator to add:" +#: admin/operatorperformance.php:66 +msgid "Operator Performance" msgstr "" -#: admin/operators.php:216 -msgid "Select an extension for this operator:" +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +msgid "Calls" msgstr "" -#: admin/operators.php:218 -msgid "Will this operator be using VoIP?" +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +msgid "Total time" msgstr "" -#: admin/operators.php:219 admin/operatorlist.php:168 -msgid "Jabber/XMPP chat user" +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +msgid "Call time" msgstr "" -#: admin/operators.php:220 admin/operatorlist.php:169 -msgid "Jabber/XMPP chat password" +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +msgid "Completions p/h" msgstr "" -#: admin/operators.php:221 -msgid "Will this operator be using chat?" +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +msgid "Calls p/h" msgstr "" -#: admin/operators.php:222 -msgid "Is the operator a normal interviewer?" +#: admin/operatorperformance.php:81 admin/operatorperformance.php:104 +msgid "Effectiveness" msgstr "" -#: admin/operators.php:223 -msgid "Is the operator a supervisor?" +#: admin/operatorperformance.php:96 admin/shiftreport.php:72 +msgid "Please select a shift" msgstr "" -#: admin/operators.php:224 -msgid "Is the operator a refusal converter?" +#: admin/shiftreport.php:92 +msgid "Reports for this shift" msgstr "" -#: admin/operators.php:225 admin/clients.php:115 -msgid "Add user" +#: admin/shiftreport.php:104 +msgid "Report" msgstr "" -#: admin/new.php:59 -msgid "New: Create new questionnaire" +#: admin/shiftreport.php:107 +msgid "Create new report for this shift" msgstr "" -#: admin/new.php:118 -msgid "Successfully inserted" +#: admin/shiftreport.php:113 +msgid "Enter report for this shift" msgstr "" -#: admin/new.php:118 -msgid "as questionnaire" +#: admin/shiftreport.php:117 +msgid "Add report" msgstr "" -#: admin/new.php:118 -msgid "linked to" +#: admin/shiftreport.php:153 +msgid "This report does not exist in the database" msgstr "" -#: admin/new.php:121 -msgid "Error: Failed to insert questionnaire" +#: admin/shiftreport.php:158 +msgid "Edit report for this shift" msgstr "" -#: admin/new.php:132 admin/questionnairelist.php:332 -msgid "Name for questionnaire:" +#: admin/shiftreport.php:163 +msgid "Modify report" msgstr "" -#: admin/new.php:133 -msgid "Select limesurvey instrument:" -msgstr "" - -#: admin/new.php:147 admin/new.php:171 -msgid "Existing instrument:" -msgstr "" - -#: admin/new.php:156 -msgid "Respondent selection type:" -msgstr "" - -#: admin/new.php:157 -msgid "No respondent selection (go straight to questionnaire)" -msgstr "" - -#: admin/new.php:157 -msgid "Use basic respondent selection text (below)" -msgstr "" - -#: admin/new.php:195 admin/questionnairelist.php:333 -msgid "Restrict appointments to shifts?" -msgstr "" - -#: admin/new.php:196 admin/questionnairelist.php:334 -msgid "Restrict work to shifts?" -msgstr "" - -#: admin/new.php:197 admin/questionnairelist.php:335 -msgid "Questionnaire for testing only?" -msgstr "" - -#: admin/new.php:198 admin/questionnairelist.php:336 -msgid "Allow operators to generate referrals?" -msgstr "" - -#: admin/new.php:199 admin/questionnairelist.php:337 -msgid "Allow for respondent self completion via email invitation?" -msgstr "" - -#: admin/new.php:201 admin/questionnairelist.php:339 -msgid "Questionnaire display mode for respondent" -msgstr "" - -#: admin/new.php:201 admin/questionnairelist.php:339 -msgid "All in one" -msgstr "" - -#: admin/new.php:201 admin/questionnairelist.php:339 -msgid "Question by question" -msgstr "" - -#: admin/new.php:201 admin/questionnairelist.php:339 -msgid "Group at a time" -msgstr "" - -#: admin/new.php:202 admin/questionnairelist.php:340 -msgid "Limesurvey template for respondent" -msgstr "" - -#: admin/new.php:214 admin/questionnairelist.php:355 -msgid "URL to forward respondents on self completion (required)" -msgstr "" - -#: admin/new.php:217 admin/questionnairelist.php:358 -msgid "Respondent selection introduction:" -msgstr "" - -#: admin/new.php:218 admin/questionnairelist.php:359 -msgid "Respondent selection project introduction:" -msgstr "" - -#: admin/new.php:219 admin/questionnairelist.php:360 -msgid "Respondent selection callback (already started questionnaire):" -msgstr "" - -#: admin/new.php:220 admin/questionnairelist.php:361 -msgid "Message to leave on an answering machine:" -msgstr "" - -#: admin/new.php:222 admin/questionnairelist.php:363 -msgid "Project end text (thank you screen):" -msgstr "" - -#: admin/new.php:223 admin/questionnairelist.php:364 -msgid "Project information for interviewers/operators:" -msgstr "" - -#: admin/new.php:224 -msgid "Create Questionnaire" -msgstr "" - -#: admin/extensionstatus.php:101 +#: admin/exten_tab.php:74 admin/extensionstatus.php:101 msgid "Failed to add extension. There already may be an extension of this name" msgstr "" +#: admin/exten_tab.php:155 admin/extensionstatus.php:200 +msgid "Assignment" +msgstr "" + +#: admin/exten_tab.php:155 admin/extensionstatus.php:200 +msgid "VoIP Status" +msgstr "" + +#: admin/exten_tab.php:155 admin/extensionstatus.php:200 +msgid "Call state" +msgstr "" + +#: admin/exten_tab.php:155 admin/extensionstatus.php:200 +msgid "Time on call" +msgstr "" + +#: admin/exten_tab.php:158 admin/extensionstatus.php:203 +msgid "No extensions" +msgstr "" + +#: admin/casestatus.php:112 +msgid "Case available in x minutes" +msgstr "" + +#: admin/casestatus.php:112 +msgid "Assigned to operator" +msgstr "" + +#: admin/casestatus.php:120 +msgid "Choose operator to assign selected cases to" +msgstr "" + +#: admin/casestatus.php:123 +msgid "Assign cases to operator queue" +msgstr "" + +#: admin/casestatus.php:200 +msgid "" +"List cases by questionnaire and sample with the ability to assign them to be " +"called next in a queue by a particular operator. If you assign cases to an " +"operator, it will override the normal scheduling process and call them as " +"soon as the operator is available." +msgstr "" + +#: admin/shifttemplate.php:82 +msgid "Modify shift template" +msgstr "" + +#: admin/shifttemplate.php:96 +msgid "" +"Enter standard shift start and end times for each day of the week in local " +"time" +msgstr "" + +#: admin/shifttemplate.php:135 +msgid "Save changes to shifts" +msgstr "" + #: admin/extensionstatus.php:133 msgid "Display extension status" msgstr "" @@ -2614,50 +2956,6 @@ msgstr "" msgid "Unassign the operator from this extension to be able to delete it" msgstr "" -#: admin/extensionstatus.php:168 -msgid "Unassign" -msgstr "" - -#: admin/extensionstatus.php:168 -msgid "End case to change assignment" -msgstr "" - -#: admin/extensionstatus.php:169 -msgid "VoIP Offline" -msgstr "" - -#: admin/extensionstatus.php:169 -msgid "VoIP Online" -msgstr "" - -#: admin/extensionstatus.php:170 -msgid "Not called" -msgstr "" - -#: admin/extensionstatus.php:170 -msgid "Done" -msgstr "" - -#: admin/extensionstatus.php:200 -msgid "Assignment" -msgstr "" - -#: admin/extensionstatus.php:200 -msgid "VoIP Status" -msgstr "" - -#: admin/extensionstatus.php:200 -msgid "Call state" -msgstr "" - -#: admin/extensionstatus.php:200 -msgid "Time on call" -msgstr "" - -#: admin/extensionstatus.php:203 -msgid "No extensions" -msgstr "" - #: admin/extensionstatus.php:205 msgid "Add an extension" msgstr "" @@ -2666,6 +2964,94 @@ msgstr "" msgid "Add extension" msgstr "" +#: admin/displayappointments.php:149 +msgid "Now modify case outcome" +msgstr "" + +#: admin/displayappointments.php:151 +msgid "The appointment has been deleted. Now you must modify the case outcome" +msgstr "" + +#: admin/displayappointments.php:152 +msgid "Modify case outcome" +msgstr "" + +#: admin/displayappointments.php:159 admin/displayappointments.php:212 +msgid "Edit appointment" +msgstr "" + +#: admin/displayappointments.php:185 +msgid "Contact phone" +msgstr "" + +#: admin/displayappointments.php:209 +msgid "Any operator" +msgstr "" + +#: admin/displayappointments.php:215 +msgid "Cancel edit" +msgstr "" + +#: admin/displayappointments.php:216 +msgid "Delete this appointment" +msgstr "" + +#: admin/displayappointments.php:225 +msgid "Display Appointments" +msgstr "" + +#: admin/displayappointments.php:227 +msgid "All appointments (with times displayed in your time zone)" +msgstr "" + +#: admin/displayappointments.php:246 +msgid "No appointments in the future" +msgstr "" + +#: admin/new.php:59 +msgid "New: Create new questionnaire" +msgstr "" + +#: admin/new.php:118 +msgid "Successfully inserted" +msgstr "" + +#: admin/new.php:118 +msgid "as questionnaire" +msgstr "" + +#: admin/new.php:118 +msgid "linked to" +msgstr "" + +#: admin/new.php:121 +msgid "Error: Failed to insert questionnaire" +msgstr "" + +#: admin/new.php:133 +msgid "Select limesurvey instrument:" +msgstr "" + +#: admin/new.php:147 admin/new.php:170 +msgid "Existing instrument:" +msgstr "" + +#: admin/new.php:156 +msgid "Respondent selection type:" +msgstr "" + +#: admin/new.php:157 +msgid "No respondent selection (go straight to questionnaire)" +msgstr "" + +#: admin/new.php:157 +msgid "Use basic respondent selection text (below)" +msgstr "" + +#: admin/new.php:224 +msgid "Create Questionnaire" +msgstr "" + #: admin/databasestrings.php:32 msgid "Not attempted or worked" msgstr "" @@ -2862,10 +3248,6 @@ msgstr "" msgid "String" msgstr "" -#: admin/databasestrings.php:82 admin/supervisor.php:320 -msgid "Phone number" -msgstr "" - #: admin/databasestrings.php:83 msgid "Primary phone number" msgstr "" @@ -2894,736 +3276,260 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" -#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171 +#: admin/databasestrings.php:90 msgid "Self completed online" msgstr "" -#: admin/casesbyoutcome.php:52 -msgid "Cases by outcome" +#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242 +#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295 +#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211 +#: call.php:227 call.php:258 call.php:306 call.php:377 +msgid "Call" msgstr "" -#: admin/casesbyoutcome.php:72 admin/supervisor.php:273 -msgid "Project" +#: call_interface2.php:302 call.php:265 +msgid "Not on a call" msgstr "" -#: admin/casesbyoutcome.php:73 admin/supervisor.php:276 -msgid "Current outcome:" +#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435 +#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393 +#: call.php:398 call.php:414 call.php:420 +msgid "End case" msgstr "" -#: admin/casesbyoutcome.php:84 -msgid "No cases with this outcome" +#: call_interface2.php:339 call.php:302 +msgid "Press the call button to dial the number for this appointment:" msgstr "" -#: admin/casesbyoutcome.php:91 -msgid "Error with input" +#: call_interface2.php:342 call.php:305 +msgid "Number to call:" msgstr "" -#: admin/process.php:90 -msgid "Cannot connect to VoIP Server" -msgstr "" - -#: admin/availability.php:57 -msgid "No time slot group set" -msgstr "" - -#: admin/availability.php:95 -msgid "Modify time slots" -msgstr "" - -#: admin/availability.php:122 admin/callrestrict.php:96 +#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380 msgid "" -"Enter the start and end times for each day of the week to restrict calls " -"within" +"Your VoIP extension is not enabled. Please close this window and enable VoIP " +"by clicking once on the red button that says 'VoIP Off'" msgstr "" -#: admin/availability.php:160 admin/shifttemplate.php:134 -#: admin/callrestrict.php:134 -msgid "Add row" +#: call_interface2.php:407 call.php:370 +msgid "Select phone number to dial:" msgstr "" -#: admin/availability.php:161 -msgid "Time slot group name" +#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419 +msgid "The last call completed this call attempt" msgstr "" -#: admin/availability.php:162 -msgid "Save changes to time slot group" +#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412 +msgid "Enter a reason for this outcome before completing this case:" msgstr "" -#: admin/availability.php:166 -msgid "Delete this time slot group" +#: call_interface2.php:467 call.php:448 +msgid "Requires coding" msgstr "" -#: admin/clients.php:84 -msgid "Could not add" +#: call_interface2.php:470 call.php:451 +msgid "Assign outcome" msgstr "" -#: admin/clients.php:84 -msgid "There may already be a client of this name" +#: call_interface2.php:474 call.php:455 +msgid "Error: Close window" msgstr "" -#: admin/clients.php:89 admin/clients.php:104 -msgid "Add a client" +#: rs_answeringmachine.php:64 rs_answeringmachine_interface2.php:64 +msgid "Respondent Selection - Answering machine" msgstr "" -#: admin/clients.php:105 -msgid "" -"Adding a client here will allow them to access project information in the " -"client subdirectory. You can assign a client to a particular project using " -"the" +#: rs_answeringmachine.php:78 rs_answeringmachine_interface2.php:78 +msgid "Do not leave a message, please hang up" msgstr "" -#: admin/clients.php:105 -msgid "Assign client to Questionnaire" +#: rs_answeringmachine.php:81 rs_answeringmachine_interface2.php:81 +msgid "End call with outcome: Business answering machine" msgstr "" -#: admin/clients.php:105 -msgid "tool." +#: rs_answeringmachine.php:86 rs_answeringmachine_interface2.php:86 +msgid "End call with outcome: Answering machine Message left" msgstr "" -#: admin/clients.php:108 -msgid "Enter the username of a client to add:" +#: rs_answeringmachine.php:90 rs_answeringmachine_interface2.php:90 +msgid "End call with outcome: Answering machine No message left" msgstr "" -#: admin/clients.php:110 -msgid "Enter the password of a client to add:" +#: rs_business.php:55 rs_business_interface2.php:55 +msgid "Respondent Selection - Business answers" msgstr "" -#: admin/clients.php:112 -msgid "Enter the first name of a client to add:" +#: rs_business.php:59 rs_business_interface2.php:59 +msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: admin/clients.php:113 -msgid "Enter the surname of a client to add:" +#: rs_business.php:61 rs_business_interface2.php:61 +msgid "End call with outcome: Business number" msgstr "" -#: admin/clients.php:114 -msgid "Enter the Time Zone of a client to add:" +#: call.php:427 +msgid "Requesting call" msgstr "" -#: admin/shifttemplate.php:82 -msgid "Modify shift template" +#: call.php:428 call.php:435 +msgid "Call Answered" msgstr "" -#: admin/shifttemplate.php:96 -msgid "" -"Enter standard shift start and end times for each day of the week in local " -"time" +#: call.php:442 +msgid "Not Answered" msgstr "" -#: admin/shifttemplate.php:135 -msgid "Save changes to shifts" +#: index.php:164 nocallavailable.php:83 +msgid "Call/Hangup" msgstr "" -#: admin/casestatus.php:88 admin/casestatus.php:89 -msgid "Now" +#: index.php:165 supervisor.php:52 +msgid "Supervisor" msgstr "" -#: admin/casestatus.php:92 -msgid "Not assigned, select to assign" +#: index.php:169 index_interface2.php:310 +msgid "Arrow for expanding or contracting" msgstr "" -#: admin/casestatus.php:93 -msgid "Assigned to" +#: index.php:170 +msgid "Restart" msgstr "" -#: admin/casestatus.php:93 -msgid "Order" +#: index.php:223 index_interface2.php:322 +msgid "Notes" msgstr "" -#: admin/casestatus.php:111 -msgid "Case available in x minutes" +#: index.php:241 index_interface2.php:330 contactdetails.php:70 +msgid "Contact details" msgstr "" -#: admin/casestatus.php:111 -msgid "Assigned to operator" +#: index.php:285 index_interface2.php:374 +msgid "Work history" msgstr "" -#: admin/casestatus.php:119 -msgid "Choose operator to assign selected cases to" +#: index.php:293 index_interface2.php:382 project_info.php:61 +msgid "Project information" msgstr "" -#: admin/casestatus.php:122 -msgid "Assign cases to operator queue" +#: index.php:309 index_interface2.php:391 +msgid "Info" msgstr "" -#: admin/casestatus.php:199 -msgid "" -"List cases by questionnaire and sample with the ability to assign them to be " -"called next in a queue by a particular operator. If you assign cases to an " -"operator, it will override the normal scheduling process and call them as " -"soon as the operator is available." +#: respondent.php:70 +msgid "Respondent Selector" msgstr "" -#: admin/dataoutput.php:202 -msgid "Download data for this questionnaire via Limesurvey" +#: respondent.php:103 contactdetails.php:99 +msgid "Respondent:" msgstr "" -#: admin/dataoutput.php:204 admin/samplecallattempts.php:184 -msgid "Please select a sample" +#: respondent.php:167 +msgid "Show details" msgstr "" -#: admin/dataoutput.php:211 -msgid "Download data for this sample via Limesurvey" +#: respondent.php:171 contactdetails.php:163 +msgid "Var" msgstr "" -#: admin/dataoutput.php:218 -msgid "Download key file: select sample var" +#: respondent.php:171 contactdetails.php:163 +msgid "Value" msgstr "" -#: admin/dataoutput.php:222 -msgid "Download complete key file" +#: shifts.php:57 +msgid "Shift List" msgstr "" -#: admin/dataoutput.php:225 -msgid "Download complete sample file with current outcomes" +#: shifts.php:80 +msgid "No shifts for this project" msgstr "" -#: admin/callrestrict.php:82 -msgid "Modify call restriction times" -msgstr "" - -#: admin/callrestrict.php:135 -msgid "Save changes to restriction times" -msgstr "" - -#: admin/operatorlist.php:60 -msgid "If changing usernames, you must specify a new password" -msgstr "" - -#: admin/operatorlist.php:116 -msgid "Successfully updated user" -msgstr "" - -#: admin/operatorlist.php:120 -msgid "Failed to update user. Please make sure the username is unique" -msgstr "" - -#: admin/operatorlist.php:129 -msgid "Operator edit" -msgstr "" - -#: admin/operatorlist.php:158 admin/operatorlist.php:293 -msgid "Username" -msgstr "" - -#: admin/operatorlist.php:162 -msgid "Update password (leave blank to keep existing password)" -msgstr "" - -#: admin/operatorlist.php:170 -msgid "Uses chat" -msgstr "" - -#: admin/operatorlist.php:171 -msgid "Timezone" -msgstr "" - -#: admin/operatorlist.php:173 -msgid "Uses VoIP" -msgstr "" - -#: admin/operatorlist.php:176 -msgid "Update operator" -msgstr "" - -#: admin/operatorlist.php:270 -msgid "Windows bat file" -msgstr "" - -#: admin/operatorlist.php:271 -msgid "*nix script file" -msgstr "" - -#: admin/operatorlist.php:279 -msgid "Enable VoIP" -msgstr "" - -#: admin/operatorlist.php:281 -msgid "Disable VoIP" -msgstr "" - -#: admin/operatorlist.php:290 -msgid "Operator list" -msgstr "" - -#: admin/operatorlist.php:297 -msgid "" -"Download the file for each user and save in the same folder as the voip.exe " -"executable. When the file is executed, it will run the voip.exe program with " -"the correct connection details to connect the operator to the VoIP server" -msgstr "" - -#: admin/operatorlist.php:299 -msgid "Download Windows VoIP Executable" -msgstr "" - -#: admin/operatorlist.php:300 -msgid "Download Linux VoIP Executable" -msgstr "" - -#: admin/operatorlist.php:305 -msgid "Enable/Disable VoIP" -msgstr "" - -#: admin/operatorlist.php:306 -msgid "Windows VoIP" -msgstr "" - -#: admin/operatorlist.php:307 -msgid "*nix VoIP" -msgstr "" - -#: admin/samplecallattempts.php:107 -msgid "Number of cases" -msgstr "" - -#: admin/samplecallattempts.php:107 -msgid "Call attempts made" -msgstr "" - -#: admin/samplecallattempts.php:170 -msgid "Sample call attempt" -msgstr "" - -#: admin/samplecallattempts.php:175 -msgid "Overall" -msgstr "" - -#: admin/samplecallattempts.php:195 -msgid "Please select a quota" -msgstr "" - -#: admin/samplecallattempts.php:201 -msgid "No calls for this quota" -msgstr "" - -#: admin/samplecallattempts.php:205 -msgid "No calls for this sample" -msgstr "" - -#: admin/samplecallattempts.php:210 -msgid "No calls for this questionnaire" -msgstr "" - -#: admin/questionnairelist.php:277 -msgid "Questionnaire list" -msgstr "" - -#: admin/questionnairelist.php:329 -msgid "Edit instrument in Limesurvey" -msgstr "" - -#: admin/questionnairelist.php:362 -msgid "Edit respondent selection instrument in Limesurvey" -msgstr "" - -#: admin/questionnairelist.php:365 -msgid "Update Questionnaire" -msgstr "" - -#: admin/questionnairelist.php:384 -msgid "Any collected data and the limesurvey instrument will NOT be deleted" -msgstr "" - -#: admin/questionnairelist.php:385 -msgid "" -"The questionnaire will be deleted from queXS including call history, cases, " -"case notes, respondent details, appointments and the links between " -"operators, clients and the questionnaire" -msgstr "" - -#: admin/questionnairelist.php:386 -msgid "Please confirm you wish to delete the questionnaire" -msgstr "" - -#: admin/questionnairelist.php:389 -msgid "Delete this questionnaire" -msgstr "" - -#: admin/timezonetemplate.php:92 -msgid "Add/Remove Timezones" -msgstr "" - -#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111 -msgid "Set default timezone" -msgstr "" - -#: admin/timezonetemplate.php:110 -msgid "Default Timezone: " -msgstr "" - -#: admin/timezonetemplate.php:115 -msgid "Click to remove a Timezone from the default list" -msgstr "" - -#: admin/timezonetemplate.php:127 -msgid "Add a Timezone:" -msgstr "" - -#: admin/timezonetemplate.php:130 -msgid "Timezone: " -msgstr "" - -#: admin/timezonetemplate.php:131 -msgid "Add Timezone" -msgstr "" - -#: admin/supervisor.php:133 -msgid "Enter a case id or select a case from the list below:" -msgstr "" - -#: admin/supervisor.php:144 -msgid "Select case from list of cases referred to the supervisor:" -msgstr "" - -#: admin/supervisor.php:153 -msgid "Select case" -msgstr "" - -#: admin/supervisor.php:176 -msgid "Set an outcome for this call" -msgstr "" - -#: admin/supervisor.php:189 admin/supervisor.php:397 -msgid "Set outcome" -msgstr "" - -#: admin/supervisor.php:300 -msgid "No appointments for this case" -msgstr "" - -#: admin/supervisor.php:302 -msgid "Create appointment for this case" -msgstr "" - -#: admin/supervisor.php:314 -msgid "Call list" -msgstr "" - -#: admin/supervisor.php:320 -msgid "Change outcome" -msgstr "" - -#: admin/supervisor.php:331 -msgid "Call attempts by timeslot" -msgstr "" - -#: admin/supervisor.php:342 -msgid "Call attempts" -msgstr "" - -#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262 -#: include/limesurvey/admin/exportresults.php:613 -#: include/limesurvey/admin/exportresults.php:614 -#: include/limesurvey/admin/exportresults.php:978 -msgid "Case notes" -msgstr "" - -#: admin/supervisor.php:378 -msgid "Modify responses for this case" -msgstr "" - -#: admin/supervisor.php:380 -msgid "Case not yet started in Limesurvey" -msgstr "" - -#: admin/supervisor.php:384 -msgid "Set a case outcome" -msgstr "" - -#: admin/supervisor.php:434 -msgid "Update case availability" -msgstr "" - -#: admin/supervisor.php:445 -msgid "Assign this case to operator (will appear as next case for them)" -msgstr "" - -#: admin/supervisor.php:457 -msgid "Assign this case to operator" -msgstr "" - -#: admin/supervisor.php:463 -msgid "Remove all sample details and contact numbers from this case" -msgstr "" - -#: admin/supervisor.php:476 -msgid "Case does not exist" -msgstr "" - -#: voip/downloadvoipclient.php:52 -msgid "Error: Cannot write to temporary directory" -msgstr "" - -#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 -msgid "morning" -msgstr "" - -#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 -msgid "afternoon" -msgstr "" - -#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 -msgid "evening" -msgstr "" - -#: functions/functions.operator.php:904 -msgid "" -"ERROR: You do not have server side authentication enabled therefore queXS " -"cannot determine which user is accessing the system." -msgstr "" - -#: functions/functions.calendar.php:265 -msgid "First name:" -msgstr "" - -#: functions/functions.calendar.php:266 -msgid "Last name:" -msgstr "" - -#: functions/functions.calendar.php:271 -msgid "Time Zone:" -msgstr "" - -#: functions/functions.calendar.php:328 -msgid "Shift from:" -msgstr "" - -#: functions/functions.calendar.php:335 -msgid "Start Time" -msgstr "" - -#: functions/functions.calendar.php:385 -msgid "End Time" -msgstr "" - -#: functions/functions.performance.php:469 -msgid "No shift" -msgstr "" - -#: functions/functions.performance.php:492 -msgid "Total completions" -msgstr "" - -#: functions/functions.performance.php:521 -msgid "Completions this shift" -msgstr "" - -#: functions/functions.performance.php:544 -#: functions/functions.performance.php:590 -msgid "No previous shift" -msgstr "" - -#: functions/functions.performance.php:564 -msgid "Completions on the previous shift" -msgstr "" - -#: functions/functions.performance.php:611 -msgid "Completions this time on the previous shift" -msgstr "" - -#: functions/functions.performance.php:629 -msgid "No calls made for this shift" -msgstr "" - -#: functions/functions.performance.php:631 -msgid "Top CPH for this shift" -msgstr "" - -#: functions/functions.performance.php:648 -msgid "No calls made for this project" -msgstr "" - -#: functions/functions.performance.php:650 -msgid "Top CPH" -msgstr "" - -#: functions/functions.import.php:89 -msgid "Duplicate name" -msgstr "" - -#: functions/functions.import.php:111 -msgid "You must select one and one only Primary Phone number" -msgstr "" - -#: functions/functions.import.php:127 -msgid "Import?" -msgstr "" - -#: functions/functions.import.php:127 -msgid "Type" -msgstr "" - -#: functions/functions.voip.php:449 -msgid "online" -msgstr "" - -#: functions/functions.voip.php:449 -msgid "offline" -msgstr "" - -#: functions/functions.voip.php:528 -msgid "Disconnected" -msgstr "" - -#: functions/functions.voip.php:530 -msgid "Reconnected" -msgstr "" - -#: functions/functions.voip.php:553 functions/functions.voip.php:565 -#: functions/functions.voip.php:577 functions/functions.voip.php:587 -#: functions/functions.voip.php:596 -msgid " Extension " -msgstr "" - -#: functions/functions.voip.php:587 -msgid "Unregistered" -msgstr "" - -#: functions/functions.voip.php:596 -msgid "Registered" -msgstr "" - -#: functions/functions.freepbx.php:138 -#, php-format -msgid "Reload failed because retrieve_conf encountered an error: %s" -msgstr "" - -#: functions/functions.freepbx.php:140 -msgid "retrieve_conf failed, config not applied" -msgstr "" - -#: functions/functions.freepbx.php:146 -msgid "" -"Reload failed because FreePBX could not connect to the asterisk manager " -"interface." -msgstr "" - -#: functions/functions.freepbx.php:165 -msgid "" -"Could not reload the FOP operator panel server using the bounce_op.sh " -"script. Configuration changes may not be reflected in the panel display." -msgstr "" - -#: functions/functions.freepbx.php:174 -#, php-format -msgid "Exit code was %s and output was: %s" +#: shifts.php:101 +msgid "No future shifts scheduled" msgstr "" #: display/index.php:111 msgid "Display" msgstr "" -#: client/index.php:72 -msgid "There are no questionnaires assigned to you" +#: supervisor.php:61 +msgid "Please wait till you have ended this call to call the supervisor" msgstr "" -#: client/index.php:123 -msgid "You are not a valid client" +#: supervisor.php:105 +msgid "You may now close this window" msgstr "" -#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753 -msgid "Not on an appointment" +#: supervisor.php:110 +msgid "Calling the supervisor, you may close this window" msgstr "" -#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 -msgid "On an appointment" +#: supervisor.php:115 +msgid "Click here to call the supervisor's phone. Otherwise close this window" msgstr "" -#: include/limesurvey/quexs.php:987 -msgid "All samples" +#: supervisor.php:116 +msgid "Hangup when calling the supervisor" msgstr "" -#: include/limesurvey/common_functions.php:6298 -msgid "queXS: Number of call attempts" +#: supervisor.php:121 +msgid "Try calling the supervisor" msgstr "" -#: include/limesurvey/common_functions.php:6299 -msgid "queXS: On appointment?" -msgstr "" - -#: include/limesurvey/common_functions.php:6300 -msgid "queXS: Percentage complete" -msgstr "" - -#: include/limesurvey/common_functions.php:6301 -msgid "queXS: Number of answering machine messages left" -msgstr "" - -#: include/limesurvey/optout.php:83 -msgid "Self completion refused via opt out function" -msgstr "" - -#: include/limesurvey/admin/browse.php:791 -#: include/limesurvey/admin/vvexport.php:69 -#: include/limesurvey/admin/exportresults.php:110 -#: include/limesurvey/admin/statistics.php:268 -msgid "Questionnaire and Sample selection:" -msgstr "" - -#: include/limesurvey/admin/browse.php:792 -#: include/limesurvey/admin/vvexport.php:70 -#: include/limesurvey/admin/exportresults.php:111 -#: include/limesurvey/admin/statistics.php:269 -msgid "All queXS questionnaires and samples associated with this instrument" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:257 -msgid "Token" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:259 -#: include/limesurvey/admin/exportresults.php:648 -#: include/limesurvey/admin/exportresults.php:649 -#: include/limesurvey/admin/exportresults.php:969 -msgid "Case outcome" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:260 -#: include/limesurvey/admin/exportresults.php:603 -#: include/limesurvey/admin/exportresults.php:604 -#: include/limesurvey/admin/exportresults.php:972 -msgid "Number of call attempts" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:261 -#: include/limesurvey/admin/exportresults.php:608 -#: include/limesurvey/admin/exportresults.php:609 -#: include/limesurvey/admin/exportresults.php:975 -msgid "Number of answering machine messages left" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:263 -#: include/limesurvey/admin/exportresults.php:618 -#: include/limesurvey/admin/exportresults.php:619 -#: include/limesurvey/admin/exportresults.php:981 -msgid "Total interview time over all calls (mins)" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:264 -#: include/limesurvey/admin/exportresults.php:623 -#: include/limesurvey/admin/exportresults.php:624 -#: include/limesurvey/admin/exportresults.php:984 -msgid "Interview time for last call (mins)" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:265 -#: include/limesurvey/admin/exportresults.php:628 -#: include/limesurvey/admin/exportresults.php:629 -#: include/limesurvey/admin/exportresults.php:987 -msgid "Last number dialled" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:266 -#: include/limesurvey/admin/exportresults.php:633 -#: include/limesurvey/admin/exportresults.php:634 -#: include/limesurvey/admin/exportresults.php:990 -msgid "Operator username for last call" -msgstr "" - -#: include/php-gettext-1.0.11/examples/pigs_dropin.php:77 -#: include/php-gettext-1.0.11/examples/pigs_fallback.php:76 +#: supervisor.php:128 msgid "" -"This is how the story goes.\n" -"\n" +"Please wait for this call to answer before attempting to call the supervisor" +msgstr "" + +#: endwork.php:45 +msgid "End of work" +msgstr "" + +#: endwork.php:49 +msgid "You have been automatically logged out of work due to inactivity" +msgstr "" + +#: endwork.php:52 +msgid "Work has ended. That is it" +msgstr "" + +#: endwork.php:70 +msgid "You have been unassigned from your extension" +msgstr "" + +#: endwork.php:75 +msgid "Go back to work" +msgstr "" + +#: nocallavailable.php:80 +msgid "No call available" +msgstr "" + +#: nocallavailable.php:83 +msgid "Please click on:" +msgstr "" + +#: nocallavailable.php:83 +msgid "to display call script" +msgstr "" + +#: nocallavailable.php:216 +msgid "" +"Your VoIP extension is not active. Please activate VoIP by clicking once on " +"the red button that says 'VoIP Off'" +msgstr "" + +#: nocallavailable.php:222 +msgid "Auto dialling unavailable as VoIP is not enabled" +msgstr "" + +#: nocallavailable.php:228 +msgid "Auto dialling unavailable as you are already on a call" +msgstr "" + +#: rs_quota_end.php:61 +msgid "Respondent Selection - Project Quota End" +msgstr "" + +#: rs_quota_end.php:72 rs_quota_end.php:78 +msgid "End call with outcome: Quota filled" msgstr "" diff --git a/locale/updatepo.sh b/locale/updatepo.sh new file mode 100755 index 00000000..f6251dfa --- /dev/null +++ b/locale/updatepo.sh @@ -0,0 +1,9 @@ +#!/bin/bash +#Source: http://stackoverflow.com/questions/7496156/gettext-how-to-update-po-and-pot-files-after-the-source-is-modified +echo '' > messages.po # xgettext needs that file, and we need it empty +cd .. +find . -type f -iname "*.php" | xgettext --keyword='T_' -o locale/messages.po -j -f - +cd locale +msgmerge -N quexs.pot messages.po > new.po +mv new.po quexs.pot +rm messages.po From b592efdf9d9b75e5732db393131a2b952a875c1f Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 9 Feb 2015 12:38:36 +1100 Subject: [PATCH 28/34] Fixed typo in SQL --- admin/systemsortprocess.php | 2 +- functions/functions.operator.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index 8de238df..1dd11bff 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -244,7 +244,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id) LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id) LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id) - LEFT JOIN questionnaire_sample_timeslot AS qasts ON (qasts.questionnaire_id = c.questionnaire_id AND quasts.sample_import_id = si.sample_import_id) + LEFT JOIN questionnaire_sample_timeslot AS qasts ON (qasts.questionnaire_id = c.questionnaire_id AND qasts.sample_import_id = si.sample_import_id) WHERE c.current_operator_id IS NULL AND c.questionnaire_id = '$questionnaire_id' AND ((apn.appointment_id IS NOT NULL) OR casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) diff --git a/functions/functions.operator.php b/functions/functions.operator.php index 4f9b2be7..1b223c5c 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -625,7 +625,7 @@ function get_case_id($operator_id, $create = false) LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id) LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id) LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id) - LEFT JOIN questionnaire_sample_timeslot AS qasts ON (qasts.questionnaire_id = c.questionnaire_id AND quasts.sample_import_id = si.sample_import_id) + LEFT JOIN questionnaire_sample_timeslot AS qasts ON (qasts.questionnaire_id = c.questionnaire_id AND qasts.sample_import_id = si.sample_import_id) JOIN operator_skill as os on (os.operator_id = op.operator_id and os.outcome_type_id = ou.outcome_type_id) WHERE c.current_operator_id IS NULL AND ((apn.appointment_id IS NOT NULL) OR casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end )) From f7f6c1e6c538abffe30e3e0bdbcba279c78c385b Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Mon, 9 Feb 2015 12:44:32 +1100 Subject: [PATCH 29/34] Updated translation file (loaded incorrect translations) --- locale/quexs.pot | 511 +++++++++++++++++++++-------------------------- 1 file changed, 223 insertions(+), 288 deletions(-) diff --git a/locale/quexs.pot b/locale/quexs.pot index 324be679..ef94caa7 100644 --- a/locale/quexs.pot +++ b/locale/quexs.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: queXS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-09 12:09+1100\n" +"POT-Creation-Date: 2015-02-09 12:43+1100\n" "PO-Revision-Date: \n" "Last-Translator: Adam Zammit \n" "Language-Team: \n" @@ -246,7 +246,7 @@ msgstr "" #: functions/functions.voip.php:449 selectextension.php:108 status.php:99 #: admin/operatorlist.php:167 admin/operatorlist.php:293 -#: admin/exten_tab.php:155 admin/extensionstatus.php:200 +#: admin/extensionstatus.php:200 msgid "Extension" msgstr "" @@ -441,7 +441,7 @@ msgstr "" msgid "Referrals not available for this questionnaire" msgstr "" -#: performance.php:61 admin/index_3.php:382 admin/index.php:86 index.php:277 +#: performance.php:61 admin/index.php:86 index.php:277 #: index_interface2.php:366 msgid "Performance" msgstr "" @@ -456,7 +456,7 @@ msgstr "" #: admin/operatorlist.php:293 admin/supervisor.php:320 #: admin/supervisor.php:361 admin/operatorperformance.php:81 #: admin/operatorperformance.php:104 admin/shiftreport.php:104 -#: admin/exten_tab.php:155 admin/extensionstatus.php:200 +#: admin/extensionstatus.php:200 msgid "Operator" msgstr "" @@ -482,12 +482,11 @@ msgstr "" msgid "Add note" msgstr "" -#: casenote.php:69 admin/index_3.php:88 admin/samplelist.php:128 -#: admin/samplelist.php:180 admin/samplelist.php:217 -#: admin/questionnairelist.php:329 admin/questionnairelist.php:383 -#: admin/availability.php:109 admin/operatorlist.php:145 -#: admin/assignsample.php:141 admin/extensionstatus.php:143 respondent.php:96 -#: contactdetails.php:92 +#: casenote.php:69 admin/samplelist.php:128 admin/samplelist.php:180 +#: admin/samplelist.php:217 admin/questionnairelist.php:329 +#: admin/questionnairelist.php:383 admin/availability.php:109 +#: admin/operatorlist.php:145 admin/assignsample.php:141 +#: admin/extensionstatus.php:143 respondent.php:96 contactdetails.php:92 msgid "Go back" msgstr "" @@ -652,8 +651,8 @@ msgstr "" #: include/limesurvey/admin/exportresults.php:644 #: include/limesurvey/admin/exportresults.php:966 callhistory.php:83 #: admin/callhistory.php:96 admin/callhistory.php:111 -#: admin/casesbyoutcome.php:87 admin/exten_tab.php:155 -#: admin/extensionstatus.php:200 admin/displayappointments.php:243 +#: admin/casesbyoutcome.php:87 admin/extensionstatus.php:200 +#: admin/displayappointments.php:243 msgid "Case ID" msgstr "" @@ -831,8 +830,8 @@ msgid "" "number)" msgstr "" -#: supervisorchat.php:56 admin/index_3.php:436 admin/supervisorchat.php:61 -#: admin/index.php:106 index.php:301 +#: supervisorchat.php:56 admin/supervisorchat.php:61 admin/index.php:106 +#: index.php:301 msgid "Supervisor chat" msgstr "" @@ -982,11 +981,10 @@ msgstr "" msgid "Current shifts available:" msgstr "" -#: nocaseavailable.php:138 admin/index_3.php:309 -#: admin/questionnairelist.php:397 admin/callhistory.php:96 -#: admin/callhistory.php:111 admin/assignsample.php:138 -#: admin/supervisor.php:297 admin/casestatus.php:208 -#: admin/displayappointments.php:243 shifts.php:103 +#: nocaseavailable.php:138 admin/questionnairelist.php:397 +#: admin/callhistory.php:96 admin/callhistory.php:111 +#: admin/assignsample.php:138 admin/supervisor.php:297 +#: admin/casestatus.php:208 admin/displayappointments.php:243 shifts.php:103 msgid "Questionnaire" msgstr "" @@ -1126,219 +1124,6 @@ msgstr "" msgid "Select call attempt time slot:" msgstr "" -#: admin/index_3.php:27 admin/index.php:46 -msgid "Administrative Tools" -msgstr "" - -#: admin/index_3.php:72 -msgid "MENU toggle" -msgstr "" - -#: admin/index_3.php:82 -msgid "Home" -msgstr "" - -#: admin/index_3.php:92 -msgid "Current page" -msgstr "" - -#: admin/index_3.php:308 -msgid "Dashboard" -msgstr "" - -#: admin/index_3.php:311 admin/index.php:51 admin/new.php:153 -msgid "Create an instrument in Limesurvey" -msgstr "" - -#: admin/index_3.php:312 admin/index.php:52 -msgid "Create a new questionnaire" -msgstr "" - -#: admin/index_3.php:313 admin/index.php:53 -msgid "Questionnaire management" -msgstr "" - -#: admin/index_3.php:314 admin/index.php:54 -msgid "Administer instruments with Limesurvey" -msgstr "" - -#: admin/index_3.php:317 -msgid "Sample Lists" -msgstr "" - -#: admin/index_3.php:319 admin/index.php:57 -msgid "Import a sample file (in CSV form)" -msgstr "" - -#: admin/index_3.php:320 admin/index.php:58 -msgid "Sample management" -msgstr "" - -#: admin/index_3.php:321 admin/index.php:59 -msgid "Assign samples to questionnaires" -msgstr "" - -#: admin/index_3.php:322 admin/index.php:60 -msgid "Set values in questionnaire to pre fill" -msgstr "" - -#: admin/index_3.php:325 -msgid "Quotas" -msgstr "" - -#: admin/index_3.php:327 admin/index.php:62 admin/index.php:63 -#: admin/quota.php:109 -msgid "Quota management" -msgstr "" - -#: admin/index_3.php:328 admin/index.php:64 admin/quotarow.php:126 -msgid "Quota row management" -msgstr "" - -#: admin/index_3.php:331 -msgid "Operators" -msgstr "" - -#: admin/index_3.php:334 admin/index.php:67 -msgid "Add operators to the system" -msgstr "" - -#: admin/index_3.php:337 admin/index_3.php:456 admin/index.php:66 -#: admin/index.php:68 admin/index.php:113 -msgid "Operator management" -msgstr "" - -#: admin/index_3.php:340 admin/index_3.php:459 admin/index.php:114 -msgid "Extension status" -msgstr "" - -#: admin/index_3.php:343 admin/index.php:69 -#: admin/operatorquestionnaire.php:155 admin/operatorquestionnaire.php:276 -msgid "Assign operators to questionnaires" -msgstr "" - -#: admin/index_3.php:346 admin/index.php:70 admin/operatorskill.php:272 -msgid "Modify operator skills" -msgstr "" - -#: admin/index_3.php:350 admin/index.php:72 -msgid "Availability and shift management" -msgstr "" - -#: admin/index_3.php:353 -msgid "Manage availablity groups" -msgstr "" - -#: admin/index_3.php:356 admin/index.php:74 -msgid "Assign availabilities to questionnaires" -msgstr "" - -#: admin/index_3.php:359 admin/index.php:77 -msgid "Shift management (add/remove)" -msgstr "" - -#: admin/index_3.php:363 admin/index.php:79 -msgid "Questionnaire progress" -msgstr "" - -#: admin/index_3.php:366 admin/index.php:80 -msgid "Display all future appointments" -msgstr "" - -#: admin/index_3.php:369 admin/index.php:81 -msgid "Sample call attempts report" -msgstr "" - -#: admin/index_3.php:372 admin/quotareport.php:109 admin/index.php:82 -msgid "Quota report" -msgstr "" - -#: admin/index_3.php:375 admin/index.php:83 -msgid "Questionnaire outcomes" -msgstr "" - -#: admin/index_3.php:378 admin/index.php:84 admin/dataoutput.php:186 -msgid "Data output" -msgstr "" - -#: admin/index_3.php:385 admin/outcomes.php:297 admin/index.php:87 -msgid "Operator performance" -msgstr "" - -#: admin/index_3.php:389 admin/index.php:89 -msgid "Client management" -msgstr "" - -#: admin/index_3.php:392 admin/index.php:90 -msgid "Add clients to the system" -msgstr "" - -#: admin/index_3.php:395 admin/clientquestionnaire.php:150 -#: admin/clientquestionnaire.php:271 admin/index.php:91 -msgid "Assign clients to questionnaires" -msgstr "" - -#: admin/index_3.php:399 admin/index.php:93 admin/supervisor.php:131 -msgid "Supervisor functions" -msgstr "" - -#: admin/index_3.php:402 admin/index.php:94 -msgid "Assign outcomes to cases" -msgstr "" - -#: admin/index_3.php:405 admin/index.php:95 -msgid "Search the sample" -msgstr "" - -#: admin/index_3.php:408 admin/index.php:96 index.php:250 -#: index_interface2.php:339 -msgid "Call history" -msgstr "" - -#: admin/index_3.php:411 admin/index.php:97 admin/shiftreport.php:61 -msgid "Shift reports" -msgstr "" - -#: admin/index_3.php:414 admin/index.php:98 admin/casestatus.php:198 -msgid "Case status and assignment" -msgstr "" - -#: admin/index_3.php:417 admin/bulkappointment.php:250 admin/index.php:99 -msgid "Bulk appointment generator" -msgstr "" - -#: admin/index_3.php:421 admin/index.php:101 -msgid "System settings" -msgstr "" - -#: admin/index_3.php:424 admin/index.php:102 -msgid "Set default timezone list" -msgstr "" - -#: admin/index_3.php:427 admin/index.php:103 -msgid "Set default shift times" -msgstr "" - -#: admin/index_3.php:430 admin/index.php:104 -msgid "Set call restriction times" -msgstr "" - -#: admin/index_3.php:433 admin/centreinfo.php:63 admin/index.php:105 -msgid "Set centre information" -msgstr "" - -#: admin/index_3.php:439 admin/index.php:107 -msgid "Start and monitor system wide case sorting" -msgstr "" - -#: admin/index_3.php:450 admin/index.php:111 -msgid "VoIP" -msgstr "" - -#: admin/index_3.php:453 admin/index.php:112 -msgid "Start and monitor VoIP" -msgstr "" - #: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134 #: admin/samplelist.php:279 msgid "Rename" @@ -1481,38 +1266,6 @@ msgstr "" msgid "Failed to complete sort" msgstr "" -#: admin/login.php:11 -msgid "Login to " -msgstr "" - -#: admin/login.php:31 admin/login.php:61 -msgid "LOG IN" -msgstr "" - -#: admin/login.php:31 -msgid "to continue..." -msgstr "" - -#: admin/login.php:39 -msgid "Your Photo " -msgstr "" - -#: admin/login.php:49 admin/operatorlist.php:158 admin/operatorlist.php:293 -msgid "Username" -msgstr "" - -#: admin/login.php:57 -msgid "Password" -msgstr "" - -#: admin/login.php:69 -msgid "Don't have an account?" -msgstr "" - -#: admin/login.php:69 -msgid "Register Here " -msgstr "" - #: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99 msgid "Monitor system wide case sorting" msgstr "" @@ -1631,6 +1384,10 @@ msgstr "" msgid "Add user" msgstr "" +#: admin/quotareport.php:109 admin/index.php:82 +msgid "Quota report" +msgstr "" + #: admin/quotareport.php:118 admin/samplesearch.php:84 #: admin/questionnairecatimeslotssample.php:107 admin/quota.php:123 #: admin/quotarow.php:140 @@ -1816,6 +1573,10 @@ msgstr "" msgid "Shift" msgstr "" +#: admin/outcomes.php:297 admin/index.php:87 +msgid "Operator performance" +msgstr "" + #: admin/samplesearch.php:83 msgid "Search sample" msgstr "" @@ -1891,6 +1652,10 @@ msgstr "" msgid "Import: Select file to upload" msgstr "" +#: admin/bulkappointment.php:250 admin/index.php:99 +msgid "Bulk appointment generator" +msgstr "" + #: admin/bulkappointment.php:251 msgid "" "Provide a headered CSV file containing at least 3 columns - caseid, " @@ -2212,6 +1977,11 @@ msgstr "" msgid "Delete this time slot group" msgstr "" +#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271 +#: admin/index.php:91 +msgid "Assign clients to questionnaires" +msgstr "" + #: admin/questionnaireavailability.php:93 msgid "Assign availability group to questionnaire" msgstr "" @@ -2262,6 +2032,10 @@ msgstr "" msgid "Edit" msgstr "" +#: admin/operatorlist.php:158 admin/operatorlist.php:293 +msgid "Username" +msgstr "" + #: admin/operatorlist.php:162 msgid "Update password (leave blank to keep existing password)" msgstr "" @@ -2313,6 +2087,10 @@ msgstr "" msgid "*nix VoIP" msgstr "" +#: admin/centreinfo.php:63 admin/index.php:105 +msgid "Set centre information" +msgstr "" + #: admin/centreinfo.php:67 msgid "Set centre information: " msgstr "" @@ -2357,18 +2135,175 @@ msgstr "" msgid "Add sample" msgstr "" +#: admin/index.php:46 +msgid "Administrative Tools" +msgstr "" + #: admin/index.php:50 msgid "Questionnaire creation and management" msgstr "" +#: admin/index.php:51 admin/new.php:153 +msgid "Create an instrument in Limesurvey" +msgstr "" + +#: admin/index.php:52 +msgid "Create a new questionnaire" +msgstr "" + +#: admin/index.php:53 +msgid "Questionnaire management" +msgstr "" + +#: admin/index.php:54 +msgid "Administer instruments with Limesurvey" +msgstr "" + #: admin/index.php:56 msgid "Sample/List management" msgstr "" +#: admin/index.php:57 +msgid "Import a sample file (in CSV form)" +msgstr "" + +#: admin/index.php:58 +msgid "Sample management" +msgstr "" + +#: admin/index.php:59 +msgid "Assign samples to questionnaires" +msgstr "" + +#: admin/index.php:60 +msgid "Set values in questionnaire to pre fill" +msgstr "" + +#: admin/index.php:62 admin/index.php:63 admin/quota.php:109 +msgid "Quota management" +msgstr "" + +#: admin/index.php:64 admin/quotarow.php:126 +msgid "Quota row management" +msgstr "" + +#: admin/index.php:66 admin/index.php:68 admin/index.php:113 +msgid "Operator management" +msgstr "" + +#: admin/index.php:67 +msgid "Add operators to the system" +msgstr "" + +#: admin/index.php:69 admin/operatorquestionnaire.php:155 +#: admin/operatorquestionnaire.php:276 +msgid "Assign operators to questionnaires" +msgstr "" + +#: admin/index.php:70 admin/operatorskill.php:272 +msgid "Modify operator skills" +msgstr "" + +#: admin/index.php:72 +msgid "Availability and shift management" +msgstr "" + #: admin/index.php:73 msgid "Manage time slots" msgstr "" +#: admin/index.php:74 +msgid "Assign availabilities to questionnaires" +msgstr "" + +#: admin/index.php:77 +msgid "Shift management (add/remove)" +msgstr "" + +#: admin/index.php:79 +msgid "Questionnaire progress" +msgstr "" + +#: admin/index.php:80 +msgid "Display all future appointments" +msgstr "" + +#: admin/index.php:81 +msgid "Sample call attempts report" +msgstr "" + +#: admin/index.php:83 +msgid "Questionnaire outcomes" +msgstr "" + +#: admin/index.php:84 admin/dataoutput.php:186 +msgid "Data output" +msgstr "" + +#: admin/index.php:89 +msgid "Client management" +msgstr "" + +#: admin/index.php:90 +msgid "Add clients to the system" +msgstr "" + +#: admin/index.php:93 admin/supervisor.php:131 +msgid "Supervisor functions" +msgstr "" + +#: admin/index.php:94 +msgid "Assign outcomes to cases" +msgstr "" + +#: admin/index.php:95 +msgid "Search the sample" +msgstr "" + +#: admin/index.php:96 index.php:250 index_interface2.php:339 +msgid "Call history" +msgstr "" + +#: admin/index.php:97 admin/shiftreport.php:61 +msgid "Shift reports" +msgstr "" + +#: admin/index.php:98 admin/casestatus.php:198 +msgid "Case status and assignment" +msgstr "" + +#: admin/index.php:101 +msgid "System settings" +msgstr "" + +#: admin/index.php:102 +msgid "Set default timezone list" +msgstr "" + +#: admin/index.php:103 +msgid "Set default shift times" +msgstr "" + +#: admin/index.php:104 +msgid "Set call restriction times" +msgstr "" + +#: admin/index.php:107 +msgid "Start and monitor system wide case sorting" +msgstr "" + +#: admin/index.php:111 +msgid "VoIP" +msgstr "" + +#: admin/index.php:112 +msgid "Start and monitor VoIP" +msgstr "" + +#: admin/index.php:114 +msgid "Extension status" +msgstr "" + #: admin/samplecallattempts.php:107 msgid "Number of cases" msgstr "" @@ -2870,30 +2805,6 @@ msgstr "" msgid "Modify report" msgstr "" -#: admin/exten_tab.php:74 admin/extensionstatus.php:101 -msgid "Failed to add extension. There already may be an extension of this name" -msgstr "" - -#: admin/exten_tab.php:155 admin/extensionstatus.php:200 -msgid "Assignment" -msgstr "" - -#: admin/exten_tab.php:155 admin/extensionstatus.php:200 -msgid "VoIP Status" -msgstr "" - -#: admin/exten_tab.php:155 admin/extensionstatus.php:200 -msgid "Call state" -msgstr "" - -#: admin/exten_tab.php:155 admin/extensionstatus.php:200 -msgid "Time on call" -msgstr "" - -#: admin/exten_tab.php:158 admin/extensionstatus.php:203 -msgid "No extensions" -msgstr "" - #: admin/casestatus.php:112 msgid "Case available in x minutes" msgstr "" @@ -2932,6 +2843,10 @@ msgstr "" msgid "Save changes to shifts" msgstr "" +#: admin/extensionstatus.php:101 +msgid "Failed to add extension. There already may be an extension of this name" +msgstr "" + #: admin/extensionstatus.php:133 msgid "Display extension status" msgstr "" @@ -2956,6 +2871,26 @@ msgstr "" msgid "Unassign the operator from this extension to be able to delete it" msgstr "" +#: admin/extensionstatus.php:200 +msgid "Assignment" +msgstr "" + +#: admin/extensionstatus.php:200 +msgid "VoIP Status" +msgstr "" + +#: admin/extensionstatus.php:200 +msgid "Call state" +msgstr "" + +#: admin/extensionstatus.php:200 +msgid "Time on call" +msgstr "" + +#: admin/extensionstatus.php:203 +msgid "No extensions" +msgstr "" + #: admin/extensionstatus.php:205 msgid "Add an extension" msgstr "" From 3ed6a8545eff89e9471a6a28a5f1ee087587a8d1 Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Thu, 19 Feb 2015 10:25:06 +1100 Subject: [PATCH 30/34] Disable check for available cases on no case available page as it is too time consuming --- nocaseavailable.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nocaseavailable.php b/nocaseavailable.php index ff8315de..edf61330 100644 --- a/nocaseavailable.php +++ b/nocaseavailable.php @@ -141,6 +141,8 @@ else ?>

    " . T_("There are ") . $rs['c'] . T_(" unassigned case(s) available within the specified call restrictions") . "

    "; } - + */ ?>

    From 128104e16bdb7be8ea9c774da4c80730866a39ae Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Thu, 26 Feb 2015 11:02:26 +1100 Subject: [PATCH 31/34] Added readme for GIT --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..c37f1c36 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +#queXS + +An Open Source, web based, CATI system + +queXS can operate your outbound telephone research centre. It integrates with the Asterisk VoIP Server, uses AAPOR Standard Outcome codes and only requires a web browser to operate. + +Development for queXS occurs on Launchpad: https://launchpad.net/quexs From a475567889d232400fbbc1352fc99e35938b4b9d Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Thu, 26 Mar 2015 16:01:20 +1100 Subject: [PATCH 32/34] Fixes lp:1436664 - System sort process fails where database name not 'quexs' Also fixes notices generated where the default language doesn't match the questionnaire language on quota reporting --- functions/functions.limesurvey.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/functions/functions.limesurvey.php b/functions/functions.limesurvey.php index 71682d03..6327c4bb 100644 --- a/functions/functions.limesurvey.php +++ b/functions/functions.limesurvey.php @@ -293,7 +293,7 @@ function limesurvey_quota_replicate_completions($lime_sid,$questionnaire_id,$sam $sql = "SELECT COUNT(*) FROM information_schema.tables - WHERE table_schema = 'quexs' + WHERE table_schema = '".DB_NAME."' AND table_name = '" . LIME_PREFIX . "survey_$lime_sid'"; $rs = $db->GetOne($sql); @@ -402,7 +402,7 @@ function limesurvey_quota_completions($lime_sgqa,$lime_sid,$questionnaire_id,$sa $sql = "SELECT COUNT(*) FROM information_schema.tables - WHERE table_schema = 'quexs' + WHERE table_schema = '".DB_NAME."' AND table_name = '" . LIME_PREFIX . "survey_$lime_sid'"; $rs = $db->GetOne($sql); @@ -432,18 +432,18 @@ function limesurvey_quota_completions($lime_sgqa,$lime_sid,$questionnaire_id,$sa * Based on GetQuotaInformation() from common.php in Limesurvey * * @param int $lime_quota_id The quota id to get information on - * @param string $baselang The base language for getting information from questions * @return array An array containing the question information for comparison */ -function get_limesurvey_quota_info($lime_quota_id,$baselang = DEFAULT_LOCALE) +function get_limesurvey_quota_info($lime_quota_id) { global $db; $ret = array(); - $sql = "SELECT * - FROM ".LIME_PREFIX."quota_members - WHERE quota_id='$lime_quota_id'"; + $sql = "SELECT q.*,s.language + FROM ".LIME_PREFIX."quota_members as q, ".LIME_PREFIX."surveys as s + WHERE q.quota_id='$lime_quota_id' + AND s.sid = q.sid"; $rs = $db->GetAll($sql); @@ -451,11 +451,12 @@ function get_limesurvey_quota_info($lime_quota_id,$baselang = DEFAULT_LOCALE) { $lime_qid = $quota_entry['qid']; $surveyid = $quota_entry['sid']; + $language = $quota_entry['language']; $sql = "SELECT type, title,gid FROM ".LIME_PREFIX."questions WHERE qid='$lime_qid' - AND language='$baselang'"; + AND language='$language'"; $qtype = $db->GetRow($sql); From 22dfe12e41ebcce18ba7023828c0be8315d1a3ad Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Wed, 6 May 2015 09:34:14 +1000 Subject: [PATCH 33/34] Fixes lp:1452070 New numbers still drawn when 'allow new numbers to be drawn' set to No Dev: Was only occuring when system sort process enabled --- admin/systemsortprocess.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index 1dd11bff..b13e7f43 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -289,7 +289,7 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin $sql = "SELECT s.sample_id as sample_id,qs.questionnaire_id as questionnaire_id FROM sample as s - JOIN (questionnaire_sample as qs, questionnaire as q, sample_import as si) on (qs.sample_import_id = s.import_id and si.sample_import_id = s.import_id and q.questionnaire_id = qs.questionnaire_id AND q.questionnaire_id = '$questionnaire_id') + JOIN (questionnaire_sample as qs, questionnaire as q, sample_import as si) on (qs.sample_import_id = s.import_id and si.sample_import_id = s.import_id and q.questionnaire_id = qs.questionnaire_id AND q.questionnaire_id = '$questionnaire_id' AND qs.allow_new = 1) LEFT JOIN `case` as c on (c.sample_id = s.sample_id and c.questionnaire_id = qs.questionnaire_id) LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end) LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end)) From 5c0fa55d2941390fcddfbb6824d57fee6802949c Mon Sep 17 00:00:00 2001 From: Adam Zammit Date: Tue, 2 Jun 2015 12:24:24 +1000 Subject: [PATCH 34/34] Bug Fix: lp:1459935 When no operators have an extension assigned, questionnaires in test mode fail to create phone numbers for new cases --- functions/functions.operator.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/functions.operator.php b/functions/functions.operator.php index 1b223c5c..ecec5328 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -367,10 +367,10 @@ function add_case($sample_id,$questionnaire_id,$operator_id = "NULL",$testing = $db->Execute("SET @row := 0"); $sql = "INSERT INTO contact_phone (case_id,priority,phone,description) - SELECT $case_id as case_id,@row := @row + 1 AS priority,SUBSTRING_INDEX(e.extension,'/',-1) as phone, CONCAT(o.firstName, ' ', o.lastName) - FROM operator as o, `extension` as e - WHERE o.enabled = 1 - AND e.current_operator_id = o.operator_id"; + SELECT $case_id as case_id,@row := @row + 1 AS priority,IFNULL(SUBSTRING_INDEX(e.extension,'/',-1),'312345678') as phone, CONCAT(o.firstName, ' ', o.lastName) + FROM operator as o + LEFT JOIN `extension` as e ON (e.current_operator_id = o.operator_id) + WHERE o.enabled = 1"; $db->Execute($sql); }