diff --git a/CHANGELOG b/CHANGELOG
index 8811347b..9a25c201 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -38,6 +38,33 @@ ALTER TABLE `questionnaire_sample_quota_row`
DROP `exclude_var`,
DROP `exclude_val`;
+queXS 1.10.4 - Changes since 1.10.3
+
+Fixed bug: Quota priority could get below 0
+Fixed bug: Process won't close itself if forced killed before it has a chance to close
+Fixed bug: lp:1338395 - Quotas being incremented in samples that have not yet been accessed
+Fixed bug: Download VoIP client script failing
+Translations: Updated from Launchpad. Thank you for contributing!
+
+queXS 1.10.3 - Changes since 1.10.2
+
+Fixed bug: Initial page is always Call/Hangup even if on a call or no case available
+Fixed bug: When last outcome is Technical Phone Problems, case outcome set to not attempted or worked
+Translations: Almost complete Simplified Chinese translation added - Thank you!
+
+queXS 1.10.2 - Changes since 1.10.1
+
+New Feature: Shift report in data output
+New feature: Deidentify a case
+
+Fixed bug: OPERATOR and RESPONDENT replacements not working in respondent selection module
+Fixed bug: Not adding interviewer to htgroup when changing username
+Fixed bug: Not all browsers recognise text as UTF-8
+Fixed bug: Not all strings being translated
+Fixed bug: Session expiry occurring when moving from respondent selection module to questionnaire
+
+Updated translations and the beginning of a German translation - Thank you Daniel.
+
queXS 1.10.1 - Changes since 1.10.0
Fixed Bug: Database creation fails due to additional comma (new installations)
diff --git a/admin/supervisor.php b/admin/supervisor.php
index 51817e63..1572e50b 100644
--- a/admin/supervisor.php
+++ b/admin/supervisor.php
@@ -72,6 +72,50 @@ $operator_id = get_operator_id();
$case_id = false;
if (isset($_GET['case_id'])) $case_id = bigintval($_GET['case_id']);
+if (isset($_GET['deidentify']))
+{
+ //remove all sample vars
+ $db->StartTrans();
+
+ $sql = "SELECT sample_id
+ FROM `case`
+ WHERE case_id = $case_id";
+
+ $sample_id = $db->GetOne($sql);
+
+ $sql = "DELETE FROM sample_var
+ WHERE sample_id = $sample_id";
+
+ $db->Execute($sql);
+
+ //clear number from sample table
+
+ $sql = "UPDATE `sample`
+ SET phone = ''
+ WHERE sample_id = $sample_id";
+
+ $db->Execute($sql);
+
+ //clear respondent table (firstName,lastName)
+
+ $sql = "UPDATE `respondent`
+ SET firstName = '', lastName = ''
+ WHERE case_id = $case_id";
+
+ $db->Execute($sql);
+
+ //clear contact phone (phone,description)
+
+ $sql = "UPDATE `contact_phone`
+ SET phone = '', description = ''
+ WHERE case_id = $case_id";
+
+ $db->Execute($sql);
+
+ $db->CompleteTrans();
+}
+
+
if (isset($_GET['case_note_id']))
{
@@ -237,7 +281,7 @@ if ($case_id != false)
print "
" . T_("Appointments")." ";
//View appointments
- $sql = "SELECT q.description, CONVERT_TZ(a.start,'UTC',o.Time_zone_name) as start, CONVERT_TZ(a.end,'UTC',o.Time_zone_name) as end, r.firstName, r.lastName, IFNULL(ou.description,'" . TQ_("Not yet called") . "') as outcome, oo.firstName as makerName, ooo.firstName as callerName, CONCAT('', c.case_id, ' ') as case_id, CONCAT('". TQ_("Delete") . " ') as link, CONCAT('". TQ_("Edit") . " ') as edit
+ $sql = "SELECT q.description, CONVERT_TZ(a.start,'UTC',o.Time_zone_name) as start, CONVERT_TZ(a.end,'UTC',o.Time_zone_name) as end, r.firstName, r.lastName, IFNULL(ou.description,'" . T_("Not yet called") . "') as outcome, oo.firstName as makerName, ooo.firstName as callerName, CONCAT('', c.case_id, ' ') as case_id, CONCAT('". TQ_("Delete") . " ') as link, CONCAT('". TQ_("Edit") . " ') as edit
FROM appointment as a
JOIN (`case` as c, respondent as r, questionnaire as q, operator as o, operator as oo, call_attempt as cc) on (a.case_id = c.case_id and a.respondent_id = r.respondent_id and q.questionnaire_id = c.questionnaire_id and a.call_attempt_id = cc.call_attempt_id and cc.operator_id = oo.operator_id)
LEFT JOIN (`call` as ca, outcome as ou, operator as ooo) ON (ca.call_id = a.completed_call_id and ou.outcome_id = ca.outcome_id and ca.operator_id = ooo.operator_id)
@@ -392,6 +436,17 @@ if ($case_id != false)
" . T_("Deidentify") . "";
+ print "" . T_("Remove all sample details and contact numbers from this case") . "
";
+ ?>
+
+ "/>
-
+ "/>
" . T_("Work has ended. That is it") . "";
+include_once("functions/functions.operator.php");
if (ALLOW_OPERATOR_EXTENSION_SELECT && VOIP_ENABLED)
{
//unassign extension
- include_once("functions/functions.operator.php");
$operator_id = get_operator_id();
if (get_case_id($operator_id) == false && is_voip_enabled($operator_id))
diff --git a/functions/functions.limesurvey.php b/functions/functions.limesurvey.php
index 66b54dc7..200c7544 100644
--- a/functions/functions.limesurvey.php
+++ b/functions/functions.limesurvey.php
@@ -313,20 +313,21 @@ function limesurvey_quota_replicate_completions($lime_sid,$questionnaire_id,$sam
* @param string $lime_sgqa The limesurvey SGQA
* @param int $lime_sid The limesurvey survey id
* @param int $case_id The case id
- * @param int $sample_import_id The sample import ID
* @param string $value The value to compare
* @param string $comparison The type of comparison
+ * @param int $sample_import_id The sample import ID
+ *
* @return bool|int False if failed, otherwise 1 if matched, 0 if doesn't
*
*/
-function limesurvey_quota_match($lime_sgqa,$lime_sid,$case_id,$value,$comparison)
+function limesurvey_quota_match($lime_sgqa,$lime_sid,$case_id,$value,$comparison,$sample_import_id)
{
global $db;
$sql = "SELECT count(*) as c
FROM " . LIME_PREFIX . "survey_$lime_sid as s
JOIN `case` as c ON (c.case_id = '$case_id')
- JOIN `sample` as sam ON (c.sample_id = sam.sample_id)
+ JOIN `sample` as sam ON (c.sample_id = sam.sample_id and sam.import_id = $sample_import_id)
WHERE s.token = c.token
AND s.`$lime_sgqa` $comparison '$value'";
@@ -345,19 +346,20 @@ function limesurvey_quota_match($lime_sgqa,$lime_sid,$case_id,$value,$comparison
* @param int $case_id The case id
* @param string $val The sample value to compare
* @param string $var The sample variable to compare
+ * @param int $sample_import_id The sample import id we are looking at
*
* @return bool|int False if failed, otherwise 1 if matched, 0 if doesn't
* @author Adam Zammit
* @since 2012-04-30
*/
-function limesurvey_quota_replicate_match($lime_sid,$case_id,$val,$var)
+function limesurvey_quota_replicate_match($lime_sid,$case_id,$val,$var,$sample_import_id)
{
global $db;
$sql = "SELECT count(*) as c
FROM " . LIME_PREFIX . "survey_$lime_sid as s
JOIN `case` as c ON (c.case_id = '$case_id')
- JOIN `sample` as sam ON (c.sample_id = sam.sample_id)
+ JOIN `sample` as sam ON (c.sample_id = sam.sample_id and sam.import_id = $sample_import_id)
JOIN `sample_var` as sv ON (sv.sample_id = sam.sample_id AND sv.var LIKE '$var' AND sv.val LIKE '$val')
WHERE s.token = c.token";
diff --git a/functions/functions.operator.php b/functions/functions.operator.php
index e0c8a5da..a434db26 100644
--- a/functions/functions.operator.php
+++ b/functions/functions.operator.php
@@ -1881,7 +1881,7 @@ function update_row_quota($questionnaire_id,$case_id = false)
if ($update)
update_quota_priorities($questionnaire_id);
-
+
$db->CompleteTrans();
return false;
@@ -2127,7 +2127,7 @@ function end_case($operator_id)
//code as eligible if ever eligible, or if referred to the supervisor, code as that if last call
$sql = "SELECT c.outcome_id as outcome_id
FROM `call` as c
- JOIN outcome AS o ON ( c.outcome_id = o.outcome_id AND (o.eligible = 1 OR o.outcome_type_id = 2) )
+ JOIN outcome AS o ON ( c.outcome_id = o.outcome_id AND (o.eligible = 1 OR o.outcome_type_id = 2 OR o.outcome_type_id = 1) )
WHERE c.case_id = '$case_id'
ORDER BY c.call_id DESC";
diff --git a/functions/functions.process.php b/functions/functions.process.php
index 0e451bdb..12388053 100644
--- a/functions/functions.process.php
+++ b/functions/functions.process.php
@@ -76,7 +76,6 @@ function is_process_killed($process_id)
$sql = "SELECT `process_id`
FROM `process`
WHERE `kill` = 1
- AND `stop` IS NULL
AND `process_id` = '$process_id'";
$rs = $db->GetRow($sql);
diff --git a/include/limesurvey/admin/browse.php b/include/limesurvey/admin/browse.php
index ef9d2bdf..eae4d6e1 100644
--- a/include/limesurvey/admin/browse.php
+++ b/include/limesurvey/admin/browse.php
@@ -788,8 +788,8 @@ $quexsfilterstate = questionnaireSampleFilterstate();
//queXS Addition
include_once("../quexs.php");
- $browseoutput .= " ".$clang->gT("Questionnaire and Sample selection:")."\n"
- ."\t".$clang->gT("All queXS questionnaires and samples associated with this instrument")." \n"
+ $browseoutput .= " ".T_("Questionnaire and Sample selection:")."\n"
+ ."\t".T_("All queXS questionnaires and samples associated with this instrument")." \n"
. get_questionnaire_sample_list($surveyid,$quexsfilterstate)
." \n";
diff --git a/include/limesurvey/admin/exportresults.php b/include/limesurvey/admin/exportresults.php
index 357fa226..8f53a63a 100644
--- a/include/limesurvey/admin/exportresults.php
+++ b/include/limesurvey/admin/exportresults.php
@@ -107,8 +107,8 @@ $quexsfilterstate = questionnaireSampleFilterstate();
//queXS Addition
include_once("../quexs.php");
- $exportoutput .= "".$clang->gT("Questionnaire and Sample selection:")." \n"
- ."\t".$clang->gT("All queXS questionnaires and samples associated with this instrument")." \n"
+ $exportoutput .= "".T_("Questionnaire and Sample selection:")." \n"
+ ."\t".T_("All queXS questionnaires and samples associated with this instrument")." \n"
. get_questionnaire_sample_list($surveyid,$quexsfilterstate)
." \n";
@@ -254,17 +254,17 @@ $quexsfilterstate = questionnaireSampleFilterstate();
$exportoutput .= " ".$attr_desc."\n";
}
- $exportoutput .= " ".$clang->gT("Token")."\n"
- ." ".$clang->gT("Case ID")."\n"
- ." ".$clang->gT("Case outcome")."\n"
- ." ".$clang->gT("Number of call attempts")."\n"
- ." ".$clang->gT("Number of answering machine messages left")."\n"
- ." ".$clang->gT("Case notes")."\n"
- ." ".$clang->gT("Total interview time over all calls (mins)")."\n"
- ." ".$clang->gT("Interview time for last call (mins)")."\n"
- ." ".$clang->gT("Last number dialled")."\n"
- ." ".$clang->gT("Operator username for last call")."\n"
- ." ".$clang->gT("Shift report")."\n";
+ $exportoutput .= " ".T_("Token")."\n"
+ ." ".T_("Case ID")."\n"
+ ." ".T_("Case outcome")."\n"
+ ." ".T_("Number of call attempts")."\n"
+ ." ".T_("Number of answering machine messages left")."\n"
+ ." ".T_("Case notes")."\n"
+ ." ".T_("Total interview time over all calls (mins)")."\n"
+ ." ".T_("Interview time for last call (mins)")."\n"
+ ." ".T_("Last number dialled")."\n"
+ ." ".T_("Operator username for last call")."\n"
+ ." ".T_("Shift report")."\n";
$sql = "SELECT sv.var,sv.val
@@ -600,53 +600,53 @@ for ($i=0; $i<$fieldcount; $i++)
if ($fieldinfo == "callattempts")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Number of call attempts")."\"$separator";}
- else {$firstline .= $elang->gT("Number of call attempts")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Number of call attempts")."\"$separator";}
+ else {$firstline .= T_("Number of call attempts")."$separator";}
}
elseif ($fieldinfo == "messagesleft")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Number of answering machine messages left")."\"$separator";}
- else {$firstline .= $elang->gT("Number of answering machine messages left")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Number of answering machine messages left")."\"$separator";}
+ else {$firstline .= T_("Number of answering machine messages left")."$separator";}
}
elseif ($fieldinfo == "casenotes")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Case notes")."\"$separator";}
- else {$firstline .= $elang->gT("Case notes")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Case notes")."\"$separator";}
+ else {$firstline .= T_("Case notes")."$separator";}
}
elseif ($fieldinfo == "interviewtimec")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Total interview time over all calls (mins)")."\"$separator";}
- else {$firstline .= $elang->gT("Total interview time over all calls (mins)")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Total interview time over all calls (mins)")."\"$separator";}
+ else {$firstline .= T_("Total interview time over all calls (mins)")."$separator";}
}
elseif ($fieldinfo == "interviewtimel")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Interview time for last call (mins)")."\"$separator";}
- else {$firstline .= $elang->gT("Interview time for last call (mins)")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Interview time for last call (mins)")."\"$separator";}
+ else {$firstline .= T_("Interview time for last call (mins)")."$separator";}
}
elseif ($fieldinfo =="lastnumber")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Last number dialled")."\"$separator";}
- else {$firstline .= $elang->gT("Last number dialled")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Last number dialled")."\"$separator";}
+ else {$firstline .= T_("Last number dialled")."$separator";}
}
elseif ($fieldinfo == "operatoru")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Operator username for last call")."\"$separator";}
- else {$firstline .= $elang->gT("Operator username for last call")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Operator username for last call")."\"$separator";}
+ else {$firstline .= T_("Operator username for last call")."$separator";}
}
elseif ($fieldinfo == "shiftr")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Shift report")."\"$separator";}
- else {$firstline .= $elang->gT("Shift report")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Shift report")."\"$separator";}
+ else {$firstline .= T_("Shift report")."$separator";}
}
elseif ($fieldinfo == "caseid")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Case ID")."\"$separator";}
- else {$firstline .= $elang->gT("Case ID")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Case ID")."\"$separator";}
+ else {$firstline .= T_("Case ID")."$separator";}
}
elseif ($fieldinfo == "caseoutcome")
{
- if ($type == "csv") {$firstline .= "\"".$elang->gT("Case outcome")."\"$separator";}
- else {$firstline .= $elang->gT("Case outcome")."$separator";}
+ if ($type == "csv") {$firstline .= "\"".T_("Case outcome")."\"$separator";}
+ else {$firstline .= T_("Case outcome")."$separator";}
}
elseif ($fieldinfo == "email")
{
@@ -963,34 +963,34 @@ elseif ($answers == "long") //chose complete answers
switch($fieldinfo)
{
case "caseid":
- $ftitle=$elang->gT("Case ID").":";
+ $ftitle=T_("Case ID").":";
break;
case "caseoutcome":
- $ftitle=$elang->gT("Case outcome").":";
+ $ftitle=T_("Case outcome").":";
break;
case "callattempts":
- $ftitle=$elang->gT("Number of call attempts").":";
+ $ftitle=T_("Number of call attempts").":";
break;
case "messagesleft":
- $ftitle=$elang->gT("Number of answering machine messages left").":";
+ $ftitle=T_("Number of answering machine messages left").":";
break;
case "casenotes":
- $ftitle=$elang->gT("Case notes").":";
+ $ftitle=T_("Case notes").":";
break;
case "interviewtimec":
- $ftitle=$elang->gT("Total interview time over all calls (mins)").":";
+ $ftitle=T_("Total interview time over all calls (mins)").":";
break;
case "interviewtimel":
- $ftitle=$elang->gT("Interview time for last call (mins)").":";
+ $ftitle=T_("Interview time for last call (mins)").":";
break;
case "lastnumber":
- $ftitle=$elang->gT("Last number dialled").":";
+ $ftitle=T_("Last number dialled").":";
break;
case "operatoru":
- $ftitle=$elang->gT("Operator username for last call").":";
+ $ftitle=T_("Operator username for last call").":";
break;
case "shiftr":
- $ftitle=$elang->gT("Shift report").":";
+ $ftitle=T_("Shift report").":";
break;
case "datestamp":
$ftitle=$elang->gT("Date Last Action").":";
diff --git a/include/limesurvey/admin/statistics.php b/include/limesurvey/admin/statistics.php
index 0f811cb1..73411a54 100644
--- a/include/limesurvey/admin/statistics.php
+++ b/include/limesurvey/admin/statistics.php
@@ -265,8 +265,8 @@ $quexsfilterstate = questionnaireSampleFilterstate();
//queXS Addition
include_once("../quexs.php");
- $statisticsoutput .= "".$clang->gT("Questionnaire and Sample selection:")." \n"
- ."\t".$clang->gT("All queXS questionnaires and samples associated with this instrument")." \n"
+ $statisticsoutput .= "".T_("Questionnaire and Sample selection:")." \n"
+ ."\t".T_("All queXS questionnaires and samples associated with this instrument")." \n"
. get_questionnaire_sample_list($surveyid,$quexsfilterstate)
." \n";
diff --git a/include/limesurvey/admin/vvexport.php b/include/limesurvey/admin/vvexport.php
index 53ce7274..cb46e246 100644
--- a/include/limesurvey/admin/vvexport.php
+++ b/include/limesurvey/admin/vvexport.php
@@ -66,8 +66,8 @@ $quexsfilterstate = questionnaireSampleFilterstate();
//queXS Addition
include_once("../quexs.php");
- $vvoutput .= "".$clang->gT("Questionnaire and Sample selection:")." \n"
- ."\t".$clang->gT("All queXS questionnaires and samples associated with this instrument")." \n"
+ $vvoutput .= "".T_("Questionnaire and Sample selection:")." \n"
+ ."\t".T_("All queXS questionnaires and samples associated with this instrument")." \n"
. get_questionnaire_sample_list($surveyid,$quexsfilterstate)
." \n";
diff --git a/include/limesurvey/common_functions.php b/include/limesurvey/common_functions.php
index ac99a223..192a842c 100644
--- a/include/limesurvey/common_functions.php
+++ b/include/limesurvey/common_functions.php
@@ -6294,10 +6294,11 @@ function GetTokenFieldsAndNames($surveyid, $onlyAttributes=false, $quexs=true)
if ($quexs)
{
- $basic_attrs_names[] = $clang->gT('queXS: Number of call attempts'); //queXS addition
- $basic_attrs_names[] = $clang->gT('queXS: On appointment?'); //queXS addition
- $basic_attrs_names[] = $clang->gT('queXS: Percentage complete'); //queXS addition
- $basic_attrs_names[] = $clang->gT('queXS: Number of answering machine messages left'); //queXS addition
+ include_once(dirname(__FILE__) . '/quexs.php');
+ $basic_attrs_names[] = T_('queXS: Number of call attempts'); //queXS addition
+ $basic_attrs_names[] = T_('queXS: On appointment?'); //queXS addition
+ $basic_attrs_names[] = T_('queXS: Percentage complete'); //queXS addition
+ $basic_attrs_names[] = T_('queXS: Number of answering machine messages left'); //queXS addition
}
$thissurvey=getSurveyInfo($surveyid);
diff --git a/include/limesurvey/index.php b/include/limesurvey/index.php
index cafc9b1e..72a81526 100644
--- a/include/limesurvey/index.php
+++ b/include/limesurvey/index.php
@@ -56,7 +56,8 @@ if (isset($_GET['loadall']) && $_GET['loadall'] == "reload" && isset($_GET['toke
$_POST['token']=$_GET['token'];
//Must destroy the session
- session_unset();
+ session_unset();
+ @session_destroy();
}
//end queXS Addition
@@ -427,35 +428,6 @@ if (isset($_SESSION['srid']))
$saved_id = $_SESSION['srid'];
}
-if (!isset($_SESSION['s_lang']) && (isset($move)) )
-// geez ... a session time out! RUN!
-{
- if (isset($_REQUEST['rootdir']))
- {
- safe_die('You cannot start this script directly');
- }
- require_once(dirname(__FILE__).'/classes/core/language.php');
- $baselang = GetBaseLanguageFromSurveyID($surveyid);
- $clang = new limesurvey_lang($baselang);
- //A nice exit
- sendcacheheaders();
- doHeader();
-
- echo templatereplace(file_get_contents(sGetTemplatePath($defaulttemplate)."/startpage.pstpl"));
- echo "\t\n"
- ."\t
\n"
- ."\t".$clang->gT("ERROR")." \n"
- ."\t".$clang->gT("We are sorry but your session has expired.")." \n"
- ."\t".$clang->gT("Either you have been inactive for too long, you have cookies disabled for your browser, or there were problems with your connection.")." \n"
- ."\t".sprintf($clang->gT("Please contact %s ( %s ) for further assistance."),$siteadminname,$siteadminemail)." \n"
- ."\t
\n"
- ."\t
\n";
-
- echo templatereplace(file_get_contents(sGetTemplatePath($defaulttemplate)."/endpage.pstpl"));
- doFooter();
- exit;
-};
-
if (isset($move) && (preg_match('/^changelang_/',$move)))
{
// Then changing language from the language changer
diff --git a/include/limesurvey/optout.php b/include/limesurvey/optout.php
index 14a8cffa..71516f98 100644
--- a/include/limesurvey/optout.php
+++ b/include/limesurvey/optout.php
@@ -76,10 +76,11 @@ else
$case_id = $connect->GetOne($sql);
+ include_once(dirname(__FILE__) . '/quexs.php');
//Add a case note to clarify (need to translate this string)
$sql = "INSERT INTO `case_note` (case_id,operator_id,note,datetime)
- VALUES ($case_id,1,'Self completion refused via opt out function',CONVERT_TZ(NOW(),'System','UTC'))";
+ VALUES ($case_id,1,'" . TQ_("Self completion refused via opt out function") . "',CONVERT_TZ(NOW(),'System','UTC'))";
$connect->Execute($sql);
diff --git a/include/limesurvey/qanda.php b/include/limesurvey/qanda.php
index 80df951c..6493af1a 100644
--- a/include/limesurvey/qanda.php
+++ b/include/limesurvey/qanda.php
@@ -1697,7 +1697,8 @@ function do_list_radio($ia)
$quexs_appointment = false;
if (strncasecmp($ansrow['answer'],"{SCHEDULEAPPOINTMENT}",21) == 0)
{
- $ansrow['answer'] = $clang->gT("Schedule Appointment");
+ include_once(dirname(__FILE__) . '/quexs.php');
+ $ansrow['answer'] = T_("Schedule Appointment");
$quexs_appointment = true;
}
@@ -1916,7 +1917,8 @@ function do_listwithcomment($ia)
$quexs_appointment = false;
if (strncasecmp($ansrow['answer'],"{SCHEDULEAPPOINTMENT}",21) == 0)
{
- $ansrow['answer'] = $clang->gT("Schedule Appointment");
+ include_once(dirname(__FILE__) . '/quexs.php');
+ $ansrow['answer'] = T_("Schedule Appointment");
$quexs_appointment = true;
}
diff --git a/index.php b/index.php
index e9bc0a0d..d450d16e 100644
--- a/index.php
+++ b/index.php
@@ -191,7 +191,10 @@ if ($ca)
}
}
-$data = "nocallavailable.php";
+if (!is_respondent_selection($operator_id))
+ $data = get_limesurvey_url($operator_id);
+else
+ $data = get_respondentselection_url($operator_id);
$db->CompleteTrans();
diff --git a/index_interface2.php b/index_interface2.php
index ff582265..23d0a913 100644
--- a/index_interface2.php
+++ b/index_interface2.php
@@ -45,12 +45,15 @@ include ("functions/functions.xhtml.php");
*/
include("functions/functions.operator.php");
-$db->StartTrans();
$popupcall = false;
$operator_id = get_operator_id();
+if ($operator_id === false) die();
+
+$db->StartTrans();
+
if (isset($_GET['endwork']))
{
$call_id = get_call($operator_id);
@@ -235,7 +238,7 @@ if (!$call_id)
if ($appointment)
{
//create a call on the appointment number
- $sql = "SELECT cp.*
+ $sql = "SELECT cp.*, a.respondent_id
FROM contact_phone as cp, appointment as a
WHERE cp.case_id = '$case_id'
AND a.appointment_id = '$appointment'
@@ -274,6 +277,19 @@ if (!$call_id)
{
$contact_phone_id = $rs['contact_phone_id'];
+ if (!isset($rs['respondent_id']))
+ {
+ $sql = "SELECT respondent_id
+ FROM respondent
+ WHERE case_id = $case_id";
+
+ $respondent_id = $db->GetOne($sql);
+ }
+ else
+ {
+ $respondent_id = $rs['respondent_id'];
+ }
+
$call_id = get_call($operator_id,$respondent_id,$contact_phone_id,true);
}
}
diff --git a/locale/bs/LC_MESSAGES/bs.mo b/locale/bs/LC_MESSAGES/bs.mo
index 66bac3a6..dca03064 100644
Binary files a/locale/bs/LC_MESSAGES/bs.mo and b/locale/bs/LC_MESSAGES/bs.mo differ
diff --git a/locale/bs/LC_MESSAGES/bs.po b/locale/bs/LC_MESSAGES/bs.po
index 54aa5d7a..4dc25763 100644
--- a/locale/bs/LC_MESSAGES/bs.po
+++ b/locale/bs/LC_MESSAGES/bs.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\n"
+"POT-Creation-Date: 2014-03-17 10:47+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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -318,6 +318,10 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr ""
@@ -3111,87 +3115,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3282,72 +3286,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3524,6 +3532,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/cs/LC_MESSAGES/cs.mo b/locale/cs/LC_MESSAGES/cs.mo
index 33326536..a6457509 100644
Binary files a/locale/cs/LC_MESSAGES/cs.mo and b/locale/cs/LC_MESSAGES/cs.mo differ
diff --git a/locale/cs/LC_MESSAGES/cs.po b/locale/cs/LC_MESSAGES/cs.po
index 56f35d7f..b8ea0566 100644
--- a/locale/cs/LC_MESSAGES/cs.po
+++ b/locale/cs/LC_MESSAGES/cs.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\n"
+"POT-Creation-Date: 2014-03-17 10:47+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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -320,6 +320,10 @@ msgstr "v"
msgid "Appointment with myself only?"
msgstr "Schůzka pouze sám se sebou?"
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Seznam volání"
@@ -3176,64 +3180,64 @@ msgstr "Uložit změny dob omezení"
msgid "If changing usernames, you must specify a new password"
msgstr "Při změně uživatelských jmen musíte zadat nové heslo"
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr "Uživatel úspěšně aktualizován"
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr "Úprava operátora"
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr "Uživatelské jméno"
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr "Aktualizovat heslo (nechejte prázdné pro použití současného hesla)"
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr "Používá chat"
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr "Časové pásmo"
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr "Používá VoIP"
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr "Aktualizovat operátora"
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr "Soubor dávky Windows"
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr "soubor skriptu *nix"
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr "Povolit VoIP"
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr "Zakázat VoIP"
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr "Seznam operátorů"
-#: admin/operatorlist.php:294
+#: 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 "
@@ -3243,23 +3247,23 @@ msgstr ""
"soubor voip.exe. Když je soubor spuštěn, spustí soubor voip.exe se správnými "
"údaii o spojení pro připojení operátora k serveru VoIP"
-#: admin/operatorlist.php:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr "Stáhnout spustitelný soubor VoIP pro Windows"
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr "Stáhnout spustitelný soubor VoIP pro Linux"
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr "Povolit/Zakázat VoIP"
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr "Windows VoIP"
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr "*nix VoIP"
@@ -3353,73 +3357,77 @@ msgstr "Časové pásmo: "
msgid "Add Timezone"
msgstr "Přidat časové pásmo"
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr "Zadejte ID případu nebo ho vyberte ze seznamu níže:"
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr "Vyberte případ ze seznamu nebo případů uvedené dozorcem:"
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr "Vybrat případ"
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr "Vyberte výsledek pro volání"
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr "Nastavit výsledek"
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr "Žádné schůzky pro tento případ"
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr "Vytvořit schůzku pro tento případ"
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr "Seznam volání"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr "Změnit výsledek"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr "Poznámky případu"
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr "Změnit odpovědi pro tento případ"
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr "Případ zatím nezahájen v Limesurvey"
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr "Nastavit výsledek případu"
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr "Aktualizovat dostupnost případu"
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
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:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr "Přidělit tento případ k operátorovi"
-#: admin/supervisor.php:399
+#: 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 "Případ neexistuje"
@@ -3602,6 +3610,101 @@ 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
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/de/LC_MESSAGES/de.mo b/locale/de/LC_MESSAGES/de.mo
new file mode 100644
index 00000000..4790eaac
Binary files /dev/null and b/locale/de/LC_MESSAGES/de.mo differ
diff --git a/locale/de/LC_MESSAGES/de.po b/locale/de/LC_MESSAGES/de.po
new file mode 100644
index 00000000..4bdb9664
--- /dev/null
+++ b/locale/de/LC_MESSAGES/de.po
@@ -0,0 +1,3652 @@
+# German translation for quexs
+# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
+# This file is distributed under the same license as the quexs package.
+# FIRST AUTHOR , 2014.
+#
+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: 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-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
+
+#: callhistory.php:56
+msgid "Case History List"
+msgstr ""
+
+#: callhistory.php:79
+msgid "No calls ever made"
+msgstr ""
+
+#: callhistory.php:83
+#: calllist.php:84
+msgid "Date/Time"
+msgstr "Datum/Zeit"
+
+#: callhistory.php:83
+msgid "Case ID"
+msgstr "Fall ID"
+
+#: callhistory.php:83
+#: index_interface2.php:212
+#: calllist.php:84
+msgid "Outcome"
+msgstr "Anrufergebnis"
+
+#: callhistory.php:83
+msgid "Respondent"
+msgstr "Zielperson"
+
+#: callhistory.php:87
+msgid "No operator"
+msgstr "Kein Operator"
+
+#: 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
+msgid "Do not leave a message, please hang up"
+msgstr "Keine Nachricht hinterlasssen, bitte auflegen"
+
+#: 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
+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
+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
+msgid "Go Back"
+msgstr "Zurück"
+
+#: rs_business_interface2.php:55
+msgid "Respondent Selection - Business answers"
+msgstr "Auswahl der zielperson - Büro, Behörde etc. am Telefon"
+
+#: rs_business_interface2.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
+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
+msgid "queXS"
+msgstr "queXS"
+
+#: index_interface2.php:213
+#: appointment.php:121
+#: index.php:163
+msgid "Appointment"
+msgstr "Terminvereinbarung"
+
+#: index_interface2.php:214
+#: index.php:166
+msgid "Email"
+msgstr "E-Mail"
+
+#: index_interface2.php:215
+#: index.php:167
+msgid "Referral"
+msgstr ""
+
+#: index_interface2.php:216
+#: waitnextcase_interface2.php:55
+msgid "End work"
+msgstr "Beende Arbeit"
+
+#: index_interface2.php:294
+#: index.php:169
+msgid "Arrow for expanding or contracting"
+msgstr ""
+
+#: index_interface2.php:306
+#: index.php:220
+msgid "Notes"
+msgstr "Notizen"
+
+#: index_interface2.php:314
+#: index.php:238
+msgid "Contact details"
+msgstr "Kontaktdaten"
+
+#: index_interface2.php:323
+#: index.php:247
+msgid "Call history"
+msgstr ""
+
+#: index_interface2.php:332
+#: index.php:256
+msgid "Shifts"
+msgstr "Schichten"
+
+#: index_interface2.php:341
+#: index.php:265
+msgid "Appointments"
+msgstr "Terminvereinbarungen"
+
+#: index_interface2.php:350
+#: index.php:274
+msgid "Performance"
+msgstr ""
+
+#: index_interface2.php:358
+#: index.php:282
+msgid "Work history"
+msgstr ""
+
+#: index_interface2.php:366
+#: project_info.php:61
+#: index.php:290
+msgid "Project information"
+msgstr "Projektinformationen"
+
+#: index_interface2.php:375
+#: index.php:306
+msgid "Info"
+msgstr "Info"
+
+#: record.php:55
+msgid "Stop REC"
+msgstr "Stop REC"
+
+#: record.php:56
+#: record.php:79
+#: record.php:96
+msgid "Record"
+msgstr "Aufzeichnen"
+
+#: record.php:66
+msgid "Beginning recording..."
+msgstr "Starte Aufzeichnung..."
+
+#: 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"
+
+#: record.php:73
+msgid "Begin the manual recording now..."
+msgstr "Starte manuele Aufzeichnung..."
+
+#: record.php:78
+#: index.php:168
+msgid "Start REC"
+msgstr "Start REC"
+
+#: record.php:86
+msgid "Stopping recording..."
+msgstr "Beende Aufzeichnung..."
+
+#: record.php:90
+msgid "Stop the manual recording now..."
+msgstr "Beende manuele Aufzeichnung...."
+
+#: rs_callback_interface2.php:66
+msgid "Respondent Selection - Call back"
+msgstr "Auswahl der Zielperson - Rückruf"
+
+#: rs_callback_interface2.php:80
+msgid "You are: "
+msgstr ""
+
+#: rs_callback_interface2.php:80
+#, php-format
+msgid "% complete"
+msgstr ""
+
+#: rs_callback_interface2.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
+msgid "End call with outcome: Refusal by respondent"
+msgstr "Beende Anruf mit Ergebnis: Verweigerung durch Zielperson"
+
+#: rs_project_intro.php:59
+msgid "Respondent Selection - Project Introduction"
+msgstr "Auswahl der Zielperson - Vorstellung des Projekts"
+
+#: rs_project_intro.php:79
+msgid "Yes - Continue"
+msgstr "Ja - Weiter"
+
+#: rs_project_intro.php:82
+msgid ""
+"End call with outcome: No eligible respondent (person not available on this "
+"number)"
+msgstr ""
+"Beende Anruf mit Ergebnis: keine geeignete Zielperson (Zielperson nicht "
+"unter dieser Nummer erreichbar)"
+
+#: rs_project_intro.php:83
+msgid ""
+"End call with outcome: Out of sample (already completed in another mode)"
+msgstr ""
+"Beende Anruf mit Ergbenis: Nicht in Stichprobe (Fragebogen bereits in "
+"anderem Modus beendet)"
+
+#: appointment.php:69
+msgid "Appointment error"
+msgstr "Fehler bei Terminvereinbarung"
+
+#: appointment.php:70
+msgid ""
+"You have not been assigned a case therefore cannot create an appointment"
+msgstr ""
+
+#: appointment.php:109
+msgid "Appointment made"
+msgstr "Terminvereinbarung getroffen"
+
+#: appointment.php:124
+msgid "Select a respondent"
+msgstr ""
+
+#: appointment.php:134
+msgid "Create new respondent:"
+msgstr ""
+
+#: appointment.php:137
+msgid "Add this respondent"
+msgstr ""
+
+#: appointment.php:159
+msgid "Select phone number:"
+msgstr ""
+
+#: appointment.php:164
+msgid "None"
+msgstr ""
+
+#: appointment.php:173
+msgid "Add new phone number"
+msgstr ""
+
+#: appointment.php:184
+msgid "Add new phone number (with area code, eg 0398761234):"
+msgstr ""
+
+#: appointment.php:187
+msgid "Add this phone number"
+msgstr ""
+
+#: appointment.php:206
+msgid "Appointment:"
+msgstr "Terminvereinbarung:"
+
+#: appointment.php:208
+msgid "Accept appointment from "
+msgstr "Terminvereinbarung akzeptieren von "
+
+#: appointment.php:208
+msgid " till "
+msgstr " bis "
+
+#: appointment.php:208
+msgid " on "
+msgstr ""
+
+#: appointment.php:208
+msgid "on"
+msgstr ""
+
+#: appointment.php:210
+msgid "Appointment with myself only?"
+msgstr ""
+
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr "Terminvereinbarung"
+
+#: calllist.php:56
+msgid "Call List"
+msgstr "Anrufliste"
+
+#: calllist.php:80
+msgid "No calls made"
+msgstr "keine Anrufe getätigt"
+
+#: calllist.php:84
+msgid "Number called"
+msgstr "Nummer angerufen"
+
+#: calllist.php:84
+msgid "Operator"
+msgstr "Operator"
+
+#: calllist.php:88
+#: project_info.php:82
+msgid "No case"
+msgstr "keine Fälle"
+
+#: waitnextcase_interface2.php:54
+msgid "Get a new case"
+msgstr ""
+
+#: index.php:162
+msgid "End"
+msgstr "Ende"
+
+#: index.php:164
+msgid "Call/Hangup"
+msgstr "Anrufen/Auflegen"
+
+#: index.php:165
+msgid "Supervisor"
+msgstr "Supervisor"
+
+#: index.php:170
+msgid "Restart"
+msgstr "Neustart"
+
+#: index.php:228
+msgid "Availability"
+msgstr "Verfügbarkeit"
+
+#: index.php:298
+msgid "Supervisor chat"
+msgstr ""
+
+#: info.php:56
+msgid "Information"
+msgstr "Information"
+
+#: supervisorchat.php:80
+msgid "Me"
+msgstr ""
+
+#: supervisorchat.php:82
+msgid "Case id"
+msgstr "Fall ID"
+
+#: supervisorchat.php:87
+msgid "Supervisor is available"
+msgstr "Supervisor verfügbar"
+
+#: supervisorchat.php:88
+msgid "Supervisor not available"
+msgstr "Supervisor nicht verfügbar"
+
+#: supervisorchat.php:90
+#: supervisorchat.php:93
+msgid "Message"
+msgstr "Nachricht"
+
+#: supervisorchat.php:90
+msgid "Send"
+msgstr "Senden"
+
+#: supervisorchat.php:93
+msgid "From"
+msgstr "Von"
+
+#: supervisorchat.php:96
+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
+msgid "Call"
+msgstr "Anrufen"
+
+#: 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
+msgid "End case"
+msgstr "Beende Fall"
+
+#: 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
+msgid "Number to call:"
+msgstr "Nummer zum wählen:"
+
+#: 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 ""
+"Ihre VoIP-Extension ist nicht eingeschaltet. Bitte schließen Sie das Fenster "
+"und aktivieren Sie Ihre VoIP-Extension durch Klick auf das rote Feld mit dem "
+"Hinweis \"VoIP aus\""
+
+#: 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
+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
+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
+msgid "Requires coding"
+msgstr "Codierung erforderlich"
+
+#: call_interface2.php:470
+#: call.php:451
+msgid "Assign outcome"
+msgstr "Anrufergebnis zuweisen"
+
+#: call_interface2.php:474
+#: call.php:455
+msgid "Error: Close window"
+msgstr "Fehler: Schließe Fenster"
+
+#: call.php:427
+msgid "Requesting call"
+msgstr ""
+
+#: call.php:428
+#: call.php:435
+msgid "Call Answered"
+msgstr "Anruf angenommen"
+
+#: call.php:431
+#: call.php:438
+#: call.php:445
+msgid "Hangup"
+msgstr "Auflegen"
+
+#: call.php:434
+msgid "Ringing"
+msgstr "Klingelt"
+
+#: call.php:441
+msgid "Answered"
+msgstr "Angenommen"
+
+#: call.php:442
+msgid "Not Answered"
+msgstr "Nicht angenommen"
+
+#: 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 "Nochmal versuchen"
+
+#: selectextension.php:104
+msgid "Select extension"
+msgstr ""
+
+#: selectextension.php:105
+msgid ""
+"Please select your extension from the list below then click on 'Choose "
+"extension'"
+msgstr ""
+
+#: selectextension.php:108
+msgid "Extension"
+msgstr ""
+
+#: selectextension.php:110
+msgid "Choose extension"
+msgstr ""
+
+#: endwork.php:45
+msgid "End of work"
+msgstr "Arbeit beendet"
+
+#: 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 "Arbeit beendet. Das war's!"
+
+#: endwork.php:70
+msgid "You have been unassigned from your extension"
+msgstr ""
+
+#: endwork.php:75
+msgid "Go back to work"
+msgstr "Zurück zur Arbeit"
+
+#: status_interface2.php:70
+msgid "Status"
+msgstr "Status"
+
+#: status_interface2.php:79
+msgid "Name"
+msgstr "Name"
+
+#: 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
+msgid "Respondent Selection - Introduction"
+msgstr "Auswahl der Zielperson - Einführung"
+
+#: 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
+msgid "Answering machine"
+msgstr "Anrufbeantworter"
+
+#: 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
+msgid "End call with outcome: Accidental hang up"
+msgstr "Beende Anruf mit Ergebnis: Versehentlich aufgelegt"
+
+#: 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
+msgid ""
+"End call with outcome: No eligible respondent (person never available on "
+"this number)"
+msgstr ""
+"Beende Anruf mit Ergebnis: keine geeignte Zielperson (Zielperson nie unter "
+"dieser Nummer erreichbar)"
+
+#: 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 ""
+"Beende Anruf mit Ergebnis: Zielperson derzeit nicht anwesend (Rückruf zu "
+"späterem Zeitpunkt)"
+
+#: shifts.php:57
+msgid "Shift List"
+msgstr ""
+
+#: shifts.php:80
+msgid "No shifts for this project"
+msgstr ""
+
+#: shifts.php:82
+#: shifts.php:103
+msgid "Start"
+msgstr "Start"
+
+#: shifts.php:101
+msgid "No future shifts scheduled"
+msgstr ""
+
+#: shifts.php:103
+#: nocaseavailable.php:138
+msgid "Questionnaire"
+msgstr "Fragebogen"
+
+#: rs_project_end_interface2.php:62
+msgid "Respondent Selection - Project end"
+msgstr "Auswahl der Zielperson - Projekt beendet"
+
+#: rs_project_end_interface2.php:80
+msgid "Call automatically ended with outcome: Complete - End case"
+msgstr "Anruf automatisch beendet mit Ergebnis: Fertig - Beende Fall"
+
+#: rs_project_end_interface2.php:85
+msgid "End call with outcome: Complete"
+msgstr "Beende Anruf mit Ergbnis: Fertig"
+
+#: contactdetails.php:90
+#: contactdetails.php:128
+#: respondent.php:94
+#: respondent.php:132
+msgid "Add respondent"
+msgstr "Zielperson hinzufügen"
+
+#: contactdetails.php:92
+#: respondent.php:96
+msgid "Go back"
+msgstr "Zurück"
+
+#: contactdetails.php:98
+#: respondent.php:102
+msgid "Case id:"
+msgstr "Fall ID:"
+
+#: contactdetails.php:99
+#: respondent.php:103
+msgid "Respondent:"
+msgstr "Zielperson:"
+
+#: contactdetails.php:163
+#: respondent.php:171
+msgid "Var"
+msgstr ""
+
+#: contactdetails.php:163
+#: respondent.php:171
+msgid "Value"
+msgstr ""
+
+#: availability.php:123
+msgid ""
+"Select groups to limit availability (Selecting none means always available)"
+msgstr ""
+
+#: availability.php:143
+msgid "Availability groups not defined for this questionnaire"
+msgstr ""
+
+#: respondent.php:70
+msgid "Respondent Selector"
+msgstr ""
+
+#: respondent.php:167
+msgid "Show details"
+msgstr "Details anzeigen"
+
+#: nocaseavailable.php:63
+msgid "No case available"
+msgstr "Keine Fälle verfügbar"
+
+#: nocaseavailable.php:68
+msgid "There is no case currently available"
+msgstr "Derzeit keine Fälle verfügbar"
+
+#: nocaseavailable.php:69
+msgid "Reasons:"
+msgstr "Gründe:"
+
+#: nocaseavailable.php:80
+#: nocaseavailable.php:91
+msgid "Enabled"
+msgstr "Aktiviert"
+
+#: nocaseavailable.php:80
+msgid "Disabled"
+msgstr "Deaktiviert"
+
+#: nocaseavailable.php:88
+msgid "Assigned questionnaires:"
+msgstr "Zugeordnete Fragebögen:"
+
+#: nocaseavailable.php:91
+#: nocaseavailable.php:113
+msgid "ID"
+msgstr "ID"
+
+#: nocaseavailable.php:91
+#: nocaseavailable.php:113
+msgid "Description"
+msgstr ""
+
+#: nocaseavailable.php:94
+msgid "ERROR: No questionnaires assigned to you"
+msgstr "Fehler: Sie wurden keinem Fragebogen zugeordnet"
+
+#: nocaseavailable.php:110
+msgid "Assigned samples:"
+msgstr "Zugeordnete Stichproben"
+
+#: nocaseavailable.php:113
+msgid "Sample"
+msgstr "Stichprobe"
+
+#: nocaseavailable.php:116
+msgid "ERROR: No samples assigned to the questionnaires"
+msgstr "Fehler: Den Fragebögen wurden keine Stichproben zugeordnet"
+
+#: nocaseavailable.php:135
+msgid "Current shifts available:"
+msgstr "Derzeit verfügbare Schichten:"
+
+#: nocaseavailable.php:138
+msgid "Shift start"
+msgstr ""
+
+#: nocaseavailable.php:138
+msgid "Shift end"
+msgstr ""
+
+#: nocaseavailable.php:141
+msgid "ERROR: No shifts at this time"
+msgstr "Fehler: Dezeit keine Schicht verfügbar"
+
+#: nocaseavailable.php:161
+msgid "Call restrictions:"
+msgstr "Anrufbeschränkungen:"
+
+#: nocaseavailable.php:165
+msgid ""
+"ERROR: There are no cases available that fall within call restrictions"
+msgstr "Fehler: Keine Fälle innerhalb der Anrufbeschränkungen verfügbar"
+
+#: nocaseavailable.php:169
+msgid "There are "
+msgstr "Es sind "
+
+#: nocaseavailable.php:169
+msgid " unassigned case(s) available within the specified call restrictions"
+msgstr ""
+" nicht zugeordnete/r Fall/Fälle innerhalb der Anrufbeschränkungen verfügbar"
+
+#: nocaseavailable.php:175
+msgid "Limesurvey links:"
+msgstr "LimeSurvey Links:"
+
+#: nocaseavailable.php:195
+msgid "ERROR: No tokens table defined for LimeSurvey questionnaire"
+msgstr ""
+"Fehler: Keine Token-Tablle fpr diesen LimeSurvey-Fragebogen definiert"
+
+#: nocaseavailable.php:195
+msgid "from questionnaire:"
+msgstr ""
+
+#: nocaseavailable.php:197
+msgid "Tokens table exists for Limesurvey questionnaire:"
+msgstr "Token-Tabelle für LimeSurvey-Fragebogen:"
+
+#: nocaseavailable.php:202
+msgid "ERROR: Cannot find questionnaires with LimeSurvey ID's"
+msgstr ""
+
+#: nocaseavailable.php:221
+msgid "ERROR: Quota reached for this question"
+msgstr ""
+
+#: nocaseavailable.php:241
+msgid "POSSIBLE ERROR: Row quota reached for this question"
+msgstr ""
+
+#: casenote.php:56
+msgid "Case Notes"
+msgstr "Notizen zu Fällen"
+
+#: casenote.php:66
+#: casenote.php:105
+msgid "Add note"
+msgstr "Notiz hinzufügen"
+
+#: casenote.php:108
+msgid "No notes"
+msgstr "keine Notizen"
+
+#: casenote.php:110
+msgid "Note"
+msgstr "Notiz"
+
+#: performance.php:77
+msgid "This shift"
+msgstr ""
+
+#: performance.php:78
+#: performance.php:85
+msgid "Completions"
+msgstr ""
+
+#: performance.php:78
+#: performance.php:85
+msgid "Completions per hour"
+msgstr ""
+
+#: performance.php:84
+msgid "This project"
+msgstr ""
+
+#: status.php:95
+msgid "VoIP On"
+msgstr "VoIP An"
+
+#: status.php:97
+msgid "VoIP Off"
+msgstr "VoIP Aus"
+
+#: status.php:102
+msgid "No VoIP"
+msgstr "kein VoIP"
+
+#: status.php:106
+msgid "No call"
+msgstr "kein Anruf"
+
+#: status.php:110
+msgid "To be coded"
+msgstr "Bitte codieren"
+
+#: status.php:114
+msgid "Requesting"
+msgstr "Rufe an"
+
+#: status.php:130
+msgid "APPT"
+msgstr ""
+
+#: status.php:131
+msgid "MISSED"
+msgstr ""
+
+#: rs_project_end.php:88
+msgid "Call automatically ended with outcome: Complete"
+msgstr "Anruf endete automatisch mit Ergbnis: Fertig"
+
+#: nocallavailable.php:80
+msgid "No call available"
+msgstr "kein Anruf verfügbar"
+
+#: nocallavailable.php:83
+msgid "Please click on:"
+msgstr "Bitte auf"
+
+#: nocallavailable.php:83
+msgid "to display call script"
+msgstr "klicken um Anrufskript aufzurufen"
+
+#: nocallavailable.php:177
+msgid "Will dial in"
+msgstr "Wähle in"
+
+#: nocallavailable.php:178
+msgid "Dialling now"
+msgstr "Wähle"
+
+#: nocallavailable.php:184
+msgid "Will end case in"
+msgstr "Beende Fall in"
+
+#: nocallavailable.php:185
+msgid "Ending case now"
+msgstr "Beende Fall"
+
+#: nocallavailable.php:203
+msgid "seconds"
+msgstr "Sekunden"
+
+#: 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 ""
+"Ihre VoIP-Extension ist nicht aktiviert. Bitte klicken Sie auf den roten "
+"Button mit der Aufschrift \"VoIP Aus\" um VoIP zu aktivieren."
+
+#: 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 ""
+
+#: 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: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 ""
+
+#: 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
+msgid "First name"
+msgstr "Vorname"
+
+#: email.php:338
+msgid "Last name"
+msgstr "Nachname"
+
+#: 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 "Terminliste"
+
+#: appointmentlist.php:70
+msgid "Not yet called"
+msgstr "Noch nicht angerufen"
+
+#: appointmentlist.php:70
+msgid "Any operator"
+msgstr ""
+
+#: appointmentlist.php:83
+msgid "No appointments made"
+msgstr "Keine Termine vereinbart"
+
+#: appointmentlist.php:85
+msgid "No future appointments scheduled"
+msgstr "Keine weiteren Termin vereinbart"
+
+#: appointmentlist.php:90
+msgid "Appointment with"
+msgstr "Terminvereinbarung mit"
+
+#: 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"
+msgstr ""
+
+#: admin/systemsort.php:75
+#: admin/systemsort.php:98
+#: admin/systemsort.php:99
+msgid "Monitor system wide case sorting"
+msgstr ""
+
+#: admin/systemsort.php:77
+msgid "Running process:"
+msgstr ""
+
+#: admin/systemsort.php:81
+msgid "Kill signal sent: Please wait..."
+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 ""
+
+#: admin/systemsort.php:92
+#: admin/systemsort.php:106
+msgid "Log id"
+msgstr ""
+
+#: admin/systemsort.php:92
+#: admin/systemsort.php:106
+msgid "Date"
+msgstr "Datum"
+
+#: admin/systemsort.php:92
+#: admin/systemsort.php:106
+msgid "Log entry"
+msgstr ""
+
+#: admin/systemsort.php:100
+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."
+msgstr ""
+
+#: admin/systemsort.php:102
+msgid "Outcome of last process run (if any)"
+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/clientquestionnaire.php:150
+#: admin/clientquestionnaire.php:271
+msgid "Assign clients to questionnaires"
+msgstr ""
+
+#: admin/quotareport.php:109
+#: admin/index.php:80
+msgid "Quota report"
+msgstr ""
+
+#: admin/quotareport.php:111
+#: admin/quota.php:110
+#: admin/assignsample.php:171
+#: admin/questionnaireavailability.php:94
+#: admin/outcomes.php:80
+msgid "Select a questionnaire from the list below"
+msgstr ""
+
+#: admin/quotareport.php:118
+#: admin/quota.php:123
+#: admin/samplesearch.php:84
+msgid "Select a sample from the list below"
+msgstr ""
+
+#: admin/quotareport.php:178
+msgid "Total sample"
+msgstr ""
+
+#: admin/quotareport.php:233
+#: admin/quotareport.php:240
+msgid "closed"
+msgstr ""
+
+#: admin/quotareport.php:235
+#: admin/quotareport.php:242
+msgid "open"
+msgstr ""
+
+#: admin/quotareport.php:284
+msgid "Strata"
+msgstr ""
+
+#: admin/quotareport.php:284
+msgid "Quota"
+msgstr ""
+
+#: admin/quotareport.php:284
+msgid "Sample Used"
+msgstr ""
+
+#: admin/quotareport.php:284
+msgid "Sample Remaining"
+msgstr ""
+
+#: admin/quotareport.php:284
+msgid "% Complete"
+msgstr ""
+
+#: admin/quotareport.php:284
+msgid "Set priority"
+msgstr ""
+
+#: admin/quotareport.php:284
+msgid "Auto prioritise"
+msgstr ""
+
+#: admin/quotareport.php:285
+msgid "Update priorities"
+msgstr ""
+
+#: admin/import.php:51
+msgid "Import: Validating and uploading"
+msgstr ""
+
+#: admin/import.php:67
+msgid "Successfully imported file"
+msgstr ""
+
+#: admin/import.php:71
+msgid "Error importing file. Please try again"
+msgstr ""
+
+#: admin/import.php:75
+msgid "Error:"
+msgstr "Fehler:"
+
+#: admin/import.php:75
+msgid "Please go back in your browser and fix the problem"
+msgstr ""
+
+#: admin/import.php:87
+msgid "Import: Select columns to import"
+msgstr ""
+
+#: admin/import.php:112
+msgid "Import: Select file to upload"
+msgstr ""
+
+#: admin/import.php:117
+msgid "Choose the CSV sample file to upload:"
+msgstr ""
+
+#: admin/import.php:118
+msgid "Description for file:"
+msgstr ""
+
+#: admin/import.php:119
+#: admin/assignsample.php:227
+msgid "Add sample"
+msgstr ""
+
+#: admin/systemsortprocess.php:91
+msgid "Sorting cases process starting"
+msgstr ""
+
+#: admin/systemsortprocess.php:100
+msgid "Sorting cases"
+msgstr ""
+
+#: admin/systemsortprocess.php:130
+#: admin/systemsortprocess.php:142
+#: admin/systemsortprocess.php:168
+#: admin/systemsortprocess.php:180
+msgid "System automatically closed case as not closed for more than 24 hours"
+msgstr ""
+
+#: admin/systemsortprocess.php:293
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:293
+#: admin/systemsortprocess.php:295
+msgid "This task took"
+msgstr ""
+
+#: admin/systemsortprocess.php:295
+msgid "Failed to complete sort"
+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:193
+msgid "Start time"
+msgstr ""
+
+#: admin/displayappointments.php:194
+msgid "End time"
+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:229
+#: admin/displayappointments.php:243
+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
+msgid "Edit"
+msgstr ""
+
+#: admin/displayappointments.php:243
+msgid "Operator Name"
+msgstr ""
+
+#: admin/displayappointments.php:243
+msgid "Respondent Name"
+msgstr ""
+
+#: admin/displayappointments.php:243
+msgid "Surname"
+msgstr ""
+
+#: admin/displayappointments.php:243
+msgid "Current outcome"
+msgstr ""
+
+#: admin/displayappointments.php:243
+msgid "Operator who called"
+msgstr ""
+
+#: admin/displayappointments.php:246
+msgid "No appointments in the future"
+msgstr "Keine zukünftigen Terminvereinbarungen"
+
+#: admin/quota.php:109
+#: admin/index.php:62
+#: admin/index.php:63
+msgid "Quota management"
+msgstr ""
+
+#: admin/quota.php:134
+msgid "Current quotas (click to delete)"
+msgstr ""
+
+#: admin/quota.php:146
+msgid "Currently no quotas"
+msgstr ""
+
+#: admin/quota.php:152
+msgid "Stop calling this sample when:"
+msgstr ""
+
+#: admin/quota.php:152
+msgid "for"
+msgstr ""
+
+#: admin/quota.php:152
+msgid "completions"
+msgstr ""
+
+#: admin/quota.php:155
+msgid "Quota reached"
+msgstr ""
+
+#: admin/quota.php:157
+msgid "Quota not yet reached"
+msgstr ""
+
+#: admin/quota.php:159
+msgid "Current completions: "
+msgstr ""
+
+#: admin/quota.php:167
+msgid "Select a question for the quota"
+msgstr ""
+
+#: admin/quota.php:192
+msgid "Enter the details for creating the quota:"
+msgstr ""
+
+#: admin/quota.php:193
+msgid "Pre defined values for this question:"
+msgstr ""
+
+#: admin/quota.php:205
+msgid "No labels defined for this question"
+msgstr ""
+
+#: admin/quota.php:207
+msgid "Code value"
+msgstr ""
+
+#: admin/quota.php:213
+msgid "The code value to compare"
+msgstr ""
+
+#: admin/quota.php:214
+msgid "The type of comparison"
+msgstr ""
+
+#: admin/quota.php:215
+msgid "The number of completions to stop calling at"
+msgstr ""
+
+#: admin/quota.php:219
+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
+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 "Availability groups"
+msgstr ""
+
+#: admin/availabilitygroup.php:107
+#: admin/availabilitygroup.php:119
+msgid "Modify"
+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 ""
+
+#: admin/availabilitygroup.php:119
+msgid "Availablity group"
+msgstr ""
+
+#: admin/availabilitygroup.php:123
+#: admin/availabilitygroup.php:127
+msgid "Add availability group"
+msgstr ""
+
+#: admin/availabilitygroup.php:126
+msgid "Availability group name"
+msgstr ""
+
+#: admin/shiftreport.php:61
+#: admin/index.php:95
+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
+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
+msgid "Quota row management"
+msgstr ""
+
+#: admin/index.php:66
+#: admin/index.php:68
+#: admin/index.php:111
+msgid "Operator management"
+msgstr ""
+
+#: admin/index.php:67
+msgid "Add operators to the system"
+msgstr ""
+
+#: admin/index.php:69
+msgid "Assign operators to questionnaires"
+msgstr ""
+
+#: admin/index.php:72
+msgid "Availability and shift management"
+msgstr ""
+
+#: admin/index.php:73
+msgid "Manage availablity groups"
+msgstr ""
+
+#: admin/index.php:74
+msgid "Assign availabilities to questionnaires"
+msgstr ""
+
+#: admin/index.php:75
+msgid "Shift management (add/remove)"
+msgstr ""
+
+#: admin/index.php:77
+msgid "Questionnaire progress"
+msgstr ""
+
+#: admin/index.php:78
+msgid "Display all future appointments"
+msgstr ""
+
+#: admin/index.php:79
+msgid "Sample call attempts report"
+msgstr ""
+
+#: admin/index.php:81
+msgid "Questionnaire outcomes"
+msgstr ""
+
+#: admin/index.php:82
+msgid "Data output"
+msgstr ""
+
+#: admin/index.php:85
+#: admin/outcomes.php:297
+msgid "Operator performance"
+msgstr ""
+
+#: admin/index.php:87
+msgid "Client management"
+msgstr ""
+
+#: admin/index.php:88
+msgid "Add clients to the system"
+msgstr ""
+
+#: admin/index.php:91
+msgid "Supervisor functions"
+msgstr ""
+
+#: admin/index.php:92
+msgid "Assign outcomes to cases"
+msgstr ""
+
+#: admin/index.php:93
+msgid "Search the sample"
+msgstr ""
+
+#: admin/index.php:96
+msgid "Case status and assignment"
+msgstr ""
+
+#: admin/index.php:97
+msgid "Bulk appointment generator"
+msgstr ""
+
+#: admin/index.php:99
+msgid "System settings"
+msgstr ""
+
+#: admin/index.php:100
+msgid "Set default timezone list"
+msgstr ""
+
+#: admin/index.php:101
+msgid "Set default shift times"
+msgstr ""
+
+#: admin/index.php:102
+msgid "Set call restriction times"
+msgstr ""
+
+#: admin/index.php:103
+#: admin/centreinfo.php:62
+msgid "Set centre information"
+msgstr ""
+
+#: admin/index.php:105
+msgid "Start and monitor system wide case sorting"
+msgstr ""
+
+#: admin/index.php:109
+msgid "VoIP"
+msgstr "VoIP"
+
+#: admin/index.php:110
+msgid "Start and monitor VoIP"
+msgstr ""
+
+#: admin/index.php:112
+msgid "Extension status"
+msgstr ""
+
+#: admin/assignsample.php:115
+#: admin/assignsample.php:170
+msgid "Assign Sample: Select sample to assign"
+msgstr ""
+
+#: admin/assignsample.php:131
+msgid "Edit sample details"
+msgstr ""
+
+#: admin/assignsample.php:143
+#: admin/assignsample.php:222
+msgid "Max calls (0 for unlimited)"
+msgstr ""
+
+#: admin/assignsample.php:144
+#: admin/assignsample.php:223
+msgid "Max call attempts (0 for unlimited)"
+msgstr ""
+
+#: admin/assignsample.php:145
+#: admin/assignsample.php:224
+msgid "Number of answering machine messages to leave per case (0 for never)"
+msgstr ""
+
+#: 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 ""
+
+#: admin/assignsample.php:180
+#: admin/assignsample.php:181
+msgid "Unlimited"
+msgstr ""
+
+#: admin/assignsample.php:182
+msgid "Sequential"
+msgstr ""
+
+#: admin/assignsample.php:182
+msgid "Random"
+msgstr ""
+
+#: admin/assignsample.php:183
+msgid "Never"
+msgstr ""
+
+#: admin/assignsample.php:185
+#: admin/questionnaireavailability.php:117
+msgid "Click to unassign"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Max calls"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Max call attempts"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Answering machine messages"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Selection type"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Unassign sample"
+msgstr ""
+
+#: admin/assignsample.php:195
+msgid "No samples selected for this questionnaire"
+msgstr ""
+
+#: admin/assignsample.php:209
+msgid "Add a sample to this questionnaire:"
+msgstr ""
+
+#: admin/assignsample.php:212
+msgid "Select sample:"
+msgstr ""
+
+#: admin/centreinfo.php:66
+msgid "Set centre information: "
+msgstr ""
+
+#: admin/centreinfo.php:67
+msgid "Update centre information"
+msgstr ""
+
+#: admin/questionnaireavailability.php:93
+msgid "Assign availability group to questionnaire"
+msgstr ""
+
+#: admin/questionnaireavailability.php:110
+msgid "There are no availability groups selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnaireavailability.php:114
+msgid "Availability groups selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnaireavailability.php:132
+msgid "Add an availability group to this questionnaire:"
+msgstr ""
+
+#: admin/questionnaireavailability.php:135
+msgid "Select 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."
+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/samplesearch.php:83
+msgid "Search sample"
+msgstr ""
+
+#: admin/samplesearch.php:100
+msgid "No cases yet assigned: Delete this sample record"
+msgstr ""
+
+#: admin/samplesearch.php:100
+msgid "Assigned to questionnaire: "
+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/outcomes.php:77
+msgid "Questionnaire Outcomes"
+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: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 "Nummer"
+
+#: admin/outcomes.php:99
+msgid "Case availability (cases with temporary or appointment outcomes)"
+msgstr "Fälle verfügbar (Fälle mit temporären oder Terminergebnissen)"
+
+#: admin/outcomes.php:131
+msgid "No cases currently available to call"
+msgstr "Derzeit keine Fälle für Anrufe verfügbar"
+
+#: admin/outcomes.php:135
+msgid "Cases currently available to call"
+msgstr "Fälle für Anrufe verfügbar"
+
+#: 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
+msgid "Rate"
+msgstr ""
+
+#: admin/outcomes.php:156
+msgid "Response Rate 1"
+msgstr ""
+
+#: admin/outcomes.php:157
+msgid "Refusal Rate 1"
+msgstr ""
+
+#: admin/outcomes.php:158
+msgid "Cooperation Rate 1"
+msgstr ""
+
+#: admin/outcomes.php:159
+msgid "Contact Rate 1"
+msgstr ""
+
+#: admin/outcomes.php:174
+#: admin/outcomes.php:208
+#: admin/outcomes.php:261
+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
+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
+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
+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
+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
+msgid "Enable"
+msgstr ""
+
+#: admin/samplelist.php:265
+msgid "Disable"
+msgstr ""
+
+#: admin/samplelist.php:276
+msgid "Sample list"
+msgstr ""
+
+#: admin/samplelist.php:279
+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
+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
+msgid "Day"
+msgstr ""
+
+#: admin/addshift.php:238
+msgid "Use shift?"
+msgstr ""
+
+#: admin/addshift.php:263
+msgid "Submit changes"
+msgstr ""
+
+#: admin/quotarow.php:154
+#: admin/quotarow.php:160
+msgid "Copied quotas"
+msgstr ""
+
+#: admin/quotarow.php:163
+msgid "Current row quotas (click to delete)"
+msgstr ""
+
+#: admin/quotarow.php:175
+msgid "Currently no row quotas"
+msgstr ""
+
+#: admin/quotarow.php:182
+msgid "Replicate: Where"
+msgstr ""
+
+#: admin/quotarow.php:182
+#: admin/quotarow.php:184
+#: admin/quotarow.php:187
+msgid "like"
+msgstr ""
+
+#: admin/quotarow.php:184
+msgid "Sample only. Stop calling where"
+msgstr ""
+
+#: admin/quotarow.php:184
+#: admin/quotarow.php:187
+msgid "rows from this sample when:"
+msgstr ""
+
+#: admin/quotarow.php:187
+msgid "Stop calling"
+msgstr ""
+
+#: admin/quotarow.php:190
+msgid "Row quota reached (Closed)"
+msgstr ""
+
+#: admin/quotarow.php:192
+msgid "Row quota not yet reached (Open)"
+msgstr ""
+
+#: admin/quotarow.php:212
+msgid "Copy quotas for this sample to (No error/duplicate checking): "
+msgstr ""
+
+#: admin/quotarow.php:214
+msgid "Copy"
+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 ""
+
+#: admin/quotarow.php:224
+msgid "Select a question for the row quota"
+msgstr ""
+
+#: admin/quotarow.php:248
+msgid "No question (Replicate)"
+msgstr ""
+
+#: admin/quotarow.php:252
+msgid "Sample only quota"
+msgstr ""
+
+#: admin/quotarow.php:262
+msgid "Select the sample variable to exclude"
+msgstr ""
+
+#: admin/quotarow.php:274
+msgid "Enter the details for creating the row quota:"
+msgstr ""
+
+#: admin/quotarow.php:300
+msgid "Describe this quota"
+msgstr ""
+
+#: admin/quotarow.php:301
+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?"
+msgstr ""
+
+#: admin/quotarow.php:316
+msgid "Exclude from the sample where the value is like"
+msgstr ""
+
+#: admin/quotarow.php:334
+msgid "Add row quota"
+msgstr ""
+
+#: admin/operators.php:147
+msgid "Added:"
+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
+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
+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
+msgid "Jabber/XMPP chat user"
+msgstr ""
+
+#: admin/operators.php:220
+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/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:132
+msgid "Name for questionnaire:"
+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
+msgid "Restrict appointments to shifts?"
+msgstr ""
+
+#: admin/new.php:196
+msgid "Restrict work to shifts?"
+msgstr ""
+
+#: admin/new.php:197
+msgid "Questionnaire for testing only?"
+msgstr ""
+
+#: admin/new.php:198
+msgid "Allow operators to generate referrals?"
+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 ""
+
+#: admin/new.php:201
+msgid "All in one"
+msgstr ""
+
+#: admin/new.php:201
+msgid "Question by question"
+msgstr ""
+
+#: admin/new.php:201
+msgid "Group at a time"
+msgstr ""
+
+#: admin/new.php:202
+msgid "Limesurvey template for respondent"
+msgstr ""
+
+#: admin/new.php:214
+msgid "URL to forward respondents on self completion (required)"
+msgstr ""
+
+#: admin/new.php:217
+msgid "Respondent selection introduction:"
+msgstr ""
+
+#: admin/new.php:218
+msgid "Respondent selection project introduction:"
+msgstr ""
+
+#: admin/new.php:219
+msgid "Respondent selection callback (already started questionnaire):"
+msgstr ""
+
+#: admin/new.php:220
+msgid "Message to leave on an answering machine:"
+msgstr ""
+
+#: admin/new.php:222
+msgid "Project end text (thank you screen):"
+msgstr ""
+
+#: admin/new.php:223
+msgid "Project information for interviewers/operators:"
+msgstr ""
+
+#: admin/new.php:224
+msgid "Create Questionnaire"
+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 ""
+
+#: admin/extensionstatus.php:146
+#: admin/extensionstatus.php:209
+msgid "Extension name (such as SIP/1000):"
+msgstr ""
+
+#: admin/extensionstatus.php:147
+#: admin/extensionstatus.php:210
+msgid "Extension password:"
+msgstr ""
+
+#: admin/extensionstatus.php:149
+msgid "Edit extension"
+msgstr ""
+
+#: admin/extensionstatus.php:155
+msgid "Delete extension"
+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 ""
+
+#: 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 ""
+
+#: admin/extensionstatus.php:211
+msgid "Add extension"
+msgstr ""
+
+#: admin/databasestrings.php:32
+msgid "Not attempted or worked"
+msgstr "Nummer nicht gewählt"
+
+#: admin/databasestrings.php:33
+msgid "No answer"
+msgstr "keine Antwort / besetzt"
+
+#: admin/databasestrings.php:34
+msgid "Technical phone problems"
+msgstr "Technische Probleme / Leitung unterbrochen"
+
+#: admin/databasestrings.php:35
+msgid "Other, Referred to Supervisor (Eligible)"
+msgstr "Andere Gründe, Übergeben an Supervisor (Person war am Telefon)"
+
+#: admin/databasestrings.php:36
+msgid "Other, Referred to Supervisor (Unknown eligibility)"
+msgstr "Andere Gründe, Übergeben an Supervisor (niemand war am Telefon)"
+
+#: admin/databasestrings.php:37
+msgid "Soft Refusal, Other"
+msgstr "Leichte Verweigerung durch angerufenene Person"
+
+#: admin/databasestrings.php:38
+msgid "Hard Refusal, Other"
+msgstr "Starke Verweigerung durch angerufenen Person"
+
+#: admin/databasestrings.php:39
+msgid "Soft Refusal, Respondent"
+msgstr "Leichte Verweigerung durch Zielperson"
+
+#: admin/databasestrings.php:40
+msgid "Hard Refusal, Respondent"
+msgstr "Starke Verweigerung durch Zielperson"
+
+#: admin/databasestrings.php:41
+msgid "Complete"
+msgstr "Fertig"
+
+#: admin/databasestrings.php:42
+msgid "Known respondent refusal"
+msgstr "Verweigerung durch bekannte Zielperson"
+
+#: admin/databasestrings.php:43
+msgid "Household-level refusal"
+msgstr "Verweigerung auf der Haushaltsebene"
+
+#: admin/databasestrings.php:44
+msgid "Broken appointment (Implicit refusal)"
+msgstr "Terminvereinbarung nicht eingehalten (implizite Verweigerung)"
+
+#: admin/databasestrings.php:45
+msgid "Disconnected number"
+msgstr "Ungültige Nummer"
+
+#: admin/databasestrings.php:46
+msgid "Fax/data line"
+msgstr "Fax- oder Modemnummer"
+
+#: admin/databasestrings.php:47
+msgid "Business, government office, other organization"
+msgstr "Büro, geschäftliche Nummer, Behörde, andere Organisationen"
+
+#: admin/databasestrings.php:48
+msgid "No eligible respondent"
+msgstr "keine geeignete Zielperson erreichbar"
+
+#: admin/databasestrings.php:49
+msgid "Accidental hang up or temporary phone problem"
+msgstr "Versehentlich aufgelegt oder temporäre Verbindungsprobleme"
+
+#: admin/databasestrings.php:50
+msgid "Definite Appointment - Respondent"
+msgstr "Terminvereinbarung mit Zielperson"
+
+#: admin/databasestrings.php:51
+msgid "Definite Appointment - Other"
+msgstr "Terminvereinbarung mit angerufener Person"
+
+#: admin/databasestrings.php:52
+msgid "Unspecified Appointment - Respondent"
+msgstr "Rückruf - Offene Terminvereinbarung mit Zielperson"
+
+#: admin/databasestrings.php:53
+msgid "Unspecified Appointment - Other"
+msgstr "Rückruf - Offene Terminvereinbarung mit angerufener Person"
+
+#: admin/databasestrings.php:54
+msgid "Household answering machine - Message left"
+msgstr "Anrufbeantworter - Nachricht wurde hinterlassen"
+
+#: admin/databasestrings.php:55
+msgid "Household answering machine - No message left"
+msgstr "Anrufbeantworter - keine Nachricht hinterlassen"
+
+#: admin/databasestrings.php:56
+msgid "Respondent Dead"
+msgstr "Zielperson verstorben"
+
+#: admin/databasestrings.php:57
+msgid "Physically or mentally unable/incompetent"
+msgstr "Zielperson langfristig nicht zu Interview in der Lage"
+
+#: admin/databasestrings.php:58
+msgid "Household level language problem"
+msgstr "Sprachprobleme auf der Haushaltsebene (kein Gespräch möglich)"
+
+#: admin/databasestrings.php:59
+msgid "Respondent language problem"
+msgstr "Sprachprobleme bei Zielperson (kein Gespräch möglich)"
+
+#: admin/databasestrings.php:60
+msgid "Answering machine - Not a household"
+msgstr "Anrufbeantworter (geschäftlich, kein Haushalt)"
+
+#: admin/databasestrings.php:61
+msgid "Out of sample"
+msgstr "Nicht in Stichporobe"
+
+#: admin/databasestrings.php:62
+msgid "Non contact"
+msgstr "Zielperson nicht anwesend (Rückruf zu späterem Zeitpunkt)"
+
+#: admin/databasestrings.php:63
+msgid "Temporary Outcomes (normal cases)"
+msgstr "Temporäre Anrufergebnisse (normale Fälle)"
+
+#: admin/databasestrings.php:64
+msgid "Supervisor Outcomes (referred to supervisor)"
+msgstr "Supervisor Anrufergebnisse (weitergeleiter an Supervisor)"
+
+#: admin/databasestrings.php:65
+msgid "Refusal Outcomes (respondent refused)"
+msgstr "Verweigerung Anrufergebnisse (Verweigerung durch Zielperson)"
+
+#: admin/databasestrings.php:66
+msgid "Final Outcomes (completed, final refusal, etc)"
+msgstr "Finale Anrufergebnisse ( Fertig, finale Verweigerung, etc.)"
+
+#: admin/databasestrings.php:67
+msgid "Miscellaneous - Unavailable for a week"
+msgstr "Sonstiges - Nicht erreichbar für eine Woche"
+
+#: admin/databasestrings.php:69
+msgid "Monday"
+msgstr "Montag"
+
+#: admin/databasestrings.php:70
+msgid "Tuesday"
+msgstr "Dienstag"
+
+#: admin/databasestrings.php:71
+msgid "Wednesday"
+msgstr "Mittwoch"
+
+#: admin/databasestrings.php:72
+msgid "Thursday"
+msgstr "Donnerstag"
+
+#: admin/databasestrings.php:73
+msgid "Friday"
+msgstr "Freitag"
+
+#: admin/databasestrings.php:74
+msgid "Saturday"
+msgstr "Samstag"
+
+#: admin/databasestrings.php:75
+msgid "Sunday"
+msgstr "Sonntag"
+
+#: admin/databasestrings.php:76
+msgid "Quota filled"
+msgstr ""
+
+#: admin/databasestrings.php:77
+msgid "Weekday mornings (Before 12pm)"
+msgstr ""
+
+#: admin/databasestrings.php:78
+msgid "Weekday afternoons (After 12pm but before 6pm)"
+msgstr ""
+
+#: admin/databasestrings.php:79
+msgid "Evenings (After 6pm)"
+msgstr ""
+
+#: admin/databasestrings.php:80
+msgid "Saturdays"
+msgstr ""
+
+#: admin/databasestrings.php:81
+msgid "String"
+msgstr ""
+
+#: admin/databasestrings.php:82
+msgid "Phone number"
+msgstr "Telefonnummer"
+
+#: admin/databasestrings.php:83
+msgid "Primary phone number"
+msgstr "Primäre Telefonnummer"
+
+#: admin/databasestrings.php:84
+msgid "State"
+msgstr ""
+
+#: admin/databasestrings.php:85
+msgid "Postcode"
+msgstr ""
+
+#: admin/databasestrings.php:86
+msgid "Respondent first name"
+msgstr ""
+
+#: admin/databasestrings.php:87
+msgid "Respondent last name"
+msgstr ""
+
+#: admin/databasestrings.php:88
+msgid "Email address"
+msgstr ""
+
+#: admin/databasestrings.php:89
+msgid "Self completion email invitation sent"
+msgstr ""
+
+#: admin/databasestrings.php:90
+msgid "Self completed online"
+msgstr ""
+
+#: admin/casesbyoutcome.php:52
+msgid "Cases by outcome"
+msgstr ""
+
+#: admin/casesbyoutcome.php:72
+msgid "Project"
+msgstr ""
+
+#: admin/casesbyoutcome.php:73
+msgid "Current outcome:"
+msgstr ""
+
+#: admin/casesbyoutcome.php:84
+msgid "No cases with this outcome"
+msgstr ""
+
+#: admin/casesbyoutcome.php:91
+msgid "Error with input"
+msgstr ""
+
+#: admin/process.php:90
+msgid "Cannot connect to VoIP Server"
+msgstr ""
+
+#: admin/availability.php:57
+msgid "No availability group set"
+msgstr ""
+
+#: admin/availability.php:95
+msgid "Modify availability"
+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 ""
+
+#: admin/availability.php:162
+msgid "Save changes to availabilities"
+msgstr ""
+
+#: admin/availability.php:166
+msgid "Delete this availability group"
+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/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/casestatus.php:88
+#: admin/casestatus.php:89
+msgid "Now"
+msgstr ""
+
+#: admin/casestatus.php:92
+msgid "Not assigned, select to assign"
+msgstr ""
+
+#: admin/casestatus.php:93
+msgid "Assigned to"
+msgstr ""
+
+#: admin/casestatus.php:93
+msgid "Order"
+msgstr ""
+
+#: admin/casestatus.php:111
+msgid "Case available in x minutes"
+msgstr ""
+
+#: admin/casestatus.php:111
+msgid "Assigned to operator"
+msgstr ""
+
+#: admin/casestatus.php:119
+msgid "Choose operator to assign selected cases to"
+msgstr ""
+
+#: admin/casestatus.php:122
+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."
+msgstr ""
+
+#: admin/dataoutput.php:202
+msgid "Download data for this questionnaire via Limesurvey"
+msgstr ""
+
+#: admin/dataoutput.php:204
+#: admin/samplecallattempts.php:184
+msgid "Please select a sample"
+msgstr ""
+
+#: admin/dataoutput.php:211
+msgid "Download data for this sample via Limesurvey"
+msgstr ""
+
+#: admin/dataoutput.php:218
+msgid "Download key file: select sample var"
+msgstr ""
+
+#: admin/dataoutput.php:222
+msgid "Download complete key file"
+msgstr ""
+
+#: admin/dataoutput.php:225
+msgid "Download complete sample file with current outcomes"
+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 "VoIP an/aus"
+
+#: 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:87
+msgid "Add/Remove Timezones"
+msgstr ""
+
+#: admin/timezonetemplate.php:101
+msgid "Click to remove a Timezone from the default list"
+msgstr ""
+
+#: admin/timezonetemplate.php:113
+msgid "Add a Timezone:"
+msgstr ""
+
+#: admin/timezonetemplate.php:116
+msgid "Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:117
+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:374
+msgid "Set outcome"
+msgstr ""
+
+#: admin/supervisor.php:300
+msgid "No appointments for this case"
+msgstr "Keine Terminvereinbarung für diesen Fall"
+
+#: admin/supervisor.php:302
+msgid "Create appointment for this case"
+msgstr "Erstelle Terminvereinbarung für diesen Fall"
+
+#: admin/supervisor.php:314
+msgid "Call list"
+msgstr "Anrufliste"
+
+#: admin/supervisor.php:320
+msgid "Change outcome"
+msgstr ""
+
+#: admin/supervisor.php:333
+msgid "Case notes"
+msgstr ""
+
+#: admin/supervisor.php:355
+msgid "Modify responses for this case"
+msgstr ""
+
+#: admin/supervisor.php:357
+msgid "Case not yet started in Limesurvey"
+msgstr ""
+
+#: admin/supervisor.php:361
+msgid "Set a case outcome"
+msgstr ""
+
+#: admin/supervisor.php:411
+msgid "Update case availability"
+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 ""
+
+#: 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 ""
+
+#: voip/downloadvoipclient.php:52
+msgid "Error: Cannot write to temporary directory"
+msgstr ""
+
+#: functions/functions.operator.php:167
+msgid "morning"
+msgstr ""
+
+#: functions/functions.operator.php:168
+msgid "afternoon"
+msgstr ""
+
+#: functions/functions.operator.php:169
+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."
+msgstr ""
+
+#: functions/functions.calendar.php:265
+msgid "First name:"
+msgstr "Vorname:"
+
+#: functions/functions.calendar.php:266
+msgid "Last name:"
+msgstr "Nachname:"
+
+#: functions/functions.calendar.php:271
+msgid "Time Zone:"
+msgstr "Zeitzone:"
+
+#: functions/functions.calendar.php:328
+msgid "Shift from:"
+msgstr "Schicht von:"
+
+#: functions/functions.calendar.php:335
+msgid "Start Time"
+msgstr "Anfang"
+
+#: functions/functions.calendar.php:385
+msgid "End Time"
+msgstr "Ende"
+
+#: functions/functions.performance.php:469
+msgid "No shift"
+msgstr "Keine Schicht"
+
+#: 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 "online"
+
+#: functions/functions.voip.php:449
+msgid "offline"
+msgstr "offline"
+
+#: 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"
+msgstr ""
+
+#: display/index.php:111
+msgid "Display"
+msgstr ""
+
+#: client/index.php:72
+msgid "There are no questionnaires assigned to you"
+msgstr "Sie sind keinen Fragebögen zugeordnet"
+
+#: client/index.php:123
+msgid "You are not a valid client"
+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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
+msgid ""
+"This is how the story goes.\n"
+"\n"
+msgstr ""
diff --git a/locale/el/LC_MESSAGES/el.mo b/locale/el/LC_MESSAGES/el.mo
index b52c6beb..6b4072d0 100644
Binary files a/locale/el/LC_MESSAGES/el.mo and b/locale/el/LC_MESSAGES/el.mo differ
diff --git a/locale/el/LC_MESSAGES/el.po b/locale/el/LC_MESSAGES/el.po
index 3dd1e43e..d92c1b72 100644
--- a/locale/el/LC_MESSAGES/el.po
+++ b/locale/el/LC_MESSAGES/el.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -323,6 +323,10 @@ msgstr "σε"
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Λίστα κλήσεων"
@@ -3120,87 +3124,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3291,72 +3295,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3533,6 +3541,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/es/LC_MESSAGES/es.mo b/locale/es/LC_MESSAGES/es.mo
index ab88a39a..2e3d7d9a 100644
Binary files a/locale/es/LC_MESSAGES/es.mo and b/locale/es/LC_MESSAGES/es.mo differ
diff --git a/locale/es/LC_MESSAGES/es.po b/locale/es/LC_MESSAGES/es.po
index 62c840f0..f97f89b6 100644
--- a/locale/es/LC_MESSAGES/es.po
+++ b/locale/es/LC_MESSAGES/es.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -323,6 +323,10 @@ msgstr "en"
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Lista de llamada"
@@ -3139,87 +3143,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr "Nombre de usuario"
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr "Activar VoIP"
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr "Desactivar VoIP"
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr "Lista de operadores"
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3310,72 +3314,76 @@ msgstr "Zona horaria: "
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr "Lista de llamadas"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr "Cambiar resultado"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 "El caso no existe"
@@ -3552,6 +3560,101 @@ 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
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/fa/LC_MESSAGES/fa.mo b/locale/fa/LC_MESSAGES/fa.mo
index dd5c313c..c8c13bc6 100644
Binary files a/locale/fa/LC_MESSAGES/fa.mo and b/locale/fa/LC_MESSAGES/fa.mo differ
diff --git a/locale/fa/LC_MESSAGES/fa.po b/locale/fa/LC_MESSAGES/fa.po
index 97474ecb..7d2cf257 100644
--- a/locale/fa/LC_MESSAGES/fa.po
+++ b/locale/fa/LC_MESSAGES/fa.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\n"
+"POT-Creation-Date: 2014-03-17 10:47+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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -319,6 +319,10 @@ msgstr "در"
msgid "Appointment with myself only?"
msgstr "قرار با خودم فقط؟"
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr ""
@@ -3120,87 +3124,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3291,72 +3295,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3533,6 +3541,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/fr/LC_MESSAGES/fr.mo b/locale/fr/LC_MESSAGES/fr.mo
index 3b18bba4..2494ef47 100644
Binary files a/locale/fr/LC_MESSAGES/fr.mo and b/locale/fr/LC_MESSAGES/fr.mo differ
diff --git a/locale/fr/LC_MESSAGES/fr.po b/locale/fr/LC_MESSAGES/fr.po
index 42b0a4ab..923f177b 100644
--- a/locale/fr/LC_MESSAGES/fr.po
+++ b/locale/fr/LC_MESSAGES/fr.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -319,6 +319,10 @@ msgstr "activé"
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Liste d'appels"
@@ -3114,87 +3118,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3285,72 +3289,76 @@ msgstr "Fuseau horaire : "
msgid "Add Timezone"
msgstr "Tous les fuseaux horaires"
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3527,6 +3535,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/gl/LC_MESSAGES/gl.mo b/locale/gl/LC_MESSAGES/gl.mo
index a9bcdfd1..27027056 100644
Binary files a/locale/gl/LC_MESSAGES/gl.mo and b/locale/gl/LC_MESSAGES/gl.mo differ
diff --git a/locale/gl/LC_MESSAGES/gl.po b/locale/gl/LC_MESSAGES/gl.po
index 4f4a0fe8..51fda09d 100644
--- a/locale/gl/LC_MESSAGES/gl.po
+++ b/locale/gl/LC_MESSAGES/gl.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -322,6 +322,10 @@ msgstr "para"
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Listaxe de Chamadas"
@@ -3153,87 +3157,87 @@ msgstr "Gardar os cambios nas restriccións horarias"
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3324,72 +3328,76 @@ msgstr "Fuso Horario: "
msgid "Add Timezone"
msgstr "Engadir un Fuso Horario"
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr "Introduza un id de caso ou escolla un caso da listaxe inferior:"
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr "Escolla un caso da listaxe de casos desviados ao/á supervidor/a"
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr "Escoller o caso"
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr "Establecer o estado para esta chamada"
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr "Establecer o estado"
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr "Non hai rechamadas para este caso"
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr "Crear unha rechamada para este caso"
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr "Lista de chamadas"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr "Mudar o estado"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr "Notas do caso"
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr "Modificar as respostas para este caso"
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr "O caso non comezou en Limesurve aínda"
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr "Establecer o estado do caso"
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 "O caso non existe"
@@ -3568,6 +3576,101 @@ 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
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/he/LC_MESSAGES/he.mo b/locale/he/LC_MESSAGES/he.mo
index b4959f51..86375a38 100644
Binary files a/locale/he/LC_MESSAGES/he.mo and b/locale/he/LC_MESSAGES/he.mo differ
diff --git a/locale/he/LC_MESSAGES/he.po b/locale/he/LC_MESSAGES/he.po
index 3289bef8..7e27e673 100644
--- a/locale/he/LC_MESSAGES/he.po
+++ b/locale/he/LC_MESSAGES/he.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\n"
+"POT-Creation-Date: 2014-03-17 10:47+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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -317,6 +317,10 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr ""
@@ -3112,87 +3116,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3283,72 +3287,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3525,6 +3533,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/id/LC_MESSAGES/id.mo b/locale/id/LC_MESSAGES/id.mo
index a9e8134a..fb07c69b 100644
Binary files a/locale/id/LC_MESSAGES/id.mo and b/locale/id/LC_MESSAGES/id.mo differ
diff --git a/locale/id/LC_MESSAGES/id.po b/locale/id/LC_MESSAGES/id.po
index 9cbe1bf8..d3536e7e 100644
--- a/locale/id/LC_MESSAGES/id.po
+++ b/locale/id/LC_MESSAGES/id.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -317,6 +317,10 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr ""
@@ -3110,87 +3114,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3281,72 +3285,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3523,6 +3531,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/it/LC_MESSAGES/it.mo b/locale/it/LC_MESSAGES/it.mo
index 65dd3dd8..c3f70001 100644
Binary files a/locale/it/LC_MESSAGES/it.mo and b/locale/it/LC_MESSAGES/it.mo differ
diff --git a/locale/it/LC_MESSAGES/it.po b/locale/it/LC_MESSAGES/it.po
index f8f61b02..29ae0600 100644
--- a/locale/it/LC_MESSAGES/it.po
+++ b/locale/it/LC_MESSAGES/it.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\n"
+"POT-Creation-Date: 2014-03-17 10:47+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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -325,6 +325,10 @@ msgstr "on"
msgid "Appointment with myself only?"
msgstr "Appuntamento solo con me stesso?"
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Lista di chiamate"
@@ -3213,64 +3217,64 @@ msgid "If changing usernames, you must specify a new password"
msgstr ""
"Per poter modificare il nome utente, occorre specificare una nuova password"
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr "L'utente è stato aggiornato"
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr "Modifica operatore"
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr "Nome utente"
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr "Modifica password (lascia vuoto per mantenere quella attuale)"
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr "Utilizza chat"
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr "Fuso orario"
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr "Utilizza VoIP"
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr "Aggiorna operatore"
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr "File bat per Windows"
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr "Script per sistemi *nix"
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr "Abilita VoIP"
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr "Disabilita VoIP"
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr "Elenco operatori"
-#: admin/operatorlist.php:294
+#: 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 "
@@ -3281,23 +3285,23 @@ msgstr ""
"programma voip.exe contenente i dettagli necessari per consentire "
"all'operatore di collegarsi al server VoIP"
-#: admin/operatorlist.php:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr "Scarica eseguibile VoIP per Windows"
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr "Scarica eseguibile VoIP per Linux"
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr "Abilita/disabilita VoIP"
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr "VoIP di Windows"
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr "VoIP di *nix"
@@ -3392,72 +3396,76 @@ msgstr "Zona di fuso orario: "
msgid "Add Timezone"
msgstr "Aggiungi fuso orario"
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr "Inserisci un identificativo o seleziona il caso dall'elenco:"
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr "Seleziona il caso dalla lista segnalata al supervisore:"
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr "Seleziona caso"
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr "Imposta un esito per questa chiamata"
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr "Imposta esito"
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr "Nessun appuntamento per questo caso"
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr "Crea appuntamento per questo caso"
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr "Lista chiamate"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr "Modifica l'esito"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr "Note"
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr "Modifica le risposte per questo caso"
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr "Caso non ancora iniziato in Limesurvey"
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr "Imposta l'esito di un caso"
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr "Aggiorna la disponibilità dei casi"
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
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:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr "Assegna questo caso ad un operatore"
-#: admin/supervisor.php:399
+#: 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 "Il caso non esiste"
@@ -3642,6 +3650,101 @@ 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
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/lt/LC_MESSAGES/lt.mo b/locale/lt/LC_MESSAGES/lt.mo
index 3ead5e98..b70b5328 100644
Binary files a/locale/lt/LC_MESSAGES/lt.mo and b/locale/lt/LC_MESSAGES/lt.mo differ
diff --git a/locale/lt/LC_MESSAGES/lt.po b/locale/lt/LC_MESSAGES/lt.po
index d7655493..3c152d49 100644
--- a/locale/lt/LC_MESSAGES/lt.po
+++ b/locale/lt/LC_MESSAGES/lt.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -319,6 +319,10 @@ msgstr "įjungti"
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Skambučių sąrašas"
@@ -3147,87 +3151,87 @@ msgstr "Išsaugoti laiko apribojimo pakeitimus"
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3318,72 +3322,76 @@ msgstr "Laiko juosta: "
msgid "Add Timezone"
msgstr "Pridėti laiko zoną"
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr "Įveskite atvejo ID arba pasirinkite atvejį iš žemiau esančio sąrašo"
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr "Pasirinkite atvejį iš sąrašo skirto supervizoriaus atvejams"
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr "Pasirinkite atvejį"
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr "Nustatykite šio skambučio rezultatą"
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr "Nustatykite rezultatą"
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr "Jokių perskambinimų šitai bylai"
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr "Skambučių sąrašas"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr "Pakeiskite rezultatą:"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr "Atvejo pastabos"
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr "Modifikuoti atsakymus šiai bylai"
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr "Byla dar nepradėta apklausų sistemoje"
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr "Nustaykite atvejo rezultatą"
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 "Atvejis neegzistuoja"
@@ -3562,6 +3570,101 @@ 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
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/nl/LC_MESSAGES/nl.mo b/locale/nl/LC_MESSAGES/nl.mo
index 05f1f604..6ed75582 100644
Binary files a/locale/nl/LC_MESSAGES/nl.mo and b/locale/nl/LC_MESSAGES/nl.mo differ
diff --git a/locale/nl/LC_MESSAGES/nl.po b/locale/nl/LC_MESSAGES/nl.po
index 327167db..c9f7448a 100644
--- a/locale/nl/LC_MESSAGES/nl.po
+++ b/locale/nl/LC_MESSAGES/nl.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -326,6 +326,10 @@ msgstr "op"
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Gesprekken Lijst"
@@ -3149,87 +3153,87 @@ msgstr "Bewaar wijzingen aan tijdsbeperkingen"
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3320,73 +3324,77 @@ msgstr "Tijdzone: "
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr "Vul een case id in of kies een case uit de onderstaande lijst:"
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
"Kies een case van de lijst met cases doorverwezen naar de toezichthouder:"
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr "Kies een case"
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr "Stel een resultaat voor dit gesprek in"
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr "Stel resultaat in"
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr "Gesprekslijst"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr "Wijzig resultaat"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr "Case opmerkingen"
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr "Stel een case resultaat in"
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 "De case bestaat niet"
@@ -3563,6 +3571,101 @@ 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
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/oc/LC_MESSAGES/oc.mo b/locale/oc/LC_MESSAGES/oc.mo
index 4782a648..c1c405d5 100644
Binary files a/locale/oc/LC_MESSAGES/oc.mo and b/locale/oc/LC_MESSAGES/oc.mo differ
diff --git a/locale/oc/LC_MESSAGES/oc.po b/locale/oc/LC_MESSAGES/oc.po
index a2c9fb20..97b462b8 100644
--- a/locale/oc/LC_MESSAGES/oc.po
+++ b/locale/oc/LC_MESSAGES/oc.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -317,6 +317,10 @@ msgstr "activat"
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr ""
@@ -3110,87 +3114,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3281,72 +3285,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3523,6 +3531,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/pl/LC_MESSAGES/pl.mo b/locale/pl/LC_MESSAGES/pl.mo
index 897df0e8..bf254e19 100644
Binary files a/locale/pl/LC_MESSAGES/pl.mo and b/locale/pl/LC_MESSAGES/pl.mo differ
diff --git a/locale/pl/LC_MESSAGES/pl.po b/locale/pl/LC_MESSAGES/pl.po
index 0279c616..bbb29d3e 100644
--- a/locale/pl/LC_MESSAGES/pl.po
+++ b/locale/pl/LC_MESSAGES/pl.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\n"
+"POT-Creation-Date: 2014-03-17 10:47+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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -321,6 +321,10 @@ msgstr "na"
msgid "Appointment with myself only?"
msgstr "Umówienie wyłącznie ze mną?"
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "lista połaczeń"
@@ -3123,87 +3127,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr "Użytkownik"
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr "Strefa czasowa"
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr "Włącz VoIP"
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr "Wyłącz VoIP"
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr "Włącz/Wyłącz VoIP"
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3294,72 +3298,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3536,6 +3544,101 @@ msgstr "Brak kwestionariuszy przypisanych do ciebie"
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/pt/LC_MESSAGES/pt.mo b/locale/pt/LC_MESSAGES/pt.mo
index 8192f41f..609e97ac 100644
Binary files a/locale/pt/LC_MESSAGES/pt.mo and b/locale/pt/LC_MESSAGES/pt.mo differ
diff --git a/locale/pt/LC_MESSAGES/pt.po b/locale/pt/LC_MESSAGES/pt.po
index 6d3b1e54..4cbc3a09 100644
--- a/locale/pt/LC_MESSAGES/pt.po
+++ b/locale/pt/LC_MESSAGES/pt.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\n"
+"POT-Creation-Date: 2014-03-17 10:47+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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -319,6 +319,10 @@ msgstr "para o número"
msgid "Appointment with myself only?"
msgstr "Agendar apenas para você mesmo?"
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Lista de chamadas"
@@ -3203,64 +3207,64 @@ msgstr "Salvar alterações"
msgid "If changing usernames, you must specify a new password"
msgstr "Se mudar o nome de usuário, você deverá especificar uma nova senha"
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr "Usuário atualizado com sucesso"
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr "Edição do Operador"
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr "Usuário"
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr "Atualizar senha (deixe em branco para manter a mesma senha)"
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr "Utilizar chat"
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr "Fuso horário"
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr "Utilizar VoIP"
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr "Atualizar operador"
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr "Arquivo bat para Windows"
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr "Arquivo de Script *nix"
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr "Ativar VoIP"
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr "Desativar VoIP"
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr "Lista de Operadores"
-#: admin/operatorlist.php:294
+#: 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 "
@@ -3270,23 +3274,23 @@ msgstr ""
"Quando o arquivo é executado, ele rodará o programa VOIP.EXE com os detalhes "
"para conectar corretamente o operador ao servidor PBX/VoIP."
-#: admin/operatorlist.php:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr "Baixar o executável VoiP para Windows"
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr "Baixar o Executável VoIP para Linux"
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr "Habilitar/Desabilitar VoIP"
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr "Windows VoIP"
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr "*nix VoIP"
@@ -3381,74 +3385,78 @@ msgstr "Fuso horário: "
msgid "Add Timezone"
msgstr "Adicionar Fuso horário"
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr "Informe um Número do Caso (ID) ou selecione da lista abaixo:"
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr "Selecione o caso da lista de casos atribuídos ao supervisor:"
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr "Selecionar caso"
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr "Definir um resultado para esta chamada"
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr "Definir resultado"
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr "Sem agendamentos para este caso"
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr "Criar agendamento para este caso"
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr "Lista de chamadas"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr "Mudar resultado"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr "Observações do caso"
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr "Modificar respostas deste caso"
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr "Caso não iniciado ainda no Limesurvey"
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr "Definir um resultado para o caso"
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr "Atualizar a disponibilidade do caso"
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
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:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr "Atribuir para o pesquisador"
-#: admin/supervisor.php:399
+#: 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 "Caso inexistente"
@@ -3632,6 +3640,101 @@ 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
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/quexs.pot b/locale/quexs.pot
index 440b5a22..8d24be23 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-01-08 15:30+1000\n"
+"POT-Creation-Date: 2014-03-17 10:47+1000\n"
"PO-Revision-Date: \n"
"Last-Translator: Adam Zammit \n"
"Language-Team: \n"
@@ -311,6 +311,10 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr ""
@@ -3031,84 +3035,84 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3196,72 +3200,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3432,6 +3440,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/ro/LC_MESSAGES/ro.mo b/locale/ro/LC_MESSAGES/ro.mo
index ea525893..0098dc37 100644
Binary files a/locale/ro/LC_MESSAGES/ro.mo and b/locale/ro/LC_MESSAGES/ro.mo differ
diff --git a/locale/ro/LC_MESSAGES/ro.po b/locale/ro/LC_MESSAGES/ro.po
index ded2143f..cf857c9f 100644
--- a/locale/ro/LC_MESSAGES/ro.po
+++ b/locale/ro/LC_MESSAGES/ro.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -317,6 +317,10 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr ""
@@ -3110,87 +3114,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3281,72 +3285,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3523,6 +3531,101 @@ msgstr "Nu sunt chestionare asignate dumneavoastra"
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/ru/LC_MESSAGES/ru.mo b/locale/ru/LC_MESSAGES/ru.mo
index 1a0150ee..a68fddc5 100644
Binary files a/locale/ru/LC_MESSAGES/ru.mo and b/locale/ru/LC_MESSAGES/ru.mo differ
diff --git a/locale/ru/LC_MESSAGES/ru.po b/locale/ru/LC_MESSAGES/ru.po
index 68d38284..96481aee 100644
--- a/locale/ru/LC_MESSAGES/ru.po
+++ b/locale/ru/LC_MESSAGES/ru.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -318,6 +318,10 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Список номеров"
@@ -3113,87 +3117,87 @@ msgstr ""
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr ""
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr ""
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3284,72 +3288,76 @@ msgstr ""
msgid "Add Timezone"
msgstr ""
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr ""
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr ""
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr ""
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr ""
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:399
+#: 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 ""
@@ -3526,6 +3534,101 @@ msgstr ""
msgid "You are not a valid client"
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/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/sv/LC_MESSAGES/sv.mo b/locale/sv/LC_MESSAGES/sv.mo
index 99160e6e..f3bd3beb 100644
Binary files a/locale/sv/LC_MESSAGES/sv.mo and b/locale/sv/LC_MESSAGES/sv.mo differ
diff --git a/locale/sv/LC_MESSAGES/sv.po b/locale/sv/LC_MESSAGES/sv.po
index 4e537020..8f8799b5 100644
--- a/locale/sv/LC_MESSAGES/sv.po
+++ b/locale/sv/LC_MESSAGES/sv.po
@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
#: callhistory.php:56
msgid "Case History List"
@@ -328,6 +328,10 @@ msgstr "den"
msgid "Appointment with myself only?"
msgstr ""
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr ""
+
#: calllist.php:56
msgid "Call List"
msgstr "Samtalslista"
@@ -3163,87 +3167,87 @@ msgstr "Spara ändringar för restriktionstider"
msgid "If changing usernames, you must specify a new password"
msgstr ""
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
msgstr ""
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
msgstr "Användarnamn"
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
msgstr ""
-#: admin/operatorlist.php:167
+#: admin/operatorlist.php:170
msgid "Uses chat"
msgstr ""
-#: admin/operatorlist.php:168
+#: admin/operatorlist.php:171
msgid "Timezone"
msgstr ""
-#: admin/operatorlist.php:170
+#: admin/operatorlist.php:173
msgid "Uses VoIP"
msgstr ""
-#: admin/operatorlist.php:173
+#: admin/operatorlist.php:176
msgid "Update operator"
msgstr ""
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
msgstr ""
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
msgstr ""
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
msgstr ""
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
msgstr "Intervjuarelista"
-#: admin/operatorlist.php:294
+#: 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:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
msgstr ""
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
msgstr ""
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
msgstr ""
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
msgstr ""
@@ -3335,74 +3339,78 @@ msgstr "Tidszon: "
msgid "Add Timezone"
msgstr "Lägg till tidszon"
-#: admin/supervisor.php:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
msgstr ""
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
msgstr ""
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
msgstr "Välj intervju"
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr "Sätt resultat för detta samtal"
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
msgstr "Sätt resultat"
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
msgstr ""
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
msgstr "Skapa återkontakt för denna intervju"
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
msgstr "Samtalslista"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
msgstr "Ändra resultat"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
msgstr "Intervju kommentarer"
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
msgstr "Ändra svar för detta ärende"
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr "Intervju inte påbörjad ännu i projektet"
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr "Sätt ärende resultat"
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
msgstr "Uppdatera intervju tillgänglighet"
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
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:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
msgstr "Tilldela denna intervju till en intervjuare"
-#: admin/supervisor.php:399
+#: 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 "Intervju finns ej"
@@ -3580,6 +3588,101 @@ 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
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+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/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/browse.php:792
+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
msgid ""
diff --git a/locale/zh/LC_MESSAGES/zh.mo b/locale/zh/LC_MESSAGES/zh.mo
index 8337a91e..f85eead5 100644
Binary files a/locale/zh/LC_MESSAGES/zh.mo and b/locale/zh/LC_MESSAGES/zh.mo differ
diff --git a/locale/zh/LC_MESSAGES/zh.po b/locale/zh/LC_MESSAGES/zh.po
index 0e3e2553..3a853e50 100644
--- a/locale/zh/LC_MESSAGES/zh.po
+++ b/locale/zh/LC_MESSAGES/zh.po
@@ -7,15 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-01-08 15:30+1000\n"
-"PO-Revision-Date: 2013-03-08 01:20+0000\n"
-"Last-Translator: FULL NAME \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"
"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-02-14 03:56+0000\n"
-"X-Generator: Launchpad (build 16916)\n"
+"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
+"X-Generator: Launchpad (build 17111)\n"
+"Language: zh\n"
#: callhistory.php:56
msgid "Case History List"
@@ -42,36 +43,36 @@ msgstr "结果"
#: callhistory.php:83
msgid "Respondent"
-msgstr "受访人"
+msgstr "受访者"
#: callhistory.php:87
msgid "No operator"
-msgstr "没有访问人员"
+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
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 ""
+msgstr "结束电话:未留电话答录机留言"
#: rs_answeringmachine_interface2.php:91
#: rs_business_interface2.php:62
@@ -79,25 +80,25 @@ msgstr ""
#: rs_project_intro.php:85
#: rs_answeringmachine.php:91
msgid "Go Back"
-msgstr "后退"
+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
#: index.php:145
msgid "queXS"
-msgstr ""
+msgstr "queXS"
#: index_interface2.php:213
#: appointment.php:121
@@ -108,68 +109,68 @@ 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
msgid "Notes"
-msgstr ""
+msgstr "备注"
#: index_interface2.php:314
#: index.php:238
msgid "Contact details"
-msgstr ""
+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
msgid "Performance"
-msgstr ""
+msgstr "表现"
#: index_interface2.php:358
#: index.php:282
msgid "Work history"
-msgstr ""
+msgstr "工作历史"
#: index_interface2.php:366
#: project_info.php:61
#: index.php:290
msgid "Project information"
-msgstr ""
+msgstr "项目信息"
#: index_interface2.php:375
#: index.php:306
msgid "Info"
-msgstr ""
+msgstr "信息"
#: record.php:55
msgid "Stop REC"
@@ -183,16 +184,16 @@ msgstr "录音"
#: record.php:66
msgid "Beginning recording..."
-msgstr "开始录音"
+msgstr "开始录音..."
#: record.php:69
#: record.php:97
msgid "Not on a call, so not beginning a recording"
-msgstr "不在电话上,所以不能开始录音"
+msgstr "未接通,所以不能开始录音"
#: record.php:73
msgid "Begin the manual recording now..."
-msgstr "启动手动录音"
+msgstr "启动手动录音..."
#: record.php:78
#: index.php:168
@@ -201,19 +202,19 @@ msgstr "开始录音"
#: record.php:86
msgid "Stopping recording..."
-msgstr "正在停止录音"
+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: "
-msgstr ""
+msgstr "您是: "
#: rs_callback_interface2.php:80
#, php-format
@@ -222,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"
@@ -241,12 +242,12 @@ 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"
@@ -255,7 +256,7 @@ msgstr "预约错误"
#: appointment.php:70
msgid ""
"You have not been assigned a case therefore cannot create an appointment"
-msgstr "您没有被分配访问,所以不能进行预约"
+msgstr "您没有被分配受访者,所以不能进行预约"
#: appointment.php:109
msgid "Appointment made"
@@ -263,23 +264,23 @@ 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"
@@ -287,7 +288,7 @@ msgstr "增加新电话号码"
#: appointment.php:184
msgid "Add new phone number (with area code, eg 0398761234):"
-msgstr "增加新电话号码(包括区号,如0398761234)"
+msgstr "增加新电话号码(包括区号,如0398761234):"
#: appointment.php:187
msgid "Add this phone number"
@@ -295,7 +296,7 @@ msgstr "增加该电话号码"
#: appointment.php:206
msgid "Appointment:"
-msgstr "预约"
+msgstr "预约:"
#: appointment.php:208
msgid "Accept appointment from "
@@ -315,11 +316,15 @@ msgstr "在"
#: appointment.php:210
msgid "Appointment with myself only?"
-msgstr ""
+msgstr "只与我预约?"
+
+#: appointment.php:219
+msgid "Schedule Appointment"
+msgstr "预约"
#: calllist.php:56
msgid "Call List"
-msgstr "电话清单"
+msgstr "呼叫清单"
#: calllist.php:80
msgid "No calls made"
@@ -327,81 +332,81 @@ msgstr "没有打过电话"
#: calllist.php:84
msgid "Number called"
-msgstr ""
+msgstr "已呼叫的号码"
#: calllist.php:84
msgid "Operator"
-msgstr ""
+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"
-msgstr ""
+msgstr "调查督导员"
#: index.php:170
msgid "Restart"
-msgstr ""
+msgstr "重新开始"
#: index.php:228
msgid "Availability"
-msgstr ""
+msgstr "可选时间"
#: index.php:298
msgid "Supervisor chat"
-msgstr ""
+msgstr "调查督导员聊天室"
#: info.php:56
msgid "Information"
-msgstr ""
+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
@@ -418,12 +423,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
@@ -436,17 +441,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
@@ -455,660 +460,660 @@ msgstr ""
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 ""
+msgstr "您的VoIP分机未启用。请关闭窗口并点击一下标有‘VoIP关闭’字样的红色按键以启用VoIP"
#: 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
msgid "Call Answered"
-msgstr ""
+msgstr "呼叫已接通"
#: call.php:431
#: call.php:438
#: call.php:445
msgid "Hangup"
-msgstr ""
+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 ""
+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"
-msgstr ""
+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"
-msgstr ""
+msgstr "返回工作"
#: status_interface2.php:70
msgid "Status"
-msgstr ""
+msgstr "状态"
#: status_interface2.php:79
msgid "Name"
-msgstr ""
+msgstr "姓名"
#: status_interface2.php:225
#: status_interface2.php:228
msgid "No more numbers to call"
-msgstr ""
+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
msgid "Business number"
-msgstr ""
+msgstr "业务电话号码"
#: rs_intro.php:118
#: rs_intro_interface2.php:118
msgid "Answering machine"
-msgstr ""
+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"
-msgstr ""
+msgstr "时区转换列表"
#: shifts.php:80
msgid "No shifts for this project"
-msgstr ""
+msgstr "该项目无时区转换"
#: shifts.php:82
#: shifts.php:103
msgid "Start"
-msgstr ""
+msgstr "开始"
#: shifts.php:101
msgid "No future shifts scheduled"
-msgstr ""
+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 ""
+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
msgid "Go back"
-msgstr ""
+msgstr "返回"
#: contactdetails.php:98
#: respondent.php:102
msgid "Case id:"
-msgstr ""
+msgstr "访问编号:"
#: 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
msgid "Value"
-msgstr ""
+msgstr "值"
#: availability.php:123
msgid ""
"Select groups to limit availability (Selecting none means always available)"
-msgstr ""
+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"
-msgstr ""
+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:"
-msgstr ""
+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
msgid "ID"
-msgstr ""
+msgstr "序号"
#: nocaseavailable.php:91
#: nocaseavailable.php:113
msgid "Description"
-msgstr ""
+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 ""
+msgstr "错误:呼叫限制内无可用访问"
#: nocaseavailable.php:169
msgid "There are "
-msgstr ""
+msgstr "有 "
#: nocaseavailable.php:169
msgid " unassigned case(s) available within the specified call restrictions"
-msgstr ""
+msgstr " 特定呼叫限制内可用的未分派访问"
#: nocaseavailable.php:175
msgid "Limesurvey links:"
-msgstr ""
+msgstr "Limesurvey连接:"
#: nocaseavailable.php:195
msgid "ERROR: No tokens table defined for LimeSurvey questionnaire"
-msgstr ""
+msgstr "错误:Limesurvey问卷无定义的验证码表"
#: nocaseavailable.php:195
msgid "from questionnaire:"
-msgstr ""
+msgstr "取自问卷:"
#: nocaseavailable.php:197
msgid "Tokens table exists for Limesurvey questionnaire:"
-msgstr ""
+msgstr "Limesurvey问卷存在验证码表:"
#: nocaseavailable.php:202
msgid "ERROR: Cannot find questionnaires with LimeSurvey ID's"
-msgstr ""
+msgstr "错误:无法使用Limesurvey序号找到问卷"
#: 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 "VoIP启用"
#: status.php:97
msgid "VoIP Off"
-msgstr ""
+msgstr "VoIP关闭"
#: status.php:102
msgid "No VoIP"
-msgstr ""
+msgstr "无VoIP"
#: 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 "APPT"
#: 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 ""
+msgstr "您的VoIP分机未启动。请点击一次注有“VoIP关闭”的红色按钮以启动VoIP"
#: nocallavailable.php:222
msgid "Auto dialling unavailable as VoIP is not enabled"
-msgstr ""
+msgstr "自动拨号不可用,VoIP未启用该功能"
#: 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 ""
+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 ""
+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 ""
+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 ""
+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 ""
+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 "登录编号"
#: 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 ""
@@ -1119,40 +1124,43 @@ 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配置指令)进行系统范围内的大规模访问排序, "
+"而不是在每次电话调查员请求一个新访问的时候寻找最合适的访问。这样可以在有大量访问或复杂配额的时候提高效率。如果您没有任何访问效率方面的问题,我们不推荐您使"
+"用该功能。"
#: 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
@@ -1160,179 +1168,179 @@ 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
#: admin/systemsortprocess.php:168
#: admin/systemsortprocess.php:180
msgid "System automatically closed case as not closed for more than 24 hours"
-msgstr ""
+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 ""
+msgstr "所有预约(按您的时区显示时间)"
#: admin/displayappointments.php:229
#: admin/displayappointments.php:243
msgid "Delete"
-msgstr ""
+msgstr "删除"
#: admin/displayappointments.php:229
#: admin/displayappointments.php:243
@@ -1342,521 +1350,521 @@ 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 ""
"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
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 ""
+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 "用LimeSurvey管理提示"
#: 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 "VoIP"
#: admin/index.php:110
msgid "Start and monitor VoIP"
-msgstr ""
+msgstr "启动并监控VoIP"
#: 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 ""
+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 ""
+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 ""
@@ -1864,50 +1872,52 @@ msgid ""
"is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will "
"need XMPP/Jabber accounts."
msgstr ""
+"允许电话调查员使用XMPP(Jabber)与督导员谈话。需要一个启动BOSH的XMPP/Jabber服务器。电话调查员和督导员需要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 "调查督导员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 "样本编号"
#: 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
@@ -1916,200 +1926,200 @@ 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 ""
+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 "回应率 1"
#: admin/outcomes.php:157
msgid "Refusal Rate 1"
-msgstr ""
+msgstr "拒绝率 1"
#: admin/outcomes.php:158
msgid "Cooperation Rate 1"
-msgstr ""
+msgstr "合作率 1"
#: admin/outcomes.php:159
msgid "Contact Rate 1"
-msgstr ""
+msgstr "联系率 1"
#: 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 "监控VoIP进程"
#: admin/voipmonitor.php:79
msgid ""
"Kill signal sent: Please wait... (Note: Process will be stalled until there "
"is activity on the VoIP Server)"
-msgstr ""
+msgstr "终止信号发送:请等待...(注意:进程将阻塞直到VoIP服务器有活动)"
#: admin/voipmonitor.php:84
msgid "(requires activity on the VoIP Server to take effect)"
-msgstr ""
+msgstr "(需要VoIP服务器有活动才有效)"
#: admin/voipmonitor.php:97
msgid "Click here to begin monitoring the VoIP Process"
-msgstr ""
+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)"
-msgstr ""
+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 ""
+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
@@ -2117,37 +2127,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
@@ -2155,63 +2165,63 @@ 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 ""
+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 ""
+msgstr "没有所需访问编号,或所需访问已形成最终结果,或所需访问当前已分派给电话调查员"
#: 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 ""
+msgstr "接受下列内容前请检查访问编号、预约起止时间及备注是否准确"
#: 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 ""
+msgstr "文件不包含必要的访问编号caseid、开始时间starttime和结束时间endtime列。请重试。"
#: admin/bulkappointment.php:251
msgid ""
@@ -2221,201 +2231,203 @@ msgid ""
"temporary (non final) outcomes will have appointments generated, and the "
"outcome of the case will be updated to an appointment outcome."
msgstr ""
+"提交一份至少包含访问编号caseid、开始时间starttime和结束时间endtime这三列的带标头的CSV文件。您可以选择性地加入备注列note,用来"
+"记录除了预约之外的访问信息。只有有临时结果(非最终结果)的访问才可以生成预约,而且访问的结果将在预约结果中更新。"
#: 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 ""
+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"
-msgstr ""
+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"
-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 ""
+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 ""
+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 ""
+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 ""
+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 ""
+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
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
@@ -2424,646 +2436,646 @@ msgid ""
"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 ""
+msgstr "基于您的目录安全系统,使用该表单输入用户的用户名。例如,如果您使用Apache基于文件的安全设置来保护根目录,就在本页输入用户的用户名。"
#: admin/operators.php:206
msgid "The username and extension must be unique for each operator."
-msgstr ""
+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 "该电话调查员使用VoIP吗?"
#: 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 "选择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?"
-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 ""
+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 "受访者LimeSurvey模板"
#: admin/new.php:214
msgid "URL to forward respondents on self completion (required)"
-msgstr ""
+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 ""
+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 ""
+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 "VoIP离线"
#: admin/extensionstatus.php:169
msgid "VoIP Online"
-msgstr ""
+msgstr "VoIP在线"
#: 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 "VoIP状态"
#: 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 ""
+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 ""
+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 "工作日上午(12pm之前)"
#: admin/databasestrings.php:78
msgid "Weekday afternoons (After 12pm but before 6pm)"
-msgstr ""
+msgstr "工作日下下午(12pm之后6pm之前)"
#: admin/databasestrings.php:79
msgid "Evenings (After 6pm)"
-msgstr ""
+msgstr "晚间(6pm之后)"
#: 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 "无法连接到VoIP服务器"
#: 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 ""
+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 ""
"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 ""
+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 ""
+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 ""
@@ -3072,402 +3084,410 @@ 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 "使用LimeSurvey下载该问卷数据"
#: 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 "使用LimeSurvey下载该样本数据"
#: 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 ""
+msgstr "如果改变用户名,您必须更换新密码"
-#: admin/operatorlist.php:113
+#: admin/operatorlist.php:116
msgid "Successfully updated user"
-msgstr ""
+msgstr "成功更新用户信息"
-#: admin/operatorlist.php:117
+#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
-msgstr ""
+msgstr "更新用户信息失败。请确认用户名唯一"
-#: admin/operatorlist.php:126
+#: admin/operatorlist.php:129
msgid "Operator edit"
-msgstr ""
+msgstr "电话调查员信息编辑"
-#: admin/operatorlist.php:155
-#: admin/operatorlist.php:290
+#: admin/operatorlist.php:158
+#: admin/operatorlist.php:293
msgid "Username"
-msgstr ""
+msgstr "用户名"
-#: admin/operatorlist.php:159
+#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
-msgstr ""
-
-#: admin/operatorlist.php:167
-msgid "Uses chat"
-msgstr ""
-
-#: admin/operatorlist.php:168
-msgid "Timezone"
-msgstr ""
+msgstr "更新密码(空白表示使用原有密码)"
#: admin/operatorlist.php:170
-msgid "Uses VoIP"
-msgstr ""
+msgid "Uses chat"
+msgstr "使用聊天室"
+
+#: admin/operatorlist.php:171
+msgid "Timezone"
+msgstr "时区"
#: admin/operatorlist.php:173
+msgid "Uses VoIP"
+msgstr "使用VoIP"
+
+#: admin/operatorlist.php:176
msgid "Update operator"
-msgstr ""
+msgstr "更新电话调查员信息"
-#: admin/operatorlist.php:267
+#: admin/operatorlist.php:270
msgid "Windows bat file"
-msgstr ""
+msgstr "Windows下的bat文件"
-#: admin/operatorlist.php:268
+#: admin/operatorlist.php:271
msgid "*nix script file"
-msgstr ""
+msgstr "*nix脚本文件"
-#: admin/operatorlist.php:276
+#: admin/operatorlist.php:279
msgid "Enable VoIP"
-msgstr ""
+msgstr "启用VoIP"
-#: admin/operatorlist.php:278
+#: admin/operatorlist.php:281
msgid "Disable VoIP"
-msgstr ""
+msgstr "禁用VoIP"
-#: admin/operatorlist.php:287
+#: admin/operatorlist.php:290
msgid "Operator list"
-msgstr ""
+msgstr "电话调查员列表"
-#: admin/operatorlist.php:294
+#: 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 ""
+"给每个用户下载该文件,并保存在与可执行程序voip.exe相同的文件夹内。当该文件执行时,会启动voip.exe程序,使用正确的连接信息将电话调查员连接到"
+"VoIP服务器"
-#: admin/operatorlist.php:296
+#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
-msgstr ""
+msgstr "下载Windows下的VoIP可执行文件"
-#: admin/operatorlist.php:297
+#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
-msgstr ""
+msgstr "下载Linux下的VoIP可执行文件"
-#: admin/operatorlist.php:302
+#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
-msgstr ""
+msgstr "启用/禁用VoIP"
-#: admin/operatorlist.php:303
+#: admin/operatorlist.php:306
msgid "Windows VoIP"
-msgstr ""
+msgstr "Windows下的VoIP"
-#: admin/operatorlist.php:304
+#: admin/operatorlist.php:307
msgid "*nix VoIP"
-msgstr ""
+msgstr "*nix VoIP"
#: 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 "在LimeSurvey中编辑提示"
#: admin/questionnairelist.php:362
msgid "Edit respondent selection instrument in Limesurvey"
-msgstr ""
+msgstr "在LimeSurvey中编辑受访者选项提示"
#: 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 ""
"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 ""
+msgstr "问卷将从queXS中删除,包括呼叫历史、访问、访问备注、受访者详细信息、预约和电话调查员、客户与问卷间的联系"
#: 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:89
+#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
-msgstr ""
+msgstr "输入一个访问编号或从下列列表中选择一个访问:"
-#: admin/supervisor.php:100
+#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
-msgstr ""
+msgstr "从调查督导员管理的访问列表中选择访问:"
-#: admin/supervisor.php:109
+#: admin/supervisor.php:153
msgid "Select case"
-msgstr ""
+msgstr "选择访问"
-#: admin/supervisor.php:132
+#: admin/supervisor.php:176
msgid "Set an outcome for this call"
-msgstr ""
+msgstr "给该呼叫设置一个结果"
-#: admin/supervisor.php:145
-#: admin/supervisor.php:330
+#: admin/supervisor.php:189
+#: admin/supervisor.php:374
msgid "Set outcome"
-msgstr ""
+msgstr "设置结果"
-#: admin/supervisor.php:256
+#: admin/supervisor.php:300
msgid "No appointments for this case"
-msgstr ""
+msgstr "该访问无预约"
-#: admin/supervisor.php:258
+#: admin/supervisor.php:302
msgid "Create appointment for this case"
-msgstr ""
+msgstr "给该访问创建预约"
-#: admin/supervisor.php:270
+#: admin/supervisor.php:314
msgid "Call list"
-msgstr ""
+msgstr "呼叫列表"
-#: admin/supervisor.php:276
+#: admin/supervisor.php:320
msgid "Change outcome"
-msgstr ""
+msgstr "修改结果"
-#: admin/supervisor.php:289
+#: admin/supervisor.php:333
msgid "Case notes"
-msgstr ""
+msgstr "访问备注"
-#: admin/supervisor.php:311
+#: admin/supervisor.php:355
msgid "Modify responses for this case"
-msgstr ""
+msgstr "修改该访问受访者"
-#: admin/supervisor.php:313
+#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
-msgstr ""
+msgstr "访问尚未在LimeSurvey中开始"
-#: admin/supervisor.php:317
+#: admin/supervisor.php:361
msgid "Set a case outcome"
-msgstr ""
+msgstr "设置一个访问结果"
-#: admin/supervisor.php:367
+#: admin/supervisor.php:411
msgid "Update case availability"
-msgstr ""
+msgstr "更新访问有效时间"
-#: admin/supervisor.php:379
+#: admin/supervisor.php:423
msgid "Assign this case to operator (will appear as next case for them)"
-msgstr ""
+msgstr "将该访问分派给电话调查员(会作为下一个访问出现在调查员访问页面)"
-#: admin/supervisor.php:391
+#: admin/supervisor.php:435
msgid "Assign this case to operator"
-msgstr ""
+msgstr "将该访问分派给电话调查员"
-#: admin/supervisor.php:399
+#: 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 ""
+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
@@ -3475,53 +3495,148 @@ 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 ""
+msgstr "重新加载失败,retrieve_conf 文件遇到错误:%s"
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
-msgstr ""
+msgstr "retrieve_conf 失败,配置未应用"
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
-msgstr ""
+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 ""
+msgstr "无法用bounce_op.sh脚本重新加载FOP电话调查员版面服务器。配置面板可能不能改变系统配置。"
#: 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 "无预约"
+
+#: include/limesurvey/quexs.php:676
+#: include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr "预约中"
+
+#: include/limesurvey/quexs.php:987
+msgid "All samples"
+msgstr "所有样本"
+
+#: include/limesurvey/common_functions.php:6298
+msgid "queXS: Number of call attempts"
+msgstr "queXS:呼叫尝试数量"
+
+#: include/limesurvey/common_functions.php:6299
+msgid "queXS: On appointment?"
+msgstr "queXS:有预约?"
+
+#: include/limesurvey/common_functions.php:6300
+msgid "queXS: Percentage complete"
+msgstr "queXS:完成百分数"
+
+#: include/limesurvey/common_functions.php:6301
+msgid "queXS: Number of answering machine messages left"
+msgstr "queXS:电话答录机留言数量"
+
+#: include/limesurvey/optout.php:83
+msgid "Self completion refused via opt out function"
+msgstr "通过选择功能拒绝自助完成调查"
+
+#: include/limesurvey/admin/browse.php:791
+msgid "Questionnaire and Sample selection:"
+msgstr "问卷及样本选择:"
+
+#: include/limesurvey/admin/browse.php:792
+msgid "All queXS questionnaires and samples associated with this instrument"
+msgstr "与该提示语相关的所有queXS问卷和样本"
+
+#: 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
@@ -3529,3 +3644,14 @@ msgid ""
"This is how the story goes.\n"
"\n"
msgstr ""
+"事情是这样的。\n"
+"\n"
+
+#~ msgid "Enter the telephone extension number:"
+#~ msgstr "输入要添加的电话调查员的分机号:"
+
+#~ msgid "Enter the telephone extension password:"
+#~ msgstr "输入要添加的电话调查员的分机密码:"
+
+#~ msgid "No operators"
+#~ msgstr "无电话调查员"
diff --git a/voip/downloadvoipclient.php b/voip/downloadvoipclient.php
index 0e0b642b..89d16d96 100644
--- a/voip/downloadvoipclient.php
+++ b/voip/downloadvoipclient.php
@@ -59,8 +59,8 @@ if ($operator_id)
{
$sql = "SELECT *,SUBSTRING_INDEX(extension, '/', -1) as ext
- FROM operator
- WHERE operator_id = $operator_id";
+ FROM extension
+ WHERE current_operator_id = $operator_id";
$rs = $db->GetRow($sql);
@@ -74,7 +74,7 @@ if ($operator_id)
copy(realpath(dirname(__FILE__) . '/../voipclient'),"$zipdir/voipclient");
$f1 = "$zipdir/voipclient";
$f2 = "$zipdir/startvoip";
- file_put_contents($f2, "./voipclient -i -u {$rs['ext']} -p {$rs['extension_password']} -h " . $_SERVER['SERVER_NAME']);
+ file_put_contents($f2, "./voipclient -i -u {$rs['ext']} -p {$rs['password']} -h " . $_SERVER['SERVER_NAME']);
}
else
@@ -83,7 +83,7 @@ if ($operator_id)
copy(realpath(dirname(__FILE__) . '/../voipclient.exe'),"$zipdir/voipclient.exe");
$f1 = "$zipdir/voipclient.exe";
$f2 = "$zipdir/startvoip.bat";
- file_put_contents($f2, "voipclient.exe -i -u {$rs['ext']} -p {$rs['extension_password']} -h " . $_SERVER['SERVER_NAME']);
+ file_put_contents($f2, "voipclient.exe -i -u {$rs['ext']} -p {$rs['password']} -h " . $_SERVER['SERVER_NAME']);
}