2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Merged from Trunk

This commit is contained in:
Adam Zammit
2014-09-01 12:32:47 +10:00
59 changed files with 7534 additions and 1721 deletions

View File

@@ -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)

View File

@@ -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 "<h3>" . T_("Appointments")."</h3>";
//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('<a href=\'supervisor.php?case_id=', c.case_id, '\'>', c.case_id, '</a>') as case_id, CONCAT('<a href=\'displayappointments.php?case_id=', c.case_id, '&amp;appointment_id=', a.appointment_id, '&amp;delete=delete\'>". TQ_("Delete") . "</a>') as link, CONCAT('<a href=\'displayappointments.php?case_id=', c.case_id, '&amp;appointment_id=', a.appointment_id, '\'>". TQ_("Edit") . "</a>') 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('<a href=\'supervisor.php?case_id=', c.case_id, '\'>', c.case_id, '</a>') as case_id, CONCAT('<a href=\'displayappointments.php?case_id=', c.case_id, '&amp;appointment_id=', a.appointment_id, '&amp;delete=delete\'>". TQ_("Delete") . "</a>') as link, CONCAT('<a href=\'displayappointments.php?case_id=', c.case_id, '&amp;appointment_id=', a.appointment_id, '\'>". TQ_("Edit") . "</a>') 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)
</form>
<?php
//deidentify record
print "<h3>" . T_("Deidentify") . "</h3>";
print "<p>" . T_("Remove all sample details and contact numbers from this case") . "</p>";
?>
<form method="get" action="?">
<p>
<input type="hidden" name="case_id" value="<?php echo $case_id;?>"/>
<input class="submitclass" type="submit" name="deidentify" id="deidentify" value="<?php echo T_("Deidentify");?>"/>
</p>
</form>
<?php
}
else

View File

@@ -216,7 +216,7 @@ else if(isset($_GET['respondent_id']))
<input type="hidden" name="year" value="<?php print $year; ?>"/>
<input type="hidden" name="respondent_id" value="<?php print $respondent_id; ?>"/>
<input type="hidden" name="contact_phone_id" value="<?php print $contact_phone_id; ?>"/>
<input type="submit" value="Make appointment"/></p>
<input type="submit" value="<?php echo TQ_("Schedule Appointment"); ?>"/></p>
</form>
<?php
}

View File

@@ -51,10 +51,10 @@ if (isset($_GET['auto']))
print "<h1>" . T_("Work has ended. That is it") . "</h1>";
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))

View File

@@ -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 <adam.zammit@acspri.org.au>
* @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";

View File

@@ -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";

View File

@@ -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);

View File

@@ -788,8 +788,8 @@ $quexsfilterstate = questionnaireSampleFilterstate();
//queXS Addition
include_once("../quexs.php");
$browseoutput .= "&nbsp;".$clang->gT("Questionnaire and Sample selection:")."<select id='quexsfilterinc' name='quexsfilterinc' onchange='javascript:document.getElementById(\"limit\").value=\"\";submit();'>\n"
."\t<option value='all' >".$clang->gT("All queXS questionnaires and samples associated with this instrument")."</option>\n"
$browseoutput .= "&nbsp;".T_("Questionnaire and Sample selection:")."<select id='quexsfilterinc' name='quexsfilterinc' onchange='javascript:document.getElementById(\"limit\").value=\"\";submit();'>\n"
."\t<option value='all' >".T_("All queXS questionnaires and samples associated with this instrument")."</option>\n"
. get_questionnaire_sample_list($surveyid,$quexsfilterstate)
."</select>\n";

View File

@@ -107,8 +107,8 @@ $quexsfilterstate = questionnaireSampleFilterstate();
//queXS Addition
include_once("../quexs.php");
$exportoutput .= "<li><label for='quexsfilterinc'>".$clang->gT("Questionnaire and Sample selection:")."</label><select id='quexsfilterinc' name='quexsfilterinc'>\n"
."\t<option value='all' >".$clang->gT("All queXS questionnaires and samples associated with this instrument")."</option>\n"
$exportoutput .= "<li><label for='quexsfilterinc'>".T_("Questionnaire and Sample selection:")."</label><select id='quexsfilterinc' name='quexsfilterinc'>\n"
."\t<option value='all' >".T_("All queXS questionnaires and samples associated with this instrument")."</option>\n"
. get_questionnaire_sample_list($surveyid,$quexsfilterstate)
."</select></li></ul></fieldset>\n";
@@ -254,17 +254,17 @@ $quexsfilterstate = questionnaireSampleFilterstate();
$exportoutput .= "<option value='$attr_name' id='$attr_name' />".$attr_desc."</option>\n";
}
$exportoutput .= "<option value='token' id='token' />".$clang->gT("Token")."</option>\n"
."<option value='caseid' id='caseid' />".$clang->gT("Case ID")."</option>\n"
."<option value='caseoutcome' id='caseoutcome' />".$clang->gT("Case outcome")."</option>\n"
."<option value='callattempts' id='callattempts' />".$clang->gT("Number of call attempts")."</option>\n"
."<option value='messagesleft' id='messagesleft' />".$clang->gT("Number of answering machine messages left")."</option>\n"
."<option value='casenotes' id='casenotes' />".$clang->gT("Case notes")."</option>\n"
."<option value='interviewtimec' id='interviewtimec' />".$clang->gT("Total interview time over all calls (mins)")."</option>\n"
."<option value='interviewtimel' id='interviewtimel' />".$clang->gT("Interview time for last call (mins)")."</option>\n"
."<option value='lastnumber' id='lastnumber' />".$clang->gT("Last number dialled")."</option>\n"
."<option value='operatoru' id='operatoru' />".$clang->gT("Operator username for last call")."</option>\n"
."<option value='shiftr' id='shiftr' />".$clang->gT("Shift report")."</option>\n";
$exportoutput .= "<option value='token' id='token' />".T_("Token")."</option>\n"
."<option value='caseid' id='caseid' />".T_("Case ID")."</option>\n"
."<option value='caseoutcome' id='caseoutcome' />".T_("Case outcome")."</option>\n"
."<option value='callattempts' id='callattempts' />".T_("Number of call attempts")."</option>\n"
."<option value='messagesleft' id='messagesleft' />".T_("Number of answering machine messages left")."</option>\n"
."<option value='casenotes' id='casenotes' />".T_("Case notes")."</option>\n"
."<option value='interviewtimec' id='interviewtimec' />".T_("Total interview time over all calls (mins)")."</option>\n"
."<option value='interviewtimel' id='interviewtimel' />".T_("Interview time for last call (mins)")."</option>\n"
."<option value='lastnumber' id='lastnumber' />".T_("Last number dialled")."</option>\n"
."<option value='operatoru' id='operatoru' />".T_("Operator username for last call")."</option>\n"
."<option value='shiftr' id='shiftr' />".T_("Shift report")."</option>\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").":";

View File

@@ -265,8 +265,8 @@ $quexsfilterstate = questionnaireSampleFilterstate();
//queXS Addition
include_once("../quexs.php");
$statisticsoutput .= "<li><label for='quexsfilterinc'>".$clang->gT("Questionnaire and Sample selection:")."</label><select id='quexsfilterinc' name='quexsfilterinc'>\n"
."\t<option value='all' >".$clang->gT("All queXS questionnaires and samples associated with this instrument")."</option>\n"
$statisticsoutput .= "<li><label for='quexsfilterinc'>".T_("Questionnaire and Sample selection:")."</label><select id='quexsfilterinc' name='quexsfilterinc'>\n"
."\t<option value='all' >".T_("All queXS questionnaires and samples associated with this instrument")."</option>\n"
. get_questionnaire_sample_list($surveyid,$quexsfilterstate)
."</select></li>\n";

View File

@@ -66,8 +66,8 @@ $quexsfilterstate = questionnaireSampleFilterstate();
//queXS Addition
include_once("../quexs.php");
$vvoutput .= "<li><label for='quexsfilterinc'>".$clang->gT("Questionnaire and Sample selection:")."</label><select id='quexsfilterinc' name='quexsfilterinc'>\n"
."\t<option value='all' >".$clang->gT("All queXS questionnaires and samples associated with this instrument")."</option>\n"
$vvoutput .= "<li><label for='quexsfilterinc'>".T_("Questionnaire and Sample selection:")."</label><select id='quexsfilterinc' name='quexsfilterinc'>\n"
."\t<option value='all' >".T_("All queXS questionnaires and samples associated with this instrument")."</option>\n"
. get_questionnaire_sample_list($surveyid,$quexsfilterstate)
."</select></li>\n";

View File

@@ -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);

View File

@@ -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<div id='wrapper'>\n"
."\t<p id='tokenmessage'>\n"
."\t<span class='error'>".$clang->gT("ERROR")."</span><br /><br />\n"
."\t".$clang->gT("We are sorry but your session has expired.")."<br /><br />\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.")."<br /><br />\n"
."\t".sprintf($clang->gT("Please contact %s ( %s ) for further assistance."),$siteadminname,$siteadminemail)."<br /><br />\n"
."\t</p>\n"
."\t</div>\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

View File

@@ -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);

View File

@@ -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;
}

View File

@@ -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();

View File

@@ -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);
}
}

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <sidik@sidiklepic.com>\n"
"Language-Team: Bosnian <bs@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: Czech <cs@li.org>\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 ""

BIN
locale/de/LC_MESSAGES/de.mo Normal file

Binary file not shown.

3652
locale/de/LC_MESSAGES/de.po Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Greek <el@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Spanish <es@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <jazayeri@gmail.com>\n"
"Language-Team: Persian <fa@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: French <fr@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Galician <gl@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: Hebrew <he@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Indonesian <id@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <cristiano.santinello@unitn.it>\n"
"Language-Team: Italian <it@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Lithuanian <lt@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Dutch <nl@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Occitan (post 1500) <oc@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <pawel.timler@gmail.com>\n"
"Language-Team: Polish <pl@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <marco@ciciliati.com.br>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\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 ""

View File

@@ -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 <adam.zammit@acspri.org.au>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Romanian <ro@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <Unknown>\n"
"Language-Team: Russian <ru@li.org>\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 ""

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\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 <EMAIL@ADDRESS>\n"
"Language-Team: Swedish <sv@li.org>\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 &auml;ndringar f&ouml;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&auml;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&auml;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&auml;lj intervju"
#: admin/supervisor.php:132
#: admin/supervisor.php:176
msgid "Set an outcome for this call"
msgstr "S&auml;tt resultat f&ouml;r detta samtal"
#: admin/supervisor.php:145
#: admin/supervisor.php:330
#: admin/supervisor.php:189
#: admin/supervisor.php:374
msgid "Set outcome"
msgstr "S&auml;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 &aring;terkontakt f&ouml;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 "&Auml;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 "&Auml;ndra svar f&ouml;r detta &auml;rende"
#: admin/supervisor.php:313
#: admin/supervisor.php:357
msgid "Case not yet started in Limesurvey"
msgstr "Intervju inte p&aring;b&ouml;rjad &auml;nnu i projektet"
#: admin/supervisor.php:317
#: admin/supervisor.php:361
msgid "Set a case outcome"
msgstr "S&auml;tt &auml;rende resultat"
#: admin/supervisor.php:367
#: admin/supervisor.php:411
msgid "Update case availability"
msgstr "Uppdatera intervju tillg&auml;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&auml;sta "
"intervju f&ouml;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&aring;geformul&auml;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 ""

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -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']);
}