diff --git a/CHANGELOG b/CHANGELOG
index ddf611b6..c94c63cb 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,12 @@
+Database updates:
+
+CREATE TABLE `questionnaire_sample_timeslot` (
+`questionnaire_id` bigint( 20 ) NOT NULL ,
+`sample_import_id` bigint( 20 ) NOT NULL ,
+`availability_group_id` bigint( 20 ) NOT NULL ,
+PRIMARY KEY ( `questionnaire_id` , `availability_group_id` , `sample_import_id` )
+) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
+
CREATE TABLE `qsqr_question` (
`qsqr_question_id` bigint(20) NOT NULL AUTO_INCREMENT,
`questionnaire_sample_quota_row_id` bigint(20) NOT NULL,
@@ -38,6 +47,46 @@ ALTER TABLE `questionnaire_sample_quota_row`
DROP `exclude_var`,
DROP `exclude_val`;
+queXS 1.11.1 - Changes since 1.11.0
+
+Fixed Bug: Quota priority not able to override sort of last call made
+Fixed Bug lp:1410503 required URLto the CKeditor installation directory
+Fixed Bug lp:1411703 Asign cases even with sample disabled and sample unassigned from questionnaire
+Fixed Bug lp:1412389 removed language restriction
+Fixes Bug lp:141380 System sort process fails when quotas enabled and limesurvey instrument de-activated
+Fix error in translation where thinks it is a wildcard
+
+Translations: Updated from Launchpad. Thank you again!
+
+queXS 1.11.0 - Changes since 1.10.4
+
+New Feature: System sort on a questionnaire by questionnaire basis
+New Feature: Time slots for cases (make sure cases are called over specified timeslots equally)
+New Feature: Ability to disable and enable new records being drawn from a sample
+New Feature: Default timezone can be set in Administrative interface instead of config file
+
+Fixed Bug: lp:1394819 Automatic dialling doesn't work when using "No respondent selection"
+Fixed Bug: lp:1394818 - Quota completions not displayed above 100%
+Fixed Bug: Operator extension not clearing correctly at end of work
+Fixed Bug: Notices generated when running index_update.php
+Fixed Bug: lp:1362415 Use of eregi and split are deprecated
+Fixed Bug: lp:1362418 - Cannot originate calls on Asterisk 11
+
+Translations: Updated from Launchpad. Thank you!
+
+Database updates:
+
+ALTER TABLE `questionnaire_sample` ADD `allow_new` TINYINT( 1 ) NOT NULL DEFAULT '1';
+
+CREATE TABLE `questionnaire_timeslot` (
+`questionnaire_id` bigint( 20 ) NOT NULL ,
+`availability_group_id` bigint( 20 ) NOT NULL ,
+PRIMARY KEY ( `questionnaire_id` , `availability_group_id` )
+) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
+
+INSERT INTO `setting` (`setting_id`,`field`,`value`)
+VALUES (NULL , 'DEFAULT_TIME_ZONE', 's:18:"Australia/Victoria";');
+
queXS 1.10.4 - Changes since 1.10.3
Fixed bug: Quota priority could get below 0
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..c37f1c36
--- /dev/null
+++ b/README.md
@@ -0,0 +1,7 @@
+#queXS
+
+An Open Source, web based, CATI system
+
+queXS can operate your outbound telephone research centre. It integrates with the Asterisk VoIP Server, uses AAPOR Standard Outcome codes and only requires a web browser to operate.
+
+Development for queXS occurs on Launchpad: https://launchpad.net/quexs
diff --git a/admin/assignsample.php b/admin/assignsample.php
index 1e84d2a4..1369f11c 100644
--- a/admin/assignsample.php
+++ b/admin/assignsample.php
@@ -69,10 +69,11 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['sample']) && isset($_GET['
$am = bigintval($_GET['answering_machine_messages']);
$selecttype = 0;
if (isset($_GET['selecttype'])) $selecttype = 1;
+ $an = 0;
+ if (isset($_GET['allownew'])) $an = 1;
-
- $sql = "INSERT INTO questionnaire_sample(questionnaire_id,sample_import_id,call_max,call_attempt_max,random_select,answering_machine_messages)
- VALUES('$questionnaire_id','$sid','$cm','$cam','$selecttype','$am')";
+ $sql = "INSERT INTO questionnaire_sample(questionnaire_id,sample_import_id,call_max,call_attempt_max,random_select,answering_machine_messages,allow_new)
+ VALUES('$questionnaire_id','$sid','$cm','$cam','$selecttype','$am', '$an')";
$db->Execute($sql);
@@ -89,13 +90,17 @@ if (isset($_POST['edit']))
$am = bigintval($_POST['answering_machine_messages']);
$selecttype = 0;
if (isset($_POST['selecttype'])) $selecttype = 1;
+ $an = 0;
+ if (isset($_POST['allownew'])) $an = 1;
+
$sql = "UPDATE questionnaire_sample
SET call_max = '$cm',
call_attempt_max = '$cam',
random_select = '$selecttype',
- answering_machine_messages = '$am'
+ answering_machine_messages = '$am',
+ allow_new = '$an'
WHERE questionnaire_id = '$questionnaire_id'
AND sample_import_id = '$sid'";
@@ -119,7 +124,8 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['rsid']))
q.call_max,
q.call_attempt_max,
q.random_select,
- q.answering_machine_messages
+ q.answering_machine_messages,
+ q.allow_new
FROM questionnaire_sample as q, sample_import as si, questionnaire as qr
WHERE q.sample_import_id = si.sample_import_id
AND q.questionnaire_id = '$questionnaire_id'
@@ -134,9 +140,11 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['rsid']))
print "
" . T_("Go back") . "
";
- $selected ="";
+ $allownew = $selected ="";
if ($qs['random_select'] == 1)
$selected = "checked=\"checked\"";
+ if ($qs['allow_new'] == 1)
+ $allownew = "checked=\"checked\"";
?>
diff --git a/admin/availability.php b/admin/availability.php
index 0ab8e488..03b120ac 100644
--- a/admin/availability.php
+++ b/admin/availability.php
@@ -54,7 +54,7 @@ if (isset($_GET['availability_group']))
else if (isset($_POST['availability_group']))
$availability_group = intval($_POST['availability_group']);
else
- die(T_("No availability group set"));
+ die(T_("No time slot group set"));
if (isset($_POST['day']))
@@ -92,7 +92,7 @@ if (isset($_POST['day']))
$db->CompleteTrans();
}
-xhtml_head(T_("Modify availability"),true,array("../css/shifts.css"),array("../js/addrow-v2.js"));
+xhtml_head(T_("Modify time slots"),true,array("../css/shifts.css"),array("../js/addrow-v2.js"));
/**
* Display warning if timezone data not installed
@@ -158,12 +158,12 @@ translate_array($daysofweek,array("description"));
?>
- :
- "/>
+ :
+ "/>
GetAll($sql);
-print "" . T_("Availability groups")." ";
+print "" . T_("Time slots")." ";
-print "" . T_("Availability groups define periods of time of respondent availability.") . "
";
+print "" . T_("Time slots define periods of time during particular days of the week. These are used for the availability function and also the call attempt time slot function.") . "
";
if (empty($rs))
- print "" . T_("No availability groups") . "
";
+ print "" . T_("No time slots") . "
";
else
- xhtml_table($rs,array("description","link"),array(T_("Availablity group"),T_("Modify")));
+ xhtml_table($rs,array("description","link"),array(T_("Time slot"),T_("Modify")));
//add an availablity group
-print "" . T_("Add availability group") . " ";
+print "" . T_("Add time slot") . " ";
?>
" . T_("Questionnaire") . ":";
display_questionnaire_chooser($questionnaire_id);
print "" . T_("Sample") . ": ";
-display_sample_chooser($questionnaire_id,$sample_import_id);
+display_sample_chooser($questionnaire_id,$sample_import_id,false);
if ($questionnaire_id)
case_status_report($questionnaire_id,$sample_import_id,$outcome_id);
diff --git a/admin/centreinfo.php b/admin/centreinfo.php
index e7b9fa63..2c014ae9 100644
--- a/admin/centreinfo.php
+++ b/admin/centreinfo.php
@@ -53,6 +53,7 @@ include("../include/ckeditor/ckeditor.php");
global $db;
$CKEditor = new CKEditor();
+$CKEditor->basePath = "../include/ckeditor/";
if (isset($_POST['information']))
{
diff --git a/admin/clients.php b/admin/clients.php
index 68f46f2c..ef450b1b 100644
--- a/admin/clients.php
+++ b/admin/clients.php
@@ -111,7 +111,7 @@ if ($a)
- "; display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",DEFAULT_TIME_ZONE)); ?>
+ "; display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",get_setting("DEFAULT_TIME_ZONE"))); ?>
" />
diff --git a/admin/index.php b/admin/index.php
index 5446df0b..48d620d5 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -70,8 +70,10 @@ print "" . T_("Assign operators
print "" . T_("Modify operator skills") . " ";
print "" . T_("Availability and shift management") . " ";
print "" . T_("Questionnaire progress") . " ";
diff --git a/admin/new.php b/admin/new.php
index ee265900..add4bff5 100644
--- a/admin/new.php
+++ b/admin/new.php
@@ -158,8 +158,7 @@ else
GetAll($sql);
@@ -173,6 +172,7 @@ if (!empty($surveys))
}
$CKEditor = new CKEditor();
+$CKEditor->basePath = "../include/ckeditor/";
$ckeditorConfig = array("toolbar" => array(array("tokens","-","Source"),
array("Cut","Copy","Paste","PasteText","PasteFromWord","-","Print","SpellChecker"),
diff --git a/admin/operatorlist.php b/admin/operatorlist.php
index 002466f1..e6bb7e40 100644
--- a/admin/operatorlist.php
+++ b/admin/operatorlist.php
@@ -255,9 +255,9 @@ if (isset($_GET['operator_id']))
header("Pragma: public"); // HTTP/1.0
if (isset($_GET['winbat']))
- echo "voipclient.exe -i -u {$rs['ext']} -p {$rs['extension_password']} -h " . $_SERVER['SERVER_NAME'];
+ echo "voipclient.exe -i -u {$rs['ext']} -p {$rs['password']} -h " . $_SERVER['SERVER_NAME'];
else
- echo "./voipclient -i -u {$rs['ext']} -p {$rs['extension_password']} -h " . $_SERVER['SERVER_NAME'];
+ echo "./voipclient -i -u {$rs['ext']} -p {$rs['password']} -h " . $_SERVER['SERVER_NAME'];
}
}
}
diff --git a/admin/operators.php b/admin/operators.php
index e14bfd96..9e7c1886 100644
--- a/admin/operators.php
+++ b/admin/operators.php
@@ -113,7 +113,7 @@ if (isset($_POST['operator']))
if (FREEPBX_PATH !== false)
{
//add extension
- $sql = "INSERT INTO extension (`extension`,`extension_password`,`current_operator_id`)
+ $sql = "INSERT INTO extension (`extension`,`password`,`current_operator_id`)
VALUES ($extension, $extensionp, $oid)";
$db->Execute($sql);
@@ -211,7 +211,7 @@ $ers = $db->GetAll($sql);
- "; display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",DEFAULT_TIME_ZONE)); ?>
+ "; display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",get_setting("DEFAULT_TIME_ZONE"))); ?>
"; display_chooser($ers,"extension_id","extension_id",true,false,false,false); ?>
diff --git a/admin/questionnaireavailability.php b/admin/questionnaireavailability.php
index 20550393..47c8e530 100644
--- a/admin/questionnaireavailability.php
+++ b/admin/questionnaireavailability.php
@@ -91,7 +91,10 @@ $questionnaire_id = false;
if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']);
xhtml_head(T_("Assign availability group to questionnaire"),true,false,array("../js/window.js"));
-print "" . T_("Select a questionnaire from the list below") . " ";
+
+print "" . T_("Assigning an availability group to a questionnaire will allow interviewers to select from those groups to restrict calls to a particular case to the times within the group") ."
";
+
+print "" . T_("Select a questionnaire from the list below") . " ";
display_questionnaire_chooser($questionnaire_id);
@@ -143,7 +146,7 @@ if ($questionnaire_id != false)
?>
-
+ "/>
+ * @copyright Australian Consortium for Social and Political Research Inc (ACSPRI) 2011
+ * @package queXS
+ * @subpackage admin
+ * @link http://www.acspri.org.au queXS was writen for ACSPRI
+ * @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
+ *
+ *
+ */
+
+/**
+ * Configuration file
+ */
+include("../config.inc.php");
+
+/**
+ * Database file
+ */
+include ("../db.inc.php");
+
+/**
+ * XHTML functions
+ */
+include("../functions/functions.xhtml.php");
+
+/**
+ * Display functions
+ */
+include("../functions/functions.display.php");
+
+/**
+ * Input functions
+ */
+include("../functions/functions.input.php");
+
+global $db;
+
+
+if (isset($_GET['questionnaire_id']) && isset($_GET['availability_group']))
+{
+ //need to add availability_group to questionnaire
+
+ $questionnaire_id = bigintval($_GET['questionnaire_id']);
+ $availability_group = bigintval($_GET['availability_group']);
+
+ $sql = "INSERT INTO questionnaire_timeslot(questionnaire_id,availability_group_id)
+ VALUES('$questionnaire_id','$availability_group')";
+
+ $db->Execute($sql);
+
+}
+
+if (isset($_GET['questionnaire_id']) && isset($_GET['ravailability_group']))
+{
+ //need to remove rsid from questionnaire
+
+ $questionnaire_id = bigintval($_GET['questionnaire_id']);
+ $availability_group = bigintval($_GET['ravailability_group']);
+
+ $sql = "DELETE FROM questionnaire_timeslot
+ WHERE questionnaire_id = '$questionnaire_id'
+ AND availability_group_id = '$availability_group'";
+
+ $db->Execute($sql);
+}
+
+
+$questionnaire_id = false;
+if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']);
+
+xhtml_head(T_("Assign call attempt time slots to questionnaire"),true,false,array("../js/window.js"));
+
+print "" . T_("Assigning call attempt time slots to questionnaires will only allow cases to be attempted in a time slot for the n + 1th time where it has been attempted at least n times in all assigned timeslots. Please note timeslots must cover all possible time periods otherwise no cases will be available during missing timeslots.") ."
";
+
+print "" . T_("Select a questionnaire from the list below") . " ";
+display_questionnaire_chooser($questionnaire_id);
+
+
+if ($questionnaire_id != false)
+{
+
+ $sql = "SELECT q.availability_group_id,a.description as description
+ FROM questionnaire_timeslot as q, availability_group as a
+ WHERE q.availability_group_id = a.availability_group_id
+ AND q.questionnaire_id = '$questionnaire_id'";
+
+ $qs = $db->GetAll($sql);
+
+ if (empty($qs))
+ {
+ print "" . T_("There are no call attempt time slots selected for this questionnaire") . " ";
+ }
+ else
+ {
+ print "" . T_("Call attempt time slots selected for this questionnaire") . " ";
+ foreach($qs as $q)
+ {
+ print "{$q['availability_group_id']} - {$q['description']} (" . T_("Click to unassign") . ")
";
+ }
+ }
+
+ $sql = "SELECT si.availability_group_id,si.description
+ FROM availability_group as si
+ LEFT JOIN questionnaire_timeslot as q ON (q.questionnaire_id = '$questionnaire_id' AND q.availability_group_id = si.availability_group_id)
+ WHERE q.questionnaire_id is NULL";
+
+ $qs = $db->GetAll($sql);
+
+ if (!empty($qs))
+ {
+
+
+ print "" . T_("Add a call attempt time slot to this questionnaire:") . " ";
+ ?>
+
+
diff --git a/admin/questionnairecatimeslotssample.php b/admin/questionnairecatimeslotssample.php
new file mode 100644
index 00000000..49c151ba
--- /dev/null
+++ b/admin/questionnairecatimeslotssample.php
@@ -0,0 +1,172 @@
+
+ * @copyright Australian Consortium for Social and Political Research Inc (ACSPRI) 2011
+ * @package queXS
+ * @subpackage admin
+ * @link http://www.acspri.org.au queXS was writen for ACSPRI
+ * @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
+ *
+ *
+ */
+
+/**
+ * Configuration file
+ */
+include("../config.inc.php");
+
+/**
+ * Database file
+ */
+include ("../db.inc.php");
+
+/**
+ * XHTML functions
+ */
+include("../functions/functions.xhtml.php");
+
+/**
+ * Display functions
+ */
+include("../functions/functions.display.php");
+
+/**
+ * Input functions
+ */
+include("../functions/functions.input.php");
+
+global $db;
+
+
+if (isset($_GET['questionnaire_id']) && isset($_GET['sample_import_id']) && isset($_GET['availability_group']))
+{
+ //need to add availability_group to questionnaire
+
+ $questionnaire_id = bigintval($_GET['questionnaire_id']);
+ $sample_import_id = bigintval($_GET['sample_import_id']);
+ $availability_group = bigintval($_GET['availability_group']);
+
+ $sql = "INSERT INTO questionnaire_sample_timeslot (questionnaire_id,sample_import_id,availability_group_id)
+ VALUES('$questionnaire_id','$sample_import_id','$availability_group')";
+
+ $db->Execute($sql);
+
+}
+
+if (isset($_GET['questionnaire_id']) && isset($_GET['sample_import_id']) && isset($_GET['ravailability_group']))
+{
+ //need to remove rsid from questionnaire
+
+ $questionnaire_id = bigintval($_GET['questionnaire_id']);
+ $sample_import_id = bigintval($_GET['sample_import_id']);
+ $availability_group = bigintval($_GET['ravailability_group']);
+
+ $sql = "DELETE FROM questionnaire_sample_timeslot
+ WHERE questionnaire_id = '$questionnaire_id'
+ AND sample_import_id = '$sample_import_id'
+ AND availability_group_id = '$availability_group'";
+
+
+ $db->Execute($sql);
+}
+
+
+$questionnaire_id = false;
+if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']);
+
+xhtml_head(T_("Assign call attempt time slots to questionnaire sample"),true,false,array("../js/window.js"));
+
+print "" . T_("Assigning call attempt time slots to questionnaires will only allow cases to be attempted in a time slot for the n + 1th time where it has been attempted at least n times in all assigned timeslots. Please note timeslots must cover all possible time periods otherwise no cases will be available during missing timeslots.") ."
";
+
+print "" . T_("Select a questionnaire from the list below") . " ";
+display_questionnaire_chooser($questionnaire_id);
+
+
+if ($questionnaire_id != false)
+{
+ print "" . T_("Select a sample from the list below") . " ";
+
+ $sample_import_id = false;
+ if (isset($_GET['sample_import_id'])) $sample_import_id = bigintval($_GET['sample_import_id']);
+ display_sample_chooser($questionnaire_id,$sample_import_id);
+
+ if ($sample_import_id !== false)
+ {
+
+ $sql = "SELECT q.availability_group_id,a.description as description
+ FROM questionnaire_sample_timeslot as q, availability_group as a
+ WHERE q.availability_group_id = a.availability_group_id
+ AND q.questionnaire_id = '$questionnaire_id'
+ AND q.sample_import_id = '$sample_import_id'";
+
+ $qs = $db->GetAll($sql);
+
+ if (empty($qs))
+ {
+ print "" . T_("There are no call attempt time slots selected for this questionnaire sample") . " ";
+ }
+ else
+ {
+ print "" . T_("Call attempt time slots selected for this questionnaire sample") . " ";
+ foreach($qs as $q)
+ {
+ print "{$q['availability_group_id']} - {$q['description']} (" . T_("Click to unassign") . ")
";
+ }
+ }
+
+ $sql = "SELECT si.availability_group_id,si.description
+ FROM availability_group as si
+ LEFT JOIN questionnaire_sample_timeslot as q ON (q.sample_import_id = '$sample_import_id' AND q.questionnaire_id = '$questionnaire_id' AND q.availability_group_id = si.availability_group_id)
+ WHERE q.questionnaire_id is NULL";
+
+ $qs = $db->GetAll($sql);
+
+ if (!empty($qs))
+ {
+
+
+ print "" . T_("Add a call attempt time slot to this questionnaire sample:") . " ";
+ ?>
+
+
diff --git a/admin/questionnairelist.php b/admin/questionnairelist.php
index 4a2b0bf1..14e8ab7f 100644
--- a/admin/questionnairelist.php
+++ b/admin/questionnairelist.php
@@ -298,6 +298,7 @@ if (isset($_GET['modify']))
$questionnaire_id = intval($_GET['modify']);
$CKEditor = new CKEditor();
+ $CKEditor->basePath = "../include/ckeditor/";
$ckeditorConfig = array("toolbar" => array(array("tokens","-","Source"),
array("Cut","Copy","Paste","PasteText","PasteFromWord","-","Print","SpellChecker"),
diff --git a/admin/supervisor.php b/admin/supervisor.php
index 1572e50b..8c9fb0b1 100644
--- a/admin/supervisor.php
+++ b/admin/supervisor.php
@@ -319,7 +319,30 @@ if ($case_id != false)
translate_array($rs,array("des"));
xhtml_table($rs,array("start","des","phone","link","firstName"),array(T_("Date/Time"),T_("Outcome"),T_("Phone number"),T_("Change outcome"),T_("Operator")));
}
-
+
+ //view timeslots
+ $sql = "SELECT count(*)
+ FROM questionnaire_timeslot as q, `case` as c
+ WHERE c.case_id = $case_id
+ AND c.questionnaire_id = q.questionnaire_id";
+
+ if ($db->GetOne($sql) >= 1)
+ {
+ print "" . T_("Call attempts by timeslot") . " ";
+
+ $sql = "SELECT ag.description, (SELECT COUNT(*) FROM availability as a, `call_attempt` as ca WHERE ca.case_id = c.case_id AND a.availability_group_id = ag.availability_group_id
+ AND (a.day_of_week = DAYOFWEEK(CONVERT_TZ(ca.start,'UTC',s.Time_zone_name))
+ AND TIME(CONVERT_TZ(ca.start, 'UTC' , s.Time_zone_name)) >= a.start
+ AND TIME(CONVERT_TZ(ca.start, 'UTC' , s.Time_zone_name)) <= a.end)) as cou
+ FROM availability_group as ag, `case` as c, `questionnaire_timeslot` as qt, sample as s
+ WHERE c.case_id = '$case_id'
+ AND s.sample_id = c.sample_id
+ AND qt.questionnaire_id = c.questionnaire_id AND ag.availability_group_id = qt.availability_group_id";
+
+ xhtml_table($db->GetAll($sql),array('description','cou'),array(T_("Time slot"),T_("Call attempts")));
+
+ }
+
//view notes
$sql = "SELECT DATE_FORMAT(CONVERT_TZ(c.datetime,'UTC',op.Time_zone_name),'".DATE_TIME_FORMAT."') as time, op.firstName, op.lastName, c.note as note, CONCAT('". TQ_("Delete") . " ') as link
FROM `case_note` as c
@@ -418,7 +441,6 @@ if ($case_id != false)
}
-
//assign this to an operator for their next case
print "" . T_("Assign this case to operator (will appear as next case for them)") . " ";
?>
diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php
index f7047f5a..b13e7f43 100644
--- a/admin/systemsortprocess.php
+++ b/admin/systemsortprocess.php
@@ -88,8 +88,11 @@ register_shutdown_function('disable_systemsort');
//all output send to database instead of stdout
ob_start('update_callback',2);
+$closecasescounter = 0;
+
print T_("Sorting cases process starting");
+$closecasesinterval = (24 * 60) / SYSTEM_SORT_MINUTES; //check for closed cases once every day
$sleepinterval = 10; // in seconds so we can monitor if the process has been killed
while (!is_process_killed($process_id)) //check if process killed every $sleepinterval
@@ -97,202 +100,232 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin
//Make sure that the system knows we are system sorting
set_setting('systemsort',true);
- print T_("Sorting cases");
+ if ($closecasescounter == 0 || $closecasescounter > $closecasesinterval)
+ {
+ $time_start = microtime(true);
+ print T_("Checking for cases open for more than 24 hours");
- $time_start = microtime(true);
+ $closecasescounter = 0;
+ $db->StartTrans();
- $db->StartTrans();
+ //find all call attempts without an end that started more than 24 hours ago
+
+ $sql = "SELECT case_id, call_attempt_id
+ FROM `call_attempt`
+ WHERE TIMESTAMPDIFF(HOUR, start, CONVERT_TZ(NOW(),'System','UTC')) > 24
+ AND end IS NULL";
+
+ $rs = $db->GetAll($sql);
+
+ foreach ($rs as $r)
+ {
+ //refer to supervisor if case still assigned
+
+ $sql = "UPDATE `case`
+ SET current_operator_id = NULL, current_outcome_id = 5
+ WHERE case_id = '{$r['case_id']}'
+ AND current_operator_id IS NOT NULL
+ AND current_call_id IS NULL";
+
+ $db->Execute($sql);
+
+ //add note
- //find all call attempts without an end that started more than 24 hours ago
+ $sql = "INSERT INTO case_note (case_id,operator_id,note,`datetime`)
+ VALUES ('{$r['case_id']}',1,'" . TQ_("System automatically closed case as not closed for more than 24 hours") ."', CONVERT_TZ(NOW(),'System','UTC'))";
- $sql = "SELECT case_id, call_attempt_id
- FROM `call_attempt`
- WHERE TIMESTAMPDIFF(HOUR, start, CONVERT_TZ(NOW(),'System','UTC')) > 24
- AND end IS NULL";
-
- $rs = $db->GetAll($sql);
-
- foreach ($rs as $r)
- {
- //refer to supervisor if case still assigned
-
- $sql = "UPDATE `case`
- SET current_operator_id = NULL, current_outcome_id = 5
- WHERE case_id = '{$r['case_id']}'
- AND current_operator_id IS NOT NULL
- AND current_call_id IS NULL";
+ $db->Execute($sql);
+
+ //finish the call attempt
+
+ $sql = "UPDATE `call_attempt`
+ SET end = start
+ WHERE call_attempt_id = '{$r['call_attempt_id']}'";
- $db->Execute($sql);
+ $db->Execute($sql);
- //add note
+ print T_("System automatically closed case as not closed for more than 24 hours") . " - " . T_("Case id") . ": {$r['case_id']}";
+ }
+
+ //find all calls without an end that started more than 24 hours ago
+
+ $sql = "SELECT case_id, call_id
+ FROM `call`
+ WHERE TIMESTAMPDIFF(HOUR, start, CONVERT_TZ(NOW(),'System','UTC')) > 24
+ AND end IS NULL";
+
+ $rs = $db->GetAll($sql);
+
+ foreach ($rs as $r)
+ {
+ //refer to supervisor if case still assigned
+
+ $sql = "UPDATE `case`
+ SET current_operator_id = NULL, current_outcome_id = 5, current_call_id = NULL
+ WHERE case_id = '{$r['case_id']}'
+ AND current_operator_id IS NOT NULL";
- $sql = "INSERT INTO case_note (case_id,operator_id,note,`datetime`)
- VALUES ('{$r['case_id']}',1,'" . TQ_("System automatically closed case as not closed for more than 24 hours") ."', CONVERT_TZ(NOW(),'System','UTC'))";
+ $db->Execute($sql);
- $db->Execute($sql);
-
- //finish the call attempt
-
- $sql = "UPDATE `call_attempt`
- SET end = start
- WHERE call_attempt_id = '{$r['call_attempt_id']}'";
+ //add note
+
+ $sql = "INSERT INTO case_note (case_id,operator_id,note,`datetime`)
+ VALUES ('{$r['case_id']}',1,'" . TQ_("System automatically closed case as not closed for more than 24 hours") ."', CONVERT_TZ(NOW(),'System','UTC'))";
- $db->Execute($sql);
+ $db->Execute($sql);
- print T_("System automatically closed case as not closed for more than 24 hours") . " - " . T_("Case id") . ": {$r['case_id']}";
- }
-
- //find all calls without an end that started more than 24 hours ago
-
- $sql = "SELECT case_id, call_id
- FROM `call`
- WHERE TIMESTAMPDIFF(HOUR, start, CONVERT_TZ(NOW(),'System','UTC')) > 24
- AND end IS NULL";
-
- $rs = $db->GetAll($sql);
-
- foreach ($rs as $r)
- {
- //refer to supervisor if case still assigned
-
- $sql = "UPDATE `case`
- SET current_operator_id = NULL, current_outcome_id = 5, current_call_id = NULL
- WHERE case_id = '{$r['case_id']}'
- AND current_operator_id IS NOT NULL";
+ //finish the call
+
+ $sql = "UPDATE `call`
+ SET end = start, outcome_id = 5, state = 5
+ WHERE call_id = '{$r['call_id']}'";
- $db->Execute($sql);
+ $db->Execute($sql);
- //add note
-
- $sql = "INSERT INTO case_note (case_id,operator_id,note,`datetime`)
- VALUES ('{$r['case_id']}',1,'" . TQ_("System automatically closed case as not closed for more than 24 hours") ."', CONVERT_TZ(NOW(),'System','UTC'))";
+ print T_("System automatically closed case as not closed for more than 24 hours") . " - " . T_("Case id") . ": {$r['case_id']}";
+ }
- $db->Execute($sql);
+ $result = $db->CompleteTrans();
+
+ $time_end = microtime(true);
+ $timer = $time_end - $time_start;
- //finish the call
-
- $sql = "UPDATE `call`
- SET end = start, outcome_id = 5, state = 5
- WHERE call_id = '{$r['call_id']}'";
+ if ($result)
+ print T_("Completed case closing") . ". " . T_("This task took") . ": $timer " . T_("seconds");
+ else
+ print T_("Failed to complete case closing") . ". " . T_("This task took") . ": $timer " . T_("seconds");
+ }
- $db->Execute($sql);
- print T_("System automatically closed case as not closed for more than 24 hours") . " - " . T_("Case id") . ": {$r['case_id']}";
- }
-
-
- //Set all cases as unavailable
- $sql = "UPDATE `case`
- SET sortorder = NULL
- WHERE 1";
+ $closecasescounter++;
- $db->Execute($sql);
-
-
- //Update quotas for all enabled questionnaires
- $sql = "SELECT questionnaire_id
+ //Sort cases on a questionnaire by questionnaire basis
+ $sql = "SELECT questionnaire_id, description
FROM questionnaire
WHERE enabled = 1";
$qs = $db->GetAll($sql);
foreach($qs as $q)
- update_quotas($q['questionnaire_id']);
+ {
+ print T_("Sorting cases for ") . $q['description'];
+
+ $questionnaire_id = $q['questionnaire_id'];
+
+ $time_start = microtime(true);
+
+ $db->StartTrans();
+
+ //Set all cases as unavailable
+ $sql = "UPDATE `case`
+ SET sortorder = NULL
+ WHERE sortorder IS NOT NULL
+ AND questionnaire_id = '$questionnaire_id'";
+
+ $db->Execute($sql);
+
+
+ //update quotas
+ update_quotas($questionnaire_id);
- //Sort current cases for all enabled questionnaires
+ //Sort current cases for this questionnaire
-
- $sql = "SELECT c.case_id
- FROM `case` as c
- LEFT JOIN `call` as a on (a.call_id = c.last_call_id)
- JOIN (sample as s, sample_import as si) on (s.sample_id = c.sample_id and si.sample_import_id = s.import_id)
- JOIN (questionnaire_sample as qs, questionnaire as q, outcome as ou) on (c.questionnaire_id = q.questionnaire_id and qs.sample_import_id = s.import_id and ou.outcome_id = c.current_outcome_id and q.enabled = 1 and qs.questionnaire_id = c.questionnaire_id)
- LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end))
- LEFT JOIN appointment as ap on (ap.case_id = c.case_id AND ap.completed_call_id is NULL AND (ap.start > CONVERT_TZ(NOW(),'System','UTC')))
- LEFT JOIN appointment as apn on (apn.case_id = c.case_id AND apn.completed_call_id is NULL AND (CONVERT_TZ(NOW(),'System','UTC') >= apn.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= apn.end))
- LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end)
- LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = c.questionnaire_id AND qsep.sample_id = c.sample_id)
- LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id)
- LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id)
- WHERE c.current_operator_id IS NULL
- AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end ))
- AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC')))
- AND ap.case_id is NULL
- AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0)
- AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL)
- AND !(si.call_restrict = 1 AND cr.day_of_week IS NULL)
- AND ((apn.appointment_id IS NOT NULL) or qs.call_attempt_max = 0 or ((SELECT count(*) FROM call_attempt WHERE case_id = c.case_id) < qs.call_attempt_max))
- AND ((apn.appointment_id IS NOT NULL) or qs.call_max = 0 or ((SELECT count(*) FROM `call` WHERE case_id = c.case_id) < qs.call_max))
- AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0
- GROUP BY c.case_id
- ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, a.start ASC, qsep.priority DESC";
-
- $rs = $db->GetAll($sql);
+ $sql = "SELECT c.case_id
+ FROM `case` as c
+ LEFT JOIN `call` as a on (a.call_id = c.last_call_id)
+ JOIN (sample as s, sample_import as si) on (s.sample_id = c.sample_id and si.sample_import_id = s.import_id)
+ JOIN (questionnaire_sample as qs, questionnaire as q, outcome as ou) on (c.questionnaire_id = q.questionnaire_id and qs.sample_import_id = s.import_id and ou.outcome_id = c.current_outcome_id and q.questionnaire_id = '$questionnaire_id' and qs.questionnaire_id = c.questionnaire_id)
+ LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end))
+ LEFT JOIN appointment as ap on (ap.case_id = c.case_id AND ap.completed_call_id is NULL AND (ap.start > CONVERT_TZ(NOW(),'System','UTC')))
+ LEFT JOIN appointment as apn on (apn.case_id = c.case_id AND apn.completed_call_id is NULL AND (CONVERT_TZ(NOW(),'System','UTC') >= apn.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= apn.end))
+ LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end)
+ LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = c.questionnaire_id AND qsep.sample_id = c.sample_id)
+ LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id)
+ LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id)
+ LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id)
+ LEFT JOIN questionnaire_sample_timeslot AS qasts ON (qasts.questionnaire_id = c.questionnaire_id AND qasts.sample_import_id = si.sample_import_id)
+ WHERE c.current_operator_id IS NULL
+ AND c.questionnaire_id = '$questionnaire_id'
+ AND ((apn.appointment_id IS NOT NULL) OR casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end ))
+ AND ((apn.appointment_id IS NOT NULL) OR qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1)))
+ AND ((apn.appointment_id IS NOT NULL) OR qasts.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qasts.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qasts.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_sample_timeslot WHERE questionnaire_sample_timeslot.questionnaire_id = c.questionnaire_id AND questionnaire_sample_timeslot.sample_import_id = si.sample_import_id AND availability_group.availability_group_id = questionnaire_sample_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1)))
+ AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC')))
+ AND ap.case_id is NULL
+ AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0)
+ AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL)
+ AND !(si.call_restrict = 1 AND cr.day_of_week IS NULL)
+ AND ((apn.appointment_id IS NOT NULL) or qs.call_attempt_max = 0 or ((SELECT count(*) FROM call_attempt WHERE case_id = c.case_id) < qs.call_attempt_max))
+ AND ((apn.appointment_id IS NOT NULL) or qs.call_max = 0 or ((SELECT count(*) FROM `call` WHERE case_id = c.case_id) < qs.call_max))
+ AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0
+ GROUP BY c.case_id
+ ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, qsep.priority DESC, a.start ASC";
+
+ $rs = $db->GetAll($sql);
- $i = 1;
- foreach ($rs as $r)
- {
- $sql = "UPDATE `case`
- SET sortorder = '$i'
- WHERE case_id = '{$r['case_id']}'";
- $db->Execute($sql);
- $i++;
- }
+ $i = 1;
+ foreach ($rs as $r)
+ {
+ $sql = "UPDATE `case`
+ SET sortorder = '$i'
+ WHERE case_id = '{$r['case_id']}'";
+
+ $db->Execute($sql);
+ $i++;
+ }
- //First set all sample records as unavailable
- $sql = "UPDATE `questionnaire_sample_exclude_priority`
- SET sortorder = NULL
- WHERE 1";
+ //First set all sample records as unavailable
+ $sql = "UPDATE `questionnaire_sample_exclude_priority`
+ SET sortorder = NULL
+ WHERE sortorder IS NOT NULL
+ AND questionnaire_id = '$questionnaire_id'";
- $db->Execute($sql);
+ $db->Execute($sql);
+ //Sort sample list where attached to this questionnaire
- //Sort sample list where attached to an enabled questionnaire
+ $sql = "SELECT s.sample_id as sample_id,qs.questionnaire_id as questionnaire_id
+ FROM sample as s
+ JOIN (questionnaire_sample as qs, questionnaire as q, sample_import as si) on (qs.sample_import_id = s.import_id and si.sample_import_id = s.import_id and q.questionnaire_id = qs.questionnaire_id AND q.questionnaire_id = '$questionnaire_id' AND qs.allow_new = 1)
+ LEFT JOIN `case` as c on (c.sample_id = s.sample_id and c.questionnaire_id = qs.questionnaire_id)
+ LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end)
+ LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end))
+ LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = qs.questionnaire_id AND qsep.sample_id = s.sample_id)
+ WHERE c.case_id is NULL
+ AND ((qsep.questionnaire_id IS NULL) or qsep.exclude = 0)
+ AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL)
+ AND !(si.call_restrict = 1 AND cr.day_of_week IS NULL)
+ AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = qs.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0
+ GROUP BY s.sample_id,qs.questionnaire_id
+ ORDER BY qsep.priority DESC, rand() * qs.random_select, s.sample_id";
+
+ $rs = $db->GetAll($sql);
- $sql = "SELECT s.sample_id as sample_id,qs.questionnaire_id as questionnaire_id
- FROM sample as s
- JOIN (questionnaire_sample as qs, questionnaire as q, sample_import as si) on (qs.sample_import_id = s.import_id and si.sample_import_id = s.import_id and q.questionnaire_id = qs.questionnaire_id AND q.enabled = 1)
- LEFT JOIN `case` as c on (c.sample_id = s.sample_id and c.questionnaire_id = qs.questionnaire_id)
- LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end)
- LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end))
- LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = qs.questionnaire_id AND qsep.sample_id = s.sample_id)
- WHERE c.case_id is NULL
- AND ((qsep.questionnaire_id IS NULL) or qsep.exclude = 0)
- AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL)
- AND !(si.call_restrict = 1 AND cr.day_of_week IS NULL)
- AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = qs.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0
- GROUP BY s.sample_id,qs.questionnaire_id
- ORDER BY qsep.priority DESC, rand() * qs.random_select, s.sample_id";
-
- $rs = $db->GetAll($sql);
+ $i = 1;
+ foreach ($rs as $r)
+ {
+ $sql = "INSERT INTO questionnaire_sample_exclude_priority (questionnaire_id,sample_id,exclude,priority,sortorder)
+ VALUES ('{$r['questionnaire_id']}', '{$r['sample_id']}', 0, 50,'$i')
+ ON DUPLICATE KEY UPDATE sortorder = '$i'";
- $i = 1;
- foreach ($rs as $r)
- {
- $sql = "INSERT INTO questionnaire_sample_exclude_priority (questionnaire_id,sample_id,exclude,priority,sortorder)
- VALUES ('{$r['questionnaire_id']}', '{$r['sample_id']}', 0, 50,'$i')
- ON DUPLICATE KEY UPDATE sortorder = '$i'";
+ $db->Execute($sql);
+ $i++;
+ }
+
- $db->Execute($sql);
- $i++;
- }
-
-
+ $result = $db->CompleteTrans();
+
+ $time_end = microtime(true);
+ $timer = $time_end - $time_start;
-
- $result = $db->CompleteTrans();
-
- $time_end = microtime(true);
- $timer = $time_end - $time_start;
-
- if ($result)
- print T_("Completed sort") . ". " . T_("This task took") . ": $timer " . T_("seconds");
- else
- print T_("Failed to complete sort") . ". " . T_("This task took") . ": $timer " . T_("seconds");
+ if ($result)
+ print T_("Completed sort") . ". " . T_("This task took") . ": $timer " . T_("seconds");
+ else
+ print T_("Failed to complete sort") . ". " . T_("This task took") . ": $timer " . T_("seconds");
+ }
for ($i = 0; $i < (SYSTEM_SORT_MINUTES * 60); $i += $sleepinterval)
{
diff --git a/admin/timezonetemplate.php b/admin/timezonetemplate.php
index 2cd472be..963de5bd 100644
--- a/admin/timezonetemplate.php
+++ b/admin/timezonetemplate.php
@@ -58,6 +58,11 @@ include("../functions/functions.input.php");
global $db;
+if (isset($_POST['dtime_zone']))
+{
+ set_setting('DEFAULT_TIME_ZONE', $_POST['dtime_zone']);
+}
+
if (isset($_GET['time_zone']))
{
//need to add sample to questionnaire
@@ -86,8 +91,10 @@ if (isset($_GET['tz']))
xhtml_head(T_("Add/Remove Timezones"),true,array("../css/shifts.css"),array("../js/window.js"));
+$dtz = get_setting("DEFAULT_TIME_ZONE");
+
$sql = "SELECT name as value, name as description,
- CASE WHEN name LIKE '" . DEFAULT_TIME_ZONE . "' THEN 'selected=\'selected\'' ELSE '' END AS selected
+ CASE WHEN name LIKE '$dtz' THEN 'selected=\'selected\'' ELSE '' END AS selected
FROM mysql.time_zone_name";
$tzl = $db->GetAll($sql);
@@ -97,6 +104,13 @@ if (empty($tzl) || !$tzl)
print "";
}
+print "" . T_("Set default timezone") . ": ";
+ ?>
+
+ " . T_("Click to remove a Timezone from the default list") . "";
diff --git a/config.default.php b/config.default.php
index c6f0166b..61317e0b 100644
--- a/config.default.php
+++ b/config.default.php
@@ -40,12 +40,6 @@
*/
-/**
- * The default time zone
- */
-if (!defined('DEFAULT_TIME_ZONE')) define('DEFAULT_TIME_ZONE', 'Australia/Victoria');
-
-
/**
* Date time format for displaying
*
@@ -94,6 +88,12 @@ if (!defined('VOIP_ADMIN_PASS')) define('VOIP_ADMIN_PASS','amp111');
*/
if (!defined('VOIP_PORT')) define('VOIP_PORT','5038');
+/**
+ * The Asterisk context to originate calls from (in FreePBX this should be
+ * 'from-internal' otherwise try 'default'
+ */
+if (!defined('ORIGINATE_CONTEXT')) define('ORIGINATE_CONTEXT','from-internal');
+
/**
* The freepbx root path (if installed) otherwise false to disable freepbx integration
*/
diff --git a/config.inc.local.php.example b/config.inc.local.php.example
index 542ab098..bd8ef41b 100644
--- a/config.inc.local.php.example
+++ b/config.inc.local.php.example
@@ -38,11 +38,6 @@
*
*/
-/**
- * The default time zone
- */
-define('DEFAULT_TIME_ZONE', 'Australia/Victoria');
-
/**
* Flag for VoIP with Asterisk to be enabled or not
*/
diff --git a/database/quexs.sql b/database/quexs.sql
index abcade70..b04bed29 100644
--- a/database/quexs.sql
+++ b/database/quexs.sql
@@ -1479,6 +1479,7 @@ CREATE TABLE `questionnaire_sample` (
`call_attempt_max` int(11) NOT NULL default '0',
`random_select` tinyint(1) NOT NULL default '0',
`answering_machine_messages` int(11) NOT NULL default '1',
+ `allow_new` TINYINT( 1 ) NOT NULL DEFAULT '1',
PRIMARY KEY (`questionnaire_id`,`sample_import_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
@@ -1579,6 +1580,22 @@ CREATE TABLE `questionnaire_sample_quota_row_exclude` (
-- Dumping data for table `questionnaire_sample_quota_row_exclude`
--
+CREATE TABLE `questionnaire_sample_timeslot` (
+`questionnaire_id` bigint( 20 ) NOT NULL ,
+`sample_import_id` bigint( 20 ) NOT NULL ,
+`availability_group_id` bigint( 20 ) NOT NULL ,
+PRIMARY KEY ( `questionnaire_id` , `availability_group_id` , `sample_import_id` )
+) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
+
+-- --------------------------------------------------------
+
+
+
+CREATE TABLE `questionnaire_timeslot` (
+`questionnaire_id` bigint( 20 ) NOT NULL ,
+`availability_group_id` bigint( 20 ) NOT NULL ,
+PRIMARY KEY ( `questionnaire_id` , `availability_group_id` )
+) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
-- --------------------------------------------------------
@@ -1805,6 +1822,10 @@ CREATE TABLE `setting` (
-- Dumping data for table `setting`
--
+INSERT INTO `setting` (`setting_id`, `field`, `value`) VALUES
+(1, 'DEFAULT_TIME_ZONE', 's:18:"Australia/Victoria";'),
+(2, 'systemsort', 'b:0;');
+
-- --------------------------------------------------------
diff --git a/functions/functions.calendar.php b/functions/functions.calendar.php
index 057ac75c..5c3f3de3 100644
--- a/functions/functions.calendar.php
+++ b/functions/functions.calendar.php
@@ -232,7 +232,7 @@ function display_respondent_form($respondent_id = false,$case_id = false)
/**
* Use the default time zone if none other to work with
*/
- $rzone = DEFAULT_TIME_ZONE;
+ $rzone = get_setting("DEFAULT_TIME_ZONE");
$fn = "";
$ln = "";
diff --git a/functions/functions.display.php b/functions/functions.display.php
index 9a009141..7046caa5 100644
--- a/functions/functions.display.php
+++ b/functions/functions.display.php
@@ -119,15 +119,21 @@ function display_shift_chooser($questionnaire_id, $shift_id = false)
*
* @param int $questionnaire_id The questionnaire id
* @param int|bool $sample_import_id The sample import id or false if none selected
+ * @param bool $disabled Display disabled samples? (default is true)
*/
-function display_sample_chooser($questionnaire_id, $sample_import_id = false)
+function display_sample_chooser($questionnaire_id, $sample_import_id = false, $disabled = true)
{
global $db;
+ $s = "";
+
+ if (!$disabled)
+ $s = " AND si.enabled = 1 ";
+
$sql = "SELECT s.sample_import_id,si.description,CASE WHEN s.sample_import_id = '$sample_import_id' THEN 'selected=\'selected\'' ELSE '' END AS selected
FROM questionnaire_sample as s, sample_import as si
WHERE s.questionnaire_id = '$questionnaire_id'
- AND s.sample_import_id = si.sample_import_id";
+ AND s.sample_import_id = si.sample_import_id $s";
$rs = $db->GetAll($sql);
diff --git a/functions/functions.import.php b/functions/functions.import.php
index 92fe97cb..60514330 100644
--- a/functions/functions.import.php
+++ b/functions/functions.import.php
@@ -270,7 +270,7 @@ function import_file($file, $description, $fields, $firstrow = 2)
//first find the timezone
- $tzone = DEFAULT_TIME_ZONE; //set this to default
+ $tzone = get_setting("DEFAULT_TIME_ZONE"); //set this to default
/**
* Determine time zone from all possible sources in sample_var_type table
diff --git a/functions/functions.limesurvey.php b/functions/functions.limesurvey.php
index 200c7544..6327c4bb 100644
--- a/functions/functions.limesurvey.php
+++ b/functions/functions.limesurvey.php
@@ -291,6 +291,16 @@ function limesurvey_quota_replicate_completions($lime_sid,$questionnaire_id,$sam
{
global $db;
+ $sql = "SELECT COUNT(*)
+ FROM information_schema.tables
+ WHERE table_schema = '".DB_NAME."'
+ AND table_name = '" . LIME_PREFIX . "survey_$lime_sid'";
+
+ $rs = $db->GetOne($sql);
+
+ if ($rs != 1)
+ return false;
+
$sql = "SELECT count(*) as c
FROM " . LIME_PREFIX . "survey_$lime_sid as s
JOIN `case` as c ON (c.questionnaire_id = '$questionnaire_id')
@@ -390,6 +400,16 @@ function limesurvey_quota_completions($lime_sgqa,$lime_sid,$questionnaire_id,$sa
{
global $db;
+ $sql = "SELECT COUNT(*)
+ FROM information_schema.tables
+ WHERE table_schema = '".DB_NAME."'
+ AND table_name = '" . LIME_PREFIX . "survey_$lime_sid'";
+
+ $rs = $db->GetOne($sql);
+
+ if ($rs != 1)
+ return false;
+
$sql = "SELECT count(*) as c
FROM " . LIME_PREFIX . "survey_$lime_sid as s
JOIN `case` as c ON (c.questionnaire_id = '$questionnaire_id')
@@ -412,18 +432,18 @@ function limesurvey_quota_completions($lime_sgqa,$lime_sid,$questionnaire_id,$sa
* Based on GetQuotaInformation() from common.php in Limesurvey
*
* @param int $lime_quota_id The quota id to get information on
- * @param string $baselang The base language for getting information from questions
* @return array An array containing the question information for comparison
*/
-function get_limesurvey_quota_info($lime_quota_id,$baselang = DEFAULT_LOCALE)
+function get_limesurvey_quota_info($lime_quota_id)
{
global $db;
$ret = array();
- $sql = "SELECT *
- FROM ".LIME_PREFIX."quota_members
- WHERE quota_id='$lime_quota_id'";
+ $sql = "SELECT q.*,s.language
+ FROM ".LIME_PREFIX."quota_members as q, ".LIME_PREFIX."surveys as s
+ WHERE q.quota_id='$lime_quota_id'
+ AND s.sid = q.sid";
$rs = $db->GetAll($sql);
@@ -431,11 +451,12 @@ function get_limesurvey_quota_info($lime_quota_id,$baselang = DEFAULT_LOCALE)
{
$lime_qid = $quota_entry['qid'];
$surveyid = $quota_entry['sid'];
+ $language = $quota_entry['language'];
$sql = "SELECT type, title,gid
FROM ".LIME_PREFIX."questions
WHERE qid='$lime_qid'
- AND language='$baselang'";
+ AND language='$language'";
$qtype = $db->GetRow($sql);
diff --git a/functions/functions.operator.php b/functions/functions.operator.php
index a434db26..ac1835e3 100644
--- a/functions/functions.operator.php
+++ b/functions/functions.operator.php
@@ -367,10 +367,10 @@ function add_case($sample_id,$questionnaire_id,$operator_id = "NULL",$testing =
$db->Execute("SET @row := 0");
$sql = "INSERT INTO contact_phone (case_id,priority,phone,description)
- SELECT $case_id as case_id,@row := @row + 1 AS priority,SUBSTRING_INDEX(e.extension,'/',-1) as phone, CONCAT(o.firstName, ' ', o.lastName)
- FROM operator as o, `extension` as e
- WHERE o.enabled = 1
- AND e.current_operator_id = o.operator_id";
+ SELECT $case_id as case_id,@row := @row + 1 AS priority,IFNULL(SUBSTRING_INDEX(e.extension,'/',-1),'312345678') as phone, CONCAT(o.firstName, ' ', o.lastName)
+ FROM operator as o
+ LEFT JOIN `extension` as e ON (e.current_operator_id = o.operator_id)
+ WHERE o.enabled = 1";
$db->Execute($sql);
}
@@ -609,7 +609,6 @@ function get_case_id($operator_id, $create = false)
*
* THINGS TO ADD:
*
- * @todo also option of "time of day" calls - try once in the morning/etc
* @todo also could check the respondent_not_available table to see if now is a "bad time" to call
*/
@@ -625,10 +624,14 @@ function get_case_id($operator_id, $create = false)
LEFT JOIN questionnaire_sample_exclude_priority AS qsep ON (qsep.questionnaire_id = c.questionnaire_id AND qsep.sample_id = c.sample_id)
LEFT JOIN case_availability AS casa ON (casa.case_id = c.case_id)
LEFT JOIN availability AS ava ON (ava.availability_group_id = casa.availability_group_id)
+ LEFT JOIN questionnaire_timeslot AS qast ON (qast.questionnaire_id = c.questionnaire_id)
+ LEFT JOIN questionnaire_sample_timeslot AS qasts ON (qasts.questionnaire_id = c.questionnaire_id AND qasts.sample_import_id = si.sample_import_id)
JOIN operator_skill as os on (os.operator_id = op.operator_id and os.outcome_type_id = ou.outcome_type_id)
WHERE c.current_operator_id IS NULL
- AND (casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end ))
- AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC')))
+ AND ((apn.appointment_id IS NOT NULL) OR casa.case_id IS NULL OR (ava.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= ava.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= ava.end ))
+ AND ((apn.appointment_id IS NOT NULL) OR qast.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_timeslot WHERE questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND availability_group.availability_group_id = questionnaire_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1)))
+ AND ((apn.appointment_id IS NOT NULL) OR qasts.questionnaire_id IS NULL OR ((SELECT COUNT(*) FROM availability WHERE availability.availability_group_id = qasts.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(),'System',s.Time_zone_name)) AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= availability.end)) >= 1 AND (SELECT COUNT(call_attempt_id) FROM `call_attempt`, availability WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qasts.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end))) = ( SELECT (SELECT COUNT(*) FROM availability, call_attempt WHERE call_attempt.case_id = c.case_id AND availability.availability_group_id = availability_group.availability_group_id AND (availability.day_of_week = DAYOFWEEK(CONVERT_TZ(call_attempt.start,'UTC',s.Time_zone_name)) AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) >= availability.start AND TIME(CONVERT_TZ(call_attempt.start, 'UTC' , s.Time_zone_name)) <= availability.end)) as cou FROM availability_group, questionnaire_sample_timeslot WHERE questionnaire_sample_timeslot.questionnaire_id = c.questionnaire_id AND questionnaire_sample_timeslot.sample_import_id = si.sample_import_id AND availability_group.availability_group_id = questionnaire_sample_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1)))
+ AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC')))
AND ap.case_id is NULL
AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0)
AND !(q.restrict_work_shifts = 1 AND sh.shift_id IS NULL AND os.outcome_type_id != 2)
@@ -637,10 +640,10 @@ function get_case_id($operator_id, $create = false)
AND ((apn.appointment_id IS NOT NULL) or qs.call_max = 0 or ((SELECT count(*) FROM `call` WHERE case_id = c.case_id) < qs.call_max))
AND (apn.require_operator_id IS NULL OR apn.require_operator_id = '$operator_id')
AND (SELECT count(*) FROM `questionnaire_sample_quota` WHERE questionnaire_id = c.questionnaire_id AND sample_import_id = s.import_id AND quota_reached = 1) = 0
- ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, a.start ASC, qsep.priority DESC
+ ORDER BY IF(ISNULL(apn.end),1,0),apn.end ASC, qsep.priority DESC, a.start ASC
LIMIT 1";
-
- //apn.appointment_id contains the id of an appointment if we are calling on an appointment
+
+ //apn.appointment_id contains the id of an appointment if we are calling on an appointment
}
$r2 = $db->GetRow($sql);
@@ -681,7 +684,7 @@ function get_case_id($operator_id, $create = false)
$sql = "SELECT s.sample_id as sample_id,c.case_id as case_id,qs.questionnaire_id as questionnaire_id,CONVERT_TZ(NOW(), 'System' , s.Time_zone_name) as resptime, q.testing as testing
FROM sample as s
- JOIN (questionnaire_sample as qs, operator_questionnaire as o, questionnaire as q, operator as op, sample_import as si, operator_skill as os) on (op.operator_id = '$operator_id' and qs.sample_import_id = s.import_id and o.operator_id = op.operator_id and o.questionnaire_id = qs.questionnaire_id and q.questionnaire_id = o.questionnaire_id and si.sample_import_id = s.import_id and os.operator_id = op.operator_id and os.outcome_type_id = 1 and q.enabled = 1)
+ JOIN (questionnaire_sample as qs, operator_questionnaire as o, questionnaire as q, operator as op, sample_import as si, operator_skill as os) on (op.operator_id = '$operator_id' and qs.sample_import_id = s.import_id and o.operator_id = op.operator_id and o.questionnaire_id = qs.questionnaire_id and q.questionnaire_id = o.questionnaire_id and si.sample_import_id = s.import_id and os.operator_id = op.operator_id and os.outcome_type_id = 1 and q.enabled = 1 and qs.allow_new = 1)
LEFT JOIN `case` as c on (c.sample_id = s.sample_id and c.questionnaire_id = qs.questionnaire_id)
LEFT JOIN call_restrict as cr on (cr.day_of_week = DAYOFWEEK(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) >= cr.start and TIME(CONVERT_TZ(NOW(), 'System' , s.Time_zone_name)) <= cr.end)
LEFT JOIN shift as sh on (sh.questionnaire_id = q.questionnaire_id and (CONVERT_TZ(NOW(),'System','UTC') >= sh.start) AND (CONVERT_TZ(NOW(),'System','UTC') <= sh.end))
@@ -860,12 +863,12 @@ function get_extension_password($operator_id)
{
global $db;
- $sql = "SELECT e.extension_password
+ $sql = "SELECT e.password
FROM `extension` as e
WHERE e.current_operator_id = '$operator_id'";
$rs = $db->GetRow($sql);
- if (!empty($rs) && isset($rs['extension_password'])) return $rs['extension_password'];
+ if (!empty($rs) && isset($rs['password'])) return $rs['password'];
return false;
}
diff --git a/functions/functions.voip.php b/functions/functions.voip.php
index 511cd0a5..afebb301 100644
--- a/functions/functions.voip.php
+++ b/functions/functions.voip.php
@@ -71,11 +71,11 @@ class voip {
{
$ret = $this->query("Action: IAXPeerList\r\n\r\n","PeerlistComplete");
- $c = spliti("\r\n\r\n",$ret);
+ $c = preg_split("/\r\n\r\n/i",$ret);
$chans = array();
foreach ($c as $s)
{
- if(eregi("Event: PeerEntry.*ObjectName: ([0-9a-zA-Z-]+).*Status: ([/0-9a-zA-Z-]+)",$s,$regs))
+ if(preg_match("{Event: PeerEntry.*ObjectName: ([0-9a-zA-Z-]+).*Status: ([/0-9a-zA-Z-]+)}is",$s,$regs))
{
//print T_("Channel: SIP/") . $regs[1] . " BridgedChannel " . $regs[2] . "\n";
$chan = substr($regs[1],0,4);
@@ -98,18 +98,18 @@ class voip {
{
$ret = $this->query("Action: Status\r\n\r\n","StatusComplete");
- $c = spliti("\r\n\r\n",$ret);
+ $c = preg_split("/\r\n\r\n/i",$ret);
$chans = array();
foreach ($c as $s)
{
- if(eregi("Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+).*BridgedChannel: ((SIP/|IAX2/)[/0-9a-zA-Z-]+)",$s,$regs))
+ if(preg_match("{Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+).*BridgedChannel: ((SIP/|IAX2/)[/0-9a-zA-Z-]+)}is",$s,$regs))
{
//print T_("Channel: SIP/") . $regs[1] . " BridgedChannel " . $regs[2] . "\n";
$ccs = explode('-',$regs[1]);
$chan = $ccs[0];
$chans[$chan] = array($regs[1],$regs[3]);
}
- else if(eregi("Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+)",$s,$regs))
+ else if(preg_match("{Event: Status.*Channel: ((SIP/|IAX2/)[0-9a-zA-Z-]+)}is",$s,$regs))
{
//print T_("Channel: ") . $regs[1] . "\n";
$ccs = explode('-', $regs[1]);
@@ -187,7 +187,7 @@ class voip {
*/
function dial($ext,$number)
{
- $r = $this->query("Action: Originate\r\nChannel: $ext\r\nExten: $number\r\nPriority: 1\r\nCallerid: $ext\r\n\r\n","Response");
+ $r = $this->query("Action: Originate\r\nChannel: $ext\r\nExten: $number\r\nContext: " . ORIGINATE_CONTEXT . "\r\nPriority: 1\r\nCallerid: $ext\r\n\r\n","Response");
}
@@ -266,7 +266,7 @@ class voip {
if ($type == "SIP")
{
$ret = $this->query("Action: ExtensionState\r\nContext: from-internal\r\nExten: $ext\r\nActionID: \r\n\r\n","Status:");
- if(eregi("Status: ([0-9]+)",$ret,$regs))
+ if(preg_match("{Status: ([0-9]+)}is",$ret,$regs))
{
if (isset($regs[1]))
{
@@ -540,14 +540,14 @@ class voipWatch extends voip {
*
*/
if ($in == "\r\n")
- {
+ {
//print "PROCESS: ";
/**
* The call is ringing
*/
- if (eregi("Event: Dial.*SubEvent: Begin.*Channel: ((SIP/|IAX2/)[0-9]+)",$line,$regs))
- {
- list($call_id,$case_id) = $this->getCallId($regs[1]);
+ if (preg_match("{Event: Dial.*SubEvent: Begin.*Channel: ((SIP/|IAX2/)[0-9]+)}is",$line,$regs))
+ {
+ list($call_id,$case_id) = $this->getCallId($regs[1]);
if ($call_id != 0)
{
print T_("Ringing") . T_(" Extension ") . $regs[1] . " " . T_("Case id") . ": $case_id \n";
@@ -557,8 +557,8 @@ class voipWatch extends voip {
/**
* The call has been answered
*/
- else if (eregi("Event: Bridge.*Channel1: ((SIP/|IAX2/)[0-9]+)",$line,$regs))
- {
+ else if (preg_match("{Event: Bridge.*Channel1: ((SIP/|IAX2/)[0-9]+)}is",$line,$regs))
+ {
list($call_id,$case_id) = $this->getCallId($regs[1]);
if ($call_id != 0)
{
@@ -569,8 +569,8 @@ class voipWatch extends voip {
/**
* The call has been hung up
*/
- else if (eregi("Event: Hangup.*Channel: ((SIP/|IAX2/)[0-9]+)",$line,$regs))
- {
+ else if (preg_match("{Event: Hangup.*Channel: ((SIP/|IAX2/)[0-9]+)}is",$line,$regs))
+ {
list($call_id,$case_id) = $this->getCallId($regs[1]);
if ($call_id != 0)
{
@@ -582,7 +582,7 @@ class voipWatch extends voip {
/**
* The status of an extension has changed to unregistered
*/
- else if (eregi("Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Unregistered",$line,$regs))
+ else if (preg_match("{Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Unregistered}is",$line,$regs))
{
print T_("Unregistered") . T_(" Extension ") . $regs[1] . "\n";
$this->setExtensionStatus($regs[1],false);
@@ -591,7 +591,7 @@ class voipWatch extends voip {
/**
* The status of an extension has changed to registered
*/
- else if (eregi("Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Registered",$line,$regs))
+ else if (preg_match("{Event: PeerStatus.*Peer: ((SIP/|IAX2/)[0-9]+).*PeerStatus: Registered}is",$line,$regs))
{
print T_("Registered") . T_(" Extension ") . $regs[1] . "\n";
$this->setExtensionStatus($regs[1],true);
diff --git a/index.php b/index.php
index d450d16e..20a70b30 100644
--- a/index.php
+++ b/index.php
@@ -191,7 +191,7 @@ if ($ca)
}
}
-if (!is_respondent_selection($operator_id))
+if (!is_respondent_selection($operator_id) && AUTO_DIAL_SECONDS == false)
$data = get_limesurvey_url($operator_id);
else
$data = get_respondentselection_url($operator_id);
diff --git a/locale/bs/LC_MESSAGES/bs.mo b/locale/bs/LC_MESSAGES/bs.mo
index dca03064..058a386c 100644
Binary files a/locale/bs/LC_MESSAGES/bs.mo and b/locale/bs/LC_MESSAGES/bs.mo differ
diff --git a/locale/bs/LC_MESSAGES/bs.po b/locale/bs/LC_MESSAGES/bs.po
index 4dc25763..76e172e8 100644
--- a/locale/bs/LC_MESSAGES/bs.po
+++ b/locale/bs/LC_MESSAGES/bs.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-09-02 11:31+0000\n"
"Last-Translator: Siddiq \n"
"Language-Team: Bosnian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr ""
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr ""
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr ""
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr ""
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr ""
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr ""
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr ""
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr ""
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr ""
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr ""
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr ""
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Sastanak"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr ""
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr ""
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr ""
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr ""
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr ""
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr ""
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Performansa"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr ""
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr ""
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr ""
@@ -175,9 +169,7 @@ msgstr ""
msgid "Stop REC"
msgstr ""
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr ""
@@ -185,8 +177,7 @@ msgstr ""
msgid "Beginning recording..."
msgstr ""
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr ""
@@ -194,8 +185,8 @@ msgstr ""
msgid "Begin the manual recording now..."
msgstr ""
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr ""
@@ -207,43 +198,47 @@ msgstr ""
msgid "Stop the manual recording now..."
msgstr ""
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr ""
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr ""
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr ""
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr ""
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr ""
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr ""
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr ""
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -277,7 +272,7 @@ msgstr "Dodaj ovog ispitanika"
msgid "Select phone number:"
msgstr "Odaberi broj telefona"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Nijedno"
@@ -302,7 +297,7 @@ msgstr "Sastanak"
msgid "Accept appointment from "
msgstr "Prihvati formu sastanka "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " do "
@@ -318,7 +313,8 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -326,7 +322,7 @@ msgstr ""
msgid "Call List"
msgstr ""
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr ""
@@ -334,12 +330,17 @@ msgstr ""
msgid "Number called"
msgstr ""
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr ""
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr ""
@@ -347,15 +348,18 @@ msgstr ""
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr ""
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr ""
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr ""
@@ -363,11 +367,12 @@ msgstr ""
msgid "Restart"
msgstr ""
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr ""
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -379,7 +384,11 @@ msgstr ""
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -391,8 +400,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -408,114 +416,80 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr ""
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr ""
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr ""
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr ""
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr ""
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr ""
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr ""
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr ""
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr ""
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr ""
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr ""
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr ""
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr ""
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr ""
@@ -543,7 +517,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -571,58 +547,50 @@ msgstr ""
msgid "Go back to work"
msgstr ""
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr ""
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr ""
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr ""
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr ""
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr ""
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr ""
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr ""
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr ""
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -636,8 +604,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr ""
@@ -645,12 +615,14 @@ msgstr ""
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr ""
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -658,48 +630,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr ""
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr ""
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr ""
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr ""
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr ""
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -723,8 +693,7 @@ msgstr ""
msgid "Reasons:"
msgstr ""
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -736,13 +705,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr ""
@@ -754,7 +722,10 @@ msgstr ""
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr ""
@@ -827,34 +798,33 @@ msgstr ""
msgid "Case Notes"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr ""
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr ""
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr ""
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr ""
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr ""
@@ -922,7 +892,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -961,8 +933,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -978,8 +949,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -999,11 +969,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1023,11 +993,13 @@ msgstr ""
msgid "Appointment List"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1039,7 +1011,8 @@ msgstr ""
msgid "No future appointments scheduled"
msgstr ""
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1073,13 +1046,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1087,27 +1058,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1125,23 +1096,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1149,27 +1117,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1177,13 +1142,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1243,7 +1206,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1255,36 +1218,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1301,8 +1273,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1310,11 +1281,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1334,38 +1305,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1373,9 +1345,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1391,11 +1361,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1407,7 +1377,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1419,27 +1389,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1458,8 +1428,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1467,38 +1436,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1506,45 +1469,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1588,7 +1549,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1624,13 +1585,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1638,7 +1597,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1647,191 +1607,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr ""
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr ""
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1847,22 +1816,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1915,7 +1895,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1927,32 +1906,27 @@ msgstr ""
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr ""
@@ -1980,35 +1954,32 @@ msgstr ""
msgid "Secs"
msgstr ""
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr ""
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2020,7 +1991,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2044,13 +2015,14 @@ msgstr ""
msgid "Shift"
msgstr ""
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2116,17 +2088,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2136,17 +2103,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2154,11 +2119,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2172,11 +2135,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2184,7 +2149,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2239,8 +2205,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2250,9 +2215,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2275,9 +2240,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr ""
@@ -2289,8 +2253,36 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2306,9 +2298,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2316,8 +2306,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2405,8 +2394,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2422,8 +2410,7 @@ msgstr ""
msgid "tool"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2463,11 +2450,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2487,8 +2474,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr ""
@@ -2512,7 +2498,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2520,8 +2506,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2537,71 +2522,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2618,13 +2603,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2888,7 +2871,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr ""
@@ -2920,7 +2903,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2928,11 +2911,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr ""
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2949,30 +2932,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2983,8 +2970,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3037,8 +3023,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3082,8 +3067,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3127,8 +3111,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3266,23 +3249,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3302,8 +3293,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3323,39 +3313,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3363,19 +3364,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3478,10 +3479,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3532,13 +3531,11 @@ msgstr ""
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3567,10 +3564,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/cs/LC_MESSAGES/cs.mo b/locale/cs/LC_MESSAGES/cs.mo
index a6457509..272e0dd2 100644
Binary files a/locale/cs/LC_MESSAGES/cs.mo and b/locale/cs/LC_MESSAGES/cs.mo differ
diff --git a/locale/cs/LC_MESSAGES/cs.po b/locale/cs/LC_MESSAGES/cs.po
index b8ea0566..3e3e32ed 100644
--- a/locale/cs/LC_MESSAGES/cs.po
+++ b/locale/cs/LC_MESSAGES/cs.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-12-24 14:41+0000\n"
"Last-Translator: Zbyněk Schwarz \n"
"Language-Team: Czech \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Seznam historie případů"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Žádný hovor nebyl proveden"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Datum/čas"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "ID případu"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Výsledek"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Respondent"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Žádný operátor"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Výběr respondenta - Záznamník"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Nezanechávejte zprávu, prosím zavěste"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Ukončit hovor s výsledkem: Firemní záznamník"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr "Ukončit hovor s výsledkem: Záznamník - zanechána zpráva"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr "Ukončit hovor s výsledkem: Záznamník - zpráva nezanechána"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Jít zpět"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Výběr respondenta - Firemní odpovědi"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Je mi líto že Vás obtěžuji, zavolal jsem na špatné číslo"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Ukončit hovor s výsledkem: Firemní číslo"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Schůzka"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr "E-mail"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Ukončit práci"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr "Šipka pro rozbalení/sbalení"
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Poznámky"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Kontaktní údaje"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Historie volání"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Směny"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Schůzky"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Výkon"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Historie práce"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Informace o projektu"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Informace"
@@ -175,9 +169,7 @@ msgstr "Informace"
msgid "Stop REC"
msgstr "Zastavit nahrávání"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Nahrávat"
@@ -185,8 +177,7 @@ msgstr "Nahrávat"
msgid "Beginning recording..."
msgstr "Nahrávání spuštěno..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Nevoláte, nahrávání není spuštěno"
@@ -194,8 +185,8 @@ msgstr "Nevoláte, nahrávání není spuštěno"
msgid "Begin the manual recording now..."
msgstr "Spustit ruční nahrávání nyní..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Spustit nahrávání"
@@ -207,37 +198,40 @@ msgstr "Nahrávání zastaveno..."
msgid "Stop the manual recording now..."
msgstr "Zastavit ruční nahrávání nyní..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Výběr respondenta - zpětné volání"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Jste: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr "% c dokončeno"
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Ano - pokračovat kde jste skončili"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Ukončit volání s výsledkem: Odmítnutí respondentem"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Výběr respondenta - Úvod projektu"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Ano - pokračovat"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -245,7 +239,8 @@ msgstr ""
"Ukončit hovor s výsledkem: Žádný vhodný respondent (osoba není na tomto "
"čísle dostupná)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -280,7 +275,7 @@ msgstr "Přidat tohoto respondenta"
msgid "Select phone number:"
msgstr "Vyberte telefonní číslo:"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Žádné"
@@ -304,7 +299,7 @@ msgstr "Schůzka:"
msgid "Accept appointment from "
msgstr "Přijmout schůzku od "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " do "
@@ -320,7 +315,8 @@ msgstr "v"
msgid "Appointment with myself only?"
msgstr "Schůzka pouze sám se sebou?"
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -328,7 +324,7 @@ msgstr ""
msgid "Call List"
msgstr "Seznam volání"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Nikam nevoláno"
@@ -336,12 +332,17 @@ msgstr "Nikam nevoláno"
msgid "Number called"
msgstr "Volaná čísla"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operátor"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Žádný případ"
@@ -349,15 +350,18 @@ msgstr "Žádný případ"
msgid "Get a new case"
msgstr "Obdržet nový případ"
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Konec"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Zavolat/Zavěsit"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Vedoucí"
@@ -365,11 +369,12 @@ msgstr "Vedoucí"
msgid "Restart"
msgstr "Restartovat"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Dostupnost"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr "Chat s vedoucím"
@@ -381,7 +386,11 @@ msgstr "Informace"
msgid "Me"
msgstr "Já"
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr "ID případu"
@@ -393,8 +402,7 @@ msgstr "Vedoucí je dostupný"
msgid "Supervisor not available"
msgstr "Vedoucí není dostupný"
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr "Zpráva"
@@ -410,55 +418,32 @@ msgstr "Od"
msgid "Supervisor chat is not enabled"
msgstr "Chat s vedoucím není povolen"
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Volání"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Nevolá"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Ukončit případ"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "Stiskněte tlačítko volání pro vytočení čísla pro tuto schůzku"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Číslo k volání:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -466,60 +451,49 @@ msgstr ""
"Vaše rozšíření VoIP není zapnuto. Prosím zavřete toto okno a zapněte ho "
"kliknutím na červené tlačítko s nápisem 'VoIP vypnuto'"
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Vyberte telefonní číslo pro vytočení"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "Poslední volání dokončilo tento pokus o volání"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "Zadejte důvod pro tento výsledek před dokončením případu:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Vyžaduje kódování"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Přidělit výsledek"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Chyba: Zavřete okno"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Žádost o volání"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Voláný odpověděl"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Zavěšeno"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Vyzvánění"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Zvednuto"
@@ -547,7 +521,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr "Rozšíření"
@@ -575,52 +551,45 @@ msgstr ""
msgid "Go back to work"
msgstr "Vrátit se do práce"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Stav"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Jméno"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "Žádná čísla k volání"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Výběr respondenta - Úvod"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Pracovní číslo"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Záznamník"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
"Ukončit hovor s výsledkem: Bez odpovědi (nezvednuto nebo zaneprázdněno) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Ukončit hovor s výsledkem: Zavěšení omylem"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Ukončit hovor s výsledkem: Odmítnutí neznámou osobou"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
@@ -628,8 +597,7 @@ msgstr ""
"Ukončit hovor s výsledkem: Žádný vhodný respondent (osoba není na tomto "
"čísle nikdy dostupná)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -645,8 +613,10 @@ msgstr "Seznam směn"
msgid "No shifts for this project"
msgstr "Žádné směny pro tento projekt"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Začátek"
@@ -654,12 +624,14 @@ msgstr "Začátek"
msgid "No future shifts scheduled"
msgstr "Nenaplánovány žádné další směny"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Dotazník"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr "Výběr respondenta - Konec projektu"
@@ -667,50 +639,48 @@ msgstr "Výběr respondenta - Konec projektu"
msgid "Call automatically ended with outcome: Complete - End case"
msgstr "Hovor automaticky ukončen s výsledkem: Dokončeno - Ukončit případ"
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Ukončit hovor s výsledkem: Dokončeno"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Přidat respondenta"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Jít zpět"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "ID případu:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Respondent:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Prom"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Hodnota"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
"Vyberte skupinu pro omezení dostupnosti (Výběrem žádné znamená vždycky "
"dostupné)"
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr "Skupiny dostupnosti nejsou pro tento dotazník dostupné"
@@ -734,8 +704,7 @@ msgstr "Nyní není dostupný žádný případ"
msgid "Reasons:"
msgstr "Důvody:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr "Povoleno"
@@ -747,13 +716,12 @@ msgstr "Zakázáno"
msgid "Assigned questionnaires:"
msgstr "Přidělené dotazníky:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Popis"
@@ -765,7 +733,10 @@ msgstr "CHYBA: Nemáte přiděleny žádné dotazníky"
msgid "Assigned samples:"
msgstr "Přidělené vzorky:"
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Vzorek"
@@ -838,34 +809,33 @@ msgstr "MOŽNÁ CHYBA: Dosažena kvóta řádku pro tuto otázku"
msgid "Case Notes"
msgstr "Poznámky případu"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Přidat poznámku"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Žádné poznámky"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Poznámka"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Tato směna"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Dokončení"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Dokončení za dinu"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Tento projekt"
@@ -933,7 +903,9 @@ msgstr "Případ bude ukončen za"
msgid "Ending case now"
msgstr "Případ je nyní ukončován"
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr "vteřin"
@@ -974,8 +946,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -991,8 +962,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr "Výběr respondenta - Konec kvóty projektu"
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr "Ukončit hovor s výsledkem: Kvóta naplněna"
@@ -1012,11 +982,11 @@ msgstr "E-mailová adresa není platná"
msgid "Email respondent for self completion"
msgstr "Poslat e-mail respondentovi pro vlastní dokončení"
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr "Křestní jméno"
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr "Příjmení"
@@ -1036,11 +1006,13 @@ msgstr "Pro tento dotazník není dostupný email vlastního dokončení"
msgid "Appointment List"
msgstr "Seznam schůzek"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Zatím nezavoláno"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr "Všichni operátoři"
@@ -1052,7 +1024,8 @@ msgstr "Žádné schůzky nevytovřeny"
msgid "No future appointments scheduled"
msgstr "Žádné budoucí schůzky nenaplánovány"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr "Schůzka s"
@@ -1089,13 +1062,11 @@ msgstr ""
"Prosím počkejte na odpověď tohoto hovoru, než se budete snažit zavolat "
"vedoucímu"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr "Sledovat celosystémové řazení případů"
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "Běžící proces:"
@@ -1103,29 +1074,29 @@ msgstr "Běžící proces:"
msgid "Kill signal sent: Please wait..."
msgstr "Ukončovací signál odeslán: Prosím čekejte..."
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
"Proces již je uzavřen (např. byl restartován server) - klikněte zde pro "
"potvrzení"
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Ukončit běžící proces"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr "ID záznamu"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Datum"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr "Položka záznamu"
@@ -1148,23 +1119,20 @@ msgstr ""
"zvýšit výkon v případě velkého počtu případů nebo složitých kvót. Pokud "
"nezaznamenáváte žádné potíže s výkonem, nedoporučuje se tuto funkci zapínat."
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "Výsledek posledního spuštěného procesu (pokud je)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "Seznam historie volání"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "Datum/Čas zahájení volání"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "Čas ukončení"
@@ -1172,27 +1140,24 @@ msgstr "Čas ukončení"
msgid "Download Call History List"
msgstr "Stáhnout seznam historie volání"
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "Přidělit klienty k dotazníkům"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr "Hlášení kvóty"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Vyberte dotazník ze seznamu níže"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Vyberte vzorek ze seznamu níže"
@@ -1200,13 +1165,11 @@ msgstr "Vyberte vzorek ze seznamu níže"
msgid "Total sample"
msgstr "Celkový vzorek"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "uzavřeno"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "otevřeno"
@@ -1266,7 +1229,7 @@ msgstr "Prosím vraťte se ve svém prohlížeči a problém opravte"
msgid "Import: Select columns to import"
msgstr "Import: Vyberte sloupce pro import"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Import: Vyberte soubor k nahrání"
@@ -1278,37 +1241,46 @@ msgstr "Zvolte vzorový soubor CSV pro nahrání:"
msgid "Description for file:"
msgstr "Popis souboru:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "Přidat vzorek"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr "Spouštěn proces řazení případů"
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
-msgstr "Řazení případů"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
+msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
"Systém automaticky uzavřel případ jako neuzavřený za více než 24 hodin"
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
-msgstr "Řazení dokončeno"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
+msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr "Tento úkol trval"
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr "Řazení dokončeno"
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr "Nelze dokončit řazení"
@@ -1325,8 +1297,7 @@ msgstr "Schůzka byla smazána. Nyní musíte změnit výsledek případu"
msgid "Modify case outcome"
msgstr "Změnit výsledek případu"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr "Upravit schůzku"
@@ -1334,11 +1305,11 @@ msgstr "Upravit schůzku"
msgid "Contact phone"
msgstr "Kontaktní telefon"
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Čas zahájení"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "Čas ukončení"
@@ -1358,38 +1329,39 @@ msgstr "Zobrazit schůzky"
msgid "All appointments (with times displayed in your time zone)"
msgstr "Všechny schůzky (časy jsou zobrazeny ve vašem časovém pásmu)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Smazat"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Upravit"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "Jméno operátora"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "Jméno respondenta"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Příjmení"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "Současný výsledek"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "Operátor který volal"
@@ -1397,9 +1369,7 @@ msgstr "Operátor který volal"
msgid "No appointments in the future"
msgstr "V budoucnu nejsou žádné schůzky"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr "Správa kvóty"
@@ -1415,11 +1385,11 @@ msgstr "V současnosti žádné kvóty"
msgid "Stop calling this sample when:"
msgstr "Přestat volat tomuto vzorku když:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "po"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr "dokončeních"
@@ -1431,7 +1401,7 @@ msgstr "Kvóta dosažena"
msgid "Quota not yet reached"
msgstr "Kvóta není dosažena"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr "Současných dokončení: "
@@ -1443,27 +1413,27 @@ msgstr "Vyberte otázku pro kvótu"
msgid "Enter the details for creating the quota:"
msgstr "Zadejte podrobnosti pro vytvoření kvóty:"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr "Předurčené hodnoty pro tuto otázku:"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr "Neurčeny žádné štítky pro tuto otázku"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr "Hodnota kódu"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr "Hodnota kódu pro porovnání"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr "Typ porovnání"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr "Počet dokončení po kterých přestat volat"
@@ -1485,8 +1455,7 @@ msgstr ""
"všichni operátoři budou mít oprávnění k případu přidělit všechny možné "
"výsledky. Toto omezuje výsledky přidělené operátorovi."
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr "Upravit schopnosti operátora"
@@ -1494,38 +1463,32 @@ msgstr "Upravit schopnosti operátora"
msgid "Operator Performance"
msgstr "Výkon operátora"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "Prosím zvolte dotazník"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "Volání"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Celkový čas"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr "Čas zavolání"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr "Dokončení za hod."
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr "Volání za hod."
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr "Účinnost"
@@ -1533,45 +1496,43 @@ msgstr "Účinnost"
msgid "till"
msgstr "do"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Prosím zvolte směnu"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
-msgstr "Skupiny dostupnosti"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
+msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr "Změnit"
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
-msgstr "Skupiny dostupnosti určují časová období dostupnosti respondenta."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
+msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
-msgstr "Žádné skupiny dostupnosti"
+msgid "No time slots"
+msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
-msgstr "Skupina dostupnosti"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
+msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
-msgstr "Přidat skupinu dostupnosti"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
+msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
-msgstr "Název skupiny dostupnosti"
+msgid "Time slot name"
+msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr "Hlášení směn"
@@ -1615,7 +1576,7 @@ msgstr "Nástroje správce"
msgid "Questionnaire creation and management"
msgstr "Vytvoření dotazníku a správa"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr "Vytvořit nástroj v limesurvey:"
@@ -1651,13 +1612,11 @@ msgstr "Přidělit vzorky k dotazníkům"
msgid "Set values in questionnaire to pre fill"
msgstr "Nastavit hodnoty v dotazníku pro předvyplnění"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr "Správa řady kvóty"
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr "Správa operátorů"
@@ -1665,7 +1624,8 @@ msgstr "Správa operátorů"
msgid "Add operators to the system"
msgstr "Přidat operátory do systému"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "Přidělit operátory k dotazníkům"
@@ -1674,192 +1634,201 @@ msgid "Availability and shift management"
msgstr "Dostupnost a správa směny"
#: admin/index.php:73
-msgid "Manage availablity groups"
-msgstr "Správa skupin dostupnosti"
+msgid "Manage time slots"
+msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr "Přidělit dostupnosti k dotazníkům"
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr "Správa směn (přidat/odstranit)"
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "Postup dotazníku"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "Zobrazit všechny budoucí schůzky"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr "Záznam pokusů volání vzorku"
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr "Výsledky dotazníku"
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Výstup dat"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "Výkon operátora"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "Správa klientů"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "Přidat klienty do systému"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "Funkce dozorce"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "Přidělit výsledky k případům"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Prohledat vzorek"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr "Stav a přidělení případu"
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr "Hromadný generátor schůzek"
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Nastavení systému"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr "Nastavit seznam výchozích časových pásem"
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr "Nastavit výchozí doby směn"
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr "Nastavit doby omezení volání"
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr "Nastavit informace o centru"
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr "Spustit a sledovat celosystémové řazení případů"
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr "Spustit a sledovat VoIP"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr "Stav rozšíření"
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr "Přidělit vzorek: Zvolte vzorek pro přidělení"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr "Upravit podrobnosti vzorku"
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr "Max volání (0 pro neomezeně)"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr "Max pokusů o volání (0 pro neomezeně)"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
"Počet zpráv na záznamníku které zanechat na jeden případ (0 pro nikdy)"
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr "Vybrat ze vzorku náhodně? (jinak popořadě)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr "Vzorky vybrané pro tento dotazník"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr "Neomezeno"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr "Pořadové"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr "Náhodné"
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr "Nikdy"
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr "Klikněte pro zrušení přidělení"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr "Max volání"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr "Max pokusů o volání"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr "Zprávy záznamníku"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr "Typ výběru"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr "Zrušit přiřazení vzorku"
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr "Pro tento dotazník nejsou zvoleny žádné vzorky"
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr "Přidejte vzorek k tomuto dotazníku:"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "Vyberte vzorek"
@@ -1875,22 +1844,33 @@ msgstr "Aktualizovat informace o centru"
msgid "Assign availability group to questionnaire"
msgstr "Přidělit dostupnost skupiny k dotazníku"
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr "Pro tento dotazník nejsou vybrány žádné skupiny dostupnosti"
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr "Skupiny dostupnosti vybrané pro tento dotazník"
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr "Přidat skupinu dostupnosti pro tento dotazník:"
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr "Vyberte skupinu dostupnosti:"
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr "Přidat skupinu dostupnosti"
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1945,7 +1925,6 @@ msgid "Search within this sample"
msgstr "Hledat v tomto vzorku"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr "Použit znak % cjako zástupný znak"
@@ -1957,32 +1936,27 @@ msgstr "Hledat:"
msgid "Start search"
msgstr "Spustit hledání"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr "Výsledky dotazníku"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr "Výsledky"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "Stav vzorku"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr "Staženo ze vzorku"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr "Zůstat ve vzorku"
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Číslo"
@@ -2010,35 +1984,32 @@ msgstr "Min"
msgid "Secs"
msgstr "Vteř"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Poměr"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr "Poměr odpovědí 1"
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr "Poměr odmítnutí 1"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr "Poměr kooperace 1"
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr "Poměr kontaktování 1"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Počet"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr "%"
@@ -2050,7 +2021,7 @@ msgstr "Výsledky volání operátora"
msgid "No outcomes recorded for this sample"
msgstr "Pro tento vzorek nezaznamenány žádné výsledky"
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr "Pro tento dotazník nezaznamenány žádné výsledky"
@@ -2074,13 +2045,14 @@ msgstr "Pro tento dotazník nejsou určeny žádné směny"
msgid "Shift"
msgstr "Směna"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr "Hlášení směny"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr "Sledovat proces VoIP"
@@ -2148,17 +2120,12 @@ msgstr "nebo: Vyberte předvyplnění ze seznamu vzorků"
msgid "Add pre fill"
msgstr "Přidat předvyplnění"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr "Přejmenovat"
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr "Oprávnění zobrazení operátora"
@@ -2168,17 +2135,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr "Vyberte která pole pro tento vzorek mohou operátoři vidět"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr "Pole"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr "Příklad dat"
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr "Umožnit operátorovi zobrazit?"
@@ -2186,11 +2151,9 @@ msgstr "Umožnit operátorovi zobrazit?"
msgid "Save changes"
msgstr "Uložit změny"
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr "Deidentifikace"
@@ -2206,11 +2169,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr "Smazat vybraná pole"
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr "Povolit"
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr "Zakázat"
@@ -2218,7 +2183,8 @@ msgstr "Zakázat"
msgid "Sample list"
msgstr "Seznam vzorků"
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr "Povolit/Zakázat"
@@ -2282,8 +2248,7 @@ msgstr "Zvolte soubor CSV k nahrání:"
msgid "Load bulk appointment CSV"
msgstr "Načíst CSV hromadných schůzek"
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr "Přidat směny"
@@ -2294,9 +2259,9 @@ msgid ""
msgstr ""
"Musíte být operátor (a také mít správcovský přístup) pro přidání/změnu směn"
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2323,9 +2288,8 @@ msgstr "Vyberte rok"
msgid "Select week of year"
msgstr "Vyberte týden v roce"
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Den"
@@ -2337,8 +2301,36 @@ msgstr "Použít směnu?"
msgid "Submit changes"
msgstr "Odeslat změny"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr "Kopírované kvóty"
@@ -2354,9 +2346,7 @@ msgstr "Nyní nejsou žádné kvóty"
msgid "Replicate: Where"
msgstr "Replikace: Kde"
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "jako"
@@ -2364,8 +2354,7 @@ msgstr "jako"
msgid "Sample only. Stop calling where"
msgstr "Pouze vzorek. Přestat volat tam kde"
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr "řádků z tohoto vzorku když:"
@@ -2457,8 +2446,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr "Nelze přidat operátora. Již možná existuje operátor s tímto názvem:"
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "Přidat operátora"
@@ -2474,8 +2462,7 @@ msgstr "Přidělit operátora k dotazníku"
msgid "tool"
msgstr "nástroj"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2520,11 +2507,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr "Bude tento operátor používat VoIP?"
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr "Uživatel chatu Jabber/XMPP"
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr "Heslo chatu Jabber/XMPP"
@@ -2544,8 +2531,7 @@ msgstr "Je operátor vedoucí?"
msgid "Is the operator a refusal converter?"
msgstr "Je operátor určen pro odmítavé respondenty?"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Přidat uživatele"
@@ -2569,7 +2555,7 @@ msgstr "propojeno s"
msgid "Error: Failed to insert questionnaire"
msgstr "Chyba: Nelze vložit dotazník"
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "Název dotazníku:"
@@ -2577,8 +2563,7 @@ msgstr "Název dotazníku:"
msgid "Select limesurvey instrument:"
msgstr "Výběr nástroje limesurvey:"
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr "Existující nástroj:"
@@ -2594,71 +2579,71 @@ msgstr "Žádný výběr respondenta (přejít přímo k dotazníku)"
msgid "Use basic respondent selection text (below)"
msgstr "Použít základní text výběru respondenta (níže)"
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr "Omezit schůzky na směny?"
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr "Omezit práci na směny?"
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr "Dotazník pouze pro zkoušku?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr "Umožnit respondentům dotazník vyplnit pomocí e-mailové pozvánky?"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr "Režim zobrazení dotazníku pro respondenta"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr "Vše v jednom"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr "Otázka za otázkou"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr "Skupina najednou"
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr "Šablona Limesurvey pro respondenta"
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr "URL pro přesměrování respondentů při samo-dokončení (vyžadováno)"
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr "Úvod výběru respondenta:"
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr "Úvod projektu výběru respondenta:"
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr "Zpětné vrácení výběru respondenta (dotazník již zahájen):"
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr "Zprávu, kterou zanechat na záznamníku:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr "Text na konci projektu (obrazovka poděkování):"
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr "Informace o projektu pro tazatele/operátory:"
@@ -2675,13 +2660,11 @@ msgstr ""
msgid "Display extension status"
msgstr "Zobrazit stav rozšíření"
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2945,7 +2928,7 @@ msgstr "Soboty"
msgid "String"
msgstr "Řetězec"
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Telefonní číslo"
@@ -2977,7 +2960,7 @@ msgstr "E-mailová adresa"
msgid "Self completion email invitation sent"
msgstr "Pozvánka samodokončení e-mailu odeslána"
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr "Samodokončeno online"
@@ -2985,11 +2968,11 @@ msgstr "Samodokončeno online"
msgid "Cases by outcome"
msgstr "Případy podle výsledku"
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Projekt"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "Současný výsledek:"
@@ -3006,32 +2989,36 @@ msgid "Cannot connect to VoIP Server"
msgstr "Nelze se připojit k serveru VoIP"
#: admin/availability.php:57
-msgid "No availability group set"
-msgstr "Není nastavena žádná skupina dostupnosti"
+msgid "No time slot group set"
+msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
-msgstr "Změnit dostupnost"
+msgid "Modify time slots"
+msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
"Zadejte počátek a konec na každý den v týdnu pro omezení volání během"
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Přidat řádek"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
-msgstr "Uložit změny dostupnosti"
+msgid "Save changes to time slot group"
+msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
-msgstr "Smazat tuto skupinu dostupnosti"
+msgid "Delete this time slot group"
+msgstr ""
#: admin/clients.php:84
msgid "Could not add"
@@ -3041,8 +3028,7 @@ msgstr "Nelze přidat"
msgid "There may already be a client of this name"
msgstr "Je možné že již existuje klient s tímto názvem"
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "Přidat klienta"
@@ -3098,8 +3084,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr "Uložit změny směn"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr "Nyní"
@@ -3147,8 +3132,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr "Stáhnout data pro tento dotazník přes Limesurvey"
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr "Prosím vyberte vzorek"
@@ -3192,8 +3176,7 @@ msgstr ""
msgid "Operator edit"
msgstr "Úprava operátora"
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr "Uživatelské jméno"
@@ -3337,23 +3320,31 @@ msgstr "Prosím potvrďte smazání dotazníku."
msgid "Delete this questionnaire"
msgstr "Smazat tento dotazník"
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "Přidat/Odstranit časové pásmo"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr "Klikněte pro odstranění časového pásmu z výchozího seznamu"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr "Přidat časové pásmo:"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Časové pásmo: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr "Přidat časové pásmo"
@@ -3373,8 +3364,7 @@ msgstr "Vybrat případ"
msgid "Set an outcome for this call"
msgstr "Vyberte výsledek pro volání"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr "Nastavit výsledek"
@@ -3394,40 +3384,51 @@ msgstr "Seznam volání"
msgid "Change outcome"
msgstr "Změnit výsledek"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr "Poznámky případu"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr "Změnit odpovědi pro tento případ"
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr "Případ zatím nezahájen v Limesurvey"
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr "Nastavit výsledek případu"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr "Aktualizovat dostupnost případu"
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
"Přidělit tento případ k operátorovi (bude jim zobrazen jako další případ)"
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr "Přidělit tento případ k operátorovi"
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "Případ neexistuje"
@@ -3435,19 +3436,19 @@ msgstr "Případ neexistuje"
msgid "Error: Cannot write to temporary directory"
msgstr "Chyba: nelze zapisovat do dočasného adresáře"
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "ráno"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "odpoledne"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "večer"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3552,10 +3553,8 @@ msgstr "Odpojeno"
msgid "Reconnected"
msgstr "Znovu připojeno"
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr " Rozšíření "
@@ -3610,13 +3609,11 @@ msgstr "Nemáte přiděleny žádné dotazníky"
msgid "You are not a valid client"
msgstr "Nejste platným klientem"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3645,10 +3642,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
@@ -3714,9 +3717,21 @@ msgstr ""
"A ten příběh je vyprávěn takto.\n"
"\n"
+#~ msgid "Sorting cases"
+#~ msgstr "Řazení případů"
+
#~ msgid "Enter the telephone extension password:"
#~ msgstr "Zadejte heslo telefonní linky:"
+#~ msgid "Availability groups"
+#~ msgstr "Skupiny dostupnosti"
+
+#~ msgid "No availability groups"
+#~ msgstr "Žádné skupiny dostupnosti"
+
+#~ msgid "Availablity group"
+#~ msgstr "Skupina dostupnosti"
+
#~ msgid "Update timezone"
#~ msgstr "Aktualizovat časové pásmo"
@@ -3726,6 +3741,18 @@ msgstr ""
#~ msgid "No operators"
#~ msgstr "Žádní operátoři"
+#~ msgid "Save changes to availabilities"
+#~ msgstr "Uložit změny dostupnosti"
+
+#~ msgid "Modify availability"
+#~ msgstr "Změnit dostupnost"
+
+#~ msgid "No availability group set"
+#~ msgstr "Není nastavena žádná skupina dostupnosti"
+
+#~ msgid "Manage availablity groups"
+#~ msgstr "Správa skupin dostupnosti"
+
#~ msgid "Max call attempts:"
#~ msgstr "Max pokusů o volání:"
diff --git a/locale/de/LC_MESSAGES/de.mo b/locale/de/LC_MESSAGES/de.mo
index 4790eaac..b4f6bc06 100644
Binary files a/locale/de/LC_MESSAGES/de.mo and b/locale/de/LC_MESSAGES/de.mo differ
diff --git a/locale/de/LC_MESSAGES/de.po b/locale/de/LC_MESSAGES/de.po
index 4bdb9664..5f4b6477 100644
--- a/locale/de/LC_MESSAGES/de.po
+++ b/locale/de/LC_MESSAGES/de.po
@@ -7,168 +7,162 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2014-03-18 17:48+0000\n"
"Last-Translator: Daniel \n"
"Language-Team: German \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr ""
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr ""
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Datum/Zeit"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "Fall ID"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Anrufergebnis"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Zielperson"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Kein Operator"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Auswahl der Zielperson - Anrufbeantworter"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Keine Nachricht hinterlasssen, bitte auflegen"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Beende Anruf mit Ergebnis: geschäftlicher Anrufbeantworter"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr "Beende Anruf mit Ergbnis: Anrufbeantworter, Nachricht hinterlassen"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
"Beende Anruf mit Ergebnis: Anrufbeantworter, keine Nachricht hinterlassen"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Zurück"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Auswahl der zielperson - Büro, Behörde etc. am Telefon"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Entschuldigen Sie bitte, ich habe die falsche Nummer gewählt"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Beende Anruf mit Ergebnis: geschäftliche Nummer"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Terminvereinbarung"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr "E-Mail"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Beende Arbeit"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Notizen"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Kontaktdaten"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr ""
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Schichten"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Terminvereinbarungen"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr ""
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr ""
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Projektinformationen"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Info"
@@ -176,9 +170,7 @@ msgstr "Info"
msgid "Stop REC"
msgstr "Stop REC"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Aufzeichnen"
@@ -186,8 +178,7 @@ msgstr "Aufzeichnen"
msgid "Beginning recording..."
msgstr "Starte Aufzeichnung..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Nicht im Gespräch, Aufzeichnung wird nicht gestartet"
@@ -195,8 +186,8 @@ msgstr "Nicht im Gespräch, Aufzeichnung wird nicht gestartet"
msgid "Begin the manual recording now..."
msgstr "Starte manuele Aufzeichnung..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Start REC"
@@ -208,37 +199,40 @@ msgstr "Beende Aufzeichnung..."
msgid "Stop the manual recording now..."
msgstr "Beende manuele Aufzeichnung...."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Auswahl der Zielperson - Rückruf"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr ""
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Ja - Fortsetzen an altem Endpunkt"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Beende Anruf mit Ergebnis: Verweigerung durch Zielperson"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Auswahl der Zielperson - Vorstellung des Projekts"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Ja - Weiter"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -246,7 +240,8 @@ msgstr ""
"Beende Anruf mit Ergebnis: keine geeignete Zielperson (Zielperson nicht "
"unter dieser Nummer erreichbar)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -282,7 +277,7 @@ msgstr ""
msgid "Select phone number:"
msgstr ""
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr ""
@@ -306,7 +301,7 @@ msgstr "Terminvereinbarung:"
msgid "Accept appointment from "
msgstr "Terminvereinbarung akzeptieren von "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " bis "
@@ -322,7 +317,8 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr "Terminvereinbarung"
@@ -330,7 +326,7 @@ msgstr "Terminvereinbarung"
msgid "Call List"
msgstr "Anrufliste"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "keine Anrufe getätigt"
@@ -338,12 +334,17 @@ msgstr "keine Anrufe getätigt"
msgid "Number called"
msgstr "Nummer angerufen"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operator"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "keine Fälle"
@@ -351,15 +352,18 @@ msgstr "keine Fälle"
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Ende"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Anrufen/Auflegen"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Supervisor"
@@ -367,11 +371,12 @@ msgstr "Supervisor"
msgid "Restart"
msgstr "Neustart"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Verfügbarkeit"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -383,7 +388,11 @@ msgstr "Information"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr "Fall ID"
@@ -395,8 +404,7 @@ msgstr "Supervisor verfügbar"
msgid "Supervisor not available"
msgstr "Supervisor nicht verfügbar"
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr "Nachricht"
@@ -412,55 +420,32 @@ msgstr "Von"
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Anrufen"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Nicht im Gespräch"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Beende Fall"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "Auf \"Anrufen\" klicken um Nummer für Terminvereinbarung zu wählen:"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Nummer zum wählen:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -469,62 +454,51 @@ msgstr ""
"und aktivieren Sie Ihre VoIP-Extension durch Klick auf das rote Feld mit dem "
"Hinweis \"VoIP aus\""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Wähle Nummer zum wählen aus:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "Der letzte Anruf schloss diesen Anrufversuch ab"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
"Bitte eine Grund für das Anrufergbnis angeben bevor der Fall beendet werden "
"kann:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Codierung erforderlich"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Anrufergebnis zuweisen"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Fehler: Schließe Fenster"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr ""
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Anruf angenommen"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Auflegen"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Klingelt"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Angenommen"
@@ -552,7 +526,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -580,51 +556,44 @@ msgstr ""
msgid "Go back to work"
msgstr "Zurück zur Arbeit"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Status"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Name"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "keine Nummern für Anrufe verfügbar"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Auswahl der Zielperson - Einführung"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "geschäftliche Nummer"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Anrufbeantworter"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr "Beende Anruf mit Ergebnis: keine Antwort (klingeln oder besetzt) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Beende Anruf mit Ergebnis: Versehentlich aufgelegt"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Beende Anruf mit Ergebnis: Verweigerung durch unbekannte Person"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
@@ -632,8 +601,7 @@ msgstr ""
"Beende Anruf mit Ergebnis: keine geeignte Zielperson (Zielperson nie unter "
"dieser Nummer erreichbar)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -649,8 +617,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Start"
@@ -658,12 +628,14 @@ msgstr "Start"
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Fragebogen"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr "Auswahl der Zielperson - Projekt beendet"
@@ -671,48 +643,46 @@ msgstr "Auswahl der Zielperson - Projekt beendet"
msgid "Call automatically ended with outcome: Complete - End case"
msgstr "Anruf automatisch beendet mit Ergebnis: Fertig - Beende Fall"
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Beende Anruf mit Ergbnis: Fertig"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Zielperson hinzufügen"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Zurück"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "Fall ID:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Zielperson:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr ""
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -736,8 +706,7 @@ msgstr "Derzeit keine Fälle verfügbar"
msgid "Reasons:"
msgstr "Gründe:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr "Aktiviert"
@@ -749,13 +718,12 @@ msgstr "Deaktiviert"
msgid "Assigned questionnaires:"
msgstr "Zugeordnete Fragebögen:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr ""
@@ -767,7 +735,10 @@ msgstr "Fehler: Sie wurden keinem Fragebogen zugeordnet"
msgid "Assigned samples:"
msgstr "Zugeordnete Stichproben"
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Stichprobe"
@@ -842,34 +813,33 @@ msgstr ""
msgid "Case Notes"
msgstr "Notizen zu Fällen"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Notiz hinzufügen"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "keine Notizen"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Notiz"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr ""
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr ""
@@ -937,7 +907,9 @@ msgstr "Beende Fall in"
msgid "Ending case now"
msgstr "Beende Fall"
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr "Sekunden"
@@ -978,8 +950,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -995,8 +966,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -1016,11 +986,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr "Vorname"
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr "Nachname"
@@ -1040,11 +1010,13 @@ msgstr ""
msgid "Appointment List"
msgstr "Terminliste"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Noch nicht angerufen"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1056,7 +1028,8 @@ msgstr "Keine Termine vereinbart"
msgid "No future appointments scheduled"
msgstr "Keine weiteren Termin vereinbart"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr "Terminvereinbarung mit"
@@ -1090,13 +1063,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1104,27 +1075,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Datum"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1142,23 +1113,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1166,27 +1134,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1194,13 +1159,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1260,7 +1223,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1272,36 +1235,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1318,8 +1290,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1327,11 +1298,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1351,38 +1322,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1390,9 +1362,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr "Keine zukünftigen Terminvereinbarungen"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1408,11 +1378,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1424,7 +1394,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1436,27 +1406,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1475,8 +1445,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1484,38 +1453,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1523,45 +1486,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1605,7 +1566,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1641,13 +1602,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1655,7 +1614,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1664,191 +1624,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr ""
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr ""
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1864,22 +1833,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1932,7 +1912,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1944,32 +1923,27 @@ msgstr ""
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Nummer"
@@ -1997,35 +1971,32 @@ msgstr ""
msgid "Secs"
msgstr ""
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr ""
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2037,7 +2008,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2061,13 +2032,14 @@ msgstr ""
msgid "Shift"
msgstr ""
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2133,17 +2105,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2153,17 +2120,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2171,11 +2136,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2189,11 +2152,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2201,7 +2166,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2256,8 +2222,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2267,9 +2232,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2292,9 +2257,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr ""
@@ -2306,8 +2270,36 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2323,9 +2315,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2333,8 +2323,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2422,8 +2411,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2439,8 +2427,7 @@ msgstr ""
msgid "tool"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2480,11 +2467,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2504,8 +2491,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr ""
@@ -2529,7 +2515,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2537,8 +2523,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2554,71 +2539,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2635,13 +2620,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2905,7 +2888,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Telefonnummer"
@@ -2937,7 +2920,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2945,11 +2928,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr ""
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2966,30 +2949,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -3000,8 +2987,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3054,8 +3040,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3099,8 +3084,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3144,8 +3128,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3283,23 +3266,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3319,8 +3310,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3340,39 +3330,50 @@ msgstr "Anrufliste"
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3380,19 +3381,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3495,10 +3496,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3549,13 +3548,11 @@ msgstr "Sie sind keinen Fragebögen zugeordnet"
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3584,10 +3581,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/el/LC_MESSAGES/el.mo b/locale/el/LC_MESSAGES/el.mo
index 6b4072d0..0a9b2e32 100644
Binary files a/locale/el/LC_MESSAGES/el.mo and b/locale/el/LC_MESSAGES/el.mo differ
diff --git a/locale/el/LC_MESSAGES/el.po b/locale/el/LC_MESSAGES/el.po
index d92c1b72..b8482fc5 100644
--- a/locale/el/LC_MESSAGES/el.po
+++ b/locale/el/LC_MESSAGES/el.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Greek \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Λίστα ιστορικού περιπτώσεων"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Δεν έγιναν ποτέ κλήσεις"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Ημερομηνία/Ώρα"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "Διακριτικό περίπτωσης"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr ""
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Αποκρινόμενος"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr ""
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Επιλογή παραλήπτη - Αυτόματος τηλεφωνητής"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Μην αφήσετε μήνυμα, παρακαλώ κλείστε το τηλέφωνο"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Τέλος κλήσης με αποτέλεσμα: Επαγγελματικός αυτόματος τηλεφωνητής"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr "Τέλος κλήσης με αποτέλεσμα: Αυτόματος τηλεφωνητής Αφέθηκε μήνυμα"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr "Τέλος κλήσης με αποτέλεσμα: Αυτόματος τηλεφωνητής Δεν αφέθηκε μήνυμα"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Επιστροφή"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr ""
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Ραντεβού"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Τέλος εργασίας"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Σημειώσεις"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr ""
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Ιστορικό κλήσεων"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Βάρδιες"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Ραντεβού"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Απόδοση"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Ιστορικό εργασίας"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr ""
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Πληροφορίες"
@@ -175,9 +169,7 @@ msgstr "Πληροφορίες"
msgid "Stop REC"
msgstr "Διακοπή εγγραφής"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Εγγραφή"
@@ -185,8 +177,7 @@ msgstr "Εγγραφή"
msgid "Beginning recording..."
msgstr "Έναρξη εγγραφής"
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Όχι σε κλήση, επομένως όχι έναρξη εγγραφής"
@@ -194,8 +185,8 @@ msgstr "Όχι σε κλήση, επομένως όχι έναρξη εγγρα
msgid "Begin the manual recording now..."
msgstr "Εκκίνηση της χειροκίνητης εγγραφής τώρα"
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Έναρξη εγγραφής"
@@ -207,37 +198,40 @@ msgstr "Διακοπή εγγραφής"
msgid "Stop the manual recording now..."
msgstr "Διακοπή της χειροκίνητης εγγραφής τώρα"
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Επιλογή παραλήπτη - Κλήση"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Είσαι ο/η: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Ναι - Συνέχεια από το σημείο που το αφήσαμε"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Τέλος κλήσης με αποτέλεσμα: Άρνηση από τον αποκρινόμενο"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Επιλογή αποκρινόμενου - Παρουσίαση εργασίας"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Ναι - Συνέχεια"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -245,7 +239,8 @@ msgstr ""
"Τέλος κλήσης με αποτέλεσμα: Μη διαθέσιμος αποκρινόμενος (μη διαθέσιμο άτομο "
"σε αυτό τον αριθμό)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -282,7 +277,7 @@ msgstr "Προσθήκη αυτού του παραλήπτη"
msgid "Select phone number:"
msgstr "Επέλεξε τηλεφωνικό αριθμό"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Κανένα"
@@ -307,7 +302,7 @@ msgstr "Ραντεβού:"
msgid "Accept appointment from "
msgstr "Αποδοχή συνάντησης από "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " μέχρι "
@@ -323,7 +318,8 @@ msgstr "σε"
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -331,7 +327,7 @@ msgstr ""
msgid "Call List"
msgstr "Λίστα κλήσεων"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Δεν έγιναν κλήσεις"
@@ -339,12 +335,17 @@ msgstr "Δεν έγιναν κλήσεις"
msgid "Number called"
msgstr "αριθμός κλήθηκε"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Λειτουργός"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Καμία περίπτωση"
@@ -352,15 +353,18 @@ msgstr "Καμία περίπτωση"
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Λήξη"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Κλήση/Απόρριψη"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Επιβλέπων"
@@ -368,11 +372,12 @@ msgstr "Επιβλέπων"
msgid "Restart"
msgstr ""
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr ""
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -384,7 +389,11 @@ msgstr "Πληροφορίες"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -396,8 +405,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -413,55 +421,32 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Κλήση"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Όχι σε κλήση"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Τερματισμός περίπτωσης"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "Πίεσε το πλήκτρο κλήσης για το σχηματισμό του αριθμού της περίπτωσης"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Αριθμός για κλήση:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -469,62 +454,51 @@ msgstr ""
"Η VoIP extension δεν είναι ενεργοποιημένη. Παρακαλώ κλείστε το παράθυρο και "
"ενεργοποιήστε κάνοντας άπαξ κλικ στο κόκκινο κουμπί που γράφει \"VoIP Off\""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Επιλέξτε αριθμό τηλεφώνου για κλήση:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "Η προηγούμενη κλήση ολοκλήρωσε την προσπάθεια αυτής της κλήσης."
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
"Πληκτρολογήστε έναν λόγο για αυτό το πόρισμα πριν την ολοκλήρωση της "
"προσπάθειας"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Απαίτηση κωδικοποίησης"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Ανάθεση πορίσματος"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Σφάλμα: Κλείστε το παράθυρο."
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Απαίτηση κλήσης"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Η κλήση απαντήθηκε"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Τερματισμός κλήσης"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Κουδουνίζει"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Απαντήθηκε"
@@ -552,7 +526,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -580,58 +556,50 @@ msgstr ""
msgid "Go back to work"
msgstr "Επιστροφή στην εργασία"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr ""
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr ""
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr ""
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr ""
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Τηλεφωνητής"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr ""
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr ""
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr ""
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -645,8 +613,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr ""
@@ -654,12 +624,14 @@ msgstr ""
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Ερωτηματολόγιο"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -667,48 +639,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr ""
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr ""
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Επιστροφή"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr ""
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr ""
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -732,8 +702,7 @@ msgstr ""
msgid "Reasons:"
msgstr "Λόγοι:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -745,13 +714,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Περιγραφή"
@@ -763,7 +731,10 @@ msgstr ""
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr ""
@@ -836,34 +807,33 @@ msgstr ""
msgid "Case Notes"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr ""
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr ""
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Σημείωση"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr ""
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr ""
@@ -931,7 +901,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -970,8 +942,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -987,8 +958,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -1008,11 +978,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1032,11 +1002,13 @@ msgstr ""
msgid "Appointment List"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1048,7 +1020,8 @@ msgstr ""
msgid "No future appointments scheduled"
msgstr ""
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1082,13 +1055,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1096,27 +1067,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1134,23 +1105,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1158,27 +1126,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1186,13 +1151,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1252,7 +1215,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1264,36 +1227,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1310,8 +1282,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1319,11 +1290,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1343,38 +1314,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1382,9 +1354,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1400,11 +1370,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1416,7 +1386,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1428,27 +1398,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1467,8 +1437,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1476,38 +1445,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1515,45 +1478,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1597,7 +1558,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1633,13 +1594,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1647,7 +1606,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1656,191 +1616,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr ""
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr ""
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1856,22 +1825,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1924,7 +1904,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1936,32 +1915,27 @@ msgstr ""
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr ""
@@ -1989,35 +1963,32 @@ msgstr ""
msgid "Secs"
msgstr ""
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr ""
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2029,7 +2000,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2053,13 +2024,14 @@ msgstr ""
msgid "Shift"
msgstr ""
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2125,17 +2097,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2145,17 +2112,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2163,11 +2128,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2181,11 +2144,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2193,7 +2158,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2248,8 +2214,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2259,9 +2224,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2284,9 +2249,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr ""
@@ -2298,8 +2262,36 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2315,9 +2307,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2325,8 +2315,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2414,8 +2403,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2431,8 +2419,7 @@ msgstr ""
msgid "tool"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2472,11 +2459,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2496,8 +2483,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr ""
@@ -2521,7 +2507,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2529,8 +2515,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2546,71 +2531,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2627,13 +2612,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2897,7 +2880,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr ""
@@ -2929,7 +2912,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2937,11 +2920,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr ""
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2958,30 +2941,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2992,8 +2979,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3046,8 +3032,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3091,8 +3076,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3136,8 +3120,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3275,23 +3258,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3311,8 +3302,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3332,39 +3322,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3372,19 +3373,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3487,10 +3488,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3541,13 +3540,11 @@ msgstr ""
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3576,10 +3573,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/es/LC_MESSAGES/es.mo b/locale/es/LC_MESSAGES/es.mo
index 2e3d7d9a..f35c826c 100644
Binary files a/locale/es/LC_MESSAGES/es.mo and b/locale/es/LC_MESSAGES/es.mo differ
diff --git a/locale/es/LC_MESSAGES/es.po b/locale/es/LC_MESSAGES/es.po
index f97f89b6..d5b6697e 100644
--- a/locale/es/LC_MESSAGES/es.po
+++ b/locale/es/LC_MESSAGES/es.po
@@ -7,169 +7,163 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
-"PO-Revision-Date: 2013-03-08 01:20+0000\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
+"PO-Revision-Date: 2015-01-08 00:44+0000\n"
+"Last-Translator: Adolfo Jayme \n"
"Language-Team: Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Historial de casos"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "pudiste hacerlo"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Fecha/Hora"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "ID del caso"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Resultado"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Entrevistado"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Sin operador"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Selección de entrevistado - Máquina contestadora"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "No deje mensaje, por favor cuelgue"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Fin de llamada con resultado: Máquina contestadora en el negocio"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
"Fin de llamada con resultado: Mensaje dejado en la máquina contestadora"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
"Fin de llamada con resultado: No se dejó mensaje en la máquina contestadora"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Anterior"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Selección de Entrevistado - Respuestas del negocio"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Disculpe la molestia, llamé al número equivocado"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Fin de llamada con resultado: Número de negocio"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Cita"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
-msgstr ""
+msgstr "Correo electrónico"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Finalizar trabajo"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr "Flecha para expandir o contraer"
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Notas"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Detalles de contacto"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Histórico de llamadas"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Turnos"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Citas"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Rendimiento"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Histórico de trabajo"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Información del proyecto"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Información"
@@ -177,9 +171,7 @@ msgstr "Información"
msgid "Stop REC"
msgstr "Detener GRABACIÓN"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Grabar"
@@ -187,8 +179,7 @@ msgstr "Grabar"
msgid "Beginning recording..."
msgstr "Iniciando grabación..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "No está en una llamada, por lo tanto no se inicia grabación"
@@ -196,8 +187,8 @@ msgstr "No está en una llamada, por lo tanto no se inicia grabación"
msgid "Begin the manual recording now..."
msgstr "Comenzando ahora la grabación manual..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Grabar"
@@ -209,37 +200,40 @@ msgstr "Detener grabación..."
msgid "Stop the manual recording now..."
msgstr "Detener ahora la grabación manual..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Selección de entrevistado - Llamar otra vez"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Usted es: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr "% completado"
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Si - Continuar donde lo dejamos"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Finalizar llamada con resultado: Rechazo del entrevistado"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Selección de Entrevistado - Introducción al Proyecto"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Si - Continuar"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -247,7 +241,8 @@ msgstr ""
"Terminar la llamada con resultado: No hay entrevistado elegible (la persona "
"no es contactable en este número)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -283,7 +278,7 @@ msgstr "Añadir este entrevistado"
msgid "Select phone number:"
msgstr "Seleccionar número telefónico"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Ninguno"
@@ -307,7 +302,7 @@ msgstr "cita"
msgid "Accept appointment from "
msgstr "Aceptar cita de "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " hasta "
@@ -323,7 +318,8 @@ msgstr "en"
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -331,7 +327,7 @@ msgstr ""
msgid "Call List"
msgstr "Lista de llamada"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "No se han hecho llamadas"
@@ -339,12 +335,17 @@ msgstr "No se han hecho llamadas"
msgid "Number called"
msgstr "Número llamado"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operador"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Sin caso"
@@ -352,27 +353,31 @@ msgstr "Sin caso"
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Termina"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Llamar/Colgar"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Supervisor"
#: index.php:170
msgid "Restart"
-msgstr ""
+msgstr "Reiniciar"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Disponible"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -382,9 +387,13 @@ msgstr "Información"
#: supervisorchat.php:80
msgid "Me"
-msgstr ""
+msgstr "Yo"
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr "ID de caso"
@@ -396,8 +405,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -413,55 +421,32 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Llamar"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "No hay llamada en curso"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Finalizar caso"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "Presione el botón de llamada para marcar el número para esta cita:"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Número a llamar:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -469,60 +454,49 @@ msgstr ""
"Su extensión VoIP no está activada. Por favor, cierre esta ventana y active "
"VoIP pulsando en el botón rojo «VoIP apagado»"
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Seleccione el número de teléfono a llamar:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "La última llamada completó este intento de contacto"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "Teclee la razón del resultado antes de completar este caso:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Requiere codificación"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Asignar resultado"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Error: Cerrar ventana"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Solicitando llamada"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Llamada respondida"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Colgar"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Llamando"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Contestado"
@@ -550,7 +524,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr "Extensión"
@@ -578,53 +554,46 @@ msgstr ""
msgid "Go back to work"
msgstr "Regresar a trabajar"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Estado"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Nombre"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "No exite más números para llamar"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Selección de entrevistado - Introducción"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Número de negocio"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Máquina contestadora"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
"Finalizar llamada con resultado: Sin repuesta (nadie contestó o estaba "
"ocupado) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Finalizar llamada con resultado: Colgado accidental"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Finalizar llamada con resultado: Negativa de persona desconocida"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
@@ -632,8 +601,7 @@ msgstr ""
"Finalizar llamada con resultado: Sin entrevistado elegible (la persona nunca "
"está disponible en este número)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -649,8 +617,10 @@ msgstr "Lista de turnos"
msgid "No shifts for this project"
msgstr "No hay turnos para este proyecto"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Inicia"
@@ -658,12 +628,14 @@ msgstr "Inicia"
msgid "No future shifts scheduled"
msgstr "No hay turnos programados en el futuro"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Cuestionario"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr "Selección de entrevistado - Final de proyecto"
@@ -671,48 +643,46 @@ msgstr "Selección de entrevistado - Final de proyecto"
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Finalizar llamada con resultado: Completado"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Añadir entrevistado"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Retroceder"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "ID del caso:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Entrevistado:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Var"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Valor"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -736,8 +706,7 @@ msgstr "En este momento no hay caso disponible"
msgid "Reasons:"
msgstr "Razones:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -749,13 +718,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr "Cuestionarios asignados:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Descripción"
@@ -767,7 +735,10 @@ msgstr "ERROR: Usted no tiene cuestionarios asignados"
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Muestra"
@@ -846,34 +817,33 @@ msgstr "POSIBLE ERROR: Cuota de fila alcanzada para esta pregunta"
msgid "Case Notes"
msgstr "Notas del Caso"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Añadir nota"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "No hay notas"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Nota"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Este turno"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Terminaciones"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Completamientos por hora"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Este proyecto"
@@ -941,7 +911,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr "segundos"
@@ -980,8 +952,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -997,8 +968,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr "Terminar llamada con resultado: Cuota llena"
@@ -1018,11 +988,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1042,11 +1012,13 @@ msgstr ""
msgid "Appointment List"
msgstr "Lista de Citas"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "No se ha llamado"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1058,7 +1030,8 @@ msgstr "No se hicieron citas"
msgid "No future appointments scheduled"
msgstr "No hay citas futuras programadas"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1095,13 +1068,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr "Espere a atender esta llamada antes de intentar llamar al supervisor"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "Ejecutando proceso:"
@@ -1109,29 +1080,29 @@ msgstr "Ejecutando proceso:"
msgid "Kill signal sent: Please wait..."
msgstr "Señal de apagado enviada: Espere..."
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
"El proceso ya está cerrado (p. ej. el servidor fue reiniciado) - haga click "
"aquí para confirmar"
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Mata el proceso en ejecución"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr "ID de acceso"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Fecha"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr "Registro de entrada"
@@ -1149,23 +1120,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "Resultado del último proceso ejecutado (si existe)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "Historial de llamadas"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "Fecha/Hora de inicio de llamada"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "Tiempo terminado"
@@ -1173,27 +1141,24 @@ msgstr "Tiempo terminado"
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "Asignar clientes al cuestionario"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr "Informe de cuota"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Seleccionar cuestionario de la siguiente lista"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Seleccionar una muestra de la siguiente lista"
@@ -1201,13 +1166,11 @@ msgstr "Seleccionar una muestra de la siguiente lista"
msgid "Total sample"
msgstr "Muestra total"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "cerrado"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "abierto"
@@ -1267,7 +1230,7 @@ msgstr "Por favor, retroceda en su navegador y solucione el problema"
msgid "Import: Select columns to import"
msgstr "Importar: Seleccione las columnas para importar"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Importar: Seleccione el archivo para subir"
@@ -1279,36 +1242,45 @@ msgstr "Escoja el archivo CSV de muestra para subir:"
msgid "Description for file:"
msgstr "Descripción del archivo"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "Añadir muestra"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
-msgstr "Ordenar casos"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
+msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
-msgstr "Ordenación completaada"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
+msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr "Esta tarea lleva"
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr "Ordenación completaada"
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr "Fallo al completar la ordenación"
@@ -1325,8 +1297,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr "Editar cita"
@@ -1334,11 +1305,11 @@ msgstr "Editar cita"
msgid "Contact phone"
msgstr "Teléfono de contacto"
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Hora de Inicio"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "Hora de finalización"
@@ -1358,38 +1329,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Eliminar"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Editar"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "Nombre del operador"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "Nombre del entrevistado"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Apellido"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "Resultado actual"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "Operador que ha llamado"
@@ -1397,9 +1369,7 @@ msgstr "Operador que ha llamado"
msgid "No appointments in the future"
msgstr "No hay citas en le futuro"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr "Gestión de cuota"
@@ -1415,11 +1385,11 @@ msgstr "Sin cuotas actualmente"
msgid "Stop calling this sample when:"
msgstr "Parar de llamar a esta muestra cuando:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "para"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr "completados"
@@ -1431,7 +1401,7 @@ msgstr "Cuota alcanzada"
msgid "Quota not yet reached"
msgstr "Cuota no alcanzada"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr "Completados: "
@@ -1443,27 +1413,27 @@ msgstr "Seleccione una pregunta para la cuota"
msgid "Enter the details for creating the quota:"
msgstr "Introduzca los detalles para crear la cuota:"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr "Valores predefinidos para esta pregunta:"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr "No hay etiquetas definidas para esta pregunta"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr "Valor del código"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr "Valor del código a comparar"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr "El tipo de comparación"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr "El número de completados para detener llamada a"
@@ -1482,8 +1452,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1491,38 +1460,32 @@ msgstr ""
msgid "Operator Performance"
msgstr "Actuación del operador"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "Seleccione un cuestionario"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "Llamadas"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Tiempo total"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr "Tiempo de llamada"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr "Efectividad"
@@ -1530,45 +1493,43 @@ msgstr "Efectividad"
msgid "till"
msgstr "hasta"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Seleccione un turno"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr "Modificar"
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr "Informes de turno"
@@ -1612,7 +1573,7 @@ msgstr "Herramientas administrativas"
msgid "Questionnaire creation and management"
msgstr "Creación de cuestionario y gestión"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1648,13 +1609,11 @@ msgstr "Asignar muestras a cuestionarios"
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr "Administración de cuotas de renglón"
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr "Gestión de operadores"
@@ -1662,7 +1621,8 @@ msgstr "Gestión de operadores"
msgid "Add operators to the system"
msgstr "Añadir operadores al sistema"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "Asignar operadores a cuestionarios"
@@ -1671,191 +1631,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "Progreso del cuestionario"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "Mostrar todas las futuras citas"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Salida de datos"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "Actuación del operador"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "Gestión de clientes"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "Añadir clientes al sistema"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "Funciones del supervisor"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "Asignar resultados a casos"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Buscar la muestra"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Configuración del sistema"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr "Iniciar y monitorizar VoIP"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr "Estado de extensión"
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "Seleccionar muestra"
@@ -1871,22 +1840,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1939,7 +1919,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1951,32 +1930,27 @@ msgstr "Buscar por:"
msgid "Start search"
msgstr "Iniciar búsqueda"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "Estado de muestra"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Número"
@@ -2004,35 +1978,32 @@ msgstr "Min"
msgid "Secs"
msgstr "Seg"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Tasa"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Recuento"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr "%"
@@ -2044,7 +2015,7 @@ msgstr "Resultados de llamada de operador"
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2068,13 +2039,14 @@ msgstr ""
msgid "Shift"
msgstr "Turno"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr "Informe de turno"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2141,17 +2113,12 @@ msgstr ""
msgid "Add pre fill"
msgstr "Añadir pre llenado"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2161,17 +2128,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2179,11 +2144,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2197,11 +2160,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr "Activar"
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr "Desactivar"
@@ -2209,7 +2174,8 @@ msgstr "Desactivar"
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr "Activar/desactivar"
@@ -2264,8 +2230,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr "Añadir turnos"
@@ -2275,9 +2240,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2300,9 +2265,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Día"
@@ -2314,8 +2278,36 @@ msgstr "¿Usar turno?"
msgid "Submit changes"
msgstr "Enviar cambios"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2331,9 +2323,7 @@ msgstr "No hay cuotas de fila"
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "como"
@@ -2341,8 +2331,7 @@ msgstr "como"
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr "filas de esta muestra cuando:"
@@ -2430,8 +2419,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "Añadir un operador"
@@ -2447,8 +2435,7 @@ msgstr ""
msgid "tool"
msgstr "herramienta"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2488,11 +2475,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2512,8 +2499,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Añadir usuario"
@@ -2537,7 +2523,7 @@ msgstr "vinculado a"
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2545,8 +2531,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2562,71 +2547,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2643,13 +2628,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2913,7 +2896,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Número de teléfono"
@@ -2945,7 +2928,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2953,11 +2936,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Proyecto"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "Resultado actual:"
@@ -2974,30 +2957,34 @@ msgid "Cannot connect to VoIP Server"
msgstr "No se puede conectar al Servidor de VoIP"
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Añadir fila"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -3008,8 +2995,7 @@ msgstr "No se puede añadir"
msgid "There may already be a client of this name"
msgstr "Ya hay un cliente con este nombre"
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "Añadir un cliente"
@@ -3065,8 +3051,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3110,8 +3095,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3155,8 +3139,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr "Nombre de usuario"
@@ -3294,23 +3277,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "Añadir/eliminar zonas horarias"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Zona horaria: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3330,8 +3321,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3351,39 +3341,50 @@ msgstr "Lista de llamadas"
msgid "Change outcome"
msgstr "Cambiar resultado"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "El caso no existe"
@@ -3391,19 +3392,19 @@ msgstr "El caso no existe"
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "mañana"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "tarde"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "noche"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3506,10 +3507,8 @@ msgstr "Desconectada"
msgid "Reconnected"
msgstr "Reconectado"
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr " Extensión "
@@ -3560,13 +3559,11 @@ msgstr "No tiene cuestionarios asignados"
msgid "You are not a valid client"
msgstr "No es un cliente válido"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3595,10 +3592,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
@@ -3675,3 +3678,6 @@ msgstr ""
#~ msgid "Update timezone"
#~ msgstr "Actualizar zona horaria"
+
+#~ msgid "Sorting cases"
+#~ msgstr "Ordenar casos"
diff --git a/locale/fa/LC_MESSAGES/fa.mo b/locale/fa/LC_MESSAGES/fa.mo
index c8c13bc6..8d46bf06 100644
Binary files a/locale/fa/LC_MESSAGES/fa.mo and b/locale/fa/LC_MESSAGES/fa.mo differ
diff --git a/locale/fa/LC_MESSAGES/fa.po b/locale/fa/LC_MESSAGES/fa.po
index 7d2cf257..50bb7112 100644
--- a/locale/fa/LC_MESSAGES/fa.po
+++ b/locale/fa/LC_MESSAGES/fa.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-05-09 18:23+0000\n"
"Last-Translator: A J \n"
"Language-Team: Persian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "لیست تاریخچه کیس"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "هیچ تماسی تاکنون انجام نگرفته"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "تاریخ/ زمان"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "شماره کیس"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "نتیجه"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "پاسخگو"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "بدون اپراتور"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "انتخاب پاسخگو - انسرینگ ماشین"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "پیام نگذارید، لطفا قطع کنید"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "تماس را با این نتیجه پایان بده: انسرینگ ماشین محل کار"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr "تماس را با این نتیجه پایان بده: انسرینگ ماشین، پیغام گذاشته شد"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr "تماس را با این نتیجه پایان بده: انسرینگ ماشین، پیغامی گذاشته نشد"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "بازگشت"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr ""
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr ""
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "قرار"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr "ایمیل"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr ""
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr ""
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "جزئیات تماس"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr ""
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr ""
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr ""
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "عملکرد"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr ""
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr ""
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr ""
@@ -175,9 +169,7 @@ msgstr ""
msgid "Stop REC"
msgstr "توقف ضبط"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "ضبط"
@@ -185,8 +177,7 @@ msgstr "ضبط"
msgid "Beginning recording..."
msgstr "ضبط شروع میشود ..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "تماسی وجود ندارد، پس ضبط شروع نمیشود"
@@ -194,8 +185,8 @@ msgstr "تماسی وجود ندارد، پس ضبط شروع نمیشود"
msgid "Begin the manual recording now..."
msgstr "ضبط غیرخودکار را شروع کن"
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "شروع ضبط"
@@ -207,37 +198,40 @@ msgstr "ضبط متوقف میشود ..."
msgid "Stop the manual recording now..."
msgstr "ضبط غیرخودکار را متوقف کن ..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "انتخاب پاسخگو - تماس دوباره"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "شما اینجا هستید: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "بله - از جایی که متوقف شد ادامه بده"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "تماس را با این نتیجه پایان بده: امتناع پاسخگو"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "انتخاب پاسخگو - مقدمه پروژه"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "بله - ادامه بده"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -245,7 +239,8 @@ msgstr ""
"تماس را با این نتیجه پایان بده: پاسخگو حائز صلاحیت وجود نداشت (فردی در این "
"شماره موجود نبود)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr "تماس را با این نتیجه پایان بده: خارج از نمونه (قبلا پرسش شده)"
@@ -279,7 +274,7 @@ msgstr "این پاسخگو را اضافه کن"
msgid "Select phone number:"
msgstr "انتخاب شماره تلفن"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "هیچکدام"
@@ -303,7 +298,7 @@ msgstr "قرار:"
msgid "Accept appointment from "
msgstr "قرار با این فرد را قبول کن "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " تا "
@@ -319,7 +314,8 @@ msgstr "در"
msgid "Appointment with myself only?"
msgstr "قرار با خودم فقط؟"
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -327,7 +323,7 @@ msgstr ""
msgid "Call List"
msgstr ""
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr ""
@@ -335,12 +331,17 @@ msgstr ""
msgid "Number called"
msgstr ""
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "اپراتور"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "بدون کیس"
@@ -348,15 +349,18 @@ msgstr "بدون کیس"
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr ""
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr ""
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "سرپرست"
@@ -364,11 +368,12 @@ msgstr "سرپرست"
msgid "Restart"
msgstr ""
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr ""
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -380,7 +385,11 @@ msgstr "اطلاعات"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -392,8 +401,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -409,114 +417,80 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "تماس"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr ""
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr ""
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr ""
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr ""
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr ""
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr ""
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr ""
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr ""
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr ""
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr ""
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr ""
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr ""
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr ""
@@ -544,7 +518,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -572,53 +548,46 @@ msgstr ""
msgid "Go back to work"
msgstr ""
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "وضعیت"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "نام"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "شمارهای برای تماس وجود ندارد"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "انتخاب پاسخگو - مقدمه"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "شماره محل کار"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "انسرینگ ماشین"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
"تماس را با این نتیجه پایان بده: بدون جواب (کسی جواب نداد یا مشغول بود) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "تماس را با این نتیجه پایان بده: اشتباهی قطع شد"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr ""
"تماس را با این نتیجه پایان بده: امتناع توسط کسی که خودش را معرفی نکرد"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
@@ -626,8 +595,7 @@ msgstr ""
"تماس را با این نتیجه پایان بده: پاسخگویی وجود نداشت (هیچ فردی در این شماره "
"موجود نبود)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -643,8 +611,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr ""
@@ -652,12 +622,14 @@ msgstr ""
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr ""
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -665,48 +637,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr ""
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "اضافهکردن پاسخگو"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "بازگشت"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "شماره کیس:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "پاسخگو:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "مقدار"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -730,8 +700,7 @@ msgstr ""
msgid "Reasons:"
msgstr ""
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -743,13 +712,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr ""
@@ -761,7 +729,10 @@ msgstr ""
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr ""
@@ -834,34 +805,33 @@ msgstr ""
msgid "Case Notes"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr ""
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr ""
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr ""
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "این شیفت"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "موارد کامل شده"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "موارد کامل شده در هر ساعت"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "این پروژه"
@@ -929,7 +899,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -968,8 +940,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -985,8 +956,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -1006,11 +976,11 @@ msgstr "آدرس ایمیل درست نیست"
msgid "Email respondent for self completion"
msgstr "به پاسخگو برای تکمیل فردی ایمیل بزن"
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr "نام"
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr "نام خانوادگی"
@@ -1030,11 +1000,13 @@ msgstr ""
msgid "Appointment List"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1046,7 +1018,8 @@ msgstr ""
msgid "No future appointments scheduled"
msgstr ""
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1082,13 +1055,11 @@ msgstr ""
"لطفا صبر کنید که این تماس انجام شود قبل از اینکه تلاش کنید تا با سرپرست تماس "
"بگیرید"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1096,27 +1067,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1134,23 +1105,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1158,27 +1126,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1186,13 +1151,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1252,7 +1215,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1264,36 +1227,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1310,8 +1282,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1319,11 +1290,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1343,38 +1314,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1382,9 +1354,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1400,11 +1370,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1416,7 +1386,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1428,27 +1398,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1467,8 +1437,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1476,38 +1445,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1515,45 +1478,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1597,7 +1558,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1633,13 +1594,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1647,7 +1606,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1656,191 +1616,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr ""
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr ""
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1856,22 +1825,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1924,7 +1904,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1936,32 +1915,27 @@ msgstr ""
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr ""
@@ -1989,35 +1963,32 @@ msgstr ""
msgid "Secs"
msgstr ""
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr ""
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2029,7 +2000,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2053,13 +2024,14 @@ msgstr ""
msgid "Shift"
msgstr ""
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2125,17 +2097,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2145,17 +2112,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2163,11 +2128,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2181,11 +2144,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2193,7 +2158,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2248,8 +2214,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2259,9 +2224,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2284,9 +2249,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr ""
@@ -2298,8 +2262,36 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2315,9 +2307,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2325,8 +2315,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2414,8 +2403,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2431,8 +2419,7 @@ msgstr ""
msgid "tool"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2472,11 +2459,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2496,8 +2483,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr ""
@@ -2521,7 +2507,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2529,8 +2515,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2546,71 +2531,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2627,13 +2612,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2897,7 +2880,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr ""
@@ -2929,7 +2912,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2937,11 +2920,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr ""
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2958,30 +2941,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2992,8 +2979,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3046,8 +3032,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3091,8 +3076,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3136,8 +3120,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3275,23 +3258,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3311,8 +3302,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3332,39 +3322,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3372,19 +3373,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3487,10 +3488,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3541,13 +3540,11 @@ msgstr ""
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3576,10 +3573,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/fr/LC_MESSAGES/fr.mo b/locale/fr/LC_MESSAGES/fr.mo
index 2494ef47..159ce477 100644
Binary files a/locale/fr/LC_MESSAGES/fr.mo and b/locale/fr/LC_MESSAGES/fr.mo differ
diff --git a/locale/fr/LC_MESSAGES/fr.po b/locale/fr/LC_MESSAGES/fr.po
index 923f177b..6e2a3509 100644
--- a/locale/fr/LC_MESSAGES/fr.po
+++ b/locale/fr/LC_MESSAGES/fr.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: French \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr ""
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Jamais appelé(e)"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Date/Heure"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr ""
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Résultat"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr ""
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Pas d'opérateur"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr ""
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Retour"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr ""
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr ""
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Rendez-vous"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr ""
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Notes"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Détails du contact"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Historique des appels"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr ""
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Rendez-vous"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Performance"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr ""
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Informations du projet"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Informations"
@@ -175,9 +169,7 @@ msgstr "Informations"
msgid "Stop REC"
msgstr "Arrêter l'enregistrement"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Enregistrement"
@@ -185,8 +177,7 @@ msgstr "Enregistrement"
msgid "Beginning recording..."
msgstr "Début de l'enregistrement"
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Pas d'appel en cours, ne pas commencer l'enregistrement"
@@ -194,8 +185,8 @@ msgstr "Pas d'appel en cours, ne pas commencer l'enregistrement"
msgid "Begin the manual recording now..."
msgstr "Commencer l'enregistrement manuel maintenant"
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Enregistrer"
@@ -207,43 +198,47 @@ msgstr "Arrêter l'enregistrement"
msgid "Stop the manual recording now..."
msgstr "Arrêter l'enregistrement manuel maintenant"
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr ""
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Vous êtes : "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Oui - Reprenez là où nous nous sommes arrêtés"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Appel non abouti : refus de l'appelé"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr ""
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Oui - Continuez"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr ""
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr "Appel non abouti : hors panel (déjà interrogé par un autre moyen)"
@@ -277,7 +272,7 @@ msgstr ""
msgid "Select phone number:"
msgstr "Sélectionner le numéro de téléphone :"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Aucun"
@@ -303,7 +298,7 @@ msgstr ""
msgid "Accept appointment from "
msgstr ""
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr ""
@@ -319,7 +314,8 @@ msgstr "activé"
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -327,7 +323,7 @@ msgstr ""
msgid "Call List"
msgstr "Liste d'appels"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Aucun appel réalisé"
@@ -335,12 +331,17 @@ msgstr "Aucun appel réalisé"
msgid "Number called"
msgstr "Numéro appelé"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Opérateur"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr ""
@@ -348,15 +349,18 @@ msgstr ""
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Terminer"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr ""
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Superviseur"
@@ -364,11 +368,12 @@ msgstr "Superviseur"
msgid "Restart"
msgstr ""
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr ""
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -380,7 +385,11 @@ msgstr "Information"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -392,8 +401,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -409,116 +417,82 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Appel"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr ""
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr ""
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
"Appuyer sur le bouton d'appel pour composer le numéro de votre rendez-vous :"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Numéro à appeler :"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Sélectionner le numéro à composer"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr ""
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
"Indiquer la raison de l'échec de l'appel avant de terminer ce dossier"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr ""
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr ""
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Erreur : fermer la fenêtre"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr ""
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Appel répondu"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Raccrocher"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Sonnerie"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Répondu"
@@ -546,7 +520,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -574,58 +550,50 @@ msgstr ""
msgid "Go back to work"
msgstr "Retour au travail"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "État"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Nom"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr ""
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Téléphone Professionnel"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Répondeur"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr "Appel non abouti : pas de réponse (occupé ou sonne dans le vide) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Appel non abouti : raccrochage accidentel"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Appel non abouti : refus par une personne inconnue"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr "Appel non abouti : appelé jamais disponible à ce numéro"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -639,8 +607,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Démarrer"
@@ -648,12 +618,14 @@ msgstr "Démarrer"
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Questionnaire"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -661,48 +633,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr ""
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr ""
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Revenir en arrière"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr ""
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Var"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Valeur"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -726,8 +696,7 @@ msgstr ""
msgid "Reasons:"
msgstr "Raisons"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -739,13 +708,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr "Questionnaires attribués"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Description"
@@ -757,7 +725,10 @@ msgstr "Erreur : Aucun questionnaire ne vous a été attribué"
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Échantillon"
@@ -830,34 +801,33 @@ msgstr ""
msgid "Case Notes"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Ajouter une note"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Pas de notes"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Note"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Complétions"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Réalisations par heure"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Ce projet"
@@ -925,7 +895,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -964,8 +936,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -981,8 +952,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -1002,11 +972,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1026,11 +996,13 @@ msgstr ""
msgid "Appointment List"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1042,7 +1014,8 @@ msgstr ""
msgid "No future appointments scheduled"
msgstr ""
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1076,13 +1049,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1090,27 +1061,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Date"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1128,23 +1099,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1152,27 +1120,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1180,13 +1145,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "Fermé"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "Ouvrir"
@@ -1246,7 +1209,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1258,36 +1221,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1304,8 +1276,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1313,11 +1284,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Heure de démarrage"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "Heure de fin"
@@ -1337,38 +1308,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Supprimer"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Éditer"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Nom de famille"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1376,9 +1348,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1394,11 +1364,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "pour"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1410,7 +1380,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1422,27 +1392,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1461,8 +1431,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1470,38 +1439,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "Appels"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Temps total"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr "Heure de l'appel"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1509,45 +1472,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1591,7 +1552,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1627,13 +1588,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1641,7 +1600,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1650,191 +1610,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Sortie des données"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Configuration du système"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1850,22 +1819,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1918,7 +1898,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1930,32 +1909,27 @@ msgstr "Rechercher:"
msgid "Start search"
msgstr "Lancer la recherche"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Numéro"
@@ -1983,35 +1957,32 @@ msgstr "Min"
msgid "Secs"
msgstr "Secs"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Taux"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Comptes"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr "%"
@@ -2023,7 +1994,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2047,13 +2018,14 @@ msgstr ""
msgid "Shift"
msgstr "Shift"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2119,17 +2091,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2139,17 +2106,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2157,11 +2122,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2175,11 +2138,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2187,7 +2152,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2242,8 +2208,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2253,9 +2218,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2278,9 +2243,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Jour"
@@ -2292,8 +2256,36 @@ msgstr ""
msgid "Submit changes"
msgstr "Valider les modifications"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2309,9 +2301,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "comme"
@@ -2319,8 +2309,7 @@ msgstr "comme"
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2408,8 +2397,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2425,8 +2413,7 @@ msgstr ""
msgid "tool"
msgstr "outil"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2466,11 +2453,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2490,8 +2477,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Ajouter un utilisateur"
@@ -2515,7 +2501,7 @@ msgstr "Liée à"
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2523,8 +2509,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2540,71 +2525,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2621,13 +2606,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2891,7 +2874,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr ""
@@ -2923,7 +2906,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2931,11 +2914,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Projet"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2952,30 +2935,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Ajouter une ligne"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2986,8 +2973,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3040,8 +3026,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3085,8 +3070,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3130,8 +3114,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3269,23 +3252,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Fuseau horaire : "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr "Tous les fuseaux horaires"
@@ -3305,8 +3296,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3326,39 +3316,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3366,19 +3367,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3481,10 +3482,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3535,13 +3534,11 @@ msgstr ""
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3570,10 +3567,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/gl/LC_MESSAGES/gl.mo b/locale/gl/LC_MESSAGES/gl.mo
index 27027056..ca1c2087 100644
Binary files a/locale/gl/LC_MESSAGES/gl.mo and b/locale/gl/LC_MESSAGES/gl.mo differ
diff --git a/locale/gl/LC_MESSAGES/gl.po b/locale/gl/LC_MESSAGES/gl.po
index 51fda09d..6309afb2 100644
--- a/locale/gl/LC_MESSAGES/gl.po
+++ b/locale/gl/LC_MESSAGES/gl.po
@@ -7,169 +7,163 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Galician \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Listaxe do Hitorial de Casos"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Non se fixeron chamadas"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Data/Hora"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "ID de caso"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Estado"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Entrevistado/a"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Sen operador/a"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Selección do/a entrevistado/a - Contestador automático"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Non deixe unha mensaxe, por favor colgue"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Finalizar a chamada co estado: Contestador automático de negocio"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
"Finalizar a chamada co estado: Contestador automático (deixouse mensaxe)"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
"Finalizar a chamada co estado: Contestador automático (non se deixou mensaxe)"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Voltar"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Selección do/a entrevistado/a - Respostas de negocios"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Sinto molestalo/a, trabuqueime co número"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Finallizar a chamada co estado: Número dun negocio"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Rechamada"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Finallizar o traballo"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Notas"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr ""
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Historial de chamadas"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Quendas"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Rechamadas"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Rendemento"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Historial de traballo"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr ""
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Información"
@@ -177,9 +171,7 @@ msgstr "Información"
msgid "Stop REC"
msgstr "Deter a gravación"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Gravación"
@@ -187,8 +179,7 @@ msgstr "Gravación"
msgid "Beginning recording..."
msgstr "A comezar a gravación..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Non se está a chamar, por iso non está a iniciar a gravación"
@@ -196,8 +187,8 @@ msgstr "Non se está a chamar, por iso non está a iniciar a gravación"
msgid "Begin the manual recording now..."
msgstr "Comezar a gravación manual agora..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Comezar a gravación"
@@ -209,37 +200,40 @@ msgstr "A deter a gravación..."
msgid "Stop the manual recording now..."
msgstr "Deter a gravación manual agora..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Selección do/a Entrevistado/a - Volver chamar"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Vostede é: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr "% completado"
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Si - Continuar onde o deixamos"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Finallizar a chamada co estado: Rexeitada polo/a entrevistado/a"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Selección do/a entrevistado/a - Introdución do Proxecto"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Si - Continuar"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -247,7 +241,8 @@ msgstr ""
"Finallizar a chamada co estado: Non hai persoas elixíbeis (persoa non "
"dispoñíbel neste número)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -282,7 +277,7 @@ msgstr "Engadir este/a entrevistado/a"
msgid "Select phone number:"
msgstr "Escoller o número de teléfono:"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Ningún"
@@ -306,7 +301,7 @@ msgstr "Rechamada:"
msgid "Accept appointment from "
msgstr "Aceptar a rechamada de "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " até "
@@ -322,7 +317,8 @@ msgstr "para"
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -330,7 +326,7 @@ msgstr ""
msgid "Call List"
msgstr "Listaxe de Chamadas"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Non se fixeron chamadas"
@@ -338,12 +334,17 @@ msgstr "Non se fixeron chamadas"
msgid "Number called"
msgstr "Número chamado"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operador/a"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Sen caso"
@@ -351,15 +352,18 @@ msgstr "Sen caso"
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Finallizar"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Chamar/Colgar"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Supervisor/a"
@@ -367,11 +371,12 @@ msgstr "Supervisor/a"
msgid "Restart"
msgstr ""
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr ""
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -383,7 +388,11 @@ msgstr "Información"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -395,8 +404,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -412,55 +420,32 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Chamada"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Non a chamar"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Finallizar o caso"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "Calque o botón de chamar para marcar o número desta rechamada:"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Número para chamar:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -468,60 +453,49 @@ msgstr ""
"O seu complemento de VoIP non está activado. Por favor, peche esta xanela e "
"active a VoIP calcando unha vez no botón vermello que pon 'VoIP Desactivada'"
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Escoller o número de teléfono a marcar:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "A última chamada xa completou este intento de chamada"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "Introduza unha razón para este estado antes de completar este caso:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Require codificación"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Asignar estado"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Erro: Pechar a xanela"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "A solicitar a chamada"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Chamara Atendida"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Colgar"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "A Soar"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Respondida"
@@ -549,7 +523,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -577,53 +553,46 @@ msgstr ""
msgid "Go back to work"
msgstr "Voltar ao traballo"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Estado"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Nome"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Selección do/a entrevistado/a - Introdución"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Número do traballo"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Contestador automático"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
"Finallizar a chamada co estado: Sen resposta (acaba de soar ou ocupado) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Finallizar a chamada co estado: Corte accidental"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr ""
"Finallizar a chamada co estado: Rexeitada por unha persoa descoñecida"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
@@ -631,8 +600,7 @@ msgstr ""
"Finallizar a chamada co estado: Non hai entrevistados/as elixíbeis (persoa "
"nunca dispoñíbel neste número)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -648,8 +616,10 @@ msgstr "Lista de Quendas"
msgid "No shifts for this project"
msgstr "Non hai quendas para este proxecto"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Comezar"
@@ -657,12 +627,14 @@ msgstr "Comezar"
msgid "No future shifts scheduled"
msgstr "Non hai quendas previstas"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Cuestionario"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -670,48 +642,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Finaliza r a chamada co estado: Completado"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Engadir un entrevistado/a"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Voltar"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "ID de caso:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Entrevistado/a:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Var"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Valor"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -735,8 +705,7 @@ msgstr "Neste intre non hai casos dispoñíbeis"
msgid "Reasons:"
msgstr "Razóns:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -748,13 +717,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr "Cuestionarios asignados:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Descrición"
@@ -766,7 +734,10 @@ msgstr "ERRO: Non ten asignado ningún cuestionario"
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Mostra"
@@ -842,34 +813,33 @@ msgstr "POSÍBEL ERRO: Atinxiuse a cota de fila para esta pregunta"
msgid "Case Notes"
msgstr "Notas do caso"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Engadir unha nota"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Sen notas"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Nota"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Esta quenda"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Entrevistas"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Entrevistas por hora"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Este proxecto"
@@ -937,7 +907,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -976,8 +948,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -993,8 +964,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr "Selección do/a Entrevistado - Fin da Cota do Proxecto"
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr "Finallizar a chamada co estado: Cota completa"
@@ -1014,11 +984,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1038,11 +1008,13 @@ msgstr ""
msgid "Appointment List"
msgstr "Listaxe de Rechamadas"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Non se chamou aínda"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1054,7 +1026,8 @@ msgstr "Non se concertaron rechamadas"
msgid "No future appointments scheduled"
msgstr "Non hai rechamadas previstas"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1092,13 +1065,11 @@ msgstr ""
"Por favor, agarde a que respondan a chamada antes de tentar chamar o/a "
"supervisor/a"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "Proceso en curso:"
@@ -1106,29 +1077,29 @@ msgstr "Proceso en curso:"
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
"O proceso xa se pechou (ex.: reiniciouse o servidor) - calque aquí para "
"confirmar"
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Matar o proceso en curso"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Data"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1146,23 +1117,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "Estado do último proceso executado (se houber)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "Listaxe do Historial de Chamadas"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "Data/Hora de comezo da chamada"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "Hora de finalización"
@@ -1170,27 +1138,24 @@ msgstr "Hora de finalización"
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "Asignar clientes aos cuestionarios"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr "Informe de cotas"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Escolla un cuestionario da lista inferior"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Escolla unha mostra da lista inferior"
@@ -1198,13 +1163,11 @@ msgstr "Escolla unha mostra da lista inferior"
msgid "Total sample"
msgstr "Mostra total"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "pechado"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "aberto"
@@ -1264,7 +1227,7 @@ msgstr "Por favor, retroceda no seu navegador e arranxe o problema"
msgid "Import: Select columns to import"
msgstr "Importar: Escolla as columnas a importar"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Importar: Escolla o ficheiro a cargar"
@@ -1276,36 +1239,45 @@ msgstr "Escoller o ficheiro de mostra CSV a cargar:"
msgid "Description for file:"
msgstr "Descrición do ficheiro:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "Engadir unha mostra"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1322,8 +1294,7 @@ msgstr "Borrouse a rechamada. Agora debe modificar o estado do caso"
msgid "Modify case outcome"
msgstr "Modificar o estado do caso"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr "Editar a rechamada"
@@ -1331,11 +1302,11 @@ msgstr "Editar a rechamada"
msgid "Contact phone"
msgstr "Teléfono de contacto"
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Hora de comezo"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "Hora de finalización"
@@ -1355,38 +1326,39 @@ msgstr "Amosar as Rechamadas"
msgid "All appointments (with times displayed in your time zone)"
msgstr "Todas as rechamadas (coas horas amosadas no seu fuso horario)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Borrar"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Editar"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "Nome do/a operador/a"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "Nome do/a entrevistado/a"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Apelido"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "Estado actual"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "Operador/a que chamou"
@@ -1394,9 +1366,7 @@ msgstr "Operador/a que chamou"
msgid "No appointments in the future"
msgstr "Non hai rechamadas previstas"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr "Xestión de cotas"
@@ -1412,11 +1382,11 @@ msgstr "Non hai cotas"
msgid "Stop calling this sample when:"
msgstr "Deixar de chamar a esta mostra cando:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "para"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr "entrevistas"
@@ -1428,7 +1398,7 @@ msgstr "Cubriuse a cota"
msgid "Quota not yet reached"
msgstr "Non se cubriu a cota"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr "Entrevistas actuais "
@@ -1440,27 +1410,27 @@ msgstr "Escolla unha pregunta para a cota"
msgid "Enter the details for creating the quota:"
msgstr "Introduza os detalles para crear a cota:"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr "Valores predefinidos para esta pregunta:"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr "Non se definiron etiquetas para este cuestionario"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr "Valor de código"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr "O valor de código a comparar"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr "A clase de comparación"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr "Número de entrevistas no que parar de chamar"
@@ -1479,8 +1449,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr "Modificar o nivel dos/das operadores/as"
@@ -1488,38 +1457,32 @@ msgstr "Modificar o nivel dos/das operadores/as"
msgid "Operator Performance"
msgstr "Rendemento do/a operador/a"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "Por favor, escolla un cuestionario"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "Chamadas"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Tempo total"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr "Tempo de chamadas"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr "Entrevistas / h"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr "Chamadas / h"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr "Efectividade"
@@ -1527,45 +1490,43 @@ msgstr "Efectividade"
msgid "till"
msgstr "até"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Por favor, escolla unha quenda"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr "Informes da quenda"
@@ -1609,7 +1570,7 @@ msgstr "Ferramentas Administrativas"
msgid "Questionnaire creation and management"
msgstr "Xestión e creación de cuestionarios"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1645,13 +1606,11 @@ msgstr "Asignar mostras a cuestionarios"
msgid "Set values in questionnaire to pre fill"
msgstr "Establecer os valores do cuestionario a preencher"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr "Xestión de filas de cotas"
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1659,7 +1618,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr "Engadir operadores/as ao sistema"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "Asignar operadores/as aos cuestionarios"
@@ -1668,193 +1628,202 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr "Xestión de quendas (engadir/eliminar)"
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "Progreso do cuestionario"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "Amosar todas as rechamadas previstas"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr "Informe de intentos das chamadas de mostra"
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr "Estados do cuestionario"
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Saída de datos"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "Rendemento do/a operador/a"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "Xestión de clientes"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "Engadir clientes ao sistema"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "Funcións do supervisor"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "Asignar estados a casos"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Buscar na mostra"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Configuración do sistema"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr "Establecer a lista predeterminada de fusos horarios"
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr "Establecer os horarios predeterminados das quendas"
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr "Establecer restricións temporais de chamada"
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr "Comezar e supervisar VoIP"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr "Asignar unha Mostra: Escolla a mostra para asignar"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr "Máximo de chamadas (0 para non limitalas)"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr "Máximo de intentos de chamada (0 para non limitalos)"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
"Máximo de mensaxes de contestador a deixar por caso (0 para non limitalas)"
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
"Escoller aleatoriamente da mostra? (secuencialmente en caso contrario)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr "Mostras seleccionadas para este cuestionario"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr "Premer para desmarcar"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr "Escolla a mostra para este cuestionario:"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "Escolla a mostra:"
@@ -1870,22 +1839,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1938,7 +1918,6 @@ msgid "Search within this sample"
msgstr "Buscar dentro desta mostra"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr "Usar o carácter % como comodín"
@@ -1950,32 +1929,27 @@ msgstr "Buscar por:"
msgid "Start search"
msgstr "Comezar a busca"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr "Estados do Cuestionario"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr "Estados"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "Estado da mostra"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr "Extraídos da mostra"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr "Restantes na mostra"
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Número"
@@ -2003,35 +1977,32 @@ msgstr "Mínimo"
msgid "Secs"
msgstr "s"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Taxa"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr "Taxa de Resposta 1"
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr "Taxa de Rexeitamento 1"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr "Taxa de Cooperación 1"
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr "Taxa de Contacto 1"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Contaxe"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr "%"
@@ -2043,7 +2014,7 @@ msgstr "Estados da chamada de operador"
msgid "No outcomes recorded for this sample"
msgstr "Non se rexistraron estados nesta mostra"
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr "Non se rexistraron estados neste cuestionario"
@@ -2067,13 +2038,14 @@ msgstr "Non se definiron quendas neste cuestionario"
msgid "Shift"
msgstr "Quenda"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr "Informe da quenda"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr "Proceso de Supervisión de VoIP"
@@ -2142,17 +2114,12 @@ msgstr "ou: Escolla o predeterminado na listaxe da mostra"
msgid "Add pre fill"
msgstr "Engadir predefinida"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2162,17 +2129,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2180,11 +2145,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2198,11 +2161,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2210,7 +2175,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2265,8 +2231,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr "Engadir quendas"
@@ -2276,9 +2241,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2303,9 +2268,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Día"
@@ -2317,8 +2281,36 @@ msgstr "Usar quendas?"
msgid "Submit changes"
msgstr "Enviar os cambios"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr "Cotas copiadas"
@@ -2334,9 +2326,7 @@ msgstr "Sen cotas de fila neste intre"
msgid "Replicate: Where"
msgstr "Replicar: Onde"
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "como"
@@ -2344,8 +2334,7 @@ msgstr "como"
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr "filas desta mostra cando:"
@@ -2434,8 +2423,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "Engadir un/unha operador/a"
@@ -2452,8 +2440,7 @@ msgstr "Asignar un/unha Operador ao Cuestionario"
msgid "tool"
msgstr "ferramenta"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2497,11 +2484,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr "Usará este/a operador/a a VoIP?"
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2521,8 +2508,7 @@ msgstr "É o/a operador/a un/unha supervisor/a?"
msgid "Is the operator a refusal converter?"
msgstr "É este/a operador/a un/unha conversor/a de rexeitamentos?"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Engadir un/unha usuario/a"
@@ -2546,7 +2532,7 @@ msgstr "ligado a"
msgid "Error: Failed to insert questionnaire"
msgstr "Erro: Fallou o inserimento do cuestionario"
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "Nome para o cuestionario:"
@@ -2554,8 +2540,7 @@ msgstr "Nome para o cuestionario:"
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2571,72 +2556,72 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr "Restrinxir as rechamadas ás quendas?"
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr "Restrinxir o traballo ás quendas?"
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr "Cuestionario só para probas?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr "Introdución da selección do/a entrevistado/a:"
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr "Introdución do proxecto de selección do/a entrevistado/a:"
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
"Rechamada de selección do/a entrevistado/a (cuestionario xa comezado)"
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr "Mensaxe a deixar no contestador automático:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2653,13 +2638,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2923,7 +2906,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Número de teléfono"
@@ -2955,7 +2938,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2963,11 +2946,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Proxecto"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "Estado actual:"
@@ -2984,14 +2967,14 @@ msgid "Cannot connect to VoIP Server"
msgstr "Non se pode conectar co servidor VoIP"
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
@@ -2999,17 +2982,21 @@ msgstr ""
"Introduza as horas de comezo e finalización para cada día da semana nas que "
"restrinxir as chamadas"
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Engadir unha fila"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -3020,8 +3007,7 @@ msgstr "Non se puido engadir"
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "Engadir un cliente"
@@ -3079,8 +3065,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr "Gardar os cambios nas quendas"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3124,8 +3109,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3169,8 +3153,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3308,23 +3291,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "Engadir/Eliminar Fusos Horarios"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr "Calque para eliminar un Fuso Horario da listaxe predeterminada"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr "Engadir un Fuso Horario:"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Fuso Horario: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr "Engadir un Fuso Horario"
@@ -3344,8 +3335,7 @@ msgstr "Escoller o caso"
msgid "Set an outcome for this call"
msgstr "Establecer o estado para esta chamada"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr "Establecer o estado"
@@ -3365,39 +3355,50 @@ msgstr "Lista de chamadas"
msgid "Change outcome"
msgstr "Mudar o estado"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr "Notas do caso"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr "Modificar as respostas para este caso"
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr "O caso non comezou en Limesurve aínda"
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr "Establecer o estado do caso"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "O caso non existe"
@@ -3405,19 +3406,19 @@ msgstr "O caso non existe"
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "mañá"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "tarde"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "noite"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3522,10 +3523,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr " Extensión "
@@ -3576,13 +3575,11 @@ msgstr "Non lle foi asignado cuestionario ningún"
msgid "You are not a valid client"
msgstr "Vostede non é un cliente válido"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3611,10 +3608,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/he/LC_MESSAGES/he.mo b/locale/he/LC_MESSAGES/he.mo
index 86375a38..7978fc9d 100644
Binary files a/locale/he/LC_MESSAGES/he.mo and b/locale/he/LC_MESSAGES/he.mo differ
diff --git a/locale/he/LC_MESSAGES/he.po b/locale/he/LC_MESSAGES/he.po
index 7e27e673..c214f73b 100644
--- a/locale/he/LC_MESSAGES/he.po
+++ b/locale/he/LC_MESSAGES/he.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-12-30 05:48+0000\n"
"Last-Translator: Gal Zilberman \n"
"Language-Team: Hebrew \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "רשימת התקשרויות קודמות"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "לא בוצעו שיחות בעבר"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "תאריך/שעה"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "קוד מקרה"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "תוצאה"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr ""
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr ""
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "אין להשאיר הודעה, נא לנתק"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "סיום שיחה עם תוצאה: מזכירה אלקטרונית עיסקית"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr "סיום שיחה עם תוצאה: הושארה הודעה במענה קולי"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr "סיום שיחה עם תוצאה: מענה קולי לא הושארה הודעה"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "חזרה"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "מתנצל על ההטרדה, חייגתי למספר שגוי"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "סיום שיחה עם תוצאה: מספר עסקי"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr ""
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "פגישה"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr "דוא\"ל"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "סיום עבודה"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "הערות"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "פרטי יצירת־קשר"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "היסטורית שיחות"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "משמרות"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "פגישות"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "ביצועים"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "היסטורית עבודה"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "פרטי הפרוייקט"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "פרטים"
@@ -175,9 +169,7 @@ msgstr "פרטים"
msgid "Stop REC"
msgstr ""
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr ""
@@ -185,8 +177,7 @@ msgstr ""
msgid "Beginning recording..."
msgstr ""
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr ""
@@ -194,8 +185,8 @@ msgstr ""
msgid "Begin the manual recording now..."
msgstr ""
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "התחל הקלטה"
@@ -207,43 +198,47 @@ msgstr ""
msgid "Stop the manual recording now..."
msgstr ""
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr ""
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr ""
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr ""
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr ""
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr ""
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "כן - המשך"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr ""
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -277,7 +272,7 @@ msgstr ""
msgid "Select phone number:"
msgstr ""
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr ""
@@ -301,7 +296,7 @@ msgstr ""
msgid "Accept appointment from "
msgstr ""
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr ""
@@ -317,7 +312,8 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -325,7 +321,7 @@ msgstr ""
msgid "Call List"
msgstr ""
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr ""
@@ -333,12 +329,17 @@ msgstr ""
msgid "Number called"
msgstr ""
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr ""
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr ""
@@ -346,15 +347,18 @@ msgstr ""
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "סיום"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "חיוג/ניתוק"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "מפקח"
@@ -362,11 +366,12 @@ msgstr "מפקח"
msgid "Restart"
msgstr "התחל מחדש"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "זמינות"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr "שיחה עם מפקח"
@@ -378,7 +383,11 @@ msgstr ""
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -390,8 +399,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -407,55 +415,32 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "שיחה"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr ""
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "סיום מקרה"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "לחץ על כפתור החיוג על מנת להתקשר למספר עבור פגישה זו"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "מספר לחיוג"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -463,60 +448,49 @@ msgstr ""
"הרחבת VoIP איננה מופעלת, נא לסגור חלון זה ולהפעיל את הרחבת VoIP ע\"י לחיצה "
"אחת על הכפתור האדום אשר רשום עליו \"VoIP כבוי\""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "בחר מספר טלפון לחיוג"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr ""
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "הכנס סיבה לתוצאה זו לפני השלמת המקרה"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "מצריך קידוד"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "הקצה תוצאה"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "תקלה: סגור חלון"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "מבקש שיחה"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "שיחה נענתה"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "נתק"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "מצלצל"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "נענה"
@@ -544,7 +518,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -572,58 +548,50 @@ msgstr ""
msgid "Go back to work"
msgstr ""
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "סטאטוס"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "שם"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "אין יותר מספרים לחיוג"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr ""
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "מספר עיסקי"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "משיבון"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "סיום שיחה עם תוצאה: ניתוק בטעות"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr ""
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr ""
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -637,8 +605,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr ""
@@ -646,12 +616,14 @@ msgstr ""
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr ""
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -659,48 +631,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr ""
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "הוסף משיב"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "חזור"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "קוד מקרה"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "משיב"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "ערך"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -724,8 +694,7 @@ msgstr ""
msgid "Reasons:"
msgstr ""
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -737,13 +706,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr ""
@@ -755,7 +723,10 @@ msgstr ""
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr ""
@@ -828,34 +799,33 @@ msgstr ""
msgid "Case Notes"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr ""
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr ""
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr ""
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr ""
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr ""
@@ -923,7 +893,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -962,8 +934,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -979,8 +950,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -1000,11 +970,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1024,11 +994,13 @@ msgstr ""
msgid "Appointment List"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1040,7 +1012,8 @@ msgstr ""
msgid "No future appointments scheduled"
msgstr ""
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1074,13 +1047,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1088,27 +1059,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1126,23 +1097,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1150,27 +1118,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1178,13 +1143,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1244,7 +1207,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1256,36 +1219,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1302,8 +1274,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1311,11 +1282,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1335,38 +1306,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1374,9 +1346,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1392,11 +1362,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1408,7 +1378,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1420,27 +1390,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1459,8 +1429,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1468,38 +1437,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1507,45 +1470,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1589,7 +1550,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1625,13 +1586,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1639,7 +1598,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1648,191 +1608,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr ""
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr ""
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1848,22 +1817,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1916,7 +1896,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1928,32 +1907,27 @@ msgstr ""
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr ""
@@ -1981,35 +1955,32 @@ msgstr ""
msgid "Secs"
msgstr ""
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr ""
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2021,7 +1992,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2045,13 +2016,14 @@ msgstr ""
msgid "Shift"
msgstr ""
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2117,17 +2089,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2137,17 +2104,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2155,11 +2120,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2173,11 +2136,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2185,7 +2150,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2240,8 +2206,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2251,9 +2216,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2276,9 +2241,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr ""
@@ -2290,8 +2254,36 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2307,9 +2299,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2317,8 +2307,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2406,8 +2395,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2423,8 +2411,7 @@ msgstr ""
msgid "tool"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2464,11 +2451,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2488,8 +2475,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr ""
@@ -2513,7 +2499,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2521,8 +2507,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2538,71 +2523,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2619,13 +2604,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2889,7 +2872,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr ""
@@ -2921,7 +2904,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2929,11 +2912,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr ""
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2950,30 +2933,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2984,8 +2971,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3038,8 +3024,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3083,8 +3068,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3128,8 +3112,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3267,23 +3250,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3303,8 +3294,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3324,39 +3314,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3364,19 +3365,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3479,10 +3480,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3533,13 +3532,11 @@ msgstr ""
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3568,10 +3565,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/id/LC_MESSAGES/id.mo b/locale/id/LC_MESSAGES/id.mo
index fb07c69b..fb5f23a3 100644
Binary files a/locale/id/LC_MESSAGES/id.mo and b/locale/id/LC_MESSAGES/id.mo differ
diff --git a/locale/id/LC_MESSAGES/id.po b/locale/id/LC_MESSAGES/id.po
index d3536e7e..06ff3a6e 100644
--- a/locale/id/LC_MESSAGES/id.po
+++ b/locale/id/LC_MESSAGES/id.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Indonesian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr ""
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr ""
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr ""
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr ""
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr ""
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr ""
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr ""
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr ""
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr ""
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr ""
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr ""
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr ""
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr ""
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr ""
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr ""
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr ""
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr ""
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr ""
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr ""
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr ""
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr ""
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr ""
@@ -175,9 +169,7 @@ msgstr ""
msgid "Stop REC"
msgstr ""
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr ""
@@ -185,8 +177,7 @@ msgstr ""
msgid "Beginning recording..."
msgstr ""
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr ""
@@ -194,8 +185,8 @@ msgstr ""
msgid "Begin the manual recording now..."
msgstr ""
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr ""
@@ -207,43 +198,47 @@ msgstr ""
msgid "Stop the manual recording now..."
msgstr ""
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr ""
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr ""
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr ""
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr ""
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr ""
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr ""
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr ""
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -277,7 +272,7 @@ msgstr ""
msgid "Select phone number:"
msgstr ""
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr ""
@@ -301,7 +296,7 @@ msgstr ""
msgid "Accept appointment from "
msgstr ""
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr ""
@@ -317,7 +312,8 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -325,7 +321,7 @@ msgstr ""
msgid "Call List"
msgstr ""
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr ""
@@ -333,12 +329,17 @@ msgstr ""
msgid "Number called"
msgstr ""
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr ""
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr ""
@@ -346,15 +347,18 @@ msgstr ""
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr ""
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr ""
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr ""
@@ -362,11 +366,12 @@ msgstr ""
msgid "Restart"
msgstr ""
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr ""
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -378,7 +383,11 @@ msgstr ""
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -390,8 +399,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -407,114 +415,80 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr ""
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr ""
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr ""
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr ""
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr ""
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr ""
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr ""
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr ""
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr ""
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr ""
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr ""
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr ""
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr ""
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr ""
@@ -542,7 +516,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -570,58 +546,50 @@ msgstr ""
msgid "Go back to work"
msgstr ""
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr ""
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr ""
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr ""
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr ""
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr ""
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr ""
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr ""
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr ""
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -635,8 +603,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr ""
@@ -644,12 +614,14 @@ msgstr ""
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr ""
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -657,48 +629,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr ""
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr ""
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr ""
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr ""
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr ""
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -722,8 +692,7 @@ msgstr ""
msgid "Reasons:"
msgstr ""
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -735,13 +704,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr ""
@@ -753,7 +721,10 @@ msgstr ""
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr ""
@@ -826,34 +797,33 @@ msgstr ""
msgid "Case Notes"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr ""
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr ""
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr ""
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr ""
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr ""
@@ -921,7 +891,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -960,8 +932,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -977,8 +948,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -998,11 +968,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1022,11 +992,13 @@ msgstr ""
msgid "Appointment List"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1038,7 +1010,8 @@ msgstr ""
msgid "No future appointments scheduled"
msgstr ""
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1072,13 +1045,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1086,27 +1057,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1124,23 +1095,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1148,27 +1116,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1176,13 +1141,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1242,7 +1205,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1254,36 +1217,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1300,8 +1272,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1309,11 +1280,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1333,38 +1304,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1372,9 +1344,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1390,11 +1360,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1406,7 +1376,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1418,27 +1388,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1457,8 +1427,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1466,38 +1435,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1505,45 +1468,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1587,7 +1548,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1623,13 +1584,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1637,7 +1596,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1646,191 +1606,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr ""
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr ""
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1846,22 +1815,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1914,7 +1894,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1926,32 +1905,27 @@ msgstr ""
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr ""
@@ -1979,35 +1953,32 @@ msgstr ""
msgid "Secs"
msgstr ""
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr ""
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2019,7 +1990,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2043,13 +2014,14 @@ msgstr ""
msgid "Shift"
msgstr ""
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2115,17 +2087,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2135,17 +2102,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2153,11 +2118,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2171,11 +2134,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2183,7 +2148,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2238,8 +2204,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2249,9 +2214,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2274,9 +2239,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr ""
@@ -2288,8 +2252,36 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2305,9 +2297,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2315,8 +2305,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2404,8 +2393,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2421,8 +2409,7 @@ msgstr ""
msgid "tool"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2462,11 +2449,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2486,8 +2473,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr ""
@@ -2511,7 +2497,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2519,8 +2505,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2536,71 +2521,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2617,13 +2602,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2887,7 +2870,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr ""
@@ -2919,7 +2902,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2927,11 +2910,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr ""
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2948,30 +2931,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2982,8 +2969,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3036,8 +3022,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3081,8 +3066,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3126,8 +3110,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3265,23 +3248,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3301,8 +3292,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3322,39 +3312,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3362,19 +3363,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3477,10 +3478,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3531,13 +3530,11 @@ msgstr ""
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3566,10 +3563,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/it/LC_MESSAGES/it.mo b/locale/it/LC_MESSAGES/it.mo
index c3f70001..bbce12c0 100644
Binary files a/locale/it/LC_MESSAGES/it.mo and b/locale/it/LC_MESSAGES/it.mo differ
diff --git a/locale/it/LC_MESSAGES/it.po b/locale/it/LC_MESSAGES/it.po
index 29ae0600..f2060fa8 100644
--- a/locale/it/LC_MESSAGES/it.po
+++ b/locale/it/LC_MESSAGES/it.po
@@ -7,169 +7,163 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-12-17 13:37+0000\n"
"Last-Translator: Cristiano Santinello \n"
"Language-Team: Italian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Lista campione"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Non sono mai state fatte chiamate"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Data/ora"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "Identificativo"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Esito"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Intervistato"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Nessun operatore"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Selezione dell'intervistato - segreteria telefonica"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Non lasciare un messaggio, riagganciare"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Termina la chiamata con esito: Segreteria telefonica aziendale"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr "Termina la chiamata con esito: Messaggio lasciato in segreteria"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
"Termina la chiamata con esito: Segreteria telefonica, nessun messaggio "
"lasciato"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Vai indietro"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Selezione dell'intervistato - Azienda"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Mi scusi il disturbo, ho chiamato il numero sbagliato"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Termina la chiamata con l'esito: Numero aziendale"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Appuntamento"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr "Email"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Termina lavoro"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr "Freccia per espandere o contrarre"
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Note"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Contatti"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Cronologia delle chiamate"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Turni"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Appuntamenti"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Prestazioni"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Cronologia del lavoro"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Informazioni sul progetto"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Informazioni generali"
@@ -177,9 +171,7 @@ msgstr "Informazioni generali"
msgid "Stop REC"
msgstr "Ferma reg"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Registra"
@@ -187,8 +179,7 @@ msgstr "Registra"
msgid "Beginning recording..."
msgstr "La registrazione sta iniziando..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Non sto chiamando, quindi non posso registrare"
@@ -196,8 +187,8 @@ msgstr "Non sto chiamando, quindi non posso registrare"
msgid "Begin the manual recording now..."
msgstr "Inizia la registrazione manuale ora..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Registra"
@@ -209,37 +200,40 @@ msgstr "La registrazione si sta fermando..."
msgid "Stop the manual recording now..."
msgstr "Ferma la registrazione manuale ora..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Selezione dell'intervistato - Call back"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Tu sei: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr "% completato"
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Sì - Continua da dove si ha interrotto"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Termina chiamata con esito: Rifiuto a parte dell'intervistato"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Seleziona intervistato - Presentazione del progetto"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Si - continua"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -247,7 +241,8 @@ msgstr ""
"Termina la chiamata con esito: Nessun intervistato idoneo (la persona non è "
"disponibile su questo numero)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -285,7 +280,7 @@ msgstr "Aggiungi questo intervistato"
msgid "Select phone number:"
msgstr "Seleziona numero di telefono:"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Nessuno"
@@ -309,7 +304,7 @@ msgstr "Appuntamento:"
msgid "Accept appointment from "
msgstr "Accetta appuntamento da "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " fino a "
@@ -325,7 +320,8 @@ msgstr "on"
msgid "Appointment with myself only?"
msgstr "Appuntamento solo con me stesso?"
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -333,7 +329,7 @@ msgstr ""
msgid "Call List"
msgstr "Lista di chiamate"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Nessuna chiamata effettuata"
@@ -341,12 +337,17 @@ msgstr "Nessuna chiamata effettuata"
msgid "Number called"
msgstr "Numero chiamato"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operatore"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Nessun caso"
@@ -354,15 +355,18 @@ msgstr "Nessun caso"
msgid "Get a new case"
msgstr "Prendi un nuovo caso"
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Termina"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Chiama/Riaggancia"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Supervisore"
@@ -370,11 +374,12 @@ msgstr "Supervisore"
msgid "Restart"
msgstr "Riavvia"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Disponibilità"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr "Impostazioni della chat con il supervisore"
@@ -386,7 +391,11 @@ msgstr "Informazioni"
msgid "Me"
msgstr "Io"
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr "Identificativo del caso"
@@ -398,8 +407,7 @@ msgstr "Supervisore disponibile"
msgid "Supervisor not available"
msgstr "Supervisore non disponibile"
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr "Messaggio"
@@ -415,56 +423,33 @@ msgstr "Da"
msgid "Supervisor chat is not enabled"
msgstr "La chat con il supervisore non è abilitata"
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Chiama"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Non in chiamata"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Termina caso"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
"Premi il tasto di chiamata per comporre il numero per questo appuntamento:"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Numero da chiamare:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -472,60 +457,49 @@ msgstr ""
"Non è abilitato il VoIP. Chiudi questa finestra e abilita il VoIP premendo "
"una volta sul bottone rosso sul quale è scritto: \"VoIP Off\""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Seleziona il numero di telefono da chiamare:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "L'ultima chiamata ha concluso questo tentativo di chiamata"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "Inserisci un motivo per questo esito prima di completare il caso:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Richiede codificazione"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Assegna esito"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Errore: Chiudi la finestra"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Sto prenotando la chiamata"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Chiamata risposta"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Riaggancia"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Sta squillando"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Risposto"
@@ -553,7 +527,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr "Numero interno"
@@ -581,53 +557,46 @@ msgstr ""
msgid "Go back to work"
msgstr "Torna al lavoro"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Stato"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Nome"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "Nessun altro numero da chiamare"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Selezione intervistato - presentazione"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Numero aziendale"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Segreteria telefonica"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
"Termina chiamata con esito: Nessuna risposta (continua a squillare o "
"occupato) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Termina chiamata con esito: Riaggancio accidentale"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Termina chiamata con esito: Rifiuto di una persona sconosciuta"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
@@ -635,8 +604,7 @@ msgstr ""
"Termina chiamata con esito: Nessun intervistato idoneo (la persona non è mai "
"disponibile su questo numero)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -652,8 +620,10 @@ msgstr "Lista turni"
msgid "No shifts for this project"
msgstr "Nessun turno per questo progetto"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Inizia"
@@ -661,12 +631,14 @@ msgstr "Inizia"
msgid "No future shifts scheduled"
msgstr "Nessun turno previsto in futuro"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Questionario"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr "Selezione dell'intervistato - Fine progetto"
@@ -675,50 +647,48 @@ msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
"Chiamata terminata automaticamente con risultato: Completo - Termina caso"
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Termina chiamata con esito: Completo"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Aggiungi intervistato"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Torna indietro"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "Identificativo:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Intervistato:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Var"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Valore"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
"Seleziona i gruppi per limitare la disponibilità (nessuna selezione "
"significa sempre disponibile)"
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr "Disponibilità di gruppo non definita per questa survey"
@@ -742,8 +712,7 @@ msgstr "Nessun caso attualmente disponibile"
msgid "Reasons:"
msgstr "Motivi:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr "Abilitato"
@@ -755,13 +724,12 @@ msgstr "Disabilitato"
msgid "Assigned questionnaires:"
msgstr "Questionari assegnati:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Descrizione"
@@ -773,7 +741,10 @@ msgstr "ERRORE: Nessun questionario assegnato"
msgid "Assigned samples:"
msgstr "Campioni assegnati:"
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Campione"
@@ -852,34 +823,33 @@ msgstr "POSSIBILE ERRORE: quota di riga raggiunta per questa domanda"
msgid "Case Notes"
msgstr "Note sul caso"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Aggiungi nota"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Nessuna nota"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Nota"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Questo turno"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Completamenti"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Completamenti all'ora"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Questo progetto"
@@ -947,7 +917,9 @@ msgstr ""
msgid "Ending case now"
msgstr "Chiudendo caso adesso"
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr "secondi"
@@ -988,8 +960,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -1005,8 +976,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr "Selezione dell'intervistato - Fine quota progetto"
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr "Termina la chiamata con esito: Quota raggiunta"
@@ -1027,11 +997,11 @@ msgid "Email respondent for self completion"
msgstr ""
"Mandare una email all'intervistato per il questionario auto-somministrato"
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr "Nome"
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr "Cognome"
@@ -1053,11 +1023,13 @@ msgstr ""
msgid "Appointment List"
msgstr "Lista di appuntamenti"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Non ancora chiamato"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr "Qualsiasi operatore"
@@ -1069,7 +1041,8 @@ msgstr "Nessun appuntamento creato"
msgid "No future appointments scheduled"
msgstr "Non è previsto alcun appuntamento futuro"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr "Appuntamento con"
@@ -1105,13 +1078,11 @@ msgid ""
msgstr ""
"Aspetta una risposta a questa telefonata prima di telefonare al supervisore"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr "Monitora l'ordinamento sistemico dei casi"
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "Processo in esecuzione:"
@@ -1119,29 +1090,29 @@ msgstr "Processo in esecuzione:"
msgid "Kill signal sent: Please wait..."
msgstr "Segnale d'arresto inviato: Attendi..."
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
"Il processo è già chiuso (ad esempio, il server è stato riavviato) - clicca "
"qui per confermare"
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Termina il processo in esecuzione"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr "Log ID"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Data"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr "Testo del log"
@@ -1164,23 +1135,20 @@ msgstr ""
"potrebbero essere migliori se ci sono molti casi o quota complesse. Se non "
"si sono verificati rallentamenti, si sconsiglia questa funzionalità."
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "Esito dell'ultima esecuzione del processo (se presente)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "Lista cronologica delle chiamate"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "Data/orario della chiamata"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "Orario di fine"
@@ -1188,27 +1156,24 @@ msgstr "Orario di fine"
msgid "Download Call History List"
msgstr "Scarica la cronologia delle chiamate"
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "Assegna clienti ai questionari"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr "Rapporto sulle quote"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Seleziona un questionario dalla lista"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Seleziona un campione dalla lista"
@@ -1216,13 +1181,11 @@ msgstr "Seleziona un campione dalla lista"
msgid "Total sample"
msgstr "Campione totale"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "chiuso"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "aperto"
@@ -1282,7 +1245,7 @@ msgstr "Torna indietro usando il browser per risolvere il problema"
msgid "Import: Select columns to import"
msgstr "Importazione: Seleziona le colonne da importare"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Importazione: Seleziona il file da caricare"
@@ -1294,38 +1257,47 @@ msgstr "Seleziona il file campione CSV da caricare:"
msgid "Description for file:"
msgstr "Descrizione del file:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "Aggiungi campione"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr "Processo di ordinamento dei casi iniziato"
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
-msgstr "Sto ordinando i casi"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
+msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
"Il sistema ha automaticamente chiuso un caso lasciato aperto per più di 24 "
"ore"
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
-msgstr "Ordinamento completato"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
+msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr "Questo compito ha richiesto"
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr "Ordinamento completato"
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr "Impossibile completare l'ordinamento"
@@ -1343,8 +1315,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr "Modifica l'esito del caso"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr "Modifica appuntamento"
@@ -1352,11 +1323,11 @@ msgstr "Modifica appuntamento"
msgid "Contact phone"
msgstr "Contatto telefonico"
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Orario d'inizio"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "Orario di fine"
@@ -1376,38 +1347,39 @@ msgstr "Mostra appuntamenti"
msgid "All appointments (with times displayed in your time zone)"
msgstr "Tutti gli appuntamenti (mostrando l'orario nel fuso orario corrente)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Elimina"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Modifica"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "Nome operatore"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "Nome intervistato"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Cognome"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "Esito attuale"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "Operatore che ha chiamato"
@@ -1415,9 +1387,7 @@ msgstr "Operatore che ha chiamato"
msgid "No appointments in the future"
msgstr "Nessun appuntamento nel futuro"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr "Gestisce le quote"
@@ -1433,11 +1403,11 @@ msgstr "Nessuna quota al momento"
msgid "Stop calling this sample when:"
msgstr "Non chiamare più in questo campione quando:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "per"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr "completamenti"
@@ -1449,7 +1419,7 @@ msgstr "Quota raggiunta"
msgid "Quota not yet reached"
msgstr "Quota non ancora raggiunta"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr "Completamenti correnti: "
@@ -1461,27 +1431,27 @@ msgstr "Seleziona una domanda per questa quota"
msgid "Enter the details for creating the quota:"
msgstr "Inserisci i dettagli della quota:"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr "Valori predefiniti per questa domanda:"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr "Nessuna etichetta definita per questa domanda"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr "Valore di codifica"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr "Il valore di codifica da confrontare"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr "Il tipo di confronto"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr "Il numero di completamenti per terminare le chiamate a"
@@ -1503,8 +1473,7 @@ msgstr ""
"gli operatori possono assegnare qualsiasi esito ad un caso, questa procedura "
"consente di restringere i casi assegnati ad un operatore."
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr "Modifica le competenze degli operatori"
@@ -1512,38 +1481,32 @@ msgstr "Modifica le competenze degli operatori"
msgid "Operator Performance"
msgstr "Prestazioni dell'operatore"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "Seleziona un questionario"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "Chiamate"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Tempo totale"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr "Durata delle chiamate"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr "Completamenti all'ora"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr "Chiamate all'ora"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr "Efficacia"
@@ -1551,47 +1514,43 @@ msgstr "Efficacia"
msgid "till"
msgstr "fino a"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Seleziona un turno"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
-msgstr "Disponibilità di gruppo"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
+msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr "Modifica"
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
-"La disponibilità di gruppo indica i periodi in cui gli intervistati sono "
-"disponibili."
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
-msgstr "Non ci sono disponibilità di gruppo"
-
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
-msgstr "Disponibilità di gruppo"
-
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
-msgstr "Aggiungi disponibilità di gruppo"
-
-#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "No time slots"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
+msgstr ""
+
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
+msgstr ""
+
+#: admin/availabilitygroup.php:126
+msgid "Time slot name"
+msgstr ""
+
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr "Rapporti sui turni"
@@ -1635,7 +1594,7 @@ msgstr "Utilità di amministrazione"
msgid "Questionnaire creation and management"
msgstr "Creazione e gestione dei questionari"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr "Crea uno strumento usando Limesurvey"
@@ -1671,13 +1630,11 @@ msgstr "Assegna campioni ai questionari"
msgid "Set values in questionnaire to pre fill"
msgstr "Imposta le domande del questionario da precompilare"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr "Gestisci le quote di riga"
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr "Gestisci gli operatori"
@@ -1685,7 +1642,8 @@ msgstr "Gestisci gli operatori"
msgid "Add operators to the system"
msgstr "Aggiungi operatori al sistema"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "Assegna operatori ai questionari"
@@ -1694,191 +1652,200 @@ msgid "Availability and shift management"
msgstr "Disponibilità e gestione dei turni"
#: admin/index.php:73
-msgid "Manage availablity groups"
-msgstr "Gestisci le disponibilità di gruppo"
+msgid "Manage time slots"
+msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr "Assegna disponibilità ai questionari"
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr "Gestisci i turni (aggiungi/rimuovi)"
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "Avanzamento del questionario"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "Mostra tutti gli appuntamenti futuri"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr "Rapporto sui tentativi di chiamata/campione"
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr "Esiti dei questionari"
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Output dei dati"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "Prestazioni degli operatori"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "Gestione del cliente"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "Aggiungi clienti al sistema"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "Funzioni del supervisore"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "Assegna esiti ai casi"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Cerca nel campione"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr "Stato dei casi e assegnazione"
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr "Generatore di blocchi di appuntamenti"
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Impostazioni di sistema"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr "Imposta la lista dei fusi orari"
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr "Imposta gli orari di base dei turni"
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr "Imposta gli orari vincolati per le chiamate"
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr "Imposta le informazioni sul centro"
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr "Inizia l'ordinamento sistemico dei casi con monitoraggio"
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr "Inizia il VoIP con monitoraggio"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr "Stato del numero interno"
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr "Assegnazione dei campioni: Seleziona il campione da assegnare"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr "Modifica i dettagli del campione"
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr "Numero massimo di chiamate (0 per illimitato)"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr "Numero massimo di tentativi di chiamata (0 per illimitato)"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr "Numero di messaggi di segreteria telefonica da lasciare (0 per mai)"
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr "Seleziona dal campione in modo casuale? (altrimenti sequenziale)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr "Campioni selezionati per questo questionario"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr "Illimitato"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr "Sequenziale"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr "Casuale"
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr "Mai"
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr "Clicca per non assegnare"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr "Numero massimo di chiamate"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr "Numero massimo di tentativi di chiamata"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr "Messaggi di segreteria telefonica"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr "Tipo di selezione"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr "Non assegnare campione"
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr "Nessun campione è stato selezionato per il questionario"
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr "Aggiungere un campione al questionario:"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "Seleziona campione:"
@@ -1894,22 +1861,33 @@ msgstr "Aggiorna le informazioni sul centro"
msgid "Assign availability group to questionnaire"
msgstr "Assegna una disponibilità di gruppo al questionario"
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr "Non è stata assegnata nessuna disponibilità di gruppo"
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr "Sono state assegnate disponibilità di gruppo al questionario"
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr "Aggiungi una disponibilità di gruppo al questionario:"
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr "Seleziona la disponibilità di gruppo:"
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr "Aggiungi disponibilità di gruppo"
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1965,7 +1943,6 @@ msgid "Search within this sample"
msgstr "Cerca all'interno di questo campione"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr "Utilizza il carattere % come jolly"
@@ -1977,32 +1954,27 @@ msgstr "Cerca:"
msgid "Start search"
msgstr "Inizia ricerca"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr "Esiti dei questionari"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr "Esiti"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "Stato del campione"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr "Preso dal campione"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr "Rimani nel campione"
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Numero"
@@ -2030,35 +2002,32 @@ msgstr "Min"
msgid "Secs"
msgstr "Sec"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Tasso"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr "Tasso di risposta 1"
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr "Tasso di rifiuto 1"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr "Tasso di cooperazione 1"
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr "Tasso di contatto 1"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Conteggio"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr "%"
@@ -2070,7 +2039,7 @@ msgstr "Esiti delle chiamate dell'operatore"
msgid "No outcomes recorded for this sample"
msgstr "Nessun esito registrato per questo campione"
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr "Nessun esito registrato per questo questionario"
@@ -2094,13 +2063,14 @@ msgstr "Nessun turno definito per il questionario"
msgid "Shift"
msgstr "Turno"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr "Rapporto turno"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr "Effettua monitoraggio del processo VoIP"
@@ -2171,17 +2141,12 @@ msgstr "oppure: Seleziona precompilazione automatica da lista campione"
msgid "Add pre fill"
msgstr "Aggiungi precompilazione"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr "Rinomina"
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr "Permessi di visualizzazione dell'operatore"
@@ -2191,17 +2156,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr "Seleziona i campi del campione da far visualizzare agli operatori"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr "Campo"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr "Esempio di dati"
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr "Consentire all'operatore di vedere?"
@@ -2209,11 +2172,9 @@ msgstr "Consentire all'operatore di vedere?"
msgid "Save changes"
msgstr "Salva le modifiche"
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr "Deseleziona"
@@ -2229,11 +2190,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr "Elimina i campi selezionati"
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr "Abilita"
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr "Disabilita"
@@ -2241,7 +2204,8 @@ msgstr "Disabilita"
msgid "Sample list"
msgstr "Lista campione"
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr "Abilita/disabilita"
@@ -2305,8 +2269,7 @@ msgstr "Seleziona il file CSV da caricare:"
msgid "Load bulk appointment CSV"
msgstr "Carica un file CSV per creare blocchi di appuntamenti"
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr "Aggiungi turni"
@@ -2318,9 +2281,9 @@ msgstr ""
"Devi essere operatore (oltre ad essere amministratore) per "
"aggiungere/modificare i turni"
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2348,9 +2311,8 @@ msgstr "Seleziona l'anno"
msgid "Select week of year"
msgstr "Seleziona la settimana"
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Giorno"
@@ -2362,8 +2324,36 @@ msgstr "Utlizza il turno?"
msgid "Submit changes"
msgstr "Invia le modifiche"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr "Quote copiate"
@@ -2379,9 +2369,7 @@ msgstr "Attalmente nessuna quota di riga"
msgid "Replicate: Where"
msgstr "Replicare: Quando"
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "come"
@@ -2389,8 +2377,7 @@ msgstr "come"
msgid "Sample only. Stop calling where"
msgstr "Solo campione. Smetti di chamare quando"
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr "righe di questo campione quando:"
@@ -2486,8 +2473,7 @@ msgstr ""
"Non è stato possibile aggiungere l'operatore. Potrebbe esserci già un "
"operatore con questo nome:"
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "Aggiungi un operatore"
@@ -2504,8 +2490,7 @@ msgstr "Assegna operatore al questionario"
msgid "tool"
msgstr "strumento"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2550,11 +2535,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr "Questo operatore userà il VoIP?"
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr "Nome utente Jabber/XMPP"
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr "Password Jabber/XMPP"
@@ -2574,8 +2559,7 @@ msgstr "L'operatore è un supervisore?"
msgid "Is the operator a refusal converter?"
msgstr "L'operatore è un operatore esperto nella trasformazione dei rifiuti?"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Aggiungi utente"
@@ -2599,7 +2583,7 @@ msgstr "Legame creato con"
msgid "Error: Failed to insert questionnaire"
msgstr "Errore: Inserimento questionario non riuscito"
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "Nome del questionario:"
@@ -2607,8 +2591,7 @@ msgstr "Nome del questionario:"
msgid "Select limesurvey instrument:"
msgstr "Seleziona lo strumento Limesurvey:"
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr "Strumento esistente:"
@@ -2626,73 +2609,73 @@ msgid "Use basic respondent selection text (below)"
msgstr ""
"Utilizza il seguente testo di base per la selezione dell'intervistato"
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr "Restringi gli appuntamenti ai turni?"
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr "Restringi il lavoro ai turni?"
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr "Questionario di prova?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
"Consentire l'auto-somministrazione dell'intervista tramite invito email?"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr "Modalità di visualizzazione del questionario per l'intervistato"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr "Tutto in uno"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr "Una domanda alla volta"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr "Un gruppo alla volta"
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr "Modello Limesurvey per intervistato"
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
"URL da utilizzare alla fine dell'auto-somministrazione (obbligatorio)"
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr "Presentazione della selezione dell'intervistato:"
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr "Presentazione del progetto per la selezione dell'intervistato"
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr "Selezione dell'intervistato per richiamata (questionario in corso):"
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr "Messaggio da lasciare sulla segreteria telefonica:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr "Testo per la fine dell'intervista (schermata di ringraziamento):"
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr "Informazioni sul progetto per gli operatori:"
@@ -2709,13 +2692,11 @@ msgstr ""
msgid "Display extension status"
msgstr "Mostra lo stato del numero interno"
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2979,7 +2960,7 @@ msgstr "Il sabato"
msgid "String"
msgstr "Stringa"
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Numero di telefono"
@@ -3011,7 +2992,7 @@ msgstr "Indirizzo email"
msgid "Self completion email invitation sent"
msgstr "Invito al questionario auto-compilato inviato tramite l'email"
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr "Questionario auto-compilato in linea"
@@ -3019,11 +3000,11 @@ msgstr "Questionario auto-compilato in linea"
msgid "Cases by outcome"
msgstr "Distribuzione dei casi per esito"
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Progetto"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "Esito corrente:"
@@ -3040,14 +3021,14 @@ msgid "Cannot connect to VoIP Server"
msgstr "Impossibile connettersi al server VoIP"
#: admin/availability.php:57
-msgid "No availability group set"
-msgstr "Nessuna disponibilità di gruppo impostata"
+msgid "No time slot group set"
+msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
-msgstr "Modifica disponibilità"
+msgid "Modify time slots"
+msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
@@ -3055,17 +3036,21 @@ msgstr ""
"Inserisci gli orari di inizio e di fine per restringere le chiamate in tutti "
"i giorni della settimana"
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Aggiungi riga"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
-msgstr "Salva modifiche alle disponibilità"
+msgid "Save changes to time slot group"
+msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -3076,8 +3061,7 @@ msgstr "Impossibile aggiungere"
msgid "There may already be a client of this name"
msgstr "Potrebbe già esistere un cliente con questo nome"
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "Aggiungi cliente"
@@ -3135,8 +3119,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr "Salva le modifiche ai turni"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr "Adesso"
@@ -3183,8 +3166,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr "Scarica dati relativi al questionario tramite Limesurvey"
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr "Seleziona un campione"
@@ -3229,8 +3211,7 @@ msgstr ""
msgid "Operator edit"
msgstr "Modifica operatore"
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr "Nome utente"
@@ -3376,23 +3357,31 @@ msgstr "Sei sicuro/a di voler eliminare il questionario?"
msgid "Delete this questionnaire"
msgstr "Elimina il questionario"
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "Aggiungi/rimuovi fuso orario"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr "Clicca per rimuovere una zona di fuso orario dalla lista di default"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr "Aggiungi una zona di fuso orario:"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Zona di fuso orario: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr "Aggiungi fuso orario"
@@ -3412,8 +3401,7 @@ msgstr "Seleziona caso"
msgid "Set an outcome for this call"
msgstr "Imposta un esito per questa chiamata"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr "Imposta esito"
@@ -3433,39 +3421,50 @@ msgstr "Lista chiamate"
msgid "Change outcome"
msgstr "Modifica l'esito"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr "Note"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr "Modifica le risposte per questo caso"
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr "Caso non ancora iniziato in Limesurvey"
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr "Imposta l'esito di un caso"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr "Aggiorna la disponibilità dei casi"
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr "Assegna questo caso ad un operatore (sarà il prossimo caso)"
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr "Assegna questo caso ad un operatore"
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "Il caso non esiste"
@@ -3473,19 +3472,19 @@ msgstr "Il caso non esiste"
msgid "Error: Cannot write to temporary directory"
msgstr "Errore: Non si riesce a scrivere alla cartella provvisoria"
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "mattino"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "pomeriggio"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "sera"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3590,10 +3589,8 @@ msgstr "Sconnesso"
msgid "Reconnected"
msgstr "Riconnesso"
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr " Numero interno "
@@ -3650,13 +3647,11 @@ msgstr "Non ti è stato assegnato alcun questionario"
msgid "You are not a valid client"
msgstr "Non sei un cliente valido"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3685,10 +3680,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
@@ -3769,8 +3770,32 @@ msgstr ""
#~ msgid "No operators"
#~ msgstr "Nessun operatore"
+#~ msgid "Sorting cases"
+#~ msgstr "Sto ordinando i casi"
+
#~ msgid "Enter the telephone extension number:"
#~ msgstr "Inserisci il numero interno:"
#~ msgid "Enter the telephone extension password:"
#~ msgstr "Inserisci la password del numero telefonico interno:"
+
+#~ msgid "Availability groups"
+#~ msgstr "Disponibilità di gruppo"
+
+#~ msgid "No availability groups"
+#~ msgstr "Non ci sono disponibilità di gruppo"
+
+#~ msgid "Availablity group"
+#~ msgstr "Disponibilità di gruppo"
+
+#~ msgid "No availability group set"
+#~ msgstr "Nessuna disponibilità di gruppo impostata"
+
+#~ msgid "Modify availability"
+#~ msgstr "Modifica disponibilità"
+
+#~ msgid "Save changes to availabilities"
+#~ msgstr "Salva modifiche alle disponibilità"
+
+#~ msgid "Manage availablity groups"
+#~ msgstr "Gestisci le disponibilità di gruppo"
diff --git a/locale/lt/LC_MESSAGES/lt.mo b/locale/lt/LC_MESSAGES/lt.mo
index b70b5328..8655dfce 100644
Binary files a/locale/lt/LC_MESSAGES/lt.mo and b/locale/lt/LC_MESSAGES/lt.mo differ
diff --git a/locale/lt/LC_MESSAGES/lt.po b/locale/lt/LC_MESSAGES/lt.po
index 3c152d49..c683daa8 100644
--- a/locale/lt/LC_MESSAGES/lt.po
+++ b/locale/lt/LC_MESSAGES/lt.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Lithuanian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Atvejų istorijos sąrašas"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Jokių skambučių nebuvo atlikta"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Data/Laikas"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "Bylos ID"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Rezultatas"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Respondentas"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Nėra operatoriaus"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Respondentų Atranka - Autoatsakiklis"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Nepalikinėkite žinutės, dėkite ragelį"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Baigti skambinimą su rezultatu: Verslo autoatsakiklis"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr "Baigti skambinimą su rezultatu: Autoatsakiklis, palikta žinutė"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr "Baigti skambinimą su rezultatu: Autoatsakiklis, nepalikta žinutė"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Atgal"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Respondentų Atranka - Verslo atsakymai"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Atleiskit, kad trukdau, surinkau ne tą numerį"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Baigti skambutį su rezultatu: Verslo numeris"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Perskambinimas"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Baigti darbą"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Pastabos"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Duomenys"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Istorija"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Pamaina"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Perskambinimai"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Aktyvumas"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Darbo istorija"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Projekto Informacija"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Informacija"
@@ -175,9 +169,7 @@ msgstr "Informacija"
msgid "Stop REC"
msgstr "Sustabdyti įrašymą"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Įrašyti"
@@ -185,8 +177,7 @@ msgstr "Įrašyti"
msgid "Beginning recording..."
msgstr "Pradeda įrašinėti..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Nepasirengęs (-usi), nepradėti įrašinėti"
@@ -194,8 +185,8 @@ msgstr "Nepasirengęs (-usi), nepradėti įrašinėti"
msgid "Begin the manual recording now..."
msgstr "Dabar pradeti rankinį įrašą..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Įrašyti"
@@ -207,37 +198,40 @@ msgstr "Stabdo įrašą"
msgid "Stop the manual recording now..."
msgstr "Dabar sustabdyti rankinį įrašą..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Respondento pasirinkimas - Perskambinti vėliau"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Jūs esate: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr "% complete"
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Taip - Tęsti kur nuo ten užbaigėte"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Skambučio statusas: Atsisakymas ( respondento)"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Respondentų pasirinkimas - Projekto įžanga"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Taip - Tęsti"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -245,7 +239,8 @@ msgstr ""
"Baigti skambinimą su rezultatu: nėra pageidaujamo respondento (asmuo "
"nepasiekiamas šiuo numeriu)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr "Skambučio statusas: Dalyvavęs (asmuo jau dalyvavo tyrime)"
@@ -279,7 +274,7 @@ msgstr "Pridėkite šį respondentą"
msgid "Select phone number:"
msgstr "Pasirinkite telefono numerį:"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Joks"
@@ -303,7 +298,7 @@ msgstr "Perskambinimas:"
msgid "Accept appointment from "
msgstr "Priimti perskambinimą iš "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " iki "
@@ -319,7 +314,8 @@ msgstr "įjungti"
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -327,7 +323,7 @@ msgstr ""
msgid "Call List"
msgstr "Skambučių sąrašas"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Nebuvo skambinta"
@@ -335,12 +331,17 @@ msgstr "Nebuvo skambinta"
msgid "Number called"
msgstr "Skambintas numeris"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operatorius"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Nėra jokios bylos"
@@ -348,15 +349,18 @@ msgstr "Nėra jokios bylos"
msgid "Get a new case"
msgstr "Nauja byla"
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Pabaiga"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Paskambinti/Padėti ragelį"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Supervizorius"
@@ -364,11 +368,12 @@ msgstr "Supervizorius"
msgid "Restart"
msgstr ""
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Pasiekiamumas"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -380,7 +385,11 @@ msgstr "Informacija"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -392,8 +401,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -409,57 +417,34 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Skambinti"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "laisvas"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Baigti atvejį"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
"Tam, kad skambinti šiam numatytąjam perskambinimui, spauskite mygtuką "
"Skambinti"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Skambinti šiuo numeriu"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -467,62 +452,51 @@ msgstr ""
"Jūsų VoIP išplėtinys nėra aktyvuotas. Prašome uždaryti langą ir dukart "
"spustelėjus raudoną mygtuką \"VoIP Off\" aktyvuoti VoIP."
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Pasirinkite numerį kuriuo skambinti"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "Paskutinis skambutis užbaigtas, šiuo bandymu"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
"Nurodykite tokių rezultatų priežastis, prieš užbaigdami su šiuo konkrečiu "
"atveju:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Reikia kodavimo"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Priskirti rezultatus"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Klaida: uždarykite langą"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Pageidaujamas skmbutis"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Skambutis"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Padėti ragelį"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Skambina"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Pakėlė ragelį"
@@ -550,7 +524,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -578,60 +554,52 @@ msgstr ""
msgid "Go back to work"
msgstr "Atgal į darbą"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Statusas"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Vardas"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Respondento pasirinkimas - Prisistatymas"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Darbo numeris"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Telefono atsakiklis"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
"Skambučio statusas: Neatsakytas ( užimta arba niekas nekelia ragelio) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Skambučio statusas: Atsitiktinai nutrūkęs pokalbis"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Skambučio statusas: Atsisakymas ( nežinomo žmogaus)"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr ""
"Skambučio statusas: netinkamas kontaktas ( asmuo nepasiekiamas šiuo numeriu)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -647,8 +615,10 @@ msgstr "Pamainų sąrašas"
msgid "No shifts for this project"
msgstr "Nėra priskirtų pamainų šiam projektui"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Pradėti"
@@ -656,12 +626,14 @@ msgstr "Pradėti"
msgid "No future shifts scheduled"
msgstr "Nėra numatomų pamainų"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Klausimynas"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -669,48 +641,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Baigti skambutį su rezultatu: Užpildyta"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Pridėti respondentą"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Sugrįšti atgal"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "Bylos id:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Respondentas:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Atributas"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Reikšmė"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -734,8 +704,7 @@ msgstr "Šiuo metu nėra prieinamų atvejų"
msgid "Reasons:"
msgstr "Priežastys:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -747,13 +716,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr "Priskirti klausimynai:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "iD"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Aprašymas"
@@ -765,7 +733,10 @@ msgstr "Klaida: Jokio priskirto klausimyno"
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Imtis"
@@ -839,34 +810,33 @@ msgstr ""
msgid "Case Notes"
msgstr "Pastabos"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Pridėti pastabą"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Jokių pastabų"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Pastaba"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Pamaina"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Užbaigimai"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Užpildymu per valanda"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Šis projektas"
@@ -934,7 +904,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -973,8 +945,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -990,8 +961,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -1011,11 +981,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1035,11 +1005,13 @@ msgstr ""
msgid "Appointment List"
msgstr "Perskambinimų sąrašas"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Dar neskambinta"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1051,7 +1023,8 @@ msgstr "Neatlikta jokių perskambinimų"
msgid "No future appointments scheduled"
msgstr "Nesuplanuota perskambinti ateityje"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1085,13 +1058,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "Vykstantis procesas:"
@@ -1099,27 +1070,27 @@ msgstr "Vykstantis procesas:"
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Nutraukti vykstantį procesą"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Data"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1137,23 +1108,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "Praėjusio proceso rezultatai (jei tokių yra)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "Skambučių sarašas"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "Data/Laikas skambučio pradžia"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "Pabaigta"
@@ -1161,27 +1129,24 @@ msgstr "Pabaigta"
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "Priskirti klientus klausimynams"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Pasirinkite klausimyną iš žemiau nurodyto sąrašo"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Pasirinkite imtį/atranką iš žemiau esančio sąrašo"
@@ -1189,13 +1154,11 @@ msgstr "Pasirinkite imtį/atranką iš žemiau esančio sąrašo"
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1255,7 +1218,7 @@ msgstr "Grįžkite į savo naršyklę ir pašalinkite problemą"
msgid "Import: Select columns to import"
msgstr "Importavimas: Pasirinkite stulpelė importavimui"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Importavimas: pasirinkite bylą įkėlimui"
@@ -1267,36 +1230,45 @@ msgstr "Pasirinkite CSV pavyzdžio bylą, tam kad įkelti:"
msgid "Description for file:"
msgstr "Bylos aprašymas:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "Pridėti imtį"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1315,8 +1287,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr "Modifikuoti atvejo rezultatus"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr "Keisti perskambinimą"
@@ -1324,11 +1295,11 @@ msgstr "Keisti perskambinimą"
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1348,38 +1319,39 @@ msgstr "Perskambinimų Peržiūra"
msgid "All appointments (with times displayed in your time zone)"
msgstr "Visi perskambinimai (su laiku jūsų laiko zonoje)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Ištrinti"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Redaguoti"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "Operatoriaus vardas"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "Respondento Vardas"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Pavardė"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "Pastarasis rezultatas"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "Skambinęs operatorius"
@@ -1387,9 +1359,7 @@ msgstr "Skambinęs operatorius"
msgid "No appointments in the future"
msgstr "Nėra perskambinimų ateityje"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr "Kvotų valdymas"
@@ -1405,11 +1375,11 @@ msgstr "Šiuo metu nėra kvotų"
msgid "Stop calling this sample when:"
msgstr "Sustoti skambinti šiam sąrašui kai:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "tam"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr "užpildymas"
@@ -1421,7 +1391,7 @@ msgstr "Kvota pasiekta"
msgid "Quota not yet reached"
msgstr "Kvota dar nepasiekta"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr "Šiuo metu užpildyta: "
@@ -1433,27 +1403,27 @@ msgstr "Pasirinkite klausimą šiai kvotai"
msgid "Enter the details for creating the quota:"
msgstr "Įrašykite detales tam, kad sukuti šią kvotą:"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr "Šio klausimo išakstinio užpildymo reikšmės"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr "Jokių stulpelių reikšmių nėra nustatyta šiam klausimui"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr "Atsakymų reikšmės"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr "Atsakymų reikšmės su kuriom sulyginti"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr "Palyginimo tipas"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr "Reikiamų užpildymų skaičius"
@@ -1472,8 +1442,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr "Keisti operatorių"
@@ -1481,38 +1450,32 @@ msgstr "Keisti operatorių"
msgid "Operator Performance"
msgstr "Operatoriaus darbų atlikimas"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "Prašau pasirinkite klausimyną"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Bendras laikas"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1520,45 +1483,43 @@ msgstr ""
msgid "till"
msgstr "iki"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Prašau pasirinkti pamainą"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr "Pakitimų pranešimai"
@@ -1602,7 +1563,7 @@ msgstr "Administravimo įrankiai"
msgid "Questionnaire creation and management"
msgstr "Klausimyno sukurimas ir valdymas"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1640,13 +1601,11 @@ msgstr ""
"Nurodykite reikšmes klausimyne, automatiniam išankstiniam pildymui (pre "
"fill)"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1654,7 +1613,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr "Prideti operatorius"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "Priskirti operatorius klausimynams"
@@ -1663,193 +1623,202 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr "pakitimų valdymas (pridėti/pašalinti)"
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "Klausimyno progresas"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "Nurodykite visus ateities perskambinimus"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr "Klausimyno rezultatai"
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Duomenų išvedimas"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "Operatoriaus efektingumas"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "Kliento valdymas"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "Pridėti klientų į sistemą"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "Supervizoriaus funkcijos"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "Priskirti rezultatus atvejams"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Ieškoti pavyzdžio"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Sistemos nustatymai"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr "Nustayti numatytąją laiko juostą"
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr "Nustatyti numatytujų pakitimų skaičių"
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr "Nustatyti skmbučių apribojimo skaičių"
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr "Paleisti ir stebėti VoIP"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr "Priskirkite atranką: pasirinkite atranką priskyrimui"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr "Maksimalus skmbučių skaičius (nurodyti 0 kai neribotas)"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr "Maksimalus bandymų (skambinti) skaičius (nurodyti 0 kai neribotas)"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
"Vienam atvejui skirtų autoatsakiklio žinučių skaičius (nurodyti 0 kai nei "
"vieno)"
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr "Pasirinkti iš atrankos atsitiktinai? (kitu atveju nuosekliai)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr "Pasirinktos atrankos/imtys šiam klausimynui"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr "Spustelkite išsiregistravimui"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr "Įkelti atranką šiam klausimynui"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "Pasirinkti atranką/imtį"
@@ -1865,22 +1834,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1934,7 +1914,6 @@ msgid "Search within this sample"
msgstr "Paieška šioje imtyje/atrankoje"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr "Use the % character as a wildcard"
@@ -1946,32 +1925,27 @@ msgstr "Ieškoti:"
msgid "Start search"
msgstr "Pradėti paiešką"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr "Klausimyno rezultatai"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr "Rezultatai"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "Pavyzdžio statusas"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr "Išėmimas iš pavyzdžio"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr "Pasilieka pavyzdyje"
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Skaičius"
@@ -1999,35 +1973,32 @@ msgstr "min"
msgid "Secs"
msgstr "sek."
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Dažnis"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr "Atsakymų dažnumas"
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr "Atsisakymų dažnumas"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr "Kooperacijos Rodiklis 1"
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr "Kontakto Rodiklis 1"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Skaičius"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2039,7 +2010,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr "Jokių statusų nebuvo priskirta šiam sąrašui"
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr "Nėra išsaugotų rezultatų šiam klausimynui"
@@ -2063,13 +2034,14 @@ msgstr "Nėra pakitimų priskirtų šiam klausimynui"
msgid "Shift"
msgstr "Pamaina"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr "Pamainos ataskaita"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr "VoIP Proceso Stebįjimas"
@@ -2141,17 +2113,12 @@ msgstr ""
msgid "Add pre fill"
msgstr "Priedėti automatinį užpildymą"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2161,17 +2128,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2179,11 +2144,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2197,11 +2160,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2209,7 +2174,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2264,8 +2230,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr "Pridėti pamainas"
@@ -2275,9 +2240,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2301,9 +2266,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Diena"
@@ -2315,8 +2279,36 @@ msgstr "naudoti pamainą?"
msgid "Submit changes"
msgstr "Patvirtinti pakeitimus"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2332,9 +2324,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2342,8 +2332,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2431,8 +2420,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "Pridėkite operatorių"
@@ -2448,8 +2436,7 @@ msgstr "Priskirkite operatorių klausimynui"
msgid "tool"
msgstr "įrankis"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2492,11 +2479,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2516,8 +2503,7 @@ msgstr "Ar operatorius yra supervizorius?"
msgid "Is the operator a refusal converter?"
msgstr "Ar operatorius yra atsisakymų perkalbėtojas?"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Pridėti vartotoją"
@@ -2541,7 +2527,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "Klausimyno vardas"
@@ -2549,8 +2535,7 @@ msgstr "Klausimyno vardas"
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2566,71 +2551,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr "Apriboti perskambinimų pakeitimų galimybę?"
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr "Apriboti galimybe darbo pakeitimams?"
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr "Klausimynas tik testavimui?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr "Įvadas į respondentų atranką"
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr "Įvadas į respondentų atrankos projektą"
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr "Respondentų atrankos perskambinimas (jau pradėtas klausimynas)"
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr "Žinutė skirta palikti autoatsakiklyje:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2647,13 +2632,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2917,7 +2900,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Telefono numeris"
@@ -2949,7 +2932,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2957,11 +2940,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Projektas"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "Pastarasisi rezultatas:"
@@ -2978,14 +2961,14 @@ msgid "Cannot connect to VoIP Server"
msgstr "Neįmanoma prisijungti prie VoIP serverio"
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
@@ -2993,17 +2976,21 @@ msgstr ""
"Įveskite kiekvienai savaitės dienai skambučio ribojimo laiko praždią ir "
"pabaigą"
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Pridėti eilutę"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -3014,8 +3001,7 @@ msgstr "Negalima pridėti"
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "Pridėti klientą"
@@ -3073,8 +3059,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr "Išsaugoti pakeitimus pamainoms"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3118,8 +3103,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3163,8 +3147,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3302,23 +3285,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "Pridėti/Pašalinti Laiko juostas"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr "Spustelkite, tam, kad pašalinti Laiko juostas iš numatytojo sąrašo"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr "Pridėkite Laiko juostą:"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Laiko juosta: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr "Pridėti laiko zoną"
@@ -3338,8 +3329,7 @@ msgstr "Pasirinkite atvejį"
msgid "Set an outcome for this call"
msgstr "Nustatykite šio skambučio rezultatą"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr "Nustatykite rezultatą"
@@ -3359,39 +3349,50 @@ msgstr "Skambučių sąrašas"
msgid "Change outcome"
msgstr "Pakeiskite rezultatą:"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr "Atvejo pastabos"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr "Modifikuoti atsakymus šiai bylai"
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr "Byla dar nepradėta apklausų sistemoje"
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr "Nustaykite atvejo rezultatą"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "Atvejis neegzistuoja"
@@ -3399,19 +3400,19 @@ msgstr "Atvejis neegzistuoja"
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "rytas"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "po pietų"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "vakaras"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3516,10 +3517,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3570,13 +3569,11 @@ msgstr "Nėra Jums priskirtų klausimynų"
msgid "You are not a valid client"
msgstr "Jūs nesate galiojantis klientas"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3605,10 +3602,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/nl/LC_MESSAGES/nl.mo b/locale/nl/LC_MESSAGES/nl.mo
index 6ed75582..8f9e68bc 100644
Binary files a/locale/nl/LC_MESSAGES/nl.mo and b/locale/nl/LC_MESSAGES/nl.mo differ
diff --git a/locale/nl/LC_MESSAGES/nl.po b/locale/nl/LC_MESSAGES/nl.po
index c9f7448a..43eac448 100644
--- a/locale/nl/LC_MESSAGES/nl.po
+++ b/locale/nl/LC_MESSAGES/nl.po
@@ -7,171 +7,165 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Dutch \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Case Geschiedenis Lijst"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Nooit gesprekken gedaan"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Datum/tijd"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "Case ID"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Resultaat"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Respondent"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Geen operator"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Respondent Keuze - Antwoordapparaat"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Laat geen bericht na, hang op"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Einde contactpoging met resultaat: Zakelijk antwoordapparaat"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
"Einde contactpoging met als resultaat: Antwoordapparaat Bericht nagelaten"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
"Einde contactpoging met als resultaat: Antwoordapparaat Geen bericht "
"nagelaten"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Vorige"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Respondent Keuze - Bedrijf antwoord"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
"Het spijt me dat ik u gestoord heb, ik heb het verkeerde nummer gebeld"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Einde contactpoging met als resultaat: Zakelijk nummer"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Afspraak"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Einde werk"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Opmerking"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr ""
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Bel geschiendenis"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Shifts"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Afpraken"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Prestaties"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Werk geschiedenis"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr ""
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Info"
@@ -179,9 +173,7 @@ msgstr "Info"
msgid "Stop REC"
msgstr "Stop opname"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Opnemen"
@@ -189,8 +181,7 @@ msgstr "Opnemen"
msgid "Beginning recording..."
msgstr "Begint met opname..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Niet in gesprek, opname start dus niet"
@@ -198,8 +189,8 @@ msgstr "Niet in gesprek, opname start dus niet"
msgid "Begin the manual recording now..."
msgstr "Begin de manuele opname nu..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Start opname"
@@ -211,37 +202,40 @@ msgstr "Stopt met opname..."
msgid "Stop the manual recording now..."
msgstr "Stop de manuele opname nu..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Respondent Keuze - Bel terug"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "U bent: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Ja - Ga verder waar we waren gebleven"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Einde contactpoging met als resultaat: Weigering door respondent"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Respondent Keuze - Project inleiding"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Ja - Ga verder"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -249,7 +243,8 @@ msgstr ""
"Einde contactpoging met als resultaat: Geen geschikte respondent (persoon "
"niet beschikbaar op dit nummer)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -285,7 +280,7 @@ msgstr "Voeg deze respondent toe"
msgid "Select phone number:"
msgstr "Kies telefoonnummer:"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Geen"
@@ -310,7 +305,7 @@ msgstr "Afspraak:"
msgid "Accept appointment from "
msgstr "Aanvaard afspraak van "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " tot "
@@ -326,7 +321,8 @@ msgstr "op"
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -334,7 +330,7 @@ msgstr ""
msgid "Call List"
msgstr "Gesprekken Lijst"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Geen gesprekken gevoerd"
@@ -342,12 +338,17 @@ msgstr "Geen gesprekken gevoerd"
msgid "Number called"
msgstr "Nummer gebeld"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operator"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Geen case"
@@ -355,15 +356,18 @@ msgstr "Geen case"
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Einde"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Bell/Hang op"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Toezichthouder"
@@ -371,11 +375,12 @@ msgstr "Toezichthouder"
msgid "Restart"
msgstr ""
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr ""
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -387,7 +392,11 @@ msgstr "Informatie"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -399,8 +408,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -416,55 +424,32 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Bellen"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Niet aan het bellen"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Einde case"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "Druk op de bellen knop om het nummer te vormen voor deze afspraak"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Nummer om te bellen:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -472,60 +457,49 @@ msgstr ""
"VoIP extensie is uitgeschakeld. Sluit dit venster en schakel VoIP in door "
"één maal op de rode knop waarop staat 'VoIP Uit' te klikken."
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Kies het telefoonnummer om te bellen"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "De laatste gesprekspoging werd zojuist afgewerkt"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "Geef een reden voor dit resultaat voor het beëindigen van deze case:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Vereist codering"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Ken resultaat toe"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Fout: Sluit venster"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Gesprekspoging"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Oproep beantwoord"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Ophangen"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Gaat over"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Beantwoord"
@@ -553,7 +527,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -581,60 +557,52 @@ msgstr ""
msgid "Go back to work"
msgstr "Ga terug aan het werk"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Status"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Naam"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Respondent Keuze - Inleiding"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Zakelijk nummer"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Antwoordapparaat"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
"Einde contactpoging met als resultaat: Geen antwoord (beltoon gestopt of "
"bezet) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Einde contactpoging met als resultaat: Toevallig opgehangen"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Einde contactpoging met als resultaat: Weigering door onbekende"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr ""
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -650,8 +618,10 @@ msgstr "Shift Lijst"
msgid "No shifts for this project"
msgstr "Geen shift voor dit project"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Start"
@@ -659,12 +629,14 @@ msgstr "Start"
msgid "No future shifts scheduled"
msgstr "Geen toekomstige shifts gepland"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Vragenlijst"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -672,48 +644,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Einde contactpoging met als resultaat: Afgewerkt"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Voeg respondent toe"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Ga terug"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "Case id:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Respondent:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Var"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Waarde"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -737,8 +707,7 @@ msgstr "Er is op dit ogenblik geen case beschikbaar"
msgid "Reasons:"
msgstr "Rede:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -750,13 +719,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr "Toegewezen vragenlijsten:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "Identiteit"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Beschrijving"
@@ -768,7 +736,10 @@ msgstr "FOUT: Er werd u geen vragenlijst toegewezen"
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Steekproef"
@@ -843,34 +814,33 @@ msgstr ""
msgid "Case Notes"
msgstr "Case opmerkingen"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Voeg opmerking toe"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Geen opmerkingen"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Opmerking"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Deze shift"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Afgewerkt"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Afgewerkt per uur"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Dit project"
@@ -938,7 +908,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -977,8 +949,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -994,8 +965,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -1015,11 +985,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1039,11 +1009,13 @@ msgstr ""
msgid "Appointment List"
msgstr "Afspraken lijst"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Nog niet gebeld"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1055,7 +1027,8 @@ msgstr "Nog geen afspraken gemaakt"
msgid "No future appointments scheduled"
msgstr "Geen toekomstige afspraken"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1089,13 +1062,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "Actief proces:"
@@ -1103,27 +1074,27 @@ msgstr "Actief proces:"
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Stop het actief proces"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Datum"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1141,23 +1112,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "Resultaat van het laatst actief proces (als er een was)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "Bel Geschiedenis lijst"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "Datum/Tijd gesprek start"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "Einde tijd"
@@ -1165,27 +1133,24 @@ msgstr "Einde tijd"
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "Wijs klanten aan vragenlijst toe"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Kies een vragenlijst van de onderstaande lijst"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Kies een steekproef uit de onderstaande lijst"
@@ -1193,13 +1158,11 @@ msgstr "Kies een steekproef uit de onderstaande lijst"
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1259,7 +1222,7 @@ msgstr "Ga terug in u browser en los het probleem op"
msgid "Import: Select columns to import"
msgstr "Importeren: Selecteer kolommen om te importeren"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Importeren: Selecteer bestand om te uploaden"
@@ -1271,36 +1234,45 @@ msgstr "Kies het CSV steekproef bestand om te uploaden"
msgid "Description for file:"
msgstr "Beschrijving voor bestand:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1318,8 +1290,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr "Wijzig case resultaat"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1327,11 +1298,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1351,38 +1322,39 @@ msgstr "Geef afspraken weer"
msgid "All appointments (with times displayed in your time zone)"
msgstr "Alle afspraken (met tijden weergegeven in je tijdzone)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Verwijder"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Bewerk"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "Operator Naam"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "Respodent Naam"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Achternaam"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "Huidig resultaat"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "Operator die belde"
@@ -1390,9 +1362,7 @@ msgstr "Operator die belde"
msgid "No appointments in the future"
msgstr "Geen toekomstige afspraken"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1408,11 +1378,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1424,7 +1394,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1436,27 +1406,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1475,8 +1445,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr "Wijzig operator kwaliteiten"
@@ -1484,38 +1453,32 @@ msgstr "Wijzig operator kwaliteiten"
msgid "Operator Performance"
msgstr "Operator Prestaties"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "Kies een vragenlijst"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Totale tijd"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1523,45 +1486,43 @@ msgstr ""
msgid "till"
msgstr "tot"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Kies een shift"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr "Shift rapporten"
@@ -1605,7 +1566,7 @@ msgstr "Administratieve hulpmiddelen"
msgid "Questionnaire creation and management"
msgstr "Vragenlijst opstellen en beheren"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1641,13 +1602,11 @@ msgstr "Voeg een steekproeven aan vragenlijsten toe"
msgid "Set values in questionnaire to pre fill"
msgstr "Configureer automatisch antwoordinvulling"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1655,7 +1614,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr "Voeg operatoren aan systeem toe"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "Voeg operators aan vragenlijst toe"
@@ -1664,192 +1624,201 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr "Shift management (voeg toe/verwijder)"
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "Vragenlijst vooruitgang"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "Geef alle toekomstige afspraken weer"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr "Vragenlijst resultaten"
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Data uitvoer"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "Operator Prestaties"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "Klanten beheer"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "Voeg klanten aan systeem toe"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "Functies voor de toezichthouder"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "Ken resultaten aan cases toe"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Doorzoek de steekproef"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Systeeminstellingen"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr "Stel standaard tijdzone lijst in"
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr "Stel standaard shift tijden in"
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr "Stel bel restrictie tijden in"
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr "Start en monitor VoIP"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr "Steekproef toevoegen: Selecteer de toe te voegen steekproef"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr "Max gesprekken"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr "Max aantal bel pogingen (0 voor oneindig)"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
"Aantal antwoordapparaat berichten na te laten per case (o voor nooit)"
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr "Kies toevallig uit de steekproef? (anders opeenvolgend)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr "Steekproeven geselecteerd voor deze vragenlijst"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr "Klik om te verwijderen:"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr "Voeg een steekproef aan deze vragenlijst toe:"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "Kies steekproef:"
@@ -1865,22 +1834,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1933,7 +1913,6 @@ msgid "Search within this sample"
msgstr "Zoek in deze steekproef"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1945,32 +1924,27 @@ msgstr "Zoek naar:"
msgid "Start search"
msgstr "Begin met zoeken"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr "Vragenlijst Resultaten"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr "Resultaten"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "Steekproef status"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr "Gekozen uit steekproef"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr "Behouden in steekproef"
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Nummer"
@@ -1998,35 +1972,32 @@ msgstr "Min"
msgid "Secs"
msgstr "Sec"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Ratio"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr "Response Rate 1"
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr "Refusal Rate 1"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr "Cooperation Rate 1"
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr "Contact Rate 1"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Aantal"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2038,7 +2009,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr "Geen resultaten opgeslagen voor deze vragenlijst"
@@ -2062,13 +2033,14 @@ msgstr "Geen shifts bepaald voor deze vragenlijst"
msgid "Shift"
msgstr "Shift"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr "Shift rapport"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr "Vol VoIP Proces op"
@@ -2139,17 +2111,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2159,17 +2126,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2177,11 +2142,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2195,11 +2158,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2207,7 +2172,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2262,8 +2228,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr "Voeg shifts toe"
@@ -2273,9 +2238,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2300,9 +2265,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Dag"
@@ -2314,8 +2278,36 @@ msgstr "Gebruik shift?"
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2331,9 +2323,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2341,8 +2331,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2430,8 +2419,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "Voeg een operator toe"
@@ -2449,8 +2437,7 @@ msgstr "Voeg Operator aan Vragenlijst toe"
msgid "tool"
msgstr "pagina"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2494,11 +2481,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2518,8 +2505,7 @@ msgstr "Is the operator een toezichthouder"
msgid "Is the operator a refusal converter?"
msgstr "Is de operator een weigeraar hercontacteerder?"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Gebruiker toegoeven"
@@ -2543,7 +2529,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "Naam van de vragenlijst:"
@@ -2551,8 +2537,7 @@ msgstr "Naam van de vragenlijst:"
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2568,71 +2553,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr "Beperk afspraken tot shifts?"
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr "Beperk werk tot shifts?"
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr "Enkel als testvragenlijst?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr "Respondent selectie inleiding:"
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr "Respondent selectie project inleiding:"
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr "Respondent selectie bij het terugbellen (vragenlijst reeds gestart):"
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr "Bericht om na te laten op het antwoord apparaat:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2649,13 +2634,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2919,7 +2902,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Telefoonnummer"
@@ -2951,7 +2934,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2959,11 +2942,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Project"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "Huidig resultaat:"
@@ -2980,14 +2963,14 @@ msgid "Cannot connect to VoIP Server"
msgstr "Kan niet verbinden met VoIP Server"
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
@@ -2995,17 +2978,21 @@ msgstr ""
"Geef de start en eind tijd voor elke dag van de week waarbinnen u de "
"gesprekken wil beperken"
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Voeg rij toe"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -3016,8 +3003,7 @@ msgstr "Kon niet toevoegen"
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "Voeg een klant toe"
@@ -3075,8 +3061,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr "Bewaar wijzigingen in de shifts"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3120,8 +3105,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3165,8 +3149,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3304,23 +3287,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "Voeg toe/verwijder Tijdzones"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr "Klik om een tijdzone van de standaardlijst te verwijderen"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr "Voeg een tijdzone toe:"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Tijdzone: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3341,8 +3332,7 @@ msgstr "Kies een case"
msgid "Set an outcome for this call"
msgstr "Stel een resultaat voor dit gesprek in"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr "Stel resultaat in"
@@ -3362,39 +3352,50 @@ msgstr "Gesprekslijst"
msgid "Change outcome"
msgstr "Wijzig resultaat"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr "Case opmerkingen"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr "Stel een case resultaat in"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "De case bestaat niet"
@@ -3402,19 +3403,19 @@ msgstr "De case bestaat niet"
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "ochtend"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "namiddag"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "avond"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3517,10 +3518,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3571,13 +3570,11 @@ msgstr "Er zijn geen vragenlijsten aan u toegekend"
msgid "You are not a valid client"
msgstr "U bent geen geldige klant"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3606,10 +3603,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/oc/LC_MESSAGES/oc.mo b/locale/oc/LC_MESSAGES/oc.mo
index c1c405d5..b48446f1 100644
Binary files a/locale/oc/LC_MESSAGES/oc.mo and b/locale/oc/LC_MESSAGES/oc.mo differ
diff --git a/locale/oc/LC_MESSAGES/oc.po b/locale/oc/LC_MESSAGES/oc.po
index 97b462b8..0a00e721 100644
--- a/locale/oc/LC_MESSAGES/oc.po
+++ b/locale/oc/LC_MESSAGES/oc.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Occitan (post 1500) \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr ""
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr ""
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Data / Ora"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr ""
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Resultat"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr ""
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Pas d'operador"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr ""
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Tornar en rèire"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr ""
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr ""
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Rendètz-vos"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Arrestar de trabalhar"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Nòtas"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr ""
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Istoric de las sonadas"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr ""
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Rendètz-vos"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Performància"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr ""
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Informacions sul projècte"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Info"
@@ -175,9 +169,7 @@ msgstr "Info"
msgid "Stop REC"
msgstr "Arrestar l'enregistrament"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Enregistrament"
@@ -185,8 +177,7 @@ msgstr "Enregistrament"
msgid "Beginning recording..."
msgstr "Començament de l'enregistrament"
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr ""
@@ -194,8 +185,8 @@ msgstr ""
msgid "Begin the manual recording now..."
msgstr ""
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Enregistrar"
@@ -207,43 +198,47 @@ msgstr "Arrestar l'enregistrament"
msgid "Stop the manual recording now..."
msgstr ""
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr ""
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Sètz : "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr ""
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr ""
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr ""
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr ""
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr ""
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -277,7 +272,7 @@ msgstr ""
msgid "Select phone number:"
msgstr ""
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Pas cap"
@@ -301,7 +296,7 @@ msgstr ""
msgid "Accept appointment from "
msgstr ""
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr ""
@@ -317,7 +312,8 @@ msgstr "activat"
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -325,7 +321,7 @@ msgstr ""
msgid "Call List"
msgstr ""
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr ""
@@ -333,12 +329,17 @@ msgstr ""
msgid "Number called"
msgstr "Numèro sonat"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operador"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr ""
@@ -346,15 +347,18 @@ msgstr ""
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Acabar"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr ""
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Supervisor"
@@ -362,11 +366,12 @@ msgstr "Supervisor"
msgid "Restart"
msgstr "Reaviar"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Disponibilitat"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -378,7 +383,11 @@ msgstr "Informacion"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -390,8 +399,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -407,114 +415,80 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Sonar"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr ""
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr ""
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr ""
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr ""
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr ""
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr ""
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr ""
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr ""
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr ""
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Sonada responduda"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Penjar"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Sonariá"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Respondut"
@@ -542,7 +516,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -570,58 +546,50 @@ msgstr ""
msgid "Go back to work"
msgstr "Retorn al trabalh"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Estatut"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Nom"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr ""
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Telefòn Professional"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Respondedor"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr ""
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr ""
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr ""
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -635,8 +603,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Començar"
@@ -644,12 +614,14 @@ msgstr "Començar"
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Questionari"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -657,48 +629,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr ""
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr ""
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Tornar en arrièr"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr ""
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Var"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Valor"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -722,8 +692,7 @@ msgstr ""
msgid "Reasons:"
msgstr "Rasons :"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -735,13 +704,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "Identificant (ID)"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Descripcion"
@@ -753,7 +721,10 @@ msgstr ""
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Escandalhatge"
@@ -826,34 +797,33 @@ msgstr ""
msgid "Case Notes"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Apondre una nòta"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr ""
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Nòta"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr ""
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr ""
@@ -921,7 +891,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -960,8 +932,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -977,8 +948,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -998,11 +968,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1022,11 +992,13 @@ msgstr ""
msgid "Appointment List"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1038,7 +1010,8 @@ msgstr ""
msgid "No future appointments scheduled"
msgstr ""
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1072,13 +1045,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1086,27 +1057,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Data"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1124,23 +1095,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1148,27 +1116,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1176,13 +1141,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "tampat"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "Dobrir"
@@ -1242,7 +1205,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1254,36 +1217,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1300,8 +1272,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1309,11 +1280,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Ora de començament"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1333,38 +1304,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Suprimir"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Editar"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Nom d'Ostal"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1372,9 +1344,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1390,11 +1360,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "per"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1406,7 +1376,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1418,27 +1388,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1457,8 +1427,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1466,38 +1435,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Temps total"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1505,45 +1468,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1587,7 +1548,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1623,13 +1584,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1637,7 +1596,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1646,191 +1606,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Sortida de las donadas"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Paramètres del sistèma"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1846,22 +1815,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1914,7 +1894,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1926,32 +1905,27 @@ msgstr "Recercar :"
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Numèro"
@@ -1979,35 +1953,32 @@ msgstr "Min"
msgid "Secs"
msgstr "Segs"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Debit"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Compte"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr "%"
@@ -2019,7 +1990,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2043,13 +2014,14 @@ msgstr ""
msgid "Shift"
msgstr "Maj"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2115,17 +2087,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2135,17 +2102,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2153,11 +2118,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2171,11 +2134,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2183,7 +2148,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2238,8 +2204,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2249,9 +2214,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2274,9 +2239,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Jorn"
@@ -2288,8 +2252,36 @@ msgstr ""
msgid "Submit changes"
msgstr "Validar las modificacions"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2305,9 +2297,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "coma"
@@ -2315,8 +2305,7 @@ msgstr "coma"
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2404,8 +2393,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2421,8 +2409,7 @@ msgstr ""
msgid "tool"
msgstr "esplech"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2462,11 +2449,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2486,8 +2473,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Apondre un utilizaire"
@@ -2511,7 +2497,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2519,8 +2505,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2536,71 +2521,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2617,13 +2602,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2887,7 +2870,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Numèro de telefòn"
@@ -2919,7 +2902,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2927,11 +2910,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Projècte"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2948,30 +2931,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2982,8 +2969,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3036,8 +3022,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3081,8 +3066,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3126,8 +3110,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3265,23 +3248,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3301,8 +3292,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3322,39 +3312,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3362,19 +3363,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3477,10 +3478,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3531,13 +3530,11 @@ msgstr ""
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3566,10 +3563,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/pl/LC_MESSAGES/pl.mo b/locale/pl/LC_MESSAGES/pl.mo
index bf254e19..1246bb16 100644
Binary files a/locale/pl/LC_MESSAGES/pl.mo and b/locale/pl/LC_MESSAGES/pl.mo differ
diff --git a/locale/pl/LC_MESSAGES/pl.po b/locale/pl/LC_MESSAGES/pl.po
index bbb29d3e..aa7600b0 100644
--- a/locale/pl/LC_MESSAGES/pl.po
+++ b/locale/pl/LC_MESSAGES/pl.po
@@ -7,171 +7,165 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-10-21 18:44+0000\n"
"Last-Translator: Paweł Timler \n"
"Language-Team: Polish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Historia wywiadów"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr ""
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Data/Czas"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "ID wywiadu"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Wynik"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Respondent"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Brak operatora"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Wybór respondenta - sekretarka automatyczna"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Rozłącz się bez nagrywania wiadomości"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Zakończ połączenie z wynikiem: automatyczna sekretarka w firmie"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
"Zakończ połączenie z wynikiem: automatyczna sekretarka, pozostawiono "
"wiadomość"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
"Zakończ połączenie z wynikiem: automatyczna sekretarka, nie pozostawiono "
"wiadomości"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Cofnij"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Przepraszam za kłopot, wybrałem niewłaściwy numer"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Zakończ rozmowę z wynikiem: Numer firmowy"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Termin"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr "Email"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Koniec pracy"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Notatki"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Dane kontaktowe"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Historia połączeń"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Zmiany"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Umówienia"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Wydajność"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Historia pracy"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Szczegóły projektu"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Informacje"
@@ -179,9 +173,7 @@ msgstr "Informacje"
msgid "Stop REC"
msgstr "Zatrzymaj nagrywanie"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Nagraj"
@@ -189,8 +181,7 @@ msgstr "Nagraj"
msgid "Beginning recording..."
msgstr "Nagrywaj"
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Brak połączenia, nie rozpoczęto nagrywania"
@@ -198,8 +189,8 @@ msgstr "Brak połączenia, nie rozpoczęto nagrywania"
msgid "Begin the manual recording now..."
msgstr "Nagrywanie manualne"
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Nagrywaj"
@@ -211,43 +202,47 @@ msgstr "Zatrzymaj nagrywanie"
msgid "Stop the manual recording now..."
msgstr "Zatrzymaj nagrywanie manualne"
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Wybór respondenta - oddzwoń"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Jesteś: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Tak - kontynuuj w miejscu przerwania rozmowy"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Koniec połączenia - odmowa respondenta"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Wybór respondenta"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Tak - Kontynuuj"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr "Koniec połączenia - respondent nieobecny pod wybranym numerem"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr "Koniec połączenia - wywiad przeprowadzony w innym trybie"
@@ -281,7 +276,7 @@ msgstr "Dodaj tego respondenta"
msgid "Select phone number:"
msgstr "Wybierz numer telefonu"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Żaden"
@@ -305,7 +300,7 @@ msgstr "Termin"
msgid "Accept appointment from "
msgstr "Zaakceptuj termin od "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " do "
@@ -321,7 +316,8 @@ msgstr "na"
msgid "Appointment with myself only?"
msgstr "Umówienie wyłącznie ze mną?"
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -329,7 +325,7 @@ msgstr ""
msgid "Call List"
msgstr "lista połaczeń"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Brak wykonanych połaczeń"
@@ -337,12 +333,17 @@ msgstr "Brak wykonanych połaczeń"
msgid "Number called"
msgstr ""
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr ""
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Brak wywiadu"
@@ -350,15 +351,18 @@ msgstr "Brak wywiadu"
msgid "Get a new case"
msgstr "Następny przypadek"
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Koniec"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Zadzwoń/Zakończ"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Koordynator"
@@ -366,11 +370,12 @@ msgstr "Koordynator"
msgid "Restart"
msgstr "Restart"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Dostępność"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr "Chat z Supervisorem"
@@ -382,7 +387,11 @@ msgstr "Informacje"
msgid "Me"
msgstr "Ja"
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr "ID Wywiadu"
@@ -394,8 +403,7 @@ msgstr "Supervisor jest dostępny"
msgid "Supervisor not available"
msgstr "Supervisor jest niedostępny"
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr "Wiadomość"
@@ -411,115 +419,81 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Rozmowa"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Brak połączenia"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Zakończ wywiad"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
"Wciśnij przycisk \"połączenie\", aby wybrać numer przypisany do tego terminu:"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Numer do wybrania:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Wybierz numer telefonu:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "Ostatnie połączenie zakończyło pracę z tym wywiadem"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "Wpisz komentarz do tego wyniku przed zakończeniem wywiadu:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Wymaga kodowania"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Przypisz wynik"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Błąd: zamknij okno"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Łączenie"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Połączenie odebrane"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Rozłącz"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Dzwonienie"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Odebrane"
@@ -547,7 +521,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -575,52 +551,45 @@ msgstr ""
msgid "Go back to work"
msgstr "Wróć do pracy"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Stan"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Imię"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "Brak numerów telefonów"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Wybór respondenta - wstęp"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Numer firmowy"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Automatyczna sekretarka"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
"Zakończ połączenie z wynikiem: Brak odpowiedzi (koniec dzwonków lub zajęty) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Zakończ połączenie z wynikiem: Przypadkowe rozłączenie"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Zakończ połączenie z wynikiem: Odmowa nieznanej osoby"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
@@ -628,8 +597,7 @@ msgstr ""
"Zakończ połączenie z wynikiem: Brak odpowiedniego respondenta (osoba "
"nigdynie była dostepna pod tym numerem"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -645,8 +613,10 @@ msgstr "Lista zmian"
msgid "No shifts for this project"
msgstr "Brak zmian dla tego projektu"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Początek"
@@ -654,12 +624,14 @@ msgstr "Początek"
msgid "No future shifts scheduled"
msgstr "Brak zaplanowanych zmian w przyszłości"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Kwestionariusz"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr "Wybór respondenta - koniec projektu"
@@ -667,48 +639,46 @@ msgstr "Wybór respondenta - koniec projektu"
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Zakończ połączenie z wynikiem: Kompletny"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Dodaj respondenta"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Cofnij się"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "Id wywiadu:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Respondent:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Zmienna"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Wartość"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -732,8 +702,7 @@ msgstr "Nie ma obecnie dostępnego wywiadu"
msgid "Reasons:"
msgstr "Przyczyny:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -745,13 +714,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr "Przydzielone kwestionariusze:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Opis"
@@ -763,7 +731,10 @@ msgstr "BŁĄD: Nie masz przydzielonych kwestionariuszy"
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr ""
@@ -836,34 +807,33 @@ msgstr "OSTRZEŻENIE: Kwota w rzędach osiągnięta dla tego pytania"
msgid "Case Notes"
msgstr "Notatki wywiadu"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Dodaj notatkę"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Brak notatek"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Notatka"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Obecna zmiana"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Ukończone"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Ukończone na godzinę"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Obecny projekt"
@@ -931,7 +901,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -970,8 +942,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -987,8 +958,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr "Wybór respondenta - kwota wyczerpana"
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr "Zakończ rozmowę z wynikiem: kwota wyczerpana"
@@ -1008,11 +978,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr "Imię"
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr "Nazwisko"
@@ -1032,11 +1002,13 @@ msgstr ""
msgid "Appointment List"
msgstr "Lista umówień"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Jeszcze nie wybierany"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1048,7 +1020,8 @@ msgstr "Brak umówień"
msgid "No future appointments scheduled"
msgstr "Brak zaplanowanych umówień w przyszłości"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1085,13 +1058,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1099,27 +1070,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Zatrzymaj działający proces"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Data"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1137,23 +1108,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1161,27 +1129,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr "Raport kwoty"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Wybierz kwestionariusz z poniższej listy"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Wybierz próbę z poniższej listy"
@@ -1189,13 +1154,11 @@ msgstr "Wybierz próbę z poniższej listy"
msgid "Total sample"
msgstr "Cała próba"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1255,7 +1218,7 @@ msgstr "Kliknij przycisk "wstecz" w przeglądarce i napraw problem"
msgid "Import: Select columns to import"
msgstr "Import: wybierz kolumny do importu"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Import: Wybierz plik do wgrania"
@@ -1267,36 +1230,45 @@ msgstr "Wybierz plik próby w formacie CSV do wgrania:"
msgid "Description for file:"
msgstr "Opis pliku:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "Dodaj próbę"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1313,8 +1285,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1322,11 +1293,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Czas rozpoczęcia"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "Czas zakończenia"
@@ -1346,38 +1317,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Usuń"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Edytuj"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1385,9 +1357,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1403,11 +1373,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1419,7 +1389,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1431,27 +1401,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1470,8 +1440,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1479,38 +1448,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "Rozmowy"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Całkowity czas"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1518,45 +1481,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Wybierz zmianę"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr "Modyfikuj"
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1600,7 +1561,7 @@ msgstr "Narzędzia administracyjne"
msgid "Questionnaire creation and management"
msgstr "Tworzenie i zarządzanie kwestionariuszami"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr "Utwórz kwestionariusz w Limesurvey"
@@ -1636,13 +1597,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr "Zarządzanie ankieterami"
@@ -1650,7 +1609,8 @@ msgstr "Zarządzanie ankieterami"
msgid "Add operators to the system"
msgstr "Dodaj ankietera"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1659,191 +1619,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr "Zarządzanie zmianami"
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "Pokaż przyszłe umówienia"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr ""
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Szukaj w próbie"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Ustawienia systemu"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1859,22 +1828,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1927,7 +1907,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1939,32 +1918,27 @@ msgstr ""
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr ""
@@ -1992,35 +1966,32 @@ msgstr ""
msgid "Secs"
msgstr ""
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr ""
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2032,7 +2003,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2056,13 +2027,14 @@ msgstr ""
msgid "Shift"
msgstr ""
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2128,17 +2100,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2148,17 +2115,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr "Pokaż ankieterowi"
@@ -2166,11 +2131,9 @@ msgstr "Pokaż ankieterowi"
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2184,11 +2147,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr "Włącz"
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr "Wyłącz"
@@ -2196,7 +2161,8 @@ msgstr "Wyłącz"
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr "Włącz/Wyłącz"
@@ -2251,8 +2217,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2262,9 +2227,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2287,9 +2252,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr ""
@@ -2301,8 +2265,36 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2318,9 +2310,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2328,8 +2318,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2417,8 +2406,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2434,8 +2422,7 @@ msgstr ""
msgid "tool"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2475,11 +2462,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr "Użytkownik chatu Jabber/XMPP"
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr "Hasło chatu Jabber/XMPP"
@@ -2499,8 +2486,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Dodaj użytkownika"
@@ -2524,7 +2510,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "Nazwa kwestionariusza"
@@ -2532,8 +2518,7 @@ msgstr "Nazwa kwestionariusza"
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2549,71 +2534,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr "Wiadomość do zostawienia na automatycznej sekretarce:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2630,13 +2615,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2900,7 +2883,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr ""
@@ -2932,7 +2915,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2940,11 +2923,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr ""
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2961,30 +2944,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2995,8 +2982,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3049,8 +3035,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr "Teraz"
@@ -3094,8 +3079,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3139,8 +3123,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr "Użytkownik"
@@ -3278,23 +3261,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3314,8 +3305,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3335,39 +3325,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3375,19 +3376,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "Rano"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "Popołudnie"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "Wieczór"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3490,10 +3491,8 @@ msgstr "Rozłączone"
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3544,13 +3543,11 @@ msgstr "Brak kwestionariuszy przypisanych do ciebie"
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3579,10 +3576,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/pt/LC_MESSAGES/pt.mo b/locale/pt/LC_MESSAGES/pt.mo
index 609e97ac..0a0cda61 100644
Binary files a/locale/pt/LC_MESSAGES/pt.mo and b/locale/pt/LC_MESSAGES/pt.mo differ
diff --git a/locale/pt/LC_MESSAGES/pt.po b/locale/pt/LC_MESSAGES/pt.po
index 4cbc3a09..8795cc07 100644
--- a/locale/pt/LC_MESSAGES/pt.po
+++ b/locale/pt/LC_MESSAGES/pt.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-12-04 16:38+0000\n"
"Last-Translator: Marco Antonio Ciciliati \n"
"Language-Team: Brazilian Portuguese \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Histórico de Casos"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Nenhuma ligação foi realizada"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Data/Hora"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "Caso Nr"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Resultado"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Respondente"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Sem operador"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Seleção do Entrevistado - Secretária Eletrônica/Caixa de Mensagens"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Não deixe uma mensagem, por favor, desligue"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Encerrado: URA ou Cx Msg Comercial"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr "Encerrado: Recado gravado na Caixa de Mensagem"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr "Encerrado: Caixa de Mensagens - Sem Recado Gravado"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Voltar"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Seleção do Entrevistado - Contato Empresarial"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Desculpe incomodá-lo, eu liguei para o número errado"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Chamada Encerrada: Telefone comercial"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Agendamentos"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr "E-mail"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Encerrar trabalho"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr "Expandir ou Contrair"
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Notas"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Detalhes do contato"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Histórico de chamadas"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Turnos"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Agendamentos"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Desempenho"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Histórico de trabalho"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Informações do projeto"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Informações"
@@ -175,9 +169,7 @@ msgstr "Informações"
msgid "Stop REC"
msgstr "Parar GRV"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Gravar"
@@ -185,8 +177,7 @@ msgstr "Gravar"
msgid "Beginning recording..."
msgstr "Iniciando gravação..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Não há ligação ativa. Impossível iniciar uma gravação"
@@ -194,8 +185,8 @@ msgstr "Não há ligação ativa. Impossível iniciar uma gravação"
msgid "Begin the manual recording now..."
msgstr "Iniciar gravação manual agora..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Gravar"
@@ -207,43 +198,47 @@ msgstr "Parando a gravação..."
msgid "Stop the manual recording now..."
msgstr "Parando a gravação manual agora..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Seleção do entrevistado - Retornar ligação"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Estamos com: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr "% concluído"
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Sim - Continuar de onde paramos"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Encerrado: Recusa do Entrevistado"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Seleção do Entrevistado - Introdução do Projeto"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Sim - Continue"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr "Encerrado: Entrevistado não disponível neste número"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr "Encerrado: Fora da Listagem (Já completado em outro modo)"
@@ -278,7 +273,7 @@ msgstr "Adicionar este respondente"
msgid "Select phone number:"
msgstr "Selecione o número de telefone"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Nenhum"
@@ -303,7 +298,7 @@ msgstr "Agendamentos:"
msgid "Accept appointment from "
msgstr "Realizar agendamento das "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " até as "
@@ -319,7 +314,8 @@ msgstr "para o número"
msgid "Appointment with myself only?"
msgstr "Agendar apenas para você mesmo?"
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -327,7 +323,7 @@ msgstr ""
msgid "Call List"
msgstr "Lista de chamadas"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Não existem ligações efetuadas"
@@ -335,12 +331,17 @@ msgstr "Não existem ligações efetuadas"
msgid "Number called"
msgstr "Número chamado"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operador(a)"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Sem caso"
@@ -348,15 +349,18 @@ msgstr "Sem caso"
msgid "Get a new case"
msgstr "Obter um novo caso"
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Encerrar"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Chamar/Encerrar"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Supervisor"
@@ -364,11 +368,12 @@ msgstr "Supervisor"
msgid "Restart"
msgstr "Reiniciar"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Disponibilidade"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr "Chat com o Supervisor"
@@ -380,7 +385,11 @@ msgstr "Informações"
msgid "Me"
msgstr "Eu"
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr "Caso Nr"
@@ -392,8 +401,7 @@ msgstr "Supervisor Disponível"
msgid "Supervisor not available"
msgstr "Supervisor Indisponível"
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr "Mensagem"
@@ -409,55 +417,32 @@ msgstr "De"
msgid "Supervisor chat is not enabled"
msgstr "Chat com o Supervisor não habilitado"
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Ligar"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Telefone Livre"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Encerrar caso"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "Pressione o botão LIGAR para discar para este agendamento."
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Número para discar:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -465,60 +450,49 @@ msgstr ""
"Sua extensão VoIP não está habilitada. Por favor, feche esta janela e "
"habilite o VoIP clicando um vez sobre o botão vermelho denominado 'VoIP Off'"
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Selecione o número de telefone para discar:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "Última chamada concluída para esta tentativa"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "Informe um motivo ou resultado antes de encerrar este caso."
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Requer código"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Informe um resultado"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Erro: Feche a janela"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Solicitando chamada"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Chamada atendida"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Chamada desligada"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Chamando"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Atendida"
@@ -546,7 +520,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr "Ramal"
@@ -574,58 +550,50 @@ msgstr ""
msgid "Go back to work"
msgstr "Voltar ao trabalho"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Situação"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Nome"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "Sem mais números para chamar"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Seleção do Entrevistado - Intrudução"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Encerrado: Fone Comercial"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Caixa de Mensagens"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr "Encerrado: Não Atende ou Ocupado "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Encerrado: Queda de ligação"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Encerrado: Recusa de Terceiro"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr "Encerrado: Entrevistado nunca encontrado neste número"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -639,8 +607,10 @@ msgstr "Lista de Agendamentos"
msgid "No shifts for this project"
msgstr "Não existem agendamentos para este projeto"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Iniciar"
@@ -648,12 +618,14 @@ msgstr "Iniciar"
msgid "No future shifts scheduled"
msgstr "Não existem agendamentos futuros"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Questionário"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr "Seleção do Entrevistado - Projeto Encerrado."
@@ -661,50 +633,48 @@ msgstr "Seleção do Entrevistado - Projeto Encerrado."
msgid "Call automatically ended with outcome: Complete - End case"
msgstr "Encerrado Automaticamente: Entrevista realizada - Término do caso"
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Ligação encerrada: Entrevista Completa"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Adicionar respondente"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Voltar"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "Caso Nr:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Respondente:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Variável"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Valor"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
"Selecione grupos para limitar a disponibilidade (Selecione Nenhum para "
"manter sempre disponível)"
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr "Grupos de disponibilidade não definidos para este questionário"
@@ -728,8 +698,7 @@ msgstr "Sem casos disponíveis"
msgid "Reasons:"
msgstr "Motivos:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr "Ativado"
@@ -741,13 +710,12 @@ msgstr "Desativado"
msgid "Assigned questionnaires:"
msgstr "Questionários atribuídos:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "NR"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Descrição"
@@ -759,7 +727,10 @@ msgstr "ERRO: Não há questionários atribuídos à você"
msgid "Assigned samples:"
msgstr "Listagens atribuídas:"
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Lista"
@@ -834,34 +805,33 @@ msgstr "POSSÍVEL ERRO: Amostra encerrada para esta questão"
msgid "Case Notes"
msgstr "Notas do Caso"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Adicionar nota"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Sem observações"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Nota"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Neste turno"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Realizadas"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Realizadas por hora"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Este projeto"
@@ -929,7 +899,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr "segundos"
@@ -968,8 +940,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -985,8 +956,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr "Seleção do Entrevistado - Encerramento da amostra do projeto"
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr "Encerrado: Amostra Encerrada"
@@ -1006,11 +976,11 @@ msgstr "Endereço de e-mail inválido"
msgid "Email respondent for self completion"
msgstr "E-mail do entrevistado para auto-resposta"
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr "Primeiro nome"
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr "Sobrenome"
@@ -1030,11 +1000,13 @@ msgstr "E-mail de auto-resposta não disponível para este questionário"
msgid "Appointment List"
msgstr "Lista de Agendamentos"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Disponível"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr "Qualquer operador"
@@ -1046,7 +1018,8 @@ msgstr "Não existem agendamentos"
msgid "No future appointments scheduled"
msgstr "Não existem agendamentos futuros"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr "Agendado para"
@@ -1085,13 +1058,11 @@ msgid ""
msgstr ""
"Por favor, aguarde esta chamada responder antes de tentar chamar o Supervisor"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr "Monitorar o sistema de sorteio de casos"
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "Processo em execução:"
@@ -1099,29 +1070,29 @@ msgstr "Processo em execução:"
msgid "Kill signal sent: Please wait..."
msgstr "Interromper o comando enviado: Por favor aguarde..."
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
"Processo já foi encerrado (ex.: servidor foi reiniciado) - clique aqui para "
"confirmar"
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Encerrar o processo em execução"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr "Nr Log"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Data"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr "Situação"
@@ -1146,23 +1117,20 @@ msgstr ""
"você não estiver com dificuldades de desempenho, não é recomendado usar este "
"recurso."
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "Resultado do último processo em curso (se algum)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "Histórico de Chamadas"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "Data/Hora início da chamada"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "Hora do término"
@@ -1170,27 +1138,24 @@ msgstr "Hora do término"
msgid "Download Call History List"
msgstr "Efetuar Download do Histórico de Chamadas"
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "Atribuir clientes aos questionários"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr "Relatório de Amostragem"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Selecione um questionário na lista abaixo"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Selecione uma amostra da lista abaixo"
@@ -1198,13 +1163,11 @@ msgstr "Selecione uma amostra da lista abaixo"
msgid "Total sample"
msgstr "Amostra Total"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "fechada"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "aberta"
@@ -1264,7 +1227,7 @@ msgstr "Por favor retorne no seu navegador e corrija o problema"
msgid "Import: Select columns to import"
msgstr "Importação: Selecione as colunas para importar"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Importar: Selecione o arquivo para carregar"
@@ -1276,38 +1239,47 @@ msgstr "Escolha uma listagem no formato CSV para carregar"
msgid "Description for file:"
msgstr "Descrição para o arquivo:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "Adicionar Listagem"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr "Iniciando o processo de sorteio de casos"
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
-msgstr "Sorteando casos"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
+msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
"O sistema fechou automaticamente o caso como caso não fechado por mais de 24 "
"horas"
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
-msgstr "Sorteio completado"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
+msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr "Esta tarefa levou"
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr "Sorteio completado"
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr "Falha para completar o sorteio"
@@ -1326,8 +1298,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr "Modificar resultado"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr "Editar agendamento"
@@ -1335,11 +1306,11 @@ msgstr "Editar agendamento"
msgid "Contact phone"
msgstr "Telefone de contato"
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Horário Inicial"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "Horário final"
@@ -1359,38 +1330,39 @@ msgstr "Mostrar agendamentos"
msgid "All appointments (with times displayed in your time zone)"
msgstr "Todos os agendamentos (horário local)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Excluir"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Alterar"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "Nome do(a) Pesquisador(a)"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "Nome do Entrevistado"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Sobrenome"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "Resultado atual"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "Pesquisador que chamou"
@@ -1398,9 +1370,7 @@ msgstr "Pesquisador que chamou"
msgid "No appointments in the future"
msgstr "Sem agendamentos futuros"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr "Amostras - Gerenciamento"
@@ -1416,11 +1386,11 @@ msgstr "Sem amostras em execução atualmente"
msgid "Stop calling this sample when:"
msgstr "Pare de chamar esta listagem quando:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "para"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr "completas"
@@ -1432,7 +1402,7 @@ msgstr "Amostra encerrada (fechada)"
msgid "Quota not yet reached"
msgstr "Amostra ainda não encerrada (aberta)"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr "Atualmente realizadas: "
@@ -1444,27 +1414,27 @@ msgstr "Selecione uma pergunta para a amostra"
msgid "Enter the details for creating the quota:"
msgstr "Informe os detalhes para criar a amostra:"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr "Valores pré-definidos para esta pergunta:"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr "Sem opções de respostas definidas para esta pergunta"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr "Código da resposta"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr "Código da resposta para comparar"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr "Tipo de comparação"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr "Parar de chamar quando o número de entrevistas nesta cota for"
@@ -1487,8 +1457,7 @@ msgstr ""
"todos os possíveis resultados a um caso. Isto restringe o que será atribuído "
"para um pesquisador."
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr "12. Alterar permissões dos operadores"
@@ -1496,38 +1465,32 @@ msgstr "12. Alterar permissões dos operadores"
msgid "Operator Performance"
msgstr "Desempenho do Operador"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "Por favor, selecione um quesionário"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "Chamadas"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Tempo total"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr "Tempo de chamada"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr "Completadas por hora"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr "Chamadas por hora"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr "Efetividade"
@@ -1535,47 +1498,43 @@ msgstr "Efetividade"
msgid "till"
msgstr "até"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Selecione o Turno"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
-msgstr "Grupos de disponibilidade"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
+msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr "Modificar"
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
-"Os grupos de disponibilidade definem os períodos de tempo autorizados para "
-"resposta."
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
-msgstr "Não existem grupos de disponibilidade"
+msgid "No time slots"
+msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
-msgstr "Grupo de disponibilidade"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
+msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
-msgstr "Adicionar grupo de disponibilidade"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
+msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
-msgstr "Nome do grupo de disponibilidade"
+msgid "Time slot name"
+msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr "Relatórios de Turnos"
@@ -1619,7 +1578,7 @@ msgstr "Ferramentas Administrativas"
msgid "Questionnaire creation and management"
msgstr "Questionários - Criação e Gerenciamento"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr "Criar um Questionário no LimeSurvey"
@@ -1655,13 +1614,11 @@ msgstr "Atribuir listagens a questionários"
msgid "Set values in questionnaire to pre fill"
msgstr "Definir auto-respostas no questionário"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr "Gerenciar grupos de amostras"
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr "Operadores - Gerenciamento"
@@ -1669,7 +1626,8 @@ msgstr "Operadores - Gerenciamento"
msgid "Add operators to the system"
msgstr "Adicionar Pesquisadores no sistema"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "Atribuir pesquisadores aos questionários"
@@ -1678,194 +1636,203 @@ msgid "Availability and shift management"
msgstr "Cronograma e Gerenciamento de Turnos"
#: admin/index.php:73
-msgid "Manage availablity groups"
-msgstr "Gerenciar grupos de disponibilidade"
+msgid "Manage time slots"
+msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr "Atribuir grupos de disponibilidade"
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr "Gerenciar Turnos (adicionar/remover)"
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "Evolução do Estudo"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "Mostrar todos os agendamentos futuros"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr "Relatório de Chamadas Realizadas"
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr "Resultados de Ligações"
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Exportação de Resultados"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "Produtividade dos Pesquisadores"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "Clientes - Gerenciamento"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "Adicionar clientes ao sistema"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "Supervisão - Funções"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "Atribuir Resultados de Ligações aos casos"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Localizar na listagem"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr "Redistribuir ligações"
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr "Gerador de Agendamentos em Massa"
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Sistema - Configurações"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr "Definir o Fuso Horário padrão"
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr "Definir os turnos padrões"
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr "Ajustar restrições de chamadas"
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr "Ajustar informações gerais"
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr "Gerenciar e Monitorar o sistema de sorteio"
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "Telefonia - Gerenciamento"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr "Iniciar e Monitorar Telefonia"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr "Registro de Ramais"
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr "Atribui Listagem: Selecione uma lista para atribuir"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr "Edita detalhes da listagem"
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr "Máximo de chamadas (0 para ilimitado)"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr "Máximo de tentativas (0 para ilimitado)"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
"Número de recados para deixar na secretária eletrônica (0 para nunca)"
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
"Selecionar os casos da listagem de forma aleatória? (desliga a forma "
"sequencial)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr "Listagens selecionadas para este questionário"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr "Ilimitado"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr "Sequencial"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr "Aleatório"
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr "Nunca"
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr "Clique para desmarcar"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr "Max Chamadas"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr "Max Tentativas"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr "Recados na Cx Msg"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr "Tipo de seleção"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr "Desativar listagem"
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr "Não foram selecionadas listagens para este questionário"
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr "Adicionar uma listagem para este questionário:"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "Selecionar listagem:"
@@ -1881,22 +1848,33 @@ msgstr "Atualizar"
msgid "Assign availability group to questionnaire"
msgstr "Atribuir um grupo de disponibilidade para o questionário"
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr "Não há grupos de disponibilidade selecionados para este questionário"
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr "Grupos de disponibilidade selecionados para este questionário"
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr "Adicione um grupo de disponibilidade para este questionário"
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr "Selecione um grupo de disponibilidade:"
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr "Adicionar grupo de disponibilidade"
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1952,7 +1930,6 @@ msgid "Search within this sample"
msgstr "Pesquisar dentro desta listagem"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr "Use the % character as a wildcard"
@@ -1964,32 +1941,27 @@ msgstr "Buscar por:"
msgid "Start search"
msgstr "Iniciar busca"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr "Resultados do Questionário"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr "Resultados"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "Situação da Listagem"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr "Utilizados"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr "Livres na listagem"
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Quantidade"
@@ -2018,35 +1990,32 @@ msgstr "Minutos"
msgid "Secs"
msgstr "Segundos"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Taxa"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr "Taxa de Resposta 1"
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr "Taxa de Recusa 1"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr "Taxa de Cooperação 1"
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr "Taxa de Contato 1"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Qtde"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr "%"
@@ -2058,7 +2027,7 @@ msgstr "Resultados por operador"
msgid "No outcomes recorded for this sample"
msgstr "Não há resultados gravados para esta listagem"
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr "Resultados de ligação não foram gravados neste questionário"
@@ -2082,13 +2051,14 @@ msgstr "Sem turnos definidos para este questionário"
msgid "Shift"
msgstr "Turno"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr "Ocorrência do turno"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr "Monitora a comunicação VoIP"
@@ -2159,17 +2129,12 @@ msgstr "ou: Selecione uma auto-resposta da listagem"
msgid "Add pre fill"
msgstr "Adicionar auto-resposta"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr "Renomear"
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr "Exibição de Campos"
@@ -2180,17 +2145,15 @@ msgid ""
msgstr ""
"Selecione quais campos desta listagem deverão ser mostrados aos pesquisadores"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr "Campo"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr "Dados de Exemplo"
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr "Habilita o operador para ver?"
@@ -2198,11 +2161,9 @@ msgstr "Habilita o operador para ver?"
msgid "Save changes"
msgstr "Salvar alterações"
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr "Desvinculação"
@@ -2218,11 +2179,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr "Deletar os campos selecionados"
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr "Habilitado"
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr "Desabilitado"
@@ -2230,7 +2193,8 @@ msgstr "Desabilitado"
msgid "Sample list"
msgstr "Listagens"
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr "Habilitar/Desabilitar"
@@ -2297,8 +2261,7 @@ msgstr "Escolha o arquivo CSV para carregar:"
msgid "Load bulk appointment CSV"
msgstr "Carregar arquivo de agendamento em massa"
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr "Adicionar turnos"
@@ -2310,9 +2273,9 @@ msgstr ""
"Você deve ser um operador (bem como ter acesso administrativo) para "
"adicionar ou editar os turnos"
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2340,9 +2303,8 @@ msgstr "Selecione o Ano"
msgid "Select week of year"
msgstr "Selecione a semana do ano"
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Dia"
@@ -2354,8 +2316,36 @@ msgstr "Utilizar turnos?"
msgid "Submit changes"
msgstr "Enviar alterações"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr "Amostras copiadas"
@@ -2371,9 +2361,7 @@ msgstr "Atualmente não existem amostras definidas"
msgid "Replicate: Where"
msgstr "Replicar: Onde"
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "conter"
@@ -2381,8 +2369,7 @@ msgstr "conter"
msgid "Sample only. Stop calling where"
msgstr "Somente listagem. Pare de chamar quando"
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr "os registros desta listagem quando:"
@@ -2478,8 +2465,7 @@ msgid ""
msgstr ""
"Não foi possível adicionar o operador. Já existe um operador com este nome:"
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "Adicionar um operador"
@@ -2496,8 +2482,7 @@ msgstr "Atribuir um Operador ao Questionário"
msgid "tool"
msgstr "Ferramenta"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2542,11 +2527,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr "Este operador usará VoIP?"
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr "Usuário do Chat Jabber/XMPP"
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr "Senha do usuário do chat Jabber/XMPP"
@@ -2566,8 +2551,7 @@ msgstr "Este operador é um Supervisor?"
msgid "Is the operator a refusal converter?"
msgstr "Este operador tem habilidade para converter recusas?"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Adicionar Usuário"
@@ -2591,7 +2575,7 @@ msgstr "vinculado em/para"
msgid "Error: Failed to insert questionnaire"
msgstr "ERRO: Falha ao inserir o questionário"
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "Nome para o questionário:"
@@ -2599,8 +2583,7 @@ msgstr "Nome para o questionário:"
msgid "Select limesurvey instrument:"
msgstr "Selecione um instrumento do LimeSurvey:"
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr "Instrumentos existentes:"
@@ -2616,72 +2599,72 @@ msgstr "Sem pré-seleção (vai direto ao questionário)"
msgid "Use basic respondent selection text (below)"
msgstr "Usar texto de seleção básico (abaixo)"
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr "Restringir agendamentos aos turnos?"
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr "Restringir trabalho aos turnos?"
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr "Questionário apenas de teste?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr "Habilitar para auto-resposta via email?"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr "Modo de visualização do questionário pelo entrevistado"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr "Tudo em um"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr "Questão por questão"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr "Um grupo por vez"
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr "Modelo do LimeSurvey para o respondente"
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr "URL para encaminhar os respondentes para auto-resposta (obrigatório)"
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr "Introdução para a seleção do respondente:"
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr "Introdução do Projeto para seleção do respondente"
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
"Ligação de Retorno Seleção do Entrevistado (questionário já iniciado):"
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr "Mensagem para deixar na caixa de mensagens:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr "Texto de Encerramento do projeto (Tela de agradecimento):"
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr "Informações do Projeto para os pesquisadores/operadores:"
@@ -2698,13 +2681,11 @@ msgstr ""
msgid "Display extension status"
msgstr "Mosta a situação do ramal"
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2968,7 +2949,7 @@ msgstr "Sábados"
msgid "String"
msgstr "Texto"
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Telefone"
@@ -3000,7 +2981,7 @@ msgstr "E-mail"
msgid "Self completion email invitation sent"
msgstr "Auto Resposta com envio de email"
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr "Auto Resposta online"
@@ -3008,11 +2989,11 @@ msgstr "Auto Resposta online"
msgid "Cases by outcome"
msgstr "Casos por Resultados"
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Projeto"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "Resultado atual:"
@@ -3029,14 +3010,14 @@ msgid "Cannot connect to VoIP Server"
msgstr "Não foi possível conectar ao seu servidor VoIP"
#: admin/availability.php:57
-msgid "No availability group set"
-msgstr "Não foi ajustado um grupo de disponibilidade"
+msgid "No time slot group set"
+msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
-msgstr "Modificar disponibilidade"
+msgid "Modify time slots"
+msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
@@ -3044,18 +3025,22 @@ msgstr ""
"Informe os horários de início e término para cada dia da semana para "
"autorizar as chamadas dentro desses intervalos"
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Adicionar linha"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
-msgstr "Salvar alterações para as disponibilidades"
+msgid "Save changes to time slot group"
+msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
-msgstr "Deletar este grupo de disponibilidade"
+msgid "Delete this time slot group"
+msgstr ""
#: admin/clients.php:84
msgid "Could not add"
@@ -3065,8 +3050,7 @@ msgstr "Impossível adicionar"
msgid "There may already be a client of this name"
msgstr "Já deve existir um cliente com este nome"
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "Adicionar um cliente"
@@ -3124,8 +3108,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr "Salvar alterações para os turnos"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr "Agora"
@@ -3174,8 +3157,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr "Efetuar Download dos resultados deste questionário via Limesurvey"
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr "Por favor, selecione uma listagem"
@@ -3219,8 +3201,7 @@ msgstr ""
msgid "Operator edit"
msgstr "Edição do Operador"
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr "Usuário"
@@ -3365,23 +3346,31 @@ msgstr "Por favor, confirme se você quer mesmo deletar o questionário"
msgid "Delete this questionnaire"
msgstr "Deleta este questionário"
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "Adicionar/Remover fusos horários"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr "Clique para remover um fuso horário da lista padrão"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr "Adicionar um fuso horário:"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Fuso horário: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr "Adicionar Fuso horário"
@@ -3401,8 +3390,7 @@ msgstr "Selecionar caso"
msgid "Set an outcome for this call"
msgstr "Definir um resultado para esta chamada"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr "Definir resultado"
@@ -3422,41 +3410,52 @@ msgstr "Lista de chamadas"
msgid "Change outcome"
msgstr "Mudar resultado"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr "Observações do caso"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr "Modificar respostas deste caso"
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr "Caso não iniciado ainda no Limesurvey"
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr "Definir um resultado para o caso"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr "Atualizar a disponibilidade do caso"
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
"Atribuir este caso para um pesquisador (aparecerá como o próximo caso para "
"ele)"
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr "Atribuir para o pesquisador"
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "Caso inexistente"
@@ -3464,19 +3463,19 @@ msgstr "Caso inexistente"
msgid "Error: Cannot write to temporary directory"
msgstr "ERRO: não foi possível gravar no diretório temporário"
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "manhã"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "tarde"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "noite"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3581,10 +3580,8 @@ msgstr "Desconectado"
msgid "Reconnected"
msgstr "Reconectado"
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr " Ramal "
@@ -3640,13 +3637,11 @@ msgstr "Não existem questionários atribuídos à você"
msgid "You are not a valid client"
msgstr "Desculpe, você não é um cliente autorizado"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3675,10 +3670,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
@@ -3744,11 +3745,35 @@ msgstr ""
"Assim começa a história\n"
"\n"
+#~ msgid "Sorting cases"
+#~ msgstr "Sorteando casos"
+
#~ msgid "Enter the telephone extension number:"
#~ msgstr "Informe o número da extensão/ramal:"
#~ msgid "Enter the telephone extension password:"
#~ msgstr "Informe a senha da extensão:"
+#~ msgid "Availability groups"
+#~ msgstr "Grupos de disponibilidade"
+
+#~ msgid "Availablity group"
+#~ msgstr "Grupo de disponibilidade"
+
+#~ msgid "No availability groups"
+#~ msgstr "Não existem grupos de disponibilidade"
+
#~ msgid "No operators"
#~ msgstr "Sem pesquisadores"
+
+#~ msgid "No availability group set"
+#~ msgstr "Não foi ajustado um grupo de disponibilidade"
+
+#~ msgid "Modify availability"
+#~ msgstr "Modificar disponibilidade"
+
+#~ msgid "Save changes to availabilities"
+#~ msgstr "Salvar alterações para as disponibilidades"
+
+#~ msgid "Manage availablity groups"
+#~ msgstr "Gerenciar grupos de disponibilidade"
diff --git a/locale/quexs.pot b/locale/quexs.pot
index 8d24be23..ef94caa7 100644
--- a/locale/quexs.pot
+++ b/locale/quexs.pot
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: queXS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2015-02-09 12:43+1100\n"
"PO-Revision-Date: \n"
"Last-Translator: Adam Zammit \n"
"Language-Team: \n"
@@ -13,248 +13,27 @@ msgstr ""
"X-Poedit-SourceCharset: utf-8\n"
"X-Poedit-KeywordsList: T_;TQ_\n"
"X-Poedit-Basepath: /home/adam/Sandbox/www/quexs-1.0.0\n"
+"X-Generator: Poedit 1.5.4\n"
"X-Poedit-SearchPath-0: .\n"
-#: callhistory.php:56
-msgid "Case History List"
-msgstr ""
-
-#: callhistory.php:79
-msgid "No calls ever made"
-msgstr ""
-
-#: callhistory.php:83
-#: calllist.php:84
-msgid "Date/Time"
-msgstr ""
-
-#: callhistory.php:83
-msgid "Case ID"
-msgstr ""
-
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
-msgid "Outcome"
-msgstr ""
-
-#: callhistory.php:83
-msgid "Respondent"
-msgstr ""
-
-#: callhistory.php:87
-msgid "No operator"
-msgstr ""
-
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
-msgid "Respondent Selection - Answering machine"
-msgstr ""
-
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
-msgid "Do not leave a message, please hang up"
-msgstr ""
-
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
-msgid "End call with outcome: Business answering machine"
-msgstr ""
-
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
-msgid "End call with outcome: Answering machine Message left"
-msgstr ""
-
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
-msgid "End call with outcome: Answering machine No message left"
-msgstr ""
-
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
-msgid "Go Back"
-msgstr ""
-
-#: rs_business_interface2.php:55
-msgid "Respondent Selection - Business answers"
-msgstr ""
-
-#: rs_business_interface2.php:59
-msgid "Sorry to bother you, I have called the wrong number"
-msgstr ""
-
-#: rs_business_interface2.php:61
-msgid "End call with outcome: Business number"
-msgstr ""
-
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
-msgid "queXS"
-msgstr ""
-
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
-msgid "Appointment"
-msgstr ""
-
-#: index_interface2.php:214
-#: index.php:166
-msgid "Email"
-msgstr ""
-
-#: index_interface2.php:215
-#: index.php:167
-msgid "Referral"
-msgstr ""
-
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
-msgid "End work"
-msgstr ""
-
-#: index_interface2.php:294
-#: index.php:169
-msgid "Arrow for expanding or contracting"
-msgstr ""
-
-#: index_interface2.php:306
-#: index.php:220
-msgid "Notes"
-msgstr ""
-
-#: index_interface2.php:314
-#: index.php:238
-msgid "Contact details"
-msgstr ""
-
-#: index_interface2.php:323
-#: index.php:247
-msgid "Call history"
-msgstr ""
-
-#: index_interface2.php:332
-#: index.php:256
-msgid "Shifts"
-msgstr ""
-
-#: index_interface2.php:341
-#: index.php:265
-msgid "Appointments"
-msgstr ""
-
-#: index_interface2.php:350
-#: index.php:274
-msgid "Performance"
-msgstr ""
-
-#: index_interface2.php:358
-#: index.php:282
-msgid "Work history"
-msgstr ""
-
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
-msgid "Project information"
-msgstr ""
-
-#: index_interface2.php:375
-#: index.php:306
-msgid "Info"
-msgstr ""
-
-#: record.php:55
-msgid "Stop REC"
-msgstr ""
-
-#: record.php:56
-#: record.php:79
-#: record.php:96
-msgid "Record"
-msgstr ""
-
-#: record.php:66
-msgid "Beginning recording..."
-msgstr ""
-
-#: record.php:69
-#: record.php:97
-msgid "Not on a call, so not beginning a recording"
-msgstr ""
-
-#: record.php:73
-msgid "Begin the manual recording now..."
-msgstr ""
-
-#: record.php:78
-#: index.php:168
-msgid "Start REC"
-msgstr ""
-
-#: record.php:86
-msgid "Stopping recording..."
-msgstr ""
-
-#: record.php:90
-msgid "Stop the manual recording now..."
-msgstr ""
-
-#: rs_callback_interface2.php:66
-msgid "Respondent Selection - Call back"
-msgstr ""
-
-#: rs_callback_interface2.php:80
-msgid "You are: "
-msgstr ""
-
-#: rs_callback_interface2.php:80
-#, php-format
-msgid "% complete"
-msgstr ""
-
-#: rs_callback_interface2.php:87
-msgid "Yes - Continue where we left off"
-msgstr ""
-
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
-msgid "End call with outcome: Refusal by respondent"
-msgstr ""
-
-#: rs_project_intro.php:59
-msgid "Respondent Selection - Project Introduction"
-msgstr ""
-
-#: rs_project_intro.php:79
-msgid "Yes - Continue"
-msgstr ""
-
-#: rs_project_intro.php:82
-msgid "End call with outcome: No eligible respondent (person not available on this number)"
-msgstr ""
-
-#: rs_project_intro.php:83
-msgid "End call with outcome: Out of sample (already completed in another mode)"
-msgstr ""
-
#: appointment.php:69
msgid "Appointment error"
msgstr ""
#: appointment.php:70
-msgid "You have not been assigned a case therefore cannot create an appointment"
+msgid ""
+"You have not been assigned a case therefore cannot create an appointment"
msgstr ""
#: appointment.php:109
msgid "Appointment made"
msgstr ""
+#: appointment.php:121 status_interface2.php:176 index.php:163
+#: index_interface2.php:216
+msgid "Appointment"
+msgstr ""
+
#: appointment.php:124
msgid "Select a respondent"
msgstr ""
@@ -271,7 +50,7 @@ msgstr ""
msgid "Select phone number:"
msgstr ""
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr ""
@@ -295,7 +74,7 @@ msgstr ""
msgid "Accept appointment from "
msgstr ""
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr ""
@@ -311,71 +90,751 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
-msgid "Schedule Appointment"
+#: info.php:56
+msgid "Information"
msgstr ""
-#: calllist.php:56
-msgid "Call List"
+#: rs_project_end.php:71 rs_project_end_interface2.php:62
+msgid "Respondent Selection - Project end"
msgstr ""
-#: calllist.php:80
-msgid "No calls made"
+#: rs_project_end.php:88
+msgid "Call automatically ended with outcome: Complete"
msgstr ""
-#: calllist.php:84
-msgid "Number called"
+#: rs_project_end.php:93 rs_project_end_interface2.php:85
+msgid "End call with outcome: Complete"
msgstr ""
-#: calllist.php:84
+#: functions/functions.import.php:89
+msgid "Duplicate name"
+msgstr ""
+
+#: functions/functions.import.php:111
+msgid "You must select one and one only Primary Phone number"
+msgstr ""
+
+#: functions/functions.import.php:127
+msgid "Import?"
+msgstr ""
+
+#: functions/functions.import.php:127 status_interface2.php:79
+msgid "Name"
+msgstr ""
+
+#: functions/functions.import.php:127
+msgid "Type"
+msgstr ""
+
+#: functions/functions.import.php:127 admin/samplelist.php:187
+msgid "Allow operator to see?"
+msgstr ""
+
+#: functions/functions.freepbx.php:138
+#, php-format
+msgid "Reload failed because retrieve_conf encountered an error: %s"
+msgstr ""
+
+#: functions/functions.freepbx.php:140
+msgid "retrieve_conf failed, config not applied"
+msgstr ""
+
+#: functions/functions.freepbx.php:146
+msgid ""
+"Reload failed because FreePBX could not connect to the asterisk manager "
+"interface."
+msgstr ""
+
+#: functions/functions.freepbx.php:165
+msgid ""
+"Could not reload the FOP operator panel server using the bounce_op.sh "
+"script. Configuration changes may not be reflected in the panel display."
+msgstr ""
+
+#: functions/functions.freepbx.php:174
+#, php-format
+msgid "Exit code was %s and output was: %s"
+msgstr ""
+
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
+msgid "morning"
+msgstr ""
+
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
+msgid "afternoon"
+msgstr ""
+
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
+msgid "evening"
+msgstr ""
+
+#: functions/functions.operator.php:906
+msgid ""
+"ERROR: You do not have server side authentication enabled therefore queXS "
+"cannot determine which user is accessing the system."
+msgstr ""
+
+#: functions/functions.performance.php:469
+msgid "No shift"
+msgstr ""
+
+#: functions/functions.performance.php:492
+msgid "Total completions"
+msgstr ""
+
+#: functions/functions.performance.php:521
+msgid "Completions this shift"
+msgstr ""
+
+#: functions/functions.performance.php:544
+#: functions/functions.performance.php:590
+msgid "No previous shift"
+msgstr ""
+
+#: functions/functions.performance.php:564
+msgid "Completions on the previous shift"
+msgstr ""
+
+#: functions/functions.performance.php:611
+msgid "Completions this time on the previous shift"
+msgstr ""
+
+#: functions/functions.performance.php:629
+msgid "No calls made for this shift"
+msgstr ""
+
+#: functions/functions.performance.php:631
+msgid "Top CPH for this shift"
+msgstr ""
+
+#: functions/functions.performance.php:648
+msgid "No calls made for this project"
+msgstr ""
+
+#: functions/functions.performance.php:650
+msgid "Top CPH"
+msgstr ""
+
+#: functions/functions.calendar.php:215 respondent.php:94 respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128
+msgid "Add respondent"
+msgstr ""
+
+#: functions/functions.calendar.php:265
+msgid "First name:"
+msgstr ""
+
+#: functions/functions.calendar.php:266
+msgid "Last name:"
+msgstr ""
+
+#: functions/functions.calendar.php:271
+msgid "Time Zone:"
+msgstr ""
+
+#: functions/functions.calendar.php:328
+msgid "Shift from:"
+msgstr ""
+
+#: functions/functions.calendar.php:335
+msgid "Start Time"
+msgstr ""
+
+#: functions/functions.calendar.php:385
+msgid "End Time"
+msgstr ""
+
+#: functions/functions.voip.php:449 selectextension.php:108 status.php:99
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: admin/extensionstatus.php:200
+msgid "Extension"
+msgstr ""
+
+#: functions/functions.voip.php:449
+msgid "online"
+msgstr ""
+
+#: functions/functions.voip.php:449
+msgid "offline"
+msgstr ""
+
+#: functions/functions.voip.php:528
+msgid "Disconnected"
+msgstr ""
+
+#: functions/functions.voip.php:530
+msgid "Reconnected"
+msgstr ""
+
+#: functions/functions.voip.php:553 status.php:118 call.php:434
+msgid "Ringing"
+msgstr ""
+
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
+#: functions/functions.voip.php:596
+msgid " Extension "
+msgstr ""
+
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:112
+msgid "Case id"
+msgstr ""
+
+#: functions/functions.voip.php:565 status.php:122 call.php:441
+msgid "Answered"
+msgstr ""
+
+#: functions/functions.voip.php:577 call.php:431 call.php:438 call.php:445
+msgid "Hangup"
+msgstr ""
+
+#: functions/functions.voip.php:587
+msgid "Unregistered"
+msgstr ""
+
+#: functions/functions.voip.php:596
+msgid "Registered"
+msgstr ""
+
+#: rs_callback.php:66 rs_callback_interface2.php:66
+msgid "Respondent Selection - Call back"
+msgstr ""
+
+#: rs_callback.php:80 rs_callback_interface2.php:80
+msgid "You are: "
+msgstr ""
+
+#: rs_callback.php:80 rs_callback_interface2.php:80
+#, php-format
+msgid "% complete"
+msgstr ""
+
+#: rs_callback.php:87 rs_callback_interface2.php:87
+msgid "Yes - Continue where we left off"
+msgstr ""
+
+#: rs_callback.php:88 rs_callback_interface2.php:88 rs_intro.php:122
+#: rs_project_intro_interface2.php:81 rs_intro_interface2.php:122
+#: rs_project_intro.php:81
+msgid "End call with outcome: Refusal by respondent"
+msgstr ""
+
+#: rs_callback.php:89 rs_callback_interface2.php:89
+#: rs_project_intro_interface2.php:85 rs_answeringmachine.php:91
+#: rs_business.php:62 rs_answeringmachine_interface2.php:91
+#: rs_project_intro.php:85 rs_business_interface2.php:62
+msgid "Go Back"
+msgstr ""
+
+#: selectextension.php:88 waitnextcase_interface2.php:49 index.php:145
+#: index_interface2.php:198
+msgid "queXS"
+msgstr ""
+
+#: selectextension.php:99
+msgid ""
+"There are no extensions available, please contact the supervisor or click "
+"below to try again for an available extension"
+msgstr ""
+
+#: selectextension.php:100
+msgid "Try again"
+msgstr ""
+
+#: selectextension.php:104
+msgid "Select extension"
+msgstr ""
+
+#: selectextension.php:105
+msgid ""
+"Please select your extension from the list below then click on 'Choose "
+"extension'"
+msgstr ""
+
+#: selectextension.php:110
+msgid "Choose extension"
+msgstr ""
+
+#: status.php:58 status.php:77 status_interface2.php:70
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
+msgid "Status"
+msgstr ""
+
+#: status.php:59 callhistory.php:87 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
+msgid "No operator"
+msgstr ""
+
+#: status.php:95
+msgid "VoIP On"
+msgstr ""
+
+#: status.php:97
+msgid "VoIP Off"
+msgstr ""
+
+#: status.php:102
+msgid "No VoIP"
+msgstr ""
+
+#: status.php:106
+msgid "No call"
+msgstr ""
+
+#: status.php:110
+msgid "To be coded"
+msgstr ""
+
+#: status.php:114
+msgid "Requesting"
+msgstr ""
+
+#: status.php:130
+msgid "APPT"
+msgstr ""
+
+#: status.php:131
+msgid "MISSED"
+msgstr ""
+
+#: status.php:134 casenote.php:113 status_interface2.php:231 calllist.php:88
+#: project_info.php:82
+msgid "No case"
+msgstr ""
+
+#: referral.php:167
+msgid "Generated referral to case id"
+msgstr ""
+
+#: referral.php:173
+msgid "Generated as referral from case id"
+msgstr ""
+
+#: referral.php:179
+msgid "Created referral case - you may now close this window"
+msgstr ""
+
+#: referral.php:183
+msgid "Failed to create referral case - please check your input and try again"
+msgstr ""
+
+#: referral.php:189
+msgid "You must supply a primary phone number"
+msgstr ""
+
+#: referral.php:198 index.php:167 index_interface2.php:218
+msgid "Referral"
+msgstr ""
+
+#: referral.php:209 referral.php:243
+msgid "Create referral"
+msgstr ""
+
+#: referral.php:241
+msgid "Call this new referral immediately after this case?"
+msgstr ""
+
+#: referral.php:248
+msgid "Referrals not available for this questionnaire"
+msgstr ""
+
+#: performance.php:61 admin/index.php:86 index.php:277
+#: index_interface2.php:366
+msgid "Performance"
+msgstr ""
+
+#: performance.php:77 admin/operatorperformance.php:103
+msgid "This shift"
+msgstr ""
+
+#: performance.php:78 performance.php:85 casenote.php:110
+#: appointmentlist.php:90 calllist.php:84 admin/outcomes.php:187
+#: admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorlist.php:293 admin/supervisor.php:320
+#: admin/supervisor.php:361 admin/operatorperformance.php:81
+#: admin/operatorperformance.php:104 admin/shiftreport.php:104
+#: admin/extensionstatus.php:200
msgid "Operator"
msgstr ""
-#: calllist.php:88
-#: project_info.php:82
-msgid "No case"
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/outcomes.php:297 admin/operatorperformance.php:81
+#: admin/operatorperformance.php:104
+msgid "Completions"
+msgstr ""
+
+#: performance.php:78 performance.php:85
+msgid "Completions per hour"
+msgstr ""
+
+#: performance.php:84 admin/operatorperformance.php:80
+msgid "This project"
+msgstr ""
+
+#: casenote.php:56
+msgid "Case Notes"
+msgstr ""
+
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
+msgid "Add note"
+msgstr ""
+
+#: casenote.php:69 admin/samplelist.php:128 admin/samplelist.php:180
+#: admin/samplelist.php:217 admin/questionnairelist.php:329
+#: admin/questionnairelist.php:383 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/assignsample.php:141
+#: admin/extensionstatus.php:143 respondent.php:96 contactdetails.php:92
+msgid "Go back"
+msgstr ""
+
+#: casenote.php:108 admin/supervisor.php:359
+msgid "No notes"
+msgstr ""
+
+#: casenote.php:110 callhistory.php:83 calllist.php:84
+#: admin/supervisor.php:320 admin/supervisor.php:361
+msgid "Date/Time"
+msgstr ""
+
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
+msgid "Note"
msgstr ""
#: waitnextcase_interface2.php:54
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: waitnextcase_interface2.php:55 call_interface2.php:313
+#: call_interface2.php:315 call_interface2.php:431 call_interface2.php:436
+#: call_interface2.php:452 call_interface2.php:458 call.php:276 call.php:278
+#: call.php:394 call.php:399 call.php:415 call.php:421
+#: index_interface2.php:219
+msgid "End work"
+msgstr ""
+
+#: rs_intro.php:65 rs_intro_interface2.php:65
+msgid "Respondent Selection - Introduction"
+msgstr ""
+
+#: rs_intro.php:92 rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_project_intro_interface2.php:79 rs_intro_interface2.php:92
+#: rs_intro_interface2.php:98 rs_intro_interface2.php:106
+#: rs_intro_interface2.php:112 rs_project_intro.php:79
+msgid "Yes - Continue"
+msgstr ""
+
+#: rs_intro.php:117 rs_intro_interface2.php:117
+msgid "Business number"
+msgstr ""
+
+#: rs_intro.php:118 rs_intro_interface2.php:118
+msgid "Answering machine"
+msgstr ""
+
+#: rs_intro.php:119 rs_intro_interface2.php:119
+msgid "End call with outcome: No answer (ring out or busy) "
+msgstr ""
+
+#: rs_intro.php:120 rs_intro_interface2.php:120
+msgid "End call with outcome: Accidental hang up"
+msgstr ""
+
+#: rs_intro.php:121 rs_intro_interface2.php:121
+msgid "End call with outcome: Refusal by unknown person"
+msgstr ""
+
+#: rs_intro.php:123 rs_intro_interface2.php:123
+msgid ""
+"End call with outcome: No eligible respondent (person never available on "
+"this number)"
+msgstr ""
+
+#: rs_intro.php:124 rs_intro_interface2.php:124
+msgid ""
+"End call with outcome: Non contact (person not currently available on this "
+"number: no appointment made)"
+msgstr ""
+
+#: rs_intro.php:125 rs_project_intro_interface2.php:83
+#: rs_intro_interface2.php:125 rs_project_intro.php:83
+msgid ""
+"End call with outcome: Out of sample (already completed in another mode)"
+msgstr ""
+
+#: record.php:55
+msgid "Stop REC"
+msgstr ""
+
+#: record.php:56 record.php:79 record.php:96
+msgid "Record"
+msgstr ""
+
+#: record.php:66
+msgid "Beginning recording..."
+msgstr ""
+
+#: record.php:69 record.php:97
+msgid "Not on a call, so not beginning a recording"
+msgstr ""
+
+#: record.php:73
+msgid "Begin the manual recording now..."
+msgstr ""
+
+#: record.php:78 email.php:273 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 index.php:168
+msgid "Start REC"
+msgstr ""
+
+#: record.php:86
+msgid "Stopping recording..."
+msgstr ""
+
+#: record.php:90
+msgid "Stop the manual recording now..."
+msgstr ""
+
+#: include/php-gettext-1.0.11/examples/pigs_fallback.php:76
+#: include/php-gettext-1.0.11/examples/pigs_dropin.php:77
+msgid ""
+"This is how the story goes.\n"
+"\n"
+msgstr ""
+
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
+msgid "Not on an appointment"
+msgstr ""
+
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
+msgid "On an appointment"
+msgstr ""
+
+#: include/limesurvey/common_functions.php:6298
+msgid "queXS: Number of call attempts"
+msgstr ""
+
+#: include/limesurvey/common_functions.php:6299
+msgid "queXS: On appointment?"
+msgstr ""
+
+#: include/limesurvey/common_functions.php:6300
+msgid "queXS: Percentage complete"
+msgstr ""
+
+#: include/limesurvey/common_functions.php:6301
+msgid "queXS: Number of answering machine messages left"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
+#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+msgid "Questionnaire and Sample selection:"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
+#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+msgid "All queXS questionnaires and samples associated with this instrument"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:257
+msgid "Token"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966 callhistory.php:83
+#: admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/casesbyoutcome.php:87 admin/extensionstatus.php:200
+#: admin/displayappointments.php:243
+msgid "Case ID"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:259
+#: include/limesurvey/admin/exportresults.php:648
+#: include/limesurvey/admin/exportresults.php:649
+#: include/limesurvey/admin/exportresults.php:969
+msgid "Case outcome"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:260
+#: include/limesurvey/admin/exportresults.php:603
+#: include/limesurvey/admin/exportresults.php:604
+#: include/limesurvey/admin/exportresults.php:972
+msgid "Number of call attempts"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:261
+#: include/limesurvey/admin/exportresults.php:608
+#: include/limesurvey/admin/exportresults.php:609
+#: include/limesurvey/admin/exportresults.php:975
+msgid "Number of answering machine messages left"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978 admin/supervisor.php:356
+msgid "Case notes"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:263
+#: include/limesurvey/admin/exportresults.php:618
+#: include/limesurvey/admin/exportresults.php:619
+#: include/limesurvey/admin/exportresults.php:981
+msgid "Total interview time over all calls (mins)"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:264
+#: include/limesurvey/admin/exportresults.php:623
+#: include/limesurvey/admin/exportresults.php:624
+#: include/limesurvey/admin/exportresults.php:984
+msgid "Interview time for last call (mins)"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:265
+#: include/limesurvey/admin/exportresults.php:628
+#: include/limesurvey/admin/exportresults.php:629
+#: include/limesurvey/admin/exportresults.php:987
+msgid "Last number dialled"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:266
+#: include/limesurvey/admin/exportresults.php:633
+#: include/limesurvey/admin/exportresults.php:634
+#: include/limesurvey/admin/exportresults.php:990
+msgid "Operator username for last call"
+msgstr ""
+
+#: include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993 admin/outcomes.php:297
+msgid "Shift report"
+msgstr ""
+
+#: include/limesurvey/qanda.php:1701 include/limesurvey/qanda.php:1921
+msgid "Schedule Appointment"
+msgstr ""
+
+#: voip/downloadvoipclient.php:52
+msgid "Error: Cannot write to temporary directory"
+msgstr ""
+
+#: status_interface2.php:225 status_interface2.php:228
+msgid "No more numbers to call"
+msgstr ""
+
+#: appointmentlist.php:56
+msgid "Appointment List"
+msgstr ""
+
+#: appointmentlist.php:83
+msgid "No appointments made"
+msgstr ""
+
+#: appointmentlist.php:85
+msgid "No future appointments scheduled"
+msgstr ""
+
+#: appointmentlist.php:90 admin/callrestrict.php:118 admin/addshift.php:238
+#: admin/availability.php:144 admin/supervisor.php:297
+#: admin/shifttemplate.php:118 admin/displayappointments.php:243 shifts.php:82
+#: shifts.php:103
+msgid "Start"
+msgstr ""
+
+#: appointmentlist.php:90 admin/callrestrict.php:118 admin/addshift.php:238
+#: admin/availability.php:144 admin/supervisor.php:297
+#: admin/shifttemplate.php:118 admin/displayappointments.php:243 index.php:162
+#: shifts.php:82 shifts.php:103
msgid "End"
msgstr ""
-#: index.php:164
-msgid "Call/Hangup"
+#: appointmentlist.php:90 callhistory.php:83 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
+msgid "Respondent"
msgstr ""
-#: index.php:165
-msgid "Supervisor"
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
+msgid "Appointment with"
msgstr ""
-#: index.php:170
-msgid "Restart"
+#: appointmentlist.php:90 client/index.php:91 client/index.php:110
+#: callhistory.php:83 calllist.php:84 admin/outcomes.php:155
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: admin/callhistory.php:96 admin/callhistory.php:111 admin/supervisor.php:320
+#: admin/casestatus.php:112 index_interface2.php:215
+msgid "Outcome"
msgstr ""
-#: index.php:228
-msgid "Availability"
+#: rs_project_end_interface2.php:80
+msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: index.php:298
+#: client/index.php:59 admin/outcomes.php:77
+msgid "Questionnaire Outcomes"
+msgstr ""
+
+#: client/index.php:72
+msgid "There are no questionnaires assigned to you"
+msgstr ""
+
+#: client/index.php:91 admin/outcomes.php:155
+msgid "Rate"
+msgstr ""
+
+#: client/index.php:92 admin/outcomes.php:156
+msgid "Response Rate 1"
+msgstr ""
+
+#: client/index.php:93 admin/outcomes.php:157
+msgid "Refusal Rate 1"
+msgstr ""
+
+#: client/index.php:94 admin/outcomes.php:158
+msgid "Cooperation Rate 1"
+msgstr ""
+
+#: client/index.php:95 admin/outcomes.php:159
+msgid "Contact Rate 1"
+msgstr ""
+
+#: client/index.php:110 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261
+msgid "Count"
+msgstr ""
+
+#: client/index.php:113 admin/outcomes.php:269
+msgid "No outcomes recorded for this questionnaire"
+msgstr ""
+
+#: client/index.php:123
+msgid "You are not a valid client"
+msgstr ""
+
+#: rs_project_intro_interface2.php:59 rs_project_intro.php:59
+msgid "Respondent Selection - Project Introduction"
+msgstr ""
+
+#: rs_project_intro_interface2.php:82 rs_project_intro.php:82
+msgid ""
+"End call with outcome: No eligible respondent (person not available on this "
+"number)"
+msgstr ""
+
+#: supervisorchat.php:56 admin/supervisorchat.php:61 admin/index.php:106
+#: index.php:301
msgid "Supervisor chat"
msgstr ""
-#: info.php:56
-msgid "Information"
-msgstr ""
-
-#: supervisorchat.php:80
-msgid "Me"
-msgstr ""
-
-#: supervisorchat.php:82
-msgid "Case id"
-msgstr ""
-
#: supervisorchat.php:87
msgid "Supervisor is available"
msgstr ""
@@ -384,8 +843,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -401,296 +859,74 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
-msgid "Call"
+#: email.php:278 email.php:282 email.php:288 email.php:309 email.php:339
+#: index.php:166 index_interface2.php:217
+msgid "Email"
msgstr ""
-#: call_interface2.php:302
-#: call.php:265
-msgid "Not on a call"
+#: email.php:295
+msgid "The email did not send"
msgstr ""
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
-msgid "End case"
+#: email.php:300
+msgid "The email address is not valid"
msgstr ""
-#: call_interface2.php:339
-#: call.php:302
-msgid "Press the call button to dial the number for this appointment:"
+#: email.php:329
+msgid "Email respondent for self completion"
msgstr ""
-#: call_interface2.php:342
-#: call.php:305
-msgid "Number to call:"
+#: email.php:337 admin/operatorlist.php:165
+msgid "First name"
msgstr ""
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
-msgid "Your VoIP extension is not enabled. Please close this window and enable VoIP by clicking once on the red button that says 'VoIP Off'"
+#: email.php:338 admin/operatorlist.php:166
+msgid "Last name"
msgstr ""
-#: call_interface2.php:407
-#: call.php:370
-msgid "Select phone number to dial:"
+#: email.php:342
+msgid "Send invitation"
msgstr ""
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
-msgid "The last call completed this call attempt"
+#: email.php:344
+msgid "Send invitation and Hang up"
msgstr ""
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
-msgid "Enter a reason for this outcome before completing this case:"
+#: email.php:348
+msgid "Self completion email not available for this questionnaire"
msgstr ""
-#: call_interface2.php:467
-#: call.php:448
-msgid "Requires coding"
+#: callhistory.php:56
+msgid "Case History List"
msgstr ""
-#: call_interface2.php:470
-#: call.php:451
-msgid "Assign outcome"
+#: callhistory.php:79 admin/callhistory.php:81
+msgid "No calls ever made"
msgstr ""
-#: call_interface2.php:474
-#: call.php:455
-msgid "Error: Close window"
+#: availability.php:56 index.php:231
+msgid "Availability"
msgstr ""
-#: call.php:427
-msgid "Requesting call"
+#: availability.php:123 admin/supervisor.php:417
+msgid ""
+"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: call.php:428
-#: call.php:435
-msgid "Call Answered"
-msgstr ""
-
-#: call.php:431
-#: call.php:438
-#: call.php:445
-msgid "Hangup"
-msgstr ""
-
-#: call.php:434
-msgid "Ringing"
-msgstr ""
-
-#: call.php:441
-msgid "Answered"
-msgstr ""
-
-#: call.php:442
-msgid "Not Answered"
-msgstr ""
-
-#: selectextension.php:99
-msgid "There are no extensions available, please contact the supervisor or click below to try again for an available extension"
-msgstr ""
-
-#: selectextension.php:100
-msgid "Try again"
-msgstr ""
-
-#: selectextension.php:104
-msgid "Select extension"
-msgstr ""
-
-#: selectextension.php:105
-msgid "Please select your extension from the list below then click on 'Choose extension'"
-msgstr ""
-
-#: selectextension.php:108
-msgid "Extension"
-msgstr ""
-
-#: selectextension.php:110
-msgid "Choose extension"
-msgstr ""
-
-#: endwork.php:45
-msgid "End of work"
-msgstr ""
-
-#: endwork.php:49
-msgid "You have been automatically logged out of work due to inactivity"
-msgstr ""
-
-#: endwork.php:52
-msgid "Work has ended. That is it"
-msgstr ""
-
-#: endwork.php:70
-msgid "You have been unassigned from your extension"
-msgstr ""
-
-#: endwork.php:75
-msgid "Go back to work"
-msgstr ""
-
-#: status_interface2.php:70
-msgid "Status"
-msgstr ""
-
-#: status_interface2.php:79
-msgid "Name"
-msgstr ""
-
-#: status_interface2.php:225
-#: status_interface2.php:228
-msgid "No more numbers to call"
-msgstr ""
-
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
-msgid "Respondent Selection - Introduction"
-msgstr ""
-
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
-msgid "Business number"
-msgstr ""
-
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
-msgid "Answering machine"
-msgstr ""
-
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
-msgid "End call with outcome: No answer (ring out or busy) "
-msgstr ""
-
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
-msgid "End call with outcome: Accidental hang up"
-msgstr ""
-
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
-msgid "End call with outcome: Refusal by unknown person"
-msgstr ""
-
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
-msgid "End call with outcome: No eligible respondent (person never available on this number)"
-msgstr ""
-
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
-msgid "End call with outcome: Non contact (person not currently available on this number: no appointment made)"
-msgstr ""
-
-#: shifts.php:57
-msgid "Shift List"
-msgstr ""
-
-#: shifts.php:80
-msgid "No shifts for this project"
-msgstr ""
-
-#: shifts.php:82
-#: shifts.php:103
-msgid "Start"
-msgstr ""
-
-#: shifts.php:101
-msgid "No future shifts scheduled"
-msgstr ""
-
-#: shifts.php:103
-#: nocaseavailable.php:138
-msgid "Questionnaire"
-msgstr ""
-
-#: rs_project_end_interface2.php:62
-msgid "Respondent Selection - Project end"
-msgstr ""
-
-#: rs_project_end_interface2.php:80
-msgid "Call automatically ended with outcome: Complete - End case"
-msgstr ""
-
-#: rs_project_end_interface2.php:85
-msgid "End call with outcome: Complete"
-msgstr ""
-
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
-msgid "Add respondent"
-msgstr ""
-
-#: contactdetails.php:92
-#: respondent.php:96
-msgid "Go back"
-msgstr ""
-
-#: contactdetails.php:98
-#: respondent.php:102
-msgid "Case id:"
-msgstr ""
-
-#: contactdetails.php:99
-#: respondent.php:103
-msgid "Respondent:"
-msgstr ""
-
-#: contactdetails.php:163
-#: respondent.php:171
-msgid "Var"
-msgstr ""
-
-#: contactdetails.php:163
-#: respondent.php:171
-msgid "Value"
-msgstr ""
-
-#: availability.php:123
-msgid "Select groups to limit availability (Selecting none means always available)"
-msgstr ""
-
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
-#: respondent.php:70
-msgid "Respondent Selector"
+#: calllist.php:56
+msgid "Call List"
msgstr ""
-#: respondent.php:167
-msgid "Show details"
+#: calllist.php:80 admin/supervisor.php:316
+msgid "No calls made"
+msgstr ""
+
+#: calllist.php:84
+msgid "Number called"
msgstr ""
#: nocaseavailable.php:63
@@ -705,29 +941,23 @@ msgstr ""
msgid "Reasons:"
msgstr ""
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
-msgid "Enabled"
-msgstr ""
-
-#: nocaseavailable.php:80
-msgid "Disabled"
-msgstr ""
-
#: nocaseavailable.php:88
msgid "Assigned questionnaires:"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/samplelist.php:132
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Description"
msgstr ""
+#: nocaseavailable.php:91 admin/operatorlist.php:172
+msgid "Enabled"
+msgstr ""
+
#: nocaseavailable.php:94
msgid "ERROR: No questionnaires assigned to you"
msgstr ""
@@ -736,7 +966,10 @@ msgstr ""
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/samplelist.php:279 admin/quotareport.php:284
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/assignsample.php:139
+#: admin/assignsample.php:203 admin/supervisor.php:274
+#: admin/casestatus.php:112 admin/casestatus.php:210
msgid "Sample"
msgstr ""
@@ -748,6 +981,13 @@ msgstr ""
msgid "Current shifts available:"
msgstr ""
+#: nocaseavailable.php:138 admin/questionnairelist.php:397
+#: admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/assignsample.php:138 admin/supervisor.php:297
+#: admin/casestatus.php:208 admin/displayappointments.php:243 shifts.php:103
+msgid "Questionnaire"
+msgstr ""
+
#: nocaseavailable.php:138
msgid "Shift start"
msgstr ""
@@ -804,341 +1044,353 @@ msgstr ""
msgid "POSSIBLE ERROR: Row quota reached for this question"
msgstr ""
-#: casenote.php:56
-msgid "Case Notes"
+#: admin/timezonetemplate.php:92
+msgid "Add/Remove Timezones"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
-msgid "Add note"
+#: admin/timezonetemplate.php:104 admin/callrestrict.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93
+msgid ""
+"Your database does not have timezones installed, please see here for details"
msgstr ""
-#: casenote.php:108
-msgid "No notes"
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
msgstr ""
-#: casenote.php:110
-msgid "Note"
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
msgstr ""
-#: performance.php:77
-msgid "This shift"
+#: admin/timezonetemplate.php:115
+msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: performance.php:78
-#: performance.php:85
-msgid "Completions"
+#: admin/timezonetemplate.php:127
+msgid "Add a Timezone:"
msgstr ""
-#: performance.php:78
-#: performance.php:85
-msgid "Completions per hour"
+#: admin/timezonetemplate.php:130
+msgid "Timezone: "
msgstr ""
-#: performance.php:84
-msgid "This project"
+#: admin/timezonetemplate.php:131
+msgid "Add Timezone"
msgstr ""
-#: status.php:95
-msgid "VoIP On"
+#: admin/questionnairecatimeslots.php:93 admin/index.php:75
+msgid "Assign call attempt time slots to questionnaire"
msgstr ""
-#: status.php:97
-msgid "VoIP Off"
+#: admin/questionnairecatimeslots.php:95
+#: admin/questionnairecatimeslotssample.php:99
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
msgstr ""
-#: status.php:102
-msgid "No VoIP"
+#: admin/questionnairecatimeslots.php:97 admin/quotareport.php:111
+#: admin/questionnaireprefill.php:100 admin/outcomes.php:80
+#: admin/questionnairecatimeslotssample.php:101 admin/addshift.php:168
+#: admin/questionnaireavailability.php:97 admin/quota.php:110
+#: admin/assignsample.php:180 admin/quotarow.php:127
+msgid "Select a questionnaire from the list below"
msgstr ""
-#: status.php:106
-msgid "No call"
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
msgstr ""
-#: status.php:110
-msgid "To be coded"
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
msgstr ""
-#: status.php:114
-msgid "Requesting"
+#: admin/questionnairecatimeslots.php:120
+#: admin/questionnairecatimeslotssample.php:133
+#: admin/questionnaireavailability.php:120
+msgid "Click to unassign"
msgstr ""
-#: status.php:130
-msgid "APPT"
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
msgstr ""
-#: status.php:131
-msgid "MISSED"
+#: admin/questionnairecatimeslots.php:138
+#: admin/questionnairecatimeslotssample.php:151
+msgid "Select call attempt time slot:"
msgstr ""
-#: rs_project_end.php:88
-msgid "Call automatically ended with outcome: Complete"
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:279
+msgid "Rename"
msgstr ""
-#: nocallavailable.php:80
-msgid "No call available"
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:279
+msgid "Operator viewing permissions"
msgstr ""
-#: nocallavailable.php:83
-msgid "Please click on:"
+#: admin/samplelist.php:182
+msgid ""
+"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: nocallavailable.php:83
-msgid "to display call script"
+#: admin/samplelist.php:187 admin/samplelist.php:224
+msgid "Field"
msgstr ""
-#: nocallavailable.php:177
-msgid "Will dial in"
+#: admin/samplelist.php:187 admin/samplelist.php:224
+msgid "Example data"
msgstr ""
-#: nocallavailable.php:178
-msgid "Dialling now"
+#: admin/samplelist.php:190
+msgid "Save changes"
msgstr ""
-#: nocallavailable.php:184
-msgid "Will end case in"
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:279 admin/supervisor.php:462 admin/supervisor.php:468
+msgid "Deidentify"
msgstr ""
-#: nocallavailable.php:185
-msgid "Ending case now"
+#: admin/samplelist.php:219
+msgid ""
+"Select which fields from this sample to deidentify. Deidentified fields will "
+"be permanently deleted from the sample."
msgstr ""
-#: nocallavailable.php:203
-msgid "seconds"
+#: admin/samplelist.php:227
+msgid "Delete selected fields"
msgstr ""
-#: nocallavailable.php:216
-msgid "Your VoIP extension is not active. Please activate VoIP by clicking once on the red button that says 'VoIP Off'"
+#: admin/samplelist.php:276
+msgid "Sample list"
msgstr ""
-#: nocallavailable.php:222
-msgid "Auto dialling unavailable as VoIP is not enabled"
+#: admin/samplelist.php:279 admin/questionnairelist.php:397
+#: admin/operatorlist.php:293
+msgid "Enable/Disable"
msgstr ""
-#: nocallavailable.php:228
-msgid "Auto dialling unavailable as you are already on a call"
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
+msgid "Monitor VoIP Process"
msgstr ""
-#: referral.php:167
-msgid "Generated referral to case id"
-msgstr ""
-
-#: referral.php:173
-msgid "Generated as referral from case id"
-msgstr ""
-
-#: referral.php:179
-msgid "Created referral case - you may now close this window"
-msgstr ""
-
-#: referral.php:183
-msgid "Failed to create referral case - please check your input and try again"
-msgstr ""
-
-#: referral.php:189
-msgid "You must supply a primary phone number"
-msgstr ""
-
-#: referral.php:209
-#: referral.php:243
-msgid "Create referral"
-msgstr ""
-
-#: referral.php:241
-msgid "Call this new referral immediately after this case?"
-msgstr ""
-
-#: referral.php:248
-msgid "Referrals not available for this questionnaire"
-msgstr ""
-
-#: rs_quota_end.php:61
-msgid "Respondent Selection - Project Quota End"
-msgstr ""
-
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
-msgid "End call with outcome: Quota filled"
-msgstr ""
-
-#: email.php:241
-msgid "Self completion invitation sent via email to"
-msgstr ""
-
-#: email.php:295
-msgid "The email did not send"
-msgstr ""
-
-#: email.php:300
-msgid "The email address is not valid"
-msgstr ""
-
-#: email.php:329
-msgid "Email respondent for self completion"
-msgstr ""
-
-#: email.php:337
-msgid "First name"
-msgstr ""
-
-#: email.php:338
-msgid "Last name"
-msgstr ""
-
-#: email.php:342
-msgid "Send invitation"
-msgstr ""
-
-#: email.php:344
-msgid "Send invitation and Hang up"
-msgstr ""
-
-#: email.php:348
-msgid "Self completion email not available for this questionnaire"
-msgstr ""
-
-#: appointmentlist.php:56
-msgid "Appointment List"
-msgstr ""
-
-#: appointmentlist.php:70
-msgid "Not yet called"
-msgstr ""
-
-#: appointmentlist.php:70
-msgid "Any operator"
-msgstr ""
-
-#: appointmentlist.php:83
-msgid "No appointments made"
-msgstr ""
-
-#: appointmentlist.php:85
-msgid "No future appointments scheduled"
-msgstr ""
-
-#: appointmentlist.php:90
-msgid "Appointment with"
-msgstr ""
-
-#: supervisor.php:61
-msgid "Please wait till you have ended this call to call the supervisor"
-msgstr ""
-
-#: supervisor.php:105
-msgid "You may now close this window"
-msgstr ""
-
-#: supervisor.php:110
-msgid "Calling the supervisor, you may close this window"
-msgstr ""
-
-#: supervisor.php:115
-msgid "Click here to call the supervisor's phone. Otherwise close this window"
-msgstr ""
-
-#: supervisor.php:116
-msgid "Hangup when calling the supervisor"
-msgstr ""
-
-#: supervisor.php:121
-msgid "Try calling the supervisor"
-msgstr ""
-
-#: supervisor.php:128
-msgid "Please wait for this call to answer before attempting to call the supervisor"
-msgstr ""
-
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
-msgid "Monitor system wide case sorting"
-msgstr ""
-
-#: admin/systemsort.php:77
+#: admin/voipmonitor.php:75 admin/systemsort.php:77
msgid "Running process:"
msgstr ""
-#: admin/systemsort.php:81
-msgid "Kill signal sent: Please wait..."
+#: admin/voipmonitor.php:79
+msgid ""
+"Kill signal sent: Please wait... (Note: Process will be stalled until there "
+"is activity on the VoIP Server)"
msgstr ""
-#: admin/systemsort.php:82
-msgid "Process is already closed (eg. server was rebooted) - click here to confirm"
+#: admin/voipmonitor.php:80 admin/systemsort.php:82
+msgid ""
+"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/voipmonitor.php:84 admin/systemsort.php:86
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
+#: admin/voipmonitor.php:84
+msgid "(requires activity on the VoIP Server to take effect)"
+msgstr ""
+
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 admin/systemsort.php:92
#: admin/systemsort.php:106
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 admin/systemsort.php:92
+#: admin/systemsort.php:106 admin/shiftreport.php:104
msgid "Date"
msgstr ""
-#: admin/systemsort.php:92
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102 admin/systemsort.php:92
#: admin/systemsort.php:106
msgid "Log entry"
msgstr ""
+#: admin/voipmonitor.php:97
+msgid "Click here to begin monitoring the VoIP Process"
+msgstr ""
+
+#: admin/voipmonitor.php:98 admin/systemsort.php:102
+msgid "Outcome of last process run (if any)"
+msgstr ""
+
+#: admin/systemsortprocess.php:93
+msgid "Sorting cases process starting"
+msgstr ""
+
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
+msgstr ""
+
+#: admin/systemsortprocess.php:147 admin/systemsortprocess.php:185
+msgid "System automatically closed case as not closed for more than 24 hours"
+msgstr ""
+
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:325 admin/systemsortprocess.php:327
+msgid "This task took"
+msgstr ""
+
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:325 admin/systemsortprocess.php:327
+msgid "seconds"
+msgstr ""
+
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:325
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:327
+msgid "Failed to complete sort"
+msgstr ""
+
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
+msgid "Monitor system wide case sorting"
+msgstr ""
+
+#: admin/systemsort.php:81
+msgid "Kill signal sent: Please wait..."
+msgstr ""
+
#: admin/systemsort.php:100
msgid "Click here to enable and begin system wide case sorting"
msgstr ""
#: admin/systemsort.php:101
-msgid "System wide case sorting is periodically (via SYSTEM_SORT_MINUTES configuration directive) sorting cases on a system wide basis instead of finding the most appropriate case each time an operator requests a new case. This may increase performance where there are a large number of cases or complex quotas in place. If you are not experiencing any performance problems, it is not recommended to use this feature."
+msgid ""
+"System wide case sorting is periodically (via SYSTEM_SORT_MINUTES "
+"configuration directive) sorting cases on a system wide basis instead of "
+"finding the most appropriate case each time an operator requests a new case. "
+"This may increase performance where there are a large number of cases or "
+"complex quotas in place. If you are not experiencing any performance "
+"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
-msgid "Outcome of last process run (if any)"
+#: admin/operators.php:147
+msgid "Added:"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
-#: admin/callhistory.php:117
-msgid "Call History List"
+#: admin/operators.php:150
+msgid "FreePBX has been reloaded for the new VoIP extension to take effect"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
-msgid "Date/Time call start"
+#: admin/operators.php:174
+msgid "Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
-msgid "Time end"
+#: admin/operators.php:182 admin/operators.php:203
+msgid "Add an operator"
msgstr ""
-#: admin/callhistory.php:110
-msgid "Download Call History List"
+#: admin/operators.php:204
+msgid "Adding an operator here will give the user the ability to call cases"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
-msgid "Assign clients to questionnaires"
+#: admin/operators.php:204
+msgid "Assign Operator to Questionnaire"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/operators.php:204
+msgid "tool"
+msgstr ""
+
+#: admin/operators.php:205 admin/clients.php:106
+msgid ""
+"Use this form to enter the username of a user based on your directory "
+"security system. For example, if you have secured the base directory of "
+"queXS using Apache file based security, enter the usernames of the users "
+"here."
+msgstr ""
+
+#: admin/operators.php:206
+msgid "The username and extension must be unique for each operator."
+msgstr ""
+
+#: admin/operators.php:208
+msgid "Enter the username of an operator to add:"
+msgstr ""
+
+#: admin/operators.php:210
+msgid "Enter the password of an operator to add:"
+msgstr ""
+
+#: admin/operators.php:212
+msgid "Enter the first name of an operator to add:"
+msgstr ""
+
+#: admin/operators.php:213
+msgid "Enter the surname of an operator to add:"
+msgstr ""
+
+#: admin/operators.php:214
+msgid "Enter the Time Zone of an operator to add:"
+msgstr ""
+
+#: admin/operators.php:216
+msgid "Select an extension for this operator:"
+msgstr ""
+
+#: admin/operators.php:218
+msgid "Will this operator be using VoIP?"
+msgstr ""
+
+#: admin/operators.php:219 admin/operatorlist.php:168
+msgid "Jabber/XMPP chat user"
+msgstr ""
+
+#: admin/operators.php:220 admin/operatorlist.php:169
+msgid "Jabber/XMPP chat password"
+msgstr ""
+
+#: admin/operators.php:221
+msgid "Will this operator be using chat?"
+msgstr ""
+
+#: admin/operators.php:222
+msgid "Is the operator a normal interviewer?"
+msgstr ""
+
+#: admin/operators.php:223
+msgid "Is the operator a supervisor?"
+msgstr ""
+
+#: admin/operators.php:224
+msgid "Is the operator a refusal converter?"
+msgstr ""
+
+#: admin/operators.php:225 admin/clients.php:115
+msgid "Add user"
+msgstr ""
+
+#: admin/quotareport.php:109 admin/index.php:82
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
-msgid "Select a questionnaire from the list below"
-msgstr ""
-
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/samplesearch.php:84
+#: admin/questionnairecatimeslotssample.php:107 admin/quota.php:123
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1146,13 +1398,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1184,849 +1434,6 @@ msgstr ""
msgid "Auto prioritise"
msgstr ""
-#: admin/quotareport.php:285
-msgid "Update priorities"
-msgstr ""
-
-#: admin/import.php:51
-msgid "Import: Validating and uploading"
-msgstr ""
-
-#: admin/import.php:67
-msgid "Successfully imported file"
-msgstr ""
-
-#: admin/import.php:71
-msgid "Error importing file. Please try again"
-msgstr ""
-
-#: admin/import.php:75
-msgid "Error:"
-msgstr ""
-
-#: admin/import.php:75
-msgid "Please go back in your browser and fix the problem"
-msgstr ""
-
-#: admin/import.php:87
-msgid "Import: Select columns to import"
-msgstr ""
-
-#: admin/import.php:112
-msgid "Import: Select file to upload"
-msgstr ""
-
-#: admin/import.php:117
-msgid "Choose the CSV sample file to upload:"
-msgstr ""
-
-#: admin/import.php:118
-msgid "Description for file:"
-msgstr ""
-
-#: admin/import.php:119
-#: admin/assignsample.php:227
-msgid "Add sample"
-msgstr ""
-
-#: admin/systemsortprocess.php:91
-msgid "Sorting cases process starting"
-msgstr ""
-
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
-msgstr ""
-
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
-msgid "System automatically closed case as not closed for more than 24 hours"
-msgstr ""
-
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
-msgstr ""
-
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
-msgid "This task took"
-msgstr ""
-
-#: admin/systemsortprocess.php:295
-msgid "Failed to complete sort"
-msgstr ""
-
-#: admin/displayappointments.php:149
-msgid "Now modify case outcome"
-msgstr ""
-
-#: admin/displayappointments.php:151
-msgid "The appointment has been deleted. Now you must modify the case outcome"
-msgstr ""
-
-#: admin/displayappointments.php:152
-msgid "Modify case outcome"
-msgstr ""
-
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
-msgid "Edit appointment"
-msgstr ""
-
-#: admin/displayappointments.php:185
-msgid "Contact phone"
-msgstr ""
-
-#: admin/displayappointments.php:193
-msgid "Start time"
-msgstr ""
-
-#: admin/displayappointments.php:194
-msgid "End time"
-msgstr ""
-
-#: admin/displayappointments.php:215
-msgid "Cancel edit"
-msgstr ""
-
-#: admin/displayappointments.php:216
-msgid "Delete this appointment"
-msgstr ""
-
-#: admin/displayappointments.php:225
-msgid "Display Appointments"
-msgstr ""
-
-#: admin/displayappointments.php:227
-msgid "All appointments (with times displayed in your time zone)"
-msgstr ""
-
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-msgid "Delete"
-msgstr ""
-
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
-msgid "Edit"
-msgstr ""
-
-#: admin/displayappointments.php:243
-msgid "Operator Name"
-msgstr ""
-
-#: admin/displayappointments.php:243
-msgid "Respondent Name"
-msgstr ""
-
-#: admin/displayappointments.php:243
-msgid "Surname"
-msgstr ""
-
-#: admin/displayappointments.php:243
-msgid "Current outcome"
-msgstr ""
-
-#: admin/displayappointments.php:243
-msgid "Operator who called"
-msgstr ""
-
-#: admin/displayappointments.php:246
-msgid "No appointments in the future"
-msgstr ""
-
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
-msgid "Quota management"
-msgstr ""
-
-#: admin/quota.php:134
-msgid "Current quotas (click to delete)"
-msgstr ""
-
-#: admin/quota.php:146
-msgid "Currently no quotas"
-msgstr ""
-
-#: admin/quota.php:152
-msgid "Stop calling this sample when:"
-msgstr ""
-
-#: admin/quota.php:152
-msgid "for"
-msgstr ""
-
-#: admin/quota.php:152
-msgid "completions"
-msgstr ""
-
-#: admin/quota.php:155
-msgid "Quota reached"
-msgstr ""
-
-#: admin/quota.php:157
-msgid "Quota not yet reached"
-msgstr ""
-
-#: admin/quota.php:159
-msgid "Current completions: "
-msgstr ""
-
-#: admin/quota.php:167
-msgid "Select a question for the quota"
-msgstr ""
-
-#: admin/quota.php:192
-msgid "Enter the details for creating the quota:"
-msgstr ""
-
-#: admin/quota.php:193
-msgid "Pre defined values for this question:"
-msgstr ""
-
-#: admin/quota.php:205
-msgid "No labels defined for this question"
-msgstr ""
-
-#: admin/quota.php:207
-msgid "Code value"
-msgstr ""
-
-#: admin/quota.php:213
-msgid "The code value to compare"
-msgstr ""
-
-#: admin/quota.php:214
-msgid "The type of comparison"
-msgstr ""
-
-#: admin/quota.php:215
-msgid "The number of completions to stop calling at"
-msgstr ""
-
-#: admin/quota.php:219
-msgid "Add quota"
-msgstr ""
-
-#: admin/operatorskill.php:149
-msgid "Assign operators to Skills"
-msgstr ""
-
-#: admin/operatorskill.php:151
-msgid "Set which types of cases will be made available to each operator. Please note that all operators will be allowed to assign all possible outcomes to a case. This restricts which ones will be assigned to an operator."
-msgstr ""
-
-#: admin/operatorskill.php:272
-#: admin/index.php:70
-msgid "Modify operator skills"
-msgstr ""
-
-#: admin/operatorperformance.php:66
-msgid "Operator Performance"
-msgstr ""
-
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
-msgid "Please select a questionnaire"
-msgstr ""
-
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
-msgid "Calls"
-msgstr ""
-
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
-msgid "Total time"
-msgstr ""
-
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
-msgid "Call time"
-msgstr ""
-
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
-msgid "Completions p/h"
-msgstr ""
-
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
-msgid "Calls p/h"
-msgstr ""
-
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
-msgid "Effectiveness"
-msgstr ""
-
-#: admin/operatorperformance.php:88
-msgid "till"
-msgstr ""
-
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
-msgid "Please select a shift"
-msgstr ""
-
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
-msgstr ""
-
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
-msgid "Modify"
-msgstr ""
-
-#: admin/availabilitygroup.php:114
-msgid "Availability groups define periods of time of respondent availability."
-msgstr ""
-
-#: admin/availabilitygroup.php:117
-msgid "No availability groups"
-msgstr ""
-
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
-msgstr ""
-
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
-msgstr ""
-
-#: admin/availabilitygroup.php:126
-msgid "Availability group name"
-msgstr ""
-
-#: admin/shiftreport.php:61
-#: admin/index.php:95
-msgid "Shift reports"
-msgstr ""
-
-#: admin/shiftreport.php:92
-msgid "Reports for this shift"
-msgstr ""
-
-#: admin/shiftreport.php:104
-msgid "Report"
-msgstr ""
-
-#: admin/shiftreport.php:107
-msgid "Create new report for this shift"
-msgstr ""
-
-#: admin/shiftreport.php:113
-msgid "Enter report for this shift"
-msgstr ""
-
-#: admin/shiftreport.php:117
-msgid "Add report"
-msgstr ""
-
-#: admin/shiftreport.php:153
-msgid "This report does not exist in the database"
-msgstr ""
-
-#: admin/shiftreport.php:158
-msgid "Edit report for this shift"
-msgstr ""
-
-#: admin/shiftreport.php:163
-msgid "Modify report"
-msgstr ""
-
-#: admin/index.php:46
-msgid "Administrative Tools"
-msgstr ""
-
-#: admin/index.php:50
-msgid "Questionnaire creation and management"
-msgstr ""
-
-#: admin/index.php:51
-msgid "Create an instrument in Limesurvey"
-msgstr ""
-
-#: admin/index.php:52
-msgid "Create a new questionnaire"
-msgstr ""
-
-#: admin/index.php:53
-msgid "Questionnaire management"
-msgstr ""
-
-#: admin/index.php:54
-msgid "Administer instruments with Limesurvey"
-msgstr ""
-
-#: admin/index.php:56
-msgid "Sample/List management"
-msgstr ""
-
-#: admin/index.php:57
-msgid "Import a sample file (in CSV form)"
-msgstr ""
-
-#: admin/index.php:58
-msgid "Sample management"
-msgstr ""
-
-#: admin/index.php:59
-msgid "Assign samples to questionnaires"
-msgstr ""
-
-#: admin/index.php:60
-msgid "Set values in questionnaire to pre fill"
-msgstr ""
-
-#: admin/index.php:64
-msgid "Quota row management"
-msgstr ""
-
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
-msgid "Operator management"
-msgstr ""
-
-#: admin/index.php:67
-msgid "Add operators to the system"
-msgstr ""
-
-#: admin/index.php:69
-msgid "Assign operators to questionnaires"
-msgstr ""
-
-#: admin/index.php:72
-msgid "Availability and shift management"
-msgstr ""
-
-#: admin/index.php:73
-msgid "Manage availablity groups"
-msgstr ""
-
-#: admin/index.php:74
-msgid "Assign availabilities to questionnaires"
-msgstr ""
-
-#: admin/index.php:75
-msgid "Shift management (add/remove)"
-msgstr ""
-
-#: admin/index.php:77
-msgid "Questionnaire progress"
-msgstr ""
-
-#: admin/index.php:78
-msgid "Display all future appointments"
-msgstr ""
-
-#: admin/index.php:79
-msgid "Sample call attempts report"
-msgstr ""
-
-#: admin/index.php:81
-msgid "Questionnaire outcomes"
-msgstr ""
-
-#: admin/index.php:82
-msgid "Data output"
-msgstr ""
-
-#: admin/index.php:85
-#: admin/outcomes.php:297
-msgid "Operator performance"
-msgstr ""
-
-#: admin/index.php:87
-msgid "Client management"
-msgstr ""
-
-#: admin/index.php:88
-msgid "Add clients to the system"
-msgstr ""
-
-#: admin/index.php:91
-msgid "Supervisor functions"
-msgstr ""
-
-#: admin/index.php:92
-msgid "Assign outcomes to cases"
-msgstr ""
-
-#: admin/index.php:93
-msgid "Search the sample"
-msgstr ""
-
-#: admin/index.php:96
-msgid "Case status and assignment"
-msgstr ""
-
-#: admin/index.php:97
-msgid "Bulk appointment generator"
-msgstr ""
-
-#: admin/index.php:99
-msgid "System settings"
-msgstr ""
-
-#: admin/index.php:100
-msgid "Set default timezone list"
-msgstr ""
-
-#: admin/index.php:101
-msgid "Set default shift times"
-msgstr ""
-
-#: admin/index.php:102
-msgid "Set call restriction times"
-msgstr ""
-
-#: admin/index.php:103
-#: admin/centreinfo.php:62
-msgid "Set centre information"
-msgstr ""
-
-#: admin/index.php:105
-msgid "Start and monitor system wide case sorting"
-msgstr ""
-
-#: admin/index.php:109
-msgid "VoIP"
-msgstr ""
-
-#: admin/index.php:110
-msgid "Start and monitor VoIP"
-msgstr ""
-
-#: admin/index.php:112
-msgid "Extension status"
-msgstr ""
-
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
-msgid "Assign Sample: Select sample to assign"
-msgstr ""
-
-#: admin/assignsample.php:131
-msgid "Edit sample details"
-msgstr ""
-
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
-msgid "Max calls (0 for unlimited)"
-msgstr ""
-
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
-msgid "Max call attempts (0 for unlimited)"
-msgstr ""
-
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
-msgid "Number of answering machine messages to leave per case (0 for never)"
-msgstr ""
-
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
-msgid "Select from sample randomly? (otherwise sequentially)"
-msgstr ""
-
-#: admin/assignsample.php:177
-msgid "Samples selected for this questionnaire"
-msgstr ""
-
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
-msgid "Unlimited"
-msgstr ""
-
-#: admin/assignsample.php:182
-msgid "Sequential"
-msgstr ""
-
-#: admin/assignsample.php:182
-msgid "Random"
-msgstr ""
-
-#: admin/assignsample.php:183
-msgid "Never"
-msgstr ""
-
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
-msgid "Click to unassign"
-msgstr ""
-
-#: admin/assignsample.php:193
-msgid "Max calls"
-msgstr ""
-
-#: admin/assignsample.php:193
-msgid "Max call attempts"
-msgstr ""
-
-#: admin/assignsample.php:193
-msgid "Answering machine messages"
-msgstr ""
-
-#: admin/assignsample.php:193
-msgid "Selection type"
-msgstr ""
-
-#: admin/assignsample.php:193
-msgid "Unassign sample"
-msgstr ""
-
-#: admin/assignsample.php:195
-msgid "No samples selected for this questionnaire"
-msgstr ""
-
-#: admin/assignsample.php:209
-msgid "Add a sample to this questionnaire:"
-msgstr ""
-
-#: admin/assignsample.php:212
-msgid "Select sample:"
-msgstr ""
-
-#: admin/centreinfo.php:66
-msgid "Set centre information: "
-msgstr ""
-
-#: admin/centreinfo.php:67
-msgid "Update centre information"
-msgstr ""
-
-#: admin/questionnaireavailability.php:93
-msgid "Assign availability group to questionnaire"
-msgstr ""
-
-#: admin/questionnaireavailability.php:110
-msgid "There are no availability groups selected for this questionnaire"
-msgstr ""
-
-#: admin/questionnaireavailability.php:114
-msgid "Availability groups selected for this questionnaire"
-msgstr ""
-
-#: admin/questionnaireavailability.php:132
-msgid "Add an availability group to this questionnaire:"
-msgstr ""
-
-#: admin/questionnaireavailability.php:135
-msgid "Select availability group:"
-msgstr ""
-
-#: admin/supervisorchat.php:63
-msgid "Allow interviewers to chat with the supervisor over XMPP (Jabber). Required is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will need XMPP/Jabber accounts."
-msgstr ""
-
-#: admin/supervisorchat.php:73
-msgid "Enable supervisor chat?"
-msgstr ""
-
-#: admin/supervisorchat.php:74
-msgid "Set BOSH URL"
-msgstr ""
-
-#: admin/supervisorchat.php:75
-msgid "Supervisor XMPP/Jabber id"
-msgstr ""
-
-#: admin/supervisorchat.php:76
-msgid "Update"
-msgstr ""
-
-#: admin/samplesearch.php:83
-msgid "Search sample"
-msgstr ""
-
-#: admin/samplesearch.php:100
-msgid "No cases yet assigned: Delete this sample record"
-msgstr ""
-
-#: admin/samplesearch.php:100
-msgid "Assigned to questionnaire: "
-msgstr ""
-
-#: admin/samplesearch.php:110
-msgid "No records in this sample match this search criteria"
-msgstr ""
-
-#: admin/samplesearch.php:121
-msgid "Sample id"
-msgstr ""
-
-#: admin/samplesearch.php:130
-msgid "Link"
-msgstr ""
-
-#: admin/samplesearch.php:149
-msgid "Search within this sample"
-msgstr ""
-
-#: admin/samplesearch.php:151
-#, php-format
-msgid "Use the % character as a wildcard"
-msgstr ""
-
-#: admin/samplesearch.php:156
-msgid "Search for:"
-msgstr ""
-
-#: admin/samplesearch.php:158
-msgid "Start search"
-msgstr ""
-
-#: admin/outcomes.php:77
-msgid "Questionnaire Outcomes"
-msgstr ""
-
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
-msgid "Outcomes"
-msgstr ""
-
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
-msgid "Sample status"
-msgstr ""
-
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
-msgid "Drawn from sample"
-msgstr ""
-
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
-msgid "Remain in sample"
-msgstr ""
-
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
-msgid "Number"
-msgstr ""
-
-#: admin/outcomes.php:99
-msgid "Case availability (cases with temporary or appointment outcomes)"
-msgstr ""
-
-#: admin/outcomes.php:131
-msgid "No cases currently available to call"
-msgstr ""
-
-#: admin/outcomes.php:135
-msgid "Cases currently available to call"
-msgstr ""
-
-#: admin/outcomes.php:142
-msgid "Average time on a completed questionnaire"
-msgstr ""
-
-#: admin/outcomes.php:142
-msgid "Min"
-msgstr ""
-
-#: admin/outcomes.php:142
-msgid "Secs"
-msgstr ""
-
-#: admin/outcomes.php:155
-msgid "Rate"
-msgstr ""
-
-#: admin/outcomes.php:156
-msgid "Response Rate 1"
-msgstr ""
-
-#: admin/outcomes.php:157
-msgid "Refusal Rate 1"
-msgstr ""
-
-#: admin/outcomes.php:158
-msgid "Cooperation Rate 1"
-msgstr ""
-
-#: admin/outcomes.php:159
-msgid "Contact Rate 1"
-msgstr ""
-
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
-msgid "Count"
-msgstr ""
-
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
-msgid "%"
-msgstr ""
-
-#: admin/outcomes.php:193
-msgid "Operator call outcomes"
-msgstr ""
-
-#: admin/outcomes.php:264
-msgid "No outcomes recorded for this sample"
-msgstr ""
-
-#: admin/outcomes.php:269
-msgid "No outcomes recorded for this questionnaire"
-msgstr ""
-
-#: admin/outcomes.php:276
-msgid "No shift reports: Add report"
-msgstr ""
-
-#: admin/outcomes.php:276
-msgid "View shift reports"
-msgstr ""
-
-#: admin/outcomes.php:276
-msgid "View operator performance"
-msgstr ""
-
-#: admin/outcomes.php:295
-msgid "No shifts defined for this questionnaire"
-msgstr ""
-
-#: admin/outcomes.php:297
-msgid "Shift"
-msgstr ""
-
-#: admin/outcomes.php:297
-msgid "Shift report"
-msgstr ""
-
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
-msgid "Monitor VoIP Process"
-msgstr ""
-
-#: admin/voipmonitor.php:79
-msgid "Kill signal sent: Please wait... (Note: Process will be stalled until there is activity on the VoIP Server)"
-msgstr ""
-
-#: admin/voipmonitor.php:84
-msgid "(requires activity on the VoIP Server to take effect)"
-msgstr ""
-
-#: admin/voipmonitor.php:97
-msgid "Click here to begin monitoring the VoIP Process"
-msgstr ""
-
#: admin/questionnaireprefill.php:99
msgid "Pre fill questionnaire: Set values for questionnaire to prefill"
msgstr ""
@@ -2075,73 +1482,132 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
-msgid "Rename"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
-#: admin/samplelist.php:279
-msgid "Operator viewing permissions"
+#: admin/availabilitygroup.php:114
+msgid ""
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
-#: admin/samplelist.php:182
-msgid "Select which fields from this sample should be able to be viewed by operators"
+#: admin/availabilitygroup.php:117
+msgid "No time slots"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
-msgid "Field"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
-msgid "Example data"
+#: admin/availabilitygroup.php:119 admin/questionnairelist.php:397
+msgid "Modify"
msgstr ""
-#: admin/samplelist.php:187
-msgid "Allow operator to see?"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
-#: admin/samplelist.php:190
-msgid "Save changes"
+#: admin/availabilitygroup.php:126
+msgid "Time slot name"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
-msgid "Deidentify"
+#: admin/outcomes.php:86 admin/outcomes.php:244
+msgid "Outcomes"
msgstr ""
-#: admin/samplelist.php:219
-msgid "Select which fields from this sample to deidentify. Deidentified fields will be permanently deleted from the sample."
+#: admin/outcomes.php:88 admin/outcomes.php:231
+msgid "Sample status"
msgstr ""
-#: admin/samplelist.php:227
-msgid "Delete selected fields"
+#: admin/outcomes.php:97 admin/outcomes.php:241
+msgid "Number"
msgstr ""
-#: admin/samplelist.php:263
-msgid "Enable"
+#: admin/outcomes.php:99
+msgid "Case availability (cases with temporary or appointment outcomes)"
msgstr ""
-#: admin/samplelist.php:265
-msgid "Disable"
+#: admin/outcomes.php:131
+msgid "No cases currently available to call"
msgstr ""
-#: admin/samplelist.php:276
-msgid "Sample list"
+#: admin/outcomes.php:135
+msgid "Cases currently available to call"
msgstr ""
-#: admin/samplelist.php:279
-msgid "Enable/Disable"
+#: admin/outcomes.php:142
+msgid "Average time on a completed questionnaire"
+msgstr ""
+
+#: admin/outcomes.php:142
+msgid "Min"
+msgstr ""
+
+#: admin/outcomes.php:142
+msgid "Secs"
+msgstr ""
+
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+msgid "%"
+msgstr ""
+
+#: admin/outcomes.php:193
+msgid "Operator call outcomes"
+msgstr ""
+
+#: admin/outcomes.php:264
+msgid "No outcomes recorded for this sample"
+msgstr ""
+
+#: admin/outcomes.php:273 index.php:259 index_interface2.php:348
+msgid "Shifts"
+msgstr ""
+
+#: admin/outcomes.php:295
+msgid "No shifts defined for this questionnaire"
+msgstr ""
+
+#: admin/outcomes.php:297
+msgid "Shift"
+msgstr ""
+
+#: admin/outcomes.php:297 admin/index.php:87
+msgid "Operator performance"
+msgstr ""
+
+#: admin/samplesearch.php:83
+msgid "Search sample"
+msgstr ""
+
+#: admin/samplesearch.php:110
+msgid "No records in this sample match this search criteria"
+msgstr ""
+
+#: admin/samplesearch.php:121
+msgid "Sample id"
+msgstr ""
+
+#: admin/samplesearch.php:130
+msgid "Link"
+msgstr ""
+
+#: admin/samplesearch.php:149
+msgid "Search within this sample"
+msgstr ""
+
+#: admin/samplesearch.php:151
+#, php-format
+msgid "Use the % character as a wildcard"
+msgstr ""
+
+#: admin/samplesearch.php:156
+msgid "Search for:"
+msgstr ""
+
+#: admin/samplesearch.php:158
+msgid "Start search"
msgstr ""
#: admin/bulkappointment.php:199
@@ -2149,7 +1615,9 @@ msgid "Added appointment"
msgstr ""
#: admin/bulkappointment.php:203
-msgid "No such case id, or case set to a final outcome, or case currently assigned to an operator"
+msgid ""
+"No such case id, or case set to a final outcome, or case currently assigned "
+"to an operator"
msgstr ""
#: admin/bulkappointment.php:209
@@ -2157,7 +1625,17 @@ msgid "Result"
msgstr ""
#: admin/bulkappointment.php:229
-msgid "Please check the case id's, appointment start and end times and notes are correct before accepting below"
+msgid ""
+"Please check the case id's, appointment start and end times and notes are "
+"correct before accepting below"
+msgstr ""
+
+#: admin/bulkappointment.php:230 admin/displayappointments.php:193
+msgid "Start time"
+msgstr ""
+
+#: admin/bulkappointment.php:230 admin/displayappointments.php:194
+msgid "End time"
msgstr ""
#: admin/bulkappointment.php:235
@@ -2165,11 +1643,26 @@ msgid "Accept and generate bulk appointments"
msgstr ""
#: admin/bulkappointment.php:240
-msgid "The file does not contain at least caseid, starttime and endtime columns. Please try again."
+msgid ""
+"The file does not contain at least caseid, starttime and endtime columns. "
+"Please try again."
+msgstr ""
+
+#: admin/bulkappointment.php:248 admin/import.php:112
+msgid "Import: Select file to upload"
+msgstr ""
+
+#: admin/bulkappointment.php:250 admin/index.php:99
+msgid "Bulk appointment generator"
msgstr ""
#: admin/bulkappointment.php:251
-msgid "Provide a headered CSV file containing at least 3 columns - caseid, starttime and endtime. Optionally you can include a note column to attach a note to the case in addition to setting an appointment. Only cases that have temporary (non final) outcomes will have appointments generated, and the outcome of the case will be updated to an appointment outcome."
+msgid ""
+"Provide a headered CSV file containing at least 3 columns - caseid, "
+"starttime and endtime. Optionally you can include a note column to attach a "
+"note to the case in addition to setting an appointment. Only cases that have "
+"temporary (non final) outcomes will have appointments generated, and the "
+"outcome of the case will be updated to an appointment outcome."
msgstr ""
#: admin/bulkappointment.php:252
@@ -2184,19 +1677,55 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/callrestrict.php:82
+msgid "Modify call restriction times"
+msgstr ""
+
+#: admin/callrestrict.php:96 admin/availability.php:122
+msgid ""
+"Enter the start and end times for each day of the week to restrict calls "
+"within"
+msgstr ""
+
+#: admin/callrestrict.php:118 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+msgid "Day"
+msgstr ""
+
+#: admin/callrestrict.php:134 admin/availability.php:160
+#: admin/shifttemplate.php:134
+msgid "Add row"
+msgstr ""
+
+#: admin/callrestrict.php:135
+msgid "Save changes to restriction times"
+msgstr ""
+
+#: admin/questionnairecatimeslotssample.php:97 admin/index.php:76
+msgid "Assign call attempt time slots to questionnaire sample"
+msgstr ""
+
+#: admin/questionnairecatimeslotssample.php:126
+msgid ""
+"There are no call attempt time slots selected for this questionnaire sample"
+msgstr ""
+
+#: admin/questionnairecatimeslotssample.php:130
+msgid "Call attempt time slots selected for this questionnaire sample"
+msgstr ""
+
+#: admin/questionnairecatimeslotssample.php:148
+msgid "Add a call attempt time slot to this questionnaire sample:"
+msgstr ""
+
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
#: admin/addshift.php:88
-msgid "You must be an operator (as well as have administrator access) to add/edit shifts"
-msgstr ""
-
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
-msgid "Your database does not have timezones installed, please see here for details"
+msgid ""
+"You must be an operator (as well as have administrator access) to add/edit "
+"shifts"
msgstr ""
#: admin/addshift.php:163
@@ -2204,7 +1733,9 @@ msgid "Add shifts in your Time Zone"
msgstr ""
#: admin/addshift.php:166
-msgid "Shifts allow you to restrict appointments being made, and interviewers to working on a particlar project at defined times."
+msgid ""
+"Shifts allow you to restrict appointments being made, and interviewers to "
+"working on a particlar project at defined times."
msgstr ""
#: admin/addshift.php:173
@@ -2215,12 +1746,6 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
-msgid "Day"
-msgstr ""
-
#: admin/addshift.php:238
msgid "Use shift?"
msgstr ""
@@ -2229,8 +1754,864 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/process.php:90
+msgid "Cannot connect to VoIP Server"
+msgstr ""
+
+#: admin/supervisorchat.php:63
+msgid ""
+"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
+"is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will "
+"need XMPP/Jabber accounts."
+msgstr ""
+
+#: admin/supervisorchat.php:73
+msgid "Enable supervisor chat?"
+msgstr ""
+
+#: admin/supervisorchat.php:74
+msgid "Set BOSH URL"
+msgstr ""
+
+#: admin/supervisorchat.php:75
+msgid "Supervisor XMPP/Jabber id"
+msgstr ""
+
+#: admin/supervisorchat.php:76
+msgid "Update"
+msgstr ""
+
+#: admin/questionnairelist.php:277
+msgid "Questionnaire list"
+msgstr ""
+
+#: admin/questionnairelist.php:330
+msgid "Edit instrument in Limesurvey"
+msgstr ""
+
+#: admin/questionnairelist.php:333 admin/new.php:132
+msgid "Name for questionnaire:"
+msgstr ""
+
+#: admin/questionnairelist.php:334 admin/new.php:195
+msgid "Restrict appointments to shifts?"
+msgstr ""
+
+#: admin/questionnairelist.php:335 admin/new.php:196
+msgid "Restrict work to shifts?"
+msgstr ""
+
+#: admin/questionnairelist.php:336 admin/new.php:197
+msgid "Questionnaire for testing only?"
+msgstr ""
+
+#: admin/questionnairelist.php:337 admin/new.php:198
+msgid "Allow operators to generate referrals?"
+msgstr ""
+
+#: admin/questionnairelist.php:338 admin/new.php:199
+msgid "Allow for respondent self completion via email invitation?"
+msgstr ""
+
+#: admin/questionnairelist.php:340 admin/new.php:201
+msgid "Questionnaire display mode for respondent"
+msgstr ""
+
+#: admin/questionnairelist.php:340 admin/new.php:201
+msgid "All in one"
+msgstr ""
+
+#: admin/questionnairelist.php:340 admin/new.php:201
+msgid "Question by question"
+msgstr ""
+
+#: admin/questionnairelist.php:340 admin/new.php:201
+msgid "Group at a time"
+msgstr ""
+
+#: admin/questionnairelist.php:341 admin/new.php:202
+msgid "Limesurvey template for respondent"
+msgstr ""
+
+#: admin/questionnairelist.php:356 admin/new.php:214
+msgid "URL to forward respondents on self completion (required)"
+msgstr ""
+
+#: admin/questionnairelist.php:359 admin/new.php:217
+msgid "Respondent selection introduction:"
+msgstr ""
+
+#: admin/questionnairelist.php:360 admin/new.php:218
+msgid "Respondent selection project introduction:"
+msgstr ""
+
+#: admin/questionnairelist.php:361 admin/new.php:219
+msgid "Respondent selection callback (already started questionnaire):"
+msgstr ""
+
+#: admin/questionnairelist.php:362 admin/new.php:220
+msgid "Message to leave on an answering machine:"
+msgstr ""
+
+#: admin/questionnairelist.php:363
+msgid "Edit respondent selection instrument in Limesurvey"
+msgstr ""
+
+#: admin/questionnairelist.php:364 admin/new.php:222
+msgid "Project end text (thank you screen):"
+msgstr ""
+
+#: admin/questionnairelist.php:365 admin/new.php:223
+msgid "Project information for interviewers/operators:"
+msgstr ""
+
+#: admin/questionnairelist.php:366
+msgid "Update Questionnaire"
+msgstr ""
+
+#: admin/questionnairelist.php:385
+msgid "Any collected data and the limesurvey instrument will NOT be deleted"
+msgstr ""
+
+#: admin/questionnairelist.php:386
+msgid ""
+"The questionnaire will be deleted from queXS including call history, cases, "
+"case notes, respondent details, appointments and the links between "
+"operators, clients and the questionnaire"
+msgstr ""
+
+#: admin/questionnairelist.php:387
+msgid "Please confirm you wish to delete the questionnaire"
+msgstr ""
+
+#: admin/questionnairelist.php:390
+msgid "Delete this questionnaire"
+msgstr ""
+
+#: admin/questionnairelist.php:397 admin/supervisor.php:297
+#: admin/supervisor.php:361 admin/displayappointments.php:243
+msgid "Delete"
+msgstr ""
+
+#: admin/callhistory.php:80 admin/callhistory.php:109
+#: admin/callhistory.php:117
+msgid "Call History List"
+msgstr ""
+
+#: admin/callhistory.php:96 admin/callhistory.php:111
+msgid "Date/Time call start"
+msgstr ""
+
+#: admin/callhistory.php:96 admin/callhistory.php:111
+msgid "Time end"
+msgstr ""
+
+#: admin/callhistory.php:110
+msgid "Download Call History List"
+msgstr ""
+
+#: admin/clients.php:84
+msgid "Could not add"
+msgstr ""
+
+#: admin/clients.php:84
+msgid "There may already be a client of this name"
+msgstr ""
+
+#: admin/clients.php:89 admin/clients.php:104
+msgid "Add a client"
+msgstr ""
+
+#: admin/clients.php:105
+msgid ""
+"Adding a client here will allow them to access project information in the "
+"client subdirectory. You can assign a client to a particular project using "
+"the"
+msgstr ""
+
+#: admin/clients.php:105
+msgid "Assign client to Questionnaire"
+msgstr ""
+
+#: admin/clients.php:105
+msgid "tool."
+msgstr ""
+
+#: admin/clients.php:108
+msgid "Enter the username of a client to add:"
+msgstr ""
+
+#: admin/clients.php:110
+msgid "Enter the password of a client to add:"
+msgstr ""
+
+#: admin/clients.php:112
+msgid "Enter the first name of a client to add:"
+msgstr ""
+
+#: admin/clients.php:113
+msgid "Enter the surname of a client to add:"
+msgstr ""
+
+#: admin/clients.php:114
+msgid "Enter the Time Zone of a client to add:"
+msgstr ""
+
+#: admin/availability.php:57
+msgid "No time slot group set"
+msgstr ""
+
+#: admin/availability.php:95
+msgid "Modify time slots"
+msgstr ""
+
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
+#: admin/availability.php:162
+msgid "Save changes to time slot group"
+msgstr ""
+
+#: admin/availability.php:166
+msgid "Delete this time slot group"
+msgstr ""
+
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:91
+msgid "Assign clients to questionnaires"
+msgstr ""
+
+#: admin/questionnaireavailability.php:93
+msgid "Assign availability group to questionnaire"
+msgstr ""
+
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
+msgid "There are no availability groups selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnaireavailability.php:117
+msgid "Availability groups selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnaireavailability.php:135
+msgid "Add an availability group to this questionnaire:"
+msgstr ""
+
+#: admin/questionnaireavailability.php:138
+msgid "Select availability group:"
+msgstr ""
+
+#: admin/operatorlist.php:60
+msgid "If changing usernames, you must specify a new password"
+msgstr ""
+
+#: admin/operatorlist.php:116
+msgid "Successfully updated user"
+msgstr ""
+
+#: admin/operatorlist.php:120
+msgid "Failed to update user. Please make sure the username is unique"
+msgstr ""
+
+#: admin/operatorlist.php:129
+msgid "Operator edit"
+msgstr ""
+
+#: admin/operatorlist.php:144 admin/operatorlist.php:293
+#: admin/assignsample.php:158 admin/assignsample.php:203
+#: admin/supervisor.php:297 admin/shiftreport.php:104
+#: admin/displayappointments.php:243
+msgid "Edit"
+msgstr ""
+
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
+msgid "Username"
+msgstr ""
+
+#: admin/operatorlist.php:162
+msgid "Update password (leave blank to keep existing password)"
+msgstr ""
+
+#: admin/operatorlist.php:170
+msgid "Uses chat"
+msgstr ""
+
+#: admin/operatorlist.php:171
+msgid "Timezone"
+msgstr ""
+
+#: admin/operatorlist.php:173
+msgid "Uses VoIP"
+msgstr ""
+
+#: admin/operatorlist.php:176
+msgid "Update operator"
+msgstr ""
+
+#: admin/operatorlist.php:290
+msgid "Operator list"
+msgstr ""
+
+#: admin/operatorlist.php:297
+msgid ""
+"Download the file for each user and save in the same folder as the voip.exe "
+"executable. When the file is executed, it will run the voip.exe program with "
+"the correct connection details to connect the operator to the VoIP server"
+msgstr ""
+
+#: admin/operatorlist.php:299
+msgid "Download Windows VoIP Executable"
+msgstr ""
+
+#: admin/operatorlist.php:300
+msgid "Download Linux VoIP Executable"
+msgstr ""
+
+#: admin/operatorlist.php:305
+msgid "Enable/Disable VoIP"
+msgstr ""
+
+#: admin/operatorlist.php:306
+msgid "Windows VoIP"
+msgstr ""
+
+#: admin/operatorlist.php:307
+msgid "*nix VoIP"
+msgstr ""
+
+#: admin/centreinfo.php:63 admin/index.php:105
+msgid "Set centre information"
+msgstr ""
+
+#: admin/centreinfo.php:67
+msgid "Set centre information: "
+msgstr ""
+
+#: admin/centreinfo.php:68
+msgid "Update centre information"
+msgstr ""
+
+#: admin/import.php:51
+msgid "Import: Validating and uploading"
+msgstr ""
+
+#: admin/import.php:67
+msgid "Successfully imported file"
+msgstr ""
+
+#: admin/import.php:71
+msgid "Error importing file. Please try again"
+msgstr ""
+
+#: admin/import.php:75
+msgid "Error:"
+msgstr ""
+
+#: admin/import.php:75
+msgid "Please go back in your browser and fix the problem"
+msgstr ""
+
+#: admin/import.php:87
+msgid "Import: Select columns to import"
+msgstr ""
+
+#: admin/import.php:117
+msgid "Choose the CSV sample file to upload:"
+msgstr ""
+
+#: admin/import.php:118
+msgid "Description for file:"
+msgstr ""
+
+#: admin/import.php:119 admin/assignsample.php:238
+msgid "Add sample"
+msgstr ""
+
+#: admin/index.php:46
+msgid "Administrative Tools"
+msgstr ""
+
+#: admin/index.php:50
+msgid "Questionnaire creation and management"
+msgstr ""
+
+#: admin/index.php:51 admin/new.php:153
+msgid "Create an instrument in Limesurvey"
+msgstr ""
+
+#: admin/index.php:52
+msgid "Create a new questionnaire"
+msgstr ""
+
+#: admin/index.php:53
+msgid "Questionnaire management"
+msgstr ""
+
+#: admin/index.php:54
+msgid "Administer instruments with Limesurvey"
+msgstr ""
+
+#: admin/index.php:56
+msgid "Sample/List management"
+msgstr ""
+
+#: admin/index.php:57
+msgid "Import a sample file (in CSV form)"
+msgstr ""
+
+#: admin/index.php:58
+msgid "Sample management"
+msgstr ""
+
+#: admin/index.php:59
+msgid "Assign samples to questionnaires"
+msgstr ""
+
+#: admin/index.php:60
+msgid "Set values in questionnaire to pre fill"
+msgstr ""
+
+#: admin/index.php:62 admin/index.php:63 admin/quota.php:109
+msgid "Quota management"
+msgstr ""
+
+#: admin/index.php:64 admin/quotarow.php:126
+msgid "Quota row management"
+msgstr ""
+
+#: admin/index.php:66 admin/index.php:68 admin/index.php:113
+msgid "Operator management"
+msgstr ""
+
+#: admin/index.php:67
+msgid "Add operators to the system"
+msgstr ""
+
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
+msgid "Assign operators to questionnaires"
+msgstr ""
+
+#: admin/index.php:70 admin/operatorskill.php:272
+msgid "Modify operator skills"
+msgstr ""
+
+#: admin/index.php:72
+msgid "Availability and shift management"
+msgstr ""
+
+#: admin/index.php:73
+msgid "Manage time slots"
+msgstr ""
+
+#: admin/index.php:74
+msgid "Assign availabilities to questionnaires"
+msgstr ""
+
+#: admin/index.php:77
+msgid "Shift management (add/remove)"
+msgstr ""
+
+#: admin/index.php:79
+msgid "Questionnaire progress"
+msgstr ""
+
+#: admin/index.php:80
+msgid "Display all future appointments"
+msgstr ""
+
+#: admin/index.php:81
+msgid "Sample call attempts report"
+msgstr ""
+
+#: admin/index.php:83
+msgid "Questionnaire outcomes"
+msgstr ""
+
+#: admin/index.php:84 admin/dataoutput.php:186
+msgid "Data output"
+msgstr ""
+
+#: admin/index.php:89
+msgid "Client management"
+msgstr ""
+
+#: admin/index.php:90
+msgid "Add clients to the system"
+msgstr ""
+
+#: admin/index.php:93 admin/supervisor.php:131
+msgid "Supervisor functions"
+msgstr ""
+
+#: admin/index.php:94
+msgid "Assign outcomes to cases"
+msgstr ""
+
+#: admin/index.php:95
+msgid "Search the sample"
+msgstr ""
+
+#: admin/index.php:96 index.php:250 index_interface2.php:339
+msgid "Call history"
+msgstr ""
+
+#: admin/index.php:97 admin/shiftreport.php:61
+msgid "Shift reports"
+msgstr ""
+
+#: admin/index.php:98 admin/casestatus.php:198
+msgid "Case status and assignment"
+msgstr ""
+
+#: admin/index.php:101
+msgid "System settings"
+msgstr ""
+
+#: admin/index.php:102
+msgid "Set default timezone list"
+msgstr ""
+
+#: admin/index.php:103
+msgid "Set default shift times"
+msgstr ""
+
+#: admin/index.php:104
+msgid "Set call restriction times"
+msgstr ""
+
+#: admin/index.php:107
+msgid "Start and monitor system wide case sorting"
+msgstr ""
+
+#: admin/index.php:111
+msgid "VoIP"
+msgstr ""
+
+#: admin/index.php:112
+msgid "Start and monitor VoIP"
+msgstr ""
+
+#: admin/index.php:114
+msgid "Extension status"
+msgstr ""
+
+#: admin/samplecallattempts.php:107
+msgid "Number of cases"
+msgstr ""
+
+#: admin/samplecallattempts.php:107
+msgid "Call attempts made"
+msgstr ""
+
+#: admin/samplecallattempts.php:170
+msgid "Sample call attempt"
+msgstr ""
+
+#: admin/samplecallattempts.php:172 admin/dataoutput.php:188
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+msgid "Please select a questionnaire"
+msgstr ""
+
+#: admin/samplecallattempts.php:175
+msgid "Overall"
+msgstr ""
+
+#: admin/samplecallattempts.php:184 admin/dataoutput.php:204
+msgid "Please select a sample"
+msgstr ""
+
+#: admin/samplecallattempts.php:195
+msgid "Please select a quota"
+msgstr ""
+
+#: admin/samplecallattempts.php:201
+msgid "No calls for this quota"
+msgstr ""
+
+#: admin/samplecallattempts.php:205
+msgid "No calls for this sample"
+msgstr ""
+
+#: admin/samplecallattempts.php:210
+msgid "No calls for this questionnaire"
+msgstr ""
+
+#: admin/casesbyoutcome.php:52
+msgid "Cases by outcome"
+msgstr ""
+
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
+msgid "Project"
+msgstr ""
+
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
+msgid "Current outcome:"
+msgstr ""
+
+#: admin/casesbyoutcome.php:84
+msgid "No cases with this outcome"
+msgstr ""
+
+#: admin/casesbyoutcome.php:91
+msgid "Error with input"
+msgstr ""
+
+#: admin/quota.php:134
+msgid "Current quotas (click to delete)"
+msgstr ""
+
+#: admin/quota.php:146
+msgid "Currently no quotas"
+msgstr ""
+
+#: admin/quota.php:152
+msgid "Stop calling this sample when:"
+msgstr ""
+
+#: admin/quota.php:152 admin/quotarow.php:187
+msgid "for"
+msgstr ""
+
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
+msgid "completions"
+msgstr ""
+
+#: admin/quota.php:155
+msgid "Quota reached"
+msgstr ""
+
+#: admin/quota.php:157
+msgid "Quota not yet reached"
+msgstr ""
+
+#: admin/quota.php:159 admin/quotarow.php:195
+msgid "Current completions: "
+msgstr ""
+
+#: admin/quota.php:167
+msgid "Select a question for the quota"
+msgstr ""
+
+#: admin/quota.php:192
+msgid "Enter the details for creating the quota:"
+msgstr ""
+
+#: admin/quota.php:193 admin/quotarow.php:275
+msgid "Pre defined values for this question:"
+msgstr ""
+
+#: admin/quota.php:205 admin/quotarow.php:292
+msgid "No labels defined for this question"
+msgstr ""
+
+#: admin/quota.php:207 admin/quotarow.php:294
+msgid "Code value"
+msgstr ""
+
+#: admin/quota.php:213 admin/quotarow.php:304
+msgid "The code value to compare"
+msgstr ""
+
+#: admin/quota.php:214 admin/quotarow.php:305
+msgid "The type of comparison"
+msgstr ""
+
+#: admin/quota.php:215 admin/quotarow.php:310
+msgid "The number of completions to stop calling at"
+msgstr ""
+
+#: admin/quota.php:219
+msgid "Add quota"
+msgstr ""
+
+#: admin/assignsample.php:120 admin/assignsample.php:179
+msgid "Assign Sample: Select sample to assign"
+msgstr ""
+
+#: admin/assignsample.php:137
+msgid "Edit sample details"
+msgstr ""
+
+#: admin/assignsample.php:151 admin/assignsample.php:232
+msgid "Max calls (0 for unlimited)"
+msgstr ""
+
+#: admin/assignsample.php:152 admin/assignsample.php:233
+msgid "Max call attempts (0 for unlimited)"
+msgstr ""
+
+#: admin/assignsample.php:153 admin/assignsample.php:234
+msgid "Number of answering machine messages to leave per case (0 for never)"
+msgstr ""
+
+#: admin/assignsample.php:154 admin/assignsample.php:235
+msgid "Select from sample randomly? (otherwise sequentially)"
+msgstr ""
+
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
+msgid "Samples selected for this questionnaire"
+msgstr ""
+
+#: admin/assignsample.php:203
+msgid "Max calls"
+msgstr ""
+
+#: admin/assignsample.php:203
+msgid "Max call attempts"
+msgstr ""
+
+#: admin/assignsample.php:203
+msgid "Answering machine messages"
+msgstr ""
+
+#: admin/assignsample.php:203
+msgid "Selection type"
+msgstr ""
+
+#: admin/assignsample.php:203
+msgid "Unassign sample"
+msgstr ""
+
+#: admin/assignsample.php:205
+msgid "No samples selected for this questionnaire"
+msgstr ""
+
+#: admin/assignsample.php:219
+msgid "Add a sample to this questionnaire:"
+msgstr ""
+
+#: admin/assignsample.php:222
+msgid "Select sample:"
+msgstr ""
+
+#: admin/supervisor.php:133
+msgid "Enter a case id or select a case from the list below:"
+msgstr ""
+
+#: admin/supervisor.php:144
+msgid "Select case from list of cases referred to the supervisor:"
+msgstr ""
+
+#: admin/supervisor.php:152 respondent.php:102 contactdetails.php:98
+msgid "Case id:"
+msgstr ""
+
+#: admin/supervisor.php:153
+msgid "Select case"
+msgstr ""
+
+#: admin/supervisor.php:176
+msgid "Set an outcome for this call"
+msgstr ""
+
+#: admin/supervisor.php:189 admin/supervisor.php:397
+msgid "Set outcome"
+msgstr ""
+
+#: admin/supervisor.php:281 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 index.php:268 index_interface2.php:357
+msgid "Appointments"
+msgstr ""
+
+#: admin/supervisor.php:284
+msgid "Not yet called"
+msgstr ""
+
+#: admin/supervisor.php:297 admin/displayappointments.php:243
+msgid "Operator Name"
+msgstr ""
+
+#: admin/supervisor.php:297 admin/displayappointments.php:243
+msgid "Respondent Name"
+msgstr ""
+
+#: admin/supervisor.php:297 admin/displayappointments.php:243
+msgid "Surname"
+msgstr ""
+
+#: admin/supervisor.php:297 admin/displayappointments.php:243
+msgid "Current outcome"
+msgstr ""
+
+#: admin/supervisor.php:297 admin/displayappointments.php:243
+msgid "Operator who called"
+msgstr ""
+
+#: admin/supervisor.php:300
+msgid "No appointments for this case"
+msgstr ""
+
+#: admin/supervisor.php:302
+msgid "Create appointment for this case"
+msgstr ""
+
+#: admin/supervisor.php:314
+msgid "Call list"
+msgstr ""
+
+#: admin/supervisor.php:320 admin/databasestrings.php:82
+msgid "Phone number"
+msgstr ""
+
+#: admin/supervisor.php:320
+msgid "Change outcome"
+msgstr ""
+
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:378
+msgid "Modify responses for this case"
+msgstr ""
+
+#: admin/supervisor.php:380
+msgid "Case not yet started in Limesurvey"
+msgstr ""
+
+#: admin/supervisor.php:384
+msgid "Set a case outcome"
+msgstr ""
+
+#: admin/supervisor.php:434
+msgid "Update case availability"
+msgstr ""
+
+#: admin/supervisor.php:445
+msgid "Assign this case to operator (will appear as next case for them)"
+msgstr ""
+
+#: admin/supervisor.php:457
+msgid "Assign this case to operator"
+msgstr ""
+
+#: admin/supervisor.php:463
+msgid "Remove all sample details and contact numbers from this case"
+msgstr ""
+
+#: admin/supervisor.php:476
+msgid "Case does not exist"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2246,9 +2627,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2256,8 +2635,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2282,7 +2660,8 @@ msgid "Copy"
msgstr ""
#: admin/quotarow.php:216
-msgid "Copy quotas for this sample to (No error/duplicate checking) with adjusting: "
+msgid ""
+"Copy quotas for this sample to (No error/duplicate checking) with adjusting: "
msgstr ""
#: admin/quotarow.php:218
@@ -2318,7 +2697,9 @@ msgid "Quota priority (50 is default, 100 highest, 0 lowest)"
msgstr ""
#: admin/quotarow.php:302
-msgid "Should the priority be automatically updated based on the number of completions in this quota?"
+msgid ""
+"Should the priority be automatically updated based on the number of "
+"completions in this quota?"
msgstr ""
#: admin/quotarow.php:316
@@ -2329,216 +2710,137 @@ msgstr ""
msgid "Add row quota"
msgstr ""
-#: admin/operators.php:147
-msgid "Added:"
+#: admin/operatorskill.php:149
+msgid "Assign operators to Skills"
msgstr ""
-#: admin/operators.php:150
-msgid "FreePBX has been reloaded for the new VoIP extension to take effect"
+#: admin/operatorskill.php:151
+msgid ""
+"Set which types of cases will be made available to each operator. Please "
+"note that all operators will be allowed to assign all possible outcomes to a "
+"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operators.php:174
-msgid "Could not add operator. There may already be an operator of this name:"
+#: admin/dataoutput.php:202
+msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
-msgid "Add an operator"
+#: admin/dataoutput.php:211
+msgid "Download data for this sample via Limesurvey"
msgstr ""
-#: admin/operators.php:204
-msgid "Adding an operator here will give the user the ability to call cases"
+#: admin/dataoutput.php:218
+msgid "Download key file: select sample var"
msgstr ""
-#: admin/operators.php:204
-msgid "Assign Operator to Questionnaire"
+#: admin/dataoutput.php:222
+msgid "Download complete key file"
msgstr ""
-#: admin/operators.php:204
-msgid "tool"
+#: admin/dataoutput.php:225
+msgid "Download complete sample file with current outcomes"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
-msgid "Use this form to enter the username of a user based on your directory security system. For example, if you have secured the base directory of queXS using Apache file based security, enter the usernames of the users here."
+#: admin/operatorperformance.php:66
+msgid "Operator Performance"
msgstr ""
-#: admin/operators.php:206
-msgid "The username and extension must be unique for each operator."
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+msgid "Calls"
msgstr ""
-#: admin/operators.php:208
-msgid "Enter the username of an operator to add:"
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+msgid "Total time"
msgstr ""
-#: admin/operators.php:210
-msgid "Enter the password of an operator to add:"
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+msgid "Call time"
msgstr ""
-#: admin/operators.php:212
-msgid "Enter the first name of an operator to add:"
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+msgid "Completions p/h"
msgstr ""
-#: admin/operators.php:213
-msgid "Enter the surname of an operator to add:"
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+msgid "Calls p/h"
msgstr ""
-#: admin/operators.php:214
-msgid "Enter the Time Zone of an operator to add:"
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+msgid "Effectiveness"
msgstr ""
-#: admin/operators.php:216
-msgid "Select an extension for this operator:"
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
+msgid "Please select a shift"
msgstr ""
-#: admin/operators.php:218
-msgid "Will this operator be using VoIP?"
+#: admin/shiftreport.php:92
+msgid "Reports for this shift"
msgstr ""
-#: admin/operators.php:219
-msgid "Jabber/XMPP chat user"
+#: admin/shiftreport.php:104
+msgid "Report"
msgstr ""
-#: admin/operators.php:220
-msgid "Jabber/XMPP chat password"
+#: admin/shiftreport.php:107
+msgid "Create new report for this shift"
msgstr ""
-#: admin/operators.php:221
-msgid "Will this operator be using chat?"
+#: admin/shiftreport.php:113
+msgid "Enter report for this shift"
msgstr ""
-#: admin/operators.php:222
-msgid "Is the operator a normal interviewer?"
+#: admin/shiftreport.php:117
+msgid "Add report"
msgstr ""
-#: admin/operators.php:223
-msgid "Is the operator a supervisor?"
+#: admin/shiftreport.php:153
+msgid "This report does not exist in the database"
msgstr ""
-#: admin/operators.php:224
-msgid "Is the operator a refusal converter?"
+#: admin/shiftreport.php:158
+msgid "Edit report for this shift"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
-msgid "Add user"
+#: admin/shiftreport.php:163
+msgid "Modify report"
msgstr ""
-#: admin/new.php:59
-msgid "New: Create new questionnaire"
+#: admin/casestatus.php:112
+msgid "Case available in x minutes"
msgstr ""
-#: admin/new.php:118
-msgid "Successfully inserted"
+#: admin/casestatus.php:112
+msgid "Assigned to operator"
msgstr ""
-#: admin/new.php:118
-msgid "as questionnaire"
+#: admin/casestatus.php:120
+msgid "Choose operator to assign selected cases to"
msgstr ""
-#: admin/new.php:118
-msgid "linked to"
+#: admin/casestatus.php:123
+msgid "Assign cases to operator queue"
msgstr ""
-#: admin/new.php:121
-msgid "Error: Failed to insert questionnaire"
+#: admin/casestatus.php:200
+msgid ""
+"List cases by questionnaire and sample with the ability to assign them to be "
+"called next in a queue by a particular operator. If you assign cases to an "
+"operator, it will override the normal scheduling process and call them as "
+"soon as the operator is available."
msgstr ""
-#: admin/new.php:132
-msgid "Name for questionnaire:"
+#: admin/shifttemplate.php:82
+msgid "Modify shift template"
msgstr ""
-#: admin/new.php:133
-msgid "Select limesurvey instrument:"
+#: admin/shifttemplate.php:96
+msgid ""
+"Enter standard shift start and end times for each day of the week in local "
+"time"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
-msgid "Existing instrument:"
-msgstr ""
-
-#: admin/new.php:156
-msgid "Respondent selection type:"
-msgstr ""
-
-#: admin/new.php:157
-msgid "No respondent selection (go straight to questionnaire)"
-msgstr ""
-
-#: admin/new.php:157
-msgid "Use basic respondent selection text (below)"
-msgstr ""
-
-#: admin/new.php:195
-msgid "Restrict appointments to shifts?"
-msgstr ""
-
-#: admin/new.php:196
-msgid "Restrict work to shifts?"
-msgstr ""
-
-#: admin/new.php:197
-msgid "Questionnaire for testing only?"
-msgstr ""
-
-#: admin/new.php:198
-msgid "Allow operators to generate referrals?"
-msgstr ""
-
-#: admin/new.php:199
-msgid "Allow for respondent self completion via email invitation?"
-msgstr ""
-
-#: admin/new.php:201
-msgid "Questionnaire display mode for respondent"
-msgstr ""
-
-#: admin/new.php:201
-msgid "All in one"
-msgstr ""
-
-#: admin/new.php:201
-msgid "Question by question"
-msgstr ""
-
-#: admin/new.php:201
-msgid "Group at a time"
-msgstr ""
-
-#: admin/new.php:202
-msgid "Limesurvey template for respondent"
-msgstr ""
-
-#: admin/new.php:214
-msgid "URL to forward respondents on self completion (required)"
-msgstr ""
-
-#: admin/new.php:217
-msgid "Respondent selection introduction:"
-msgstr ""
-
-#: admin/new.php:218
-msgid "Respondent selection project introduction:"
-msgstr ""
-
-#: admin/new.php:219
-msgid "Respondent selection callback (already started questionnaire):"
-msgstr ""
-
-#: admin/new.php:220
-msgid "Message to leave on an answering machine:"
-msgstr ""
-
-#: admin/new.php:222
-msgid "Project end text (thank you screen):"
-msgstr ""
-
-#: admin/new.php:223
-msgid "Project information for interviewers/operators:"
-msgstr ""
-
-#: admin/new.php:224
-msgid "Create Questionnaire"
+#: admin/shifttemplate.php:135
+msgid "Save changes to shifts"
msgstr ""
#: admin/extensionstatus.php:101
@@ -2549,13 +2851,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2571,30 +2871,6 @@ msgstr ""
msgid "Unassign the operator from this extension to be able to delete it"
msgstr ""
-#: admin/extensionstatus.php:168
-msgid "Unassign"
-msgstr ""
-
-#: admin/extensionstatus.php:168
-msgid "End case to change assignment"
-msgstr ""
-
-#: admin/extensionstatus.php:169
-msgid "VoIP Offline"
-msgstr ""
-
-#: admin/extensionstatus.php:169
-msgid "VoIP Online"
-msgstr ""
-
-#: admin/extensionstatus.php:170
-msgid "Not called"
-msgstr ""
-
-#: admin/extensionstatus.php:170
-msgid "Done"
-msgstr ""
-
#: admin/extensionstatus.php:200
msgid "Assignment"
msgstr ""
@@ -2623,6 +2899,94 @@ msgstr ""
msgid "Add extension"
msgstr ""
+#: admin/displayappointments.php:149
+msgid "Now modify case outcome"
+msgstr ""
+
+#: admin/displayappointments.php:151
+msgid "The appointment has been deleted. Now you must modify the case outcome"
+msgstr ""
+
+#: admin/displayappointments.php:152
+msgid "Modify case outcome"
+msgstr ""
+
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
+msgid "Edit appointment"
+msgstr ""
+
+#: admin/displayappointments.php:185
+msgid "Contact phone"
+msgstr ""
+
+#: admin/displayappointments.php:209
+msgid "Any operator"
+msgstr ""
+
+#: admin/displayappointments.php:215
+msgid "Cancel edit"
+msgstr ""
+
+#: admin/displayappointments.php:216
+msgid "Delete this appointment"
+msgstr ""
+
+#: admin/displayappointments.php:225
+msgid "Display Appointments"
+msgstr ""
+
+#: admin/displayappointments.php:227
+msgid "All appointments (with times displayed in your time zone)"
+msgstr ""
+
+#: admin/displayappointments.php:246
+msgid "No appointments in the future"
+msgstr ""
+
+#: admin/new.php:59
+msgid "New: Create new questionnaire"
+msgstr ""
+
+#: admin/new.php:118
+msgid "Successfully inserted"
+msgstr ""
+
+#: admin/new.php:118
+msgid "as questionnaire"
+msgstr ""
+
+#: admin/new.php:118
+msgid "linked to"
+msgstr ""
+
+#: admin/new.php:121
+msgid "Error: Failed to insert questionnaire"
+msgstr ""
+
+#: admin/new.php:133
+msgid "Select limesurvey instrument:"
+msgstr ""
+
+#: admin/new.php:147 admin/new.php:170
+msgid "Existing instrument:"
+msgstr ""
+
+#: admin/new.php:156
+msgid "Respondent selection type:"
+msgstr ""
+
+#: admin/new.php:157
+msgid "No respondent selection (go straight to questionnaire)"
+msgstr ""
+
+#: admin/new.php:157
+msgid "Use basic respondent selection text (below)"
+msgstr ""
+
+#: admin/new.php:224
+msgid "Create Questionnaire"
+msgstr ""
+
#: admin/databasestrings.php:32
msgid "Not attempted or worked"
msgstr ""
@@ -2819,10 +3183,6 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
-msgid "Phone number"
-msgstr ""
-
#: admin/databasestrings.php:83
msgid "Primary phone number"
msgstr ""
@@ -2855,690 +3215,256 @@ msgstr ""
msgid "Self completed online"
msgstr ""
-#: admin/casesbyoutcome.php:52
-msgid "Cases by outcome"
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
+msgid "Call"
msgstr ""
-#: admin/casesbyoutcome.php:72
-msgid "Project"
+#: call_interface2.php:302 call.php:265
+msgid "Not on a call"
msgstr ""
-#: admin/casesbyoutcome.php:73
-msgid "Current outcome:"
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
+msgid "End case"
msgstr ""
-#: admin/casesbyoutcome.php:84
-msgid "No cases with this outcome"
+#: call_interface2.php:339 call.php:302
+msgid "Press the call button to dial the number for this appointment:"
msgstr ""
-#: admin/casesbyoutcome.php:91
-msgid "Error with input"
+#: call_interface2.php:342 call.php:305
+msgid "Number to call:"
msgstr ""
-#: admin/process.php:90
-msgid "Cannot connect to VoIP Server"
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
+msgid ""
+"Your VoIP extension is not enabled. Please close this window and enable VoIP "
+"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-#: admin/availability.php:57
-msgid "No availability group set"
+#: call_interface2.php:407 call.php:370
+msgid "Select phone number to dial:"
msgstr ""
-#: admin/availability.php:95
-msgid "Modify availability"
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
+msgid "The last call completed this call attempt"
msgstr ""
-#: admin/availability.php:122
-msgid "Enter the start and end times for each day of the week to restrict calls within"
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
+msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
-msgid "Add row"
+#: call_interface2.php:467 call.php:448
+msgid "Requires coding"
msgstr ""
-#: admin/availability.php:162
-msgid "Save changes to availabilities"
+#: call_interface2.php:470 call.php:451
+msgid "Assign outcome"
msgstr ""
-#: admin/availability.php:166
-msgid "Delete this availability group"
+#: call_interface2.php:474 call.php:455
+msgid "Error: Close window"
msgstr ""
-#: admin/clients.php:84
-msgid "Could not add"
+#: rs_answeringmachine.php:64 rs_answeringmachine_interface2.php:64
+msgid "Respondent Selection - Answering machine"
msgstr ""
-#: admin/clients.php:84
-msgid "There may already be a client of this name"
+#: rs_answeringmachine.php:78 rs_answeringmachine_interface2.php:78
+msgid "Do not leave a message, please hang up"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
-msgid "Add a client"
+#: rs_answeringmachine.php:81 rs_answeringmachine_interface2.php:81
+msgid "End call with outcome: Business answering machine"
msgstr ""
-#: admin/clients.php:105
-msgid "Adding a client here will allow them to access project information in the client subdirectory. You can assign a client to a particular project using the"
+#: rs_answeringmachine.php:86 rs_answeringmachine_interface2.php:86
+msgid "End call with outcome: Answering machine Message left"
msgstr ""
-#: admin/clients.php:105
-msgid "Assign client to Questionnaire"
+#: rs_answeringmachine.php:90 rs_answeringmachine_interface2.php:90
+msgid "End call with outcome: Answering machine No message left"
msgstr ""
-#: admin/clients.php:105
-msgid "tool."
+#: rs_business.php:55 rs_business_interface2.php:55
+msgid "Respondent Selection - Business answers"
msgstr ""
-#: admin/clients.php:108
-msgid "Enter the username of a client to add:"
+#: rs_business.php:59 rs_business_interface2.php:59
+msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
-#: admin/clients.php:110
-msgid "Enter the password of a client to add:"
+#: rs_business.php:61 rs_business_interface2.php:61
+msgid "End call with outcome: Business number"
msgstr ""
-#: admin/clients.php:112
-msgid "Enter the first name of a client to add:"
+#: call.php:427
+msgid "Requesting call"
msgstr ""
-#: admin/clients.php:113
-msgid "Enter the surname of a client to add:"
+#: call.php:428 call.php:435
+msgid "Call Answered"
msgstr ""
-#: admin/clients.php:114
-msgid "Enter the Time Zone of a client to add:"
+#: call.php:442
+msgid "Not Answered"
msgstr ""
-#: admin/shifttemplate.php:82
-msgid "Modify shift template"
+#: index.php:164 nocallavailable.php:83
+msgid "Call/Hangup"
msgstr ""
-#: admin/shifttemplate.php:96
-msgid "Enter standard shift start and end times for each day of the week in local time"
+#: index.php:165 supervisor.php:52
+msgid "Supervisor"
msgstr ""
-#: admin/shifttemplate.php:135
-msgid "Save changes to shifts"
+#: index.php:169 index_interface2.php:310
+msgid "Arrow for expanding or contracting"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
-msgid "Now"
+#: index.php:170
+msgid "Restart"
msgstr ""
-#: admin/casestatus.php:92
-msgid "Not assigned, select to assign"
+#: index.php:223 index_interface2.php:322
+msgid "Notes"
msgstr ""
-#: admin/casestatus.php:93
-msgid "Assigned to"
+#: index.php:241 index_interface2.php:330 contactdetails.php:70
+msgid "Contact details"
msgstr ""
-#: admin/casestatus.php:93
-msgid "Order"
+#: index.php:285 index_interface2.php:374
+msgid "Work history"
msgstr ""
-#: admin/casestatus.php:111
-msgid "Case available in x minutes"
+#: index.php:293 index_interface2.php:382 project_info.php:61
+msgid "Project information"
msgstr ""
-#: admin/casestatus.php:111
-msgid "Assigned to operator"
+#: index.php:309 index_interface2.php:391
+msgid "Info"
msgstr ""
-#: admin/casestatus.php:119
-msgid "Choose operator to assign selected cases to"
+#: respondent.php:70
+msgid "Respondent Selector"
msgstr ""
-#: admin/casestatus.php:122
-msgid "Assign cases to operator queue"
+#: respondent.php:103 contactdetails.php:99
+msgid "Respondent:"
msgstr ""
-#: admin/casestatus.php:199
-msgid "List cases by questionnaire and sample with the ability to assign them to be called next in a queue by a particular operator. If you assign cases to an operator, it will override the normal scheduling process and call them as soon as the operator is available."
+#: respondent.php:167
+msgid "Show details"
msgstr ""
-#: admin/dataoutput.php:202
-msgid "Download data for this questionnaire via Limesurvey"
+#: respondent.php:171 contactdetails.php:163
+msgid "Var"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
-msgid "Please select a sample"
+#: respondent.php:171 contactdetails.php:163
+msgid "Value"
msgstr ""
-#: admin/dataoutput.php:211
-msgid "Download data for this sample via Limesurvey"
+#: shifts.php:57
+msgid "Shift List"
msgstr ""
-#: admin/dataoutput.php:218
-msgid "Download key file: select sample var"
+#: shifts.php:80
+msgid "No shifts for this project"
msgstr ""
-#: admin/dataoutput.php:222
-msgid "Download complete key file"
-msgstr ""
-
-#: admin/dataoutput.php:225
-msgid "Download complete sample file with current outcomes"
-msgstr ""
-
-#: admin/callrestrict.php:82
-msgid "Modify call restriction times"
-msgstr ""
-
-#: admin/callrestrict.php:135
-msgid "Save changes to restriction times"
-msgstr ""
-
-#: admin/operatorlist.php:60
-msgid "If changing usernames, you must specify a new password"
-msgstr ""
-
-#: admin/operatorlist.php:116
-msgid "Successfully updated user"
-msgstr ""
-
-#: admin/operatorlist.php:120
-msgid "Failed to update user. Please make sure the username is unique"
-msgstr ""
-
-#: admin/operatorlist.php:129
-msgid "Operator edit"
-msgstr ""
-
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
-msgid "Username"
-msgstr ""
-
-#: admin/operatorlist.php:162
-msgid "Update password (leave blank to keep existing password)"
-msgstr ""
-
-#: admin/operatorlist.php:170
-msgid "Uses chat"
-msgstr ""
-
-#: admin/operatorlist.php:171
-msgid "Timezone"
-msgstr ""
-
-#: admin/operatorlist.php:173
-msgid "Uses VoIP"
-msgstr ""
-
-#: admin/operatorlist.php:176
-msgid "Update operator"
-msgstr ""
-
-#: admin/operatorlist.php:270
-msgid "Windows bat file"
-msgstr ""
-
-#: admin/operatorlist.php:271
-msgid "*nix script file"
-msgstr ""
-
-#: admin/operatorlist.php:279
-msgid "Enable VoIP"
-msgstr ""
-
-#: admin/operatorlist.php:281
-msgid "Disable VoIP"
-msgstr ""
-
-#: admin/operatorlist.php:290
-msgid "Operator list"
-msgstr ""
-
-#: admin/operatorlist.php:297
-msgid "Download the file for each user and save in the same folder as the voip.exe executable. When the file is executed, it will run the voip.exe program with the correct connection details to connect the operator to the VoIP server"
-msgstr ""
-
-#: admin/operatorlist.php:299
-msgid "Download Windows VoIP Executable"
-msgstr ""
-
-#: admin/operatorlist.php:300
-msgid "Download Linux VoIP Executable"
-msgstr ""
-
-#: admin/operatorlist.php:305
-msgid "Enable/Disable VoIP"
-msgstr ""
-
-#: admin/operatorlist.php:306
-msgid "Windows VoIP"
-msgstr ""
-
-#: admin/operatorlist.php:307
-msgid "*nix VoIP"
-msgstr ""
-
-#: admin/samplecallattempts.php:107
-msgid "Number of cases"
-msgstr ""
-
-#: admin/samplecallattempts.php:107
-msgid "Call attempts made"
-msgstr ""
-
-#: admin/samplecallattempts.php:170
-msgid "Sample call attempt"
-msgstr ""
-
-#: admin/samplecallattempts.php:175
-msgid "Overall"
-msgstr ""
-
-#: admin/samplecallattempts.php:195
-msgid "Please select a quota"
-msgstr ""
-
-#: admin/samplecallattempts.php:201
-msgid "No calls for this quota"
-msgstr ""
-
-#: admin/samplecallattempts.php:205
-msgid "No calls for this sample"
-msgstr ""
-
-#: admin/samplecallattempts.php:210
-msgid "No calls for this questionnaire"
-msgstr ""
-
-#: admin/questionnairelist.php:277
-msgid "Questionnaire list"
-msgstr ""
-
-#: admin/questionnairelist.php:329
-msgid "Edit instrument in Limesurvey"
-msgstr ""
-
-#: admin/questionnairelist.php:362
-msgid "Edit respondent selection instrument in Limesurvey"
-msgstr ""
-
-#: admin/questionnairelist.php:365
-msgid "Update Questionnaire"
-msgstr ""
-
-#: admin/questionnairelist.php:384
-msgid "Any collected data and the limesurvey instrument will NOT be deleted"
-msgstr ""
-
-#: admin/questionnairelist.php:385
-msgid "The questionnaire will be deleted from queXS including call history, cases, case notes, respondent details, appointments and the links between operators, clients and the questionnaire"
-msgstr ""
-
-#: admin/questionnairelist.php:386
-msgid "Please confirm you wish to delete the questionnaire"
-msgstr ""
-
-#: admin/questionnairelist.php:389
-msgid "Delete this questionnaire"
-msgstr ""
-
-#: admin/timezonetemplate.php:87
-msgid "Add/Remove Timezones"
-msgstr ""
-
-#: admin/timezonetemplate.php:101
-msgid "Click to remove a Timezone from the default list"
-msgstr ""
-
-#: admin/timezonetemplate.php:113
-msgid "Add a Timezone:"
-msgstr ""
-
-#: admin/timezonetemplate.php:116
-msgid "Timezone: "
-msgstr ""
-
-#: admin/timezonetemplate.php:117
-msgid "Add Timezone"
-msgstr ""
-
-#: admin/supervisor.php:133
-msgid "Enter a case id or select a case from the list below:"
-msgstr ""
-
-#: admin/supervisor.php:144
-msgid "Select case from list of cases referred to the supervisor:"
-msgstr ""
-
-#: admin/supervisor.php:153
-msgid "Select case"
-msgstr ""
-
-#: admin/supervisor.php:176
-msgid "Set an outcome for this call"
-msgstr ""
-
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
-msgid "Set outcome"
-msgstr ""
-
-#: admin/supervisor.php:300
-msgid "No appointments for this case"
-msgstr ""
-
-#: admin/supervisor.php:302
-msgid "Create appointment for this case"
-msgstr ""
-
-#: admin/supervisor.php:314
-msgid "Call list"
-msgstr ""
-
-#: admin/supervisor.php:320
-msgid "Change outcome"
-msgstr ""
-
-#: admin/supervisor.php:333
-msgid "Case notes"
-msgstr ""
-
-#: admin/supervisor.php:355
-msgid "Modify responses for this case"
-msgstr ""
-
-#: admin/supervisor.php:357
-msgid "Case not yet started in Limesurvey"
-msgstr ""
-
-#: admin/supervisor.php:361
-msgid "Set a case outcome"
-msgstr ""
-
-#: admin/supervisor.php:411
-msgid "Update case availability"
-msgstr ""
-
-#: admin/supervisor.php:423
-msgid "Assign this case to operator (will appear as next case for them)"
-msgstr ""
-
-#: admin/supervisor.php:435
-msgid "Assign this case to operator"
-msgstr ""
-
-#: admin/supervisor.php:441
-msgid "Remove all sample details and contact numbers from this case"
-msgstr ""
-
-#: admin/supervisor.php:454
-msgid "Case does not exist"
-msgstr ""
-
-#: voip/downloadvoipclient.php:52
-msgid "Error: Cannot write to temporary directory"
-msgstr ""
-
-#: functions/functions.operator.php:167
-msgid "morning"
-msgstr ""
-
-#: functions/functions.operator.php:168
-msgid "afternoon"
-msgstr ""
-
-#: functions/functions.operator.php:169
-msgid "evening"
-msgstr ""
-
-#: functions/functions.operator.php:903
-msgid "ERROR: You do not have server side authentication enabled therefore queXS cannot determine which user is accessing the system."
-msgstr ""
-
-#: functions/functions.calendar.php:265
-msgid "First name:"
-msgstr ""
-
-#: functions/functions.calendar.php:266
-msgid "Last name:"
-msgstr ""
-
-#: functions/functions.calendar.php:271
-msgid "Time Zone:"
-msgstr ""
-
-#: functions/functions.calendar.php:328
-msgid "Shift from:"
-msgstr ""
-
-#: functions/functions.calendar.php:335
-msgid "Start Time"
-msgstr ""
-
-#: functions/functions.calendar.php:385
-msgid "End Time"
-msgstr ""
-
-#: functions/functions.performance.php:469
-msgid "No shift"
-msgstr ""
-
-#: functions/functions.performance.php:492
-msgid "Total completions"
-msgstr ""
-
-#: functions/functions.performance.php:521
-msgid "Completions this shift"
-msgstr ""
-
-#: functions/functions.performance.php:544
-#: functions/functions.performance.php:590
-msgid "No previous shift"
-msgstr ""
-
-#: functions/functions.performance.php:564
-msgid "Completions on the previous shift"
-msgstr ""
-
-#: functions/functions.performance.php:611
-msgid "Completions this time on the previous shift"
-msgstr ""
-
-#: functions/functions.performance.php:629
-msgid "No calls made for this shift"
-msgstr ""
-
-#: functions/functions.performance.php:631
-msgid "Top CPH for this shift"
-msgstr ""
-
-#: functions/functions.performance.php:648
-msgid "No calls made for this project"
-msgstr ""
-
-#: functions/functions.performance.php:650
-msgid "Top CPH"
-msgstr ""
-
-#: functions/functions.import.php:89
-msgid "Duplicate name"
-msgstr ""
-
-#: functions/functions.import.php:111
-msgid "You must select one and one only Primary Phone number"
-msgstr ""
-
-#: functions/functions.import.php:127
-msgid "Import?"
-msgstr ""
-
-#: functions/functions.import.php:127
-msgid "Type"
-msgstr ""
-
-#: functions/functions.voip.php:449
-msgid "online"
-msgstr ""
-
-#: functions/functions.voip.php:449
-msgid "offline"
-msgstr ""
-
-#: functions/functions.voip.php:528
-msgid "Disconnected"
-msgstr ""
-
-#: functions/functions.voip.php:530
-msgid "Reconnected"
-msgstr ""
-
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
-#: functions/functions.voip.php:596
-msgid " Extension "
-msgstr ""
-
-#: functions/functions.voip.php:587
-msgid "Unregistered"
-msgstr ""
-
-#: functions/functions.voip.php:596
-msgid "Registered"
-msgstr ""
-
-#: functions/functions.freepbx.php:138
-#, php-format
-msgid "Reload failed because retrieve_conf encountered an error: %s"
-msgstr ""
-
-#: functions/functions.freepbx.php:140
-msgid "retrieve_conf failed, config not applied"
-msgstr ""
-
-#: functions/functions.freepbx.php:146
-msgid "Reload failed because FreePBX could not connect to the asterisk manager interface."
-msgstr ""
-
-#: functions/functions.freepbx.php:165
-msgid "Could not reload the FOP operator panel server using the bounce_op.sh script. Configuration changes may not be reflected in the panel display."
-msgstr ""
-
-#: functions/functions.freepbx.php:174
-#, php-format
-msgid "Exit code was %s and output was: %s"
+#: shifts.php:101
+msgid "No future shifts scheduled"
msgstr ""
#: display/index.php:111
msgid "Display"
msgstr ""
-#: client/index.php:72
-msgid "There are no questionnaires assigned to you"
+#: supervisor.php:61
+msgid "Please wait till you have ended this call to call the supervisor"
msgstr ""
-#: client/index.php:123
-msgid "You are not a valid client"
+#: supervisor.php:105
+msgid "You may now close this window"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
-msgid "Not on an appointment"
+#: supervisor.php:110
+msgid "Calling the supervisor, you may close this window"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
-msgid "On an appointment"
+#: supervisor.php:115
+msgid "Click here to call the supervisor's phone. Otherwise close this window"
msgstr ""
-#: include/limesurvey/quexs.php:987
-msgid "All samples"
+#: supervisor.php:116
+msgid "Hangup when calling the supervisor"
msgstr ""
-#: include/limesurvey/common_functions.php:6298
-msgid "queXS: Number of call attempts"
+#: supervisor.php:121
+msgid "Try calling the supervisor"
msgstr ""
-#: include/limesurvey/common_functions.php:6299
-msgid "queXS: On appointment?"
-msgstr ""
-
-#: include/limesurvey/common_functions.php:6300
-msgid "queXS: Percentage complete"
-msgstr ""
-
-#: include/limesurvey/common_functions.php:6301
-msgid "queXS: Number of answering machine messages left"
-msgstr ""
-
-#: include/limesurvey/optout.php:83
-msgid "Self completion refused via opt out function"
-msgstr ""
-
-#: include/limesurvey/admin/browse.php:791
-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
+#: supervisor.php:128
msgid ""
-"This is how the story goes.\n"
-"\n"
+"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
+#: endwork.php:45
+msgid "End of work"
+msgstr ""
+
+#: endwork.php:49
+msgid "You have been automatically logged out of work due to inactivity"
+msgstr ""
+
+#: endwork.php:52
+msgid "Work has ended. That is it"
+msgstr ""
+
+#: endwork.php:70
+msgid "You have been unassigned from your extension"
+msgstr ""
+
+#: endwork.php:75
+msgid "Go back to work"
+msgstr ""
+
+#: nocallavailable.php:80
+msgid "No call available"
+msgstr ""
+
+#: nocallavailable.php:83
+msgid "Please click on:"
+msgstr ""
+
+#: nocallavailable.php:83
+msgid "to display call script"
+msgstr ""
+
+#: nocallavailable.php:216
+msgid ""
+"Your VoIP extension is not active. Please activate VoIP by clicking once on "
+"the red button that says 'VoIP Off'"
+msgstr ""
+
+#: nocallavailable.php:222
+msgid "Auto dialling unavailable as VoIP is not enabled"
+msgstr ""
+
+#: nocallavailable.php:228
+msgid "Auto dialling unavailable as you are already on a call"
+msgstr ""
+
+#: rs_quota_end.php:61
+msgid "Respondent Selection - Project Quota End"
+msgstr ""
+
+#: rs_quota_end.php:72 rs_quota_end.php:78
+msgid "End call with outcome: Quota filled"
+msgstr ""
diff --git a/locale/ro/LC_MESSAGES/ro.mo b/locale/ro/LC_MESSAGES/ro.mo
index 0098dc37..9e32b076 100644
Binary files a/locale/ro/LC_MESSAGES/ro.mo and b/locale/ro/LC_MESSAGES/ro.mo differ
diff --git a/locale/ro/LC_MESSAGES/ro.po b/locale/ro/LC_MESSAGES/ro.po
index cf857c9f..ae927a83 100644
--- a/locale/ro/LC_MESSAGES/ro.po
+++ b/locale/ro/LC_MESSAGES/ro.po
@@ -7,167 +7,161 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Romanian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr ""
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr ""
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Dată/Oră"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr ""
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Rezultat"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Respondent"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr ""
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr ""
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr ""
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Înapoi"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr ""
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr ""
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr ""
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Programare"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr ""
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr ""
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Notițe"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Detalii de contact"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Istoric apeluri"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr ""
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Programări"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Performanţă"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr ""
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr ""
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Informații"
@@ -175,9 +169,7 @@ msgstr "Informații"
msgid "Stop REC"
msgstr "Opriti inregistrarea"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Înregistrare"
@@ -185,8 +177,7 @@ msgstr "Înregistrare"
msgid "Beginning recording..."
msgstr ""
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr ""
@@ -194,8 +185,8 @@ msgstr ""
msgid "Begin the manual recording now..."
msgstr ""
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr ""
@@ -207,43 +198,47 @@ msgstr ""
msgid "Stop the manual recording now..."
msgstr ""
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr ""
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr ""
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr ""
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr ""
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr ""
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr ""
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr ""
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -277,7 +272,7 @@ msgstr ""
msgid "Select phone number:"
msgstr "Alegeti numarul de telefon"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr ""
@@ -301,7 +296,7 @@ msgstr ""
msgid "Accept appointment from "
msgstr ""
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr ""
@@ -317,7 +312,8 @@ msgstr ""
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -325,7 +321,7 @@ msgstr ""
msgid "Call List"
msgstr ""
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr ""
@@ -333,12 +329,17 @@ msgstr ""
msgid "Number called"
msgstr "Numarul sunat"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Operator"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr ""
@@ -346,15 +347,18 @@ msgstr ""
msgid "Get a new case"
msgstr ""
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr ""
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr ""
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr ""
@@ -362,11 +366,12 @@ msgstr ""
msgid "Restart"
msgstr "Reporniţi"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr ""
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -378,7 +383,11 @@ msgstr "Informații"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr ""
@@ -390,8 +399,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -407,114 +415,80 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr ""
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr ""
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr ""
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr ""
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr ""
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr ""
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr ""
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr ""
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr ""
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr ""
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr ""
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr ""
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr ""
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr ""
@@ -542,7 +516,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr ""
@@ -570,58 +546,50 @@ msgstr ""
msgid "Go back to work"
msgstr ""
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr ""
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr ""
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr ""
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr ""
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr ""
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr ""
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr ""
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr ""
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr ""
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr ""
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -635,8 +603,10 @@ msgstr ""
msgid "No shifts for this project"
msgstr ""
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr ""
@@ -644,12 +614,14 @@ msgstr ""
msgid "No future shifts scheduled"
msgstr ""
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr ""
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr ""
@@ -657,48 +629,46 @@ msgstr ""
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr ""
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr ""
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr ""
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr ""
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr ""
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr ""
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
@@ -722,8 +692,7 @@ msgstr ""
msgid "Reasons:"
msgstr ""
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -735,13 +704,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr ""
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr ""
@@ -753,7 +721,10 @@ msgstr ""
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr ""
@@ -826,34 +797,33 @@ msgstr ""
msgid "Case Notes"
msgstr ""
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr ""
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr ""
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr ""
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr ""
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr ""
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr ""
@@ -921,7 +891,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr ""
@@ -960,8 +932,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -977,8 +948,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr ""
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr ""
@@ -998,11 +968,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1022,11 +992,13 @@ msgstr ""
msgid "Appointment List"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr ""
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1038,7 +1010,8 @@ msgstr ""
msgid "No future appointments scheduled"
msgstr ""
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1072,13 +1045,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr ""
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr ""
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr ""
@@ -1086,27 +1057,27 @@ msgstr ""
msgid "Kill signal sent: Please wait..."
msgstr ""
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr ""
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr ""
@@ -1124,23 +1095,20 @@ msgid ""
"problems, it is not recommended to use this feature."
msgstr ""
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr ""
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr ""
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr ""
@@ -1148,27 +1116,24 @@ msgstr ""
msgid "Download Call History List"
msgstr ""
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr ""
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr ""
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr ""
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr ""
@@ -1176,13 +1141,11 @@ msgstr ""
msgid "Total sample"
msgstr ""
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr ""
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr ""
@@ -1242,7 +1205,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr ""
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr ""
@@ -1254,36 +1217,45 @@ msgstr ""
msgid "Description for file:"
msgstr ""
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr ""
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr ""
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr ""
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr ""
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr ""
@@ -1300,8 +1272,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr ""
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr ""
@@ -1309,11 +1280,11 @@ msgstr ""
msgid "Contact phone"
msgstr ""
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr ""
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr ""
@@ -1333,38 +1304,39 @@ msgstr ""
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr ""
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr ""
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr ""
@@ -1372,9 +1344,7 @@ msgstr ""
msgid "No appointments in the future"
msgstr ""
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr ""
@@ -1390,11 +1360,11 @@ msgstr ""
msgid "Stop calling this sample when:"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr ""
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr ""
@@ -1406,7 +1376,7 @@ msgstr ""
msgid "Quota not yet reached"
msgstr ""
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr ""
@@ -1418,27 +1388,27 @@ msgstr ""
msgid "Enter the details for creating the quota:"
msgstr ""
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr ""
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr ""
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr ""
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr ""
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr ""
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr ""
@@ -1457,8 +1427,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr ""
@@ -1466,38 +1435,32 @@ msgstr ""
msgid "Operator Performance"
msgstr ""
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr ""
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr ""
@@ -1505,45 +1468,43 @@ msgstr ""
msgid "till"
msgstr ""
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr ""
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr ""
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
+msgid "No time slots"
msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "Time slot name"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr ""
@@ -1587,7 +1548,7 @@ msgstr ""
msgid "Questionnaire creation and management"
msgstr ""
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr ""
@@ -1623,13 +1584,11 @@ msgstr ""
msgid "Set values in questionnaire to pre fill"
msgstr ""
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr ""
@@ -1637,7 +1596,8 @@ msgstr ""
msgid "Add operators to the system"
msgstr ""
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr ""
@@ -1646,191 +1606,200 @@ msgid "Availability and shift management"
msgstr ""
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr ""
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr ""
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr ""
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr ""
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr ""
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr ""
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr ""
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr ""
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr ""
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr ""
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr ""
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr ""
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr ""
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr ""
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr ""
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr ""
@@ -1846,22 +1815,33 @@ msgstr ""
msgid "Assign availability group to questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr ""
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr ""
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr ""
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1914,7 +1894,6 @@ msgid "Search within this sample"
msgstr ""
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1926,32 +1905,27 @@ msgstr ""
msgid "Start search"
msgstr ""
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr ""
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr ""
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr ""
@@ -1979,35 +1953,32 @@ msgstr ""
msgid "Secs"
msgstr ""
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr ""
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr ""
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr ""
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2019,7 +1990,7 @@ msgstr ""
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2043,13 +2014,14 @@ msgstr ""
msgid "Shift"
msgstr ""
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr ""
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2115,17 +2087,12 @@ msgstr ""
msgid "Add pre fill"
msgstr ""
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2135,17 +2102,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2153,11 +2118,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2171,11 +2134,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr ""
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr ""
@@ -2183,7 +2148,8 @@ msgstr ""
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr ""
@@ -2238,8 +2204,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr ""
@@ -2249,9 +2214,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2274,9 +2239,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr ""
@@ -2288,8 +2252,36 @@ msgstr ""
msgid "Submit changes"
msgstr ""
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2305,9 +2297,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr ""
@@ -2315,8 +2305,7 @@ msgstr ""
msgid "Sample only. Stop calling where"
msgstr ""
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2404,8 +2393,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr ""
@@ -2421,8 +2409,7 @@ msgstr ""
msgid "tool"
msgstr ""
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2462,11 +2449,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2486,8 +2473,7 @@ msgstr ""
msgid "Is the operator a refusal converter?"
msgstr ""
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr ""
@@ -2511,7 +2497,7 @@ msgstr ""
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr ""
@@ -2519,8 +2505,7 @@ msgstr ""
msgid "Select limesurvey instrument:"
msgstr ""
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2536,71 +2521,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr ""
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2617,13 +2602,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2887,7 +2870,7 @@ msgstr ""
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr ""
@@ -2919,7 +2902,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2927,11 +2910,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr ""
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr ""
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr ""
@@ -2948,30 +2931,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
+msgid "Modify time slots"
msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr ""
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
+msgid "Save changes to time slot group"
msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -2982,8 +2969,7 @@ msgstr ""
msgid "There may already be a client of this name"
msgstr ""
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr ""
@@ -3036,8 +3022,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr ""
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3081,8 +3066,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr ""
@@ -3126,8 +3110,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr ""
@@ -3265,23 +3248,31 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr ""
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr ""
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr ""
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr ""
@@ -3301,8 +3292,7 @@ msgstr ""
msgid "Set an outcome for this call"
msgstr ""
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr ""
@@ -3322,39 +3312,50 @@ msgstr ""
msgid "Change outcome"
msgstr ""
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr ""
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr ""
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr ""
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr ""
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr ""
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr ""
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr ""
@@ -3362,19 +3363,19 @@ msgstr ""
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr ""
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr ""
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr ""
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3477,10 +3478,8 @@ msgstr ""
msgid "Reconnected"
msgstr ""
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr ""
@@ -3531,13 +3530,11 @@ msgstr "Nu sunt chestionare asignate dumneavoastra"
msgid "You are not a valid client"
msgstr ""
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3566,10 +3563,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
diff --git a/locale/ru/LC_MESSAGES/ru.mo b/locale/ru/LC_MESSAGES/ru.mo
index a68fddc5..f253f3d8 100644
Binary files a/locale/ru/LC_MESSAGES/ru.mo and b/locale/ru/LC_MESSAGES/ru.mo differ
diff --git a/locale/ru/LC_MESSAGES/ru.po b/locale/ru/LC_MESSAGES/ru.po
index 96481aee..eaccb978 100644
--- a/locale/ru/LC_MESSAGES/ru.po
+++ b/locale/ru/LC_MESSAGES/ru.po
@@ -5,180 +5,173 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: quexs\n"
+"Project-Id-Version: quexs DDR\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
-"PO-Revision-Date: 2013-09-23 11:48+0000\n"
-"Last-Translator: Alexander Matrunich \n"
-"Language-Team: Russian \n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
+"PO-Revision-Date: 2015-01-19 10:50+0000\n"
+"Last-Translator: Alex \n"
+"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
+"Language: ru\n"
#: callhistory.php:56
msgid "Case History List"
-msgstr "История опросников"
+msgstr "История задания"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Не сделано ни одного звонка"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Дата/время"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
-msgstr "ID кейса"
+msgstr "ID задания"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
-msgstr "Итоги"
+msgstr "Результат"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Респондент"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Оператор отсутствует"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
-msgstr "Отбор респондента - Автоответчик"
+msgstr "Отбор респондентов - Автоответчик"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Не оставляйте сообщение, повесьте трубку, пожалуйста"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
-msgstr "Окончание звонка с результатом: Корпоративный автоответчик"
+msgstr "Закончить звонок с результатом: автоответчик в офисе / организации"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
-msgstr "Окончание звонка с результатом: Автоответчик - сообщение оставлено"
+msgstr "Закончить звонок с результатом: Автоответчик , сообщение оставлено"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
-"Окончание звонка с результатом: Автоответчик - сообщение не оставлено"
+"Закончить звонок с результатом: Автоответчик , сообщение НЕ оставлено"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Вернуться"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Отбор респондента - Организация"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Извините за беспокойство, я набрал(а) неверный номер"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
-msgstr "Окончание звонка с результатом: Организация"
+msgstr "Закончить звонок с результатом: тел Организации /Компании"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
-msgstr ""
+msgstr "Повторный звонок"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
-msgstr ""
+msgstr "Адрес эл.почты"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
-msgstr ""
+msgstr "Ссылка"
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
-msgstr ""
+msgstr "Закончить работу"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
-msgstr "Стрелочка для изменения размера"
+msgstr "Стрелка для изменения размера"
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Примечания"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Контактная информация"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
-msgstr "История вызовов"
+msgstr "История звонков"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
-msgstr "Смена"
+msgstr "Смены"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
-msgstr ""
+msgstr "Повторные звонки"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Производительность"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "История"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "О проекте"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
-msgstr ""
+msgstr "Информация"
#: record.php:55
msgid "Stop REC"
msgstr "Остановить запись"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Записать"
@@ -186,8 +179,7 @@ msgstr "Записать"
msgid "Beginning recording..."
msgstr "Запись начинается"
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Нет соединения, запись не начата"
@@ -195,8 +187,8 @@ msgstr "Нет соединения, запись не начата"
msgid "Begin the manual recording now..."
msgstr "Запустить запись вручную сейчас"
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Начать запись"
@@ -206,81 +198,90 @@ msgstr "Останавливаю запись"
#: record.php:90
msgid "Stop the manual recording now..."
-msgstr ""
+msgstr "Остановить запись"
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
-msgstr ""
+msgstr "Отбор респондентов - Обратный звонок"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Вы: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
-msgstr ""
+msgstr "% завершено"
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
-msgstr "Да - продолжить с последнего вопроса"
+msgstr "Да - Продолжить с момента окончания предыдущего разговора"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
-msgstr "Завершить со статусом: Отказ респондента"
+msgstr "Закончить звонок с результатом: Отказ респондента"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
-msgstr ""
+msgstr "Отбор респондентов - Вступительная часть проекта"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Да - Продолжить"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
-msgstr "Завершить со статусом: Это номер другого абонента"
+msgstr ""
+"Закончить звонок с результатом: по этому номеру нужного Респондента не "
+"существует"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
-msgstr "Завершить со ствтусом: Уже опрошен!"
+msgstr ""
+"Закончить звонок с результатом: Не соответствеут требованиям по отбору "
+"респондентов (или уже был опрошен )"
#: appointment.php:69
msgid "Appointment error"
-msgstr ""
+msgstr "Ошибка с повторным звонком"
#: appointment.php:70
msgid ""
"You have not been assigned a case therefore cannot create an appointment"
msgstr ""
+"Вам не назначено задание, вы не можете запланировать повторный звонок"
#: appointment.php:109
msgid "Appointment made"
-msgstr ""
+msgstr "Назначен повторный звонок"
#: appointment.php:124
msgid "Select a respondent"
-msgstr ""
+msgstr "Выбрать респондента"
#: appointment.php:134
msgid "Create new respondent:"
-msgstr ""
+msgstr "Создать нового респондента:"
#: appointment.php:137
msgid "Add this respondent"
-msgstr ""
+msgstr "Добавить этого респондента"
#: appointment.php:159
msgid "Select phone number:"
-msgstr ""
+msgstr "Выбрать номер телефона:"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
-msgstr ""
+msgstr "Ни одного"
#: appointment.php:173
msgid "Add new phone number"
@@ -288,7 +289,7 @@ msgstr "Добавить новый телефонный номер"
#: appointment.php:184
msgid "Add new phone number (with area code, eg 0398761234):"
-msgstr "Добавить новый телефонный номер (включая код, пример: 74951234567)"
+msgstr "Добавить новый телефонный номер (включая код, пример: 74951234567):"
#: appointment.php:187
msgid "Add this phone number"
@@ -296,66 +297,75 @@ msgstr "Добавить этот номер"
#: appointment.php:206
msgid "Appointment:"
-msgstr ""
+msgstr "Повторный звонок:"
#: appointment.php:208
msgid "Accept appointment from "
-msgstr ""
+msgstr "Принять повторный звонок от "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
-msgstr ""
+msgstr " до "
#: appointment.php:208
msgid " on "
-msgstr ""
+msgstr " на "
#: appointment.php:208
msgid "on"
-msgstr ""
+msgstr "на"
#: appointment.php:210
msgid "Appointment with myself only?"
-msgstr ""
+msgstr "Повторный звонок только себе?"
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
-msgstr ""
+msgstr "Запланировать повторный звонок"
#: calllist.php:56
msgid "Call List"
-msgstr "Список номеров"
+msgstr "Список звонков"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
-msgstr "Звонки не состоялись"
+msgstr "Звонки не проводились"
#: calllist.php:84
msgid "Number called"
-msgstr "Вызываемый номер"
+msgstr "Набранный номер"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Оператор"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
-msgstr ""
+msgstr "Нет задания"
#: waitnextcase_interface2.php:54
msgid "Get a new case"
-msgstr ""
+msgstr "Следующее задание"
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
-msgstr ""
+msgstr "Завершить"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
-msgstr "Прервать"
+msgstr "Вызов / Отмена"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Супервайзер"
@@ -363,13 +373,14 @@ msgstr "Супервайзер"
msgid "Restart"
msgstr "Перезапуск"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Доступность"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
-msgstr ""
+msgstr "Супервайзер чат"
#: info.php:56
msgid "Information"
@@ -377,184 +388,158 @@ msgstr "Сведения"
#: supervisorchat.php:80
msgid "Me"
-msgstr ""
+msgstr "Мне"
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
-msgstr ""
+msgstr "№ задания"
#: supervisorchat.php:87
msgid "Supervisor is available"
-msgstr ""
+msgstr "Супервайзер доступен"
#: supervisorchat.php:88
msgid "Supervisor not available"
-msgstr ""
+msgstr "Супервайзер недоступен"
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
-msgstr ""
+msgstr "Сообщение"
#: supervisorchat.php:90
msgid "Send"
-msgstr ""
+msgstr "Отправлено"
#: supervisorchat.php:93
msgid "From"
-msgstr ""
+msgstr "От"
#: supervisorchat.php:96
msgid "Supervisor chat is not enabled"
-msgstr ""
+msgstr "Супервайзер чат недоступен"
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
-msgstr ""
+msgstr "Позвонить"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
-msgstr ""
+msgstr "В данный момент не звонит"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
-msgstr ""
+msgstr "Завершить задание"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
-msgstr ""
+msgstr "Нажмите кнопку 'Вызов' для набора номера этого повторного звонка"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
-msgstr ""
+msgstr "Номер для звонка:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr ""
-"Ваш номер не зарегистрирован. Закройте это окно и кликните на красную кнопку."
+"Ваш номер не зарегистрирован. Закройте это окно и кликните на красную кнопку "
+"с надписью 'IP ТЕЛ Выключен'"
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
-msgstr "Выберите номер"
+msgstr "Выберите номер для звонка:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
-msgstr ""
+msgstr "Последний звонок завершил количество попыток для этого номера"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
-msgstr "Нужно установить статус"
+msgstr "Введите причину этого рузультата перед завершением задания :"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
-msgstr ""
+msgstr "Требуется ввести значение кодировки"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
-msgstr ""
+msgstr "Присвоить результат"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
-msgstr ""
+msgstr "Ошибка: Закройте окно программы"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
-msgstr ""
+msgstr "Вызываем звонок"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Активный звонок"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Отбой"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
-msgstr ""
+msgstr "Звоним"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
-msgstr ""
+msgstr "Отвечен"
#: call.php:442
msgid "Not Answered"
-msgstr ""
+msgstr "Не отвечен"
#: selectextension.php:99
msgid ""
"There are no extensions available, please contact the supervisor or click "
"below to try again for an available extension"
msgstr ""
+"Нет доступных внутренних номеров, свяжитесь с Супервайзером или нажмите "
+"внизу для повторной попытки получить свободный внутренний номер"
#: selectextension.php:100
msgid "Try again"
-msgstr ""
+msgstr "Попытаться еще"
#: selectextension.php:104
msgid "Select extension"
-msgstr ""
+msgstr "Выбрать внутр. номер"
#: selectextension.php:105
msgid ""
"Please select your extension from the list below then click on 'Choose "
"extension'"
-msgstr ""
+msgstr "Выберите ваш внутр. номер из списка и нажмите 'Выбрать внутр. номер'"
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
-msgstr ""
+msgstr "Внутренний номер"
#: selectextension.php:110
msgid "Choose extension"
-msgstr ""
+msgstr "Выбрать Внутренний номер"
#: endwork.php:45
msgid "End of work"
-msgstr ""
+msgstr "Пауза / Закончить работу"
#: endwork.php:49
msgid "You have been automatically logged out of work due to inactivity"
@@ -562,72 +547,69 @@ msgstr "Вы были отключены из-за бездействия"
#: endwork.php:52
msgid "Work has ended. That is it"
-msgstr ""
+msgstr "Работа приостановлена. Ожидание..."
#: endwork.php:70
msgid "You have been unassigned from your extension"
-msgstr ""
+msgstr "Вас отсоединили от внутреннего номера"
#: endwork.php:75
msgid "Go back to work"
msgstr "Вернуться к работе"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Состояние"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
-msgstr ""
+msgstr "Имя"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "номеров больше нет"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
-msgstr ""
+msgstr "Отбор респондентов - Вступление"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Рабочий телефон"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Автоответчик"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
-msgstr "Статус завершения: Нет ответа (или занято) "
+msgstr "Закончить звонок с результатом: Нет ответа (или занято) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
-msgstr "Статус завершения: Внезапно оборвалось"
+msgstr "Закончить звонок с результатом: Внезапно разъединилось"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
-msgstr "Статус завершения: Бросили трубку"
+msgstr ""
+"Закончить звонок с результатом: Отказ другого (неизвестного) человека"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
-msgstr "Статус завершения: Номер принадлежит другому абоненту"
+msgstr ""
+"Закончить звонок с результатом: по этому номеру нужного Респондента не "
+"существует ( Респондент никогда недоступен по этому номеру )"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
-msgstr "Статус завершения: Нет на месте"
+msgstr ""
+"Закончить звонок с результатом: НЕ связались с респондентом (респондент в "
+"данный момент недоступен по этому номеру ; повторный звонок не назначен)"
#: shifts.php:57
msgid "Shift List"
@@ -637,77 +619,81 @@ msgstr "Список смен"
msgid "No shifts for this project"
msgstr "Нет смен для этого проекта"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
-msgstr ""
+msgstr "Начать"
#: shifts.php:101
msgid "No future shifts scheduled"
msgstr "Будущих смен не запланировано"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
-msgstr "Опросник"
+msgstr "ОПРОС"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
-msgstr ""
+msgstr "Отбор респондентов - Конец проекта"
#: rs_project_end_interface2.php:80
msgid "Call automatically ended with outcome: Complete - End case"
msgstr ""
+"Звонок автоматически завершился с результатом: Завершено - Конец задания"
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
-msgstr ""
+msgstr "Закончить звонок с результатом: Завершено"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
-msgstr ""
+msgstr "Добавить респондента"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Вернуться"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
-msgstr ""
+msgstr "ID задания:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
-msgstr "Респондент"
+msgstr "Респондент:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
-msgstr ""
+msgstr "Переменная"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Значение"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
-"Выберите группы для ограничения доступности ( \"Нет\" - всегда доступны)"
+"Выберите группы для ограничения времени звонков (Если ни одна не выбрана - "
+"значит всегда доступен)"
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
-msgstr "Не назначены группы для этой анкеты"
+msgstr "Не назначены группы для этого ОПРОСа"
#: respondent.php:70
msgid "Respondent Selector"
-msgstr ""
+msgstr "Выбор респондента"
#: respondent.php:167
msgid "Show details"
@@ -715,407 +701,420 @@ msgstr "Показать подробности"
#: nocaseavailable.php:63
msgid "No case available"
-msgstr ""
+msgstr "Нет задания"
#: nocaseavailable.php:68
msgid "There is no case currently available"
-msgstr ""
+msgstr "В данный момент нет доступного задания"
#: nocaseavailable.php:69
msgid "Reasons:"
msgstr "Причины:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
-msgstr ""
+msgstr "Включено"
#: nocaseavailable.php:80
msgid "Disabled"
-msgstr ""
+msgstr "Выключено"
#: nocaseavailable.php:88
msgid "Assigned questionnaires:"
-msgstr ""
+msgstr "Назначенные опросы :"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Описание"
#: nocaseavailable.php:94
msgid "ERROR: No questionnaires assigned to you"
-msgstr "ОШИБКА: Для Вас анкеты не назначены"
+msgstr "ОШИБКА: Для Вас опросы не назначены"
#: nocaseavailable.php:110
msgid "Assigned samples:"
-msgstr ""
+msgstr "Назначенные Списки контактов:"
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
-msgstr ""
+msgstr "Список контактов"
#: nocaseavailable.php:116
msgid "ERROR: No samples assigned to the questionnaires"
-msgstr ""
+msgstr "ОШИБКА: Не назначены Списки контактов для опросов"
#: nocaseavailable.php:135
msgid "Current shifts available:"
-msgstr ""
+msgstr "Доступные смены:"
#: nocaseavailable.php:138
msgid "Shift start"
-msgstr ""
+msgstr "Начало смены"
#: nocaseavailable.php:138
msgid "Shift end"
-msgstr ""
+msgstr "Окончание смены"
#: nocaseavailable.php:141
msgid "ERROR: No shifts at this time"
-msgstr ""
+msgstr "ОШИБКА: В данный момент смен нет"
#: nocaseavailable.php:161
msgid "Call restrictions:"
-msgstr ""
+msgstr "Ограничения звонка:"
#: nocaseavailable.php:165
msgid ""
"ERROR: There are no cases available that fall within call restrictions"
msgstr ""
+"ОШИБКА: Нет доступных заданий подходящих под ограничения звонков (время у "
+"Респондента или смены у Операторов)"
#: nocaseavailable.php:169
msgid "There are "
-msgstr ""
+msgstr "Существуют "
#: nocaseavailable.php:169
msgid " unassigned case(s) available within the specified call restrictions"
msgstr ""
+" неназначенные задания доступные подходящих под ограничения звонков"
#: nocaseavailable.php:175
msgid "Limesurvey links:"
-msgstr ""
+msgstr "Ссылки анкеты:"
#: nocaseavailable.php:195
msgid "ERROR: No tokens table defined for LimeSurvey questionnaire"
-msgstr ""
+msgstr "ОШИБКА: Не заданы таблицы ключей доступа к Анкете"
#: nocaseavailable.php:195
msgid "from questionnaire:"
-msgstr ""
+msgstr "из анкеты"
#: nocaseavailable.php:197
msgid "Tokens table exists for Limesurvey questionnaire:"
-msgstr ""
+msgstr "Таблица Маркеров доступа задана для Анкеты:"
#: nocaseavailable.php:202
msgid "ERROR: Cannot find questionnaires with LimeSurvey ID's"
-msgstr ""
+msgstr "ОШИБКА: Не могу найти Анкеты с таким номером ID"
#: nocaseavailable.php:221
msgid "ERROR: Quota reached for this question"
-msgstr ""
+msgstr "ОШИБКА: для этого вопроса квота набрана"
#: nocaseavailable.php:241
msgid "POSSIBLE ERROR: Row quota reached for this question"
-msgstr ""
+msgstr "ВОЗМОЖНАЯ ОШИБКА: квота по строке для этого вопроса закончена"
#: casenote.php:56
msgid "Case Notes"
-msgstr ""
+msgstr "Примечания к заданию"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
-msgstr ""
+msgstr "Добавить примечание"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
-msgstr ""
+msgstr "Нет примечаний"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
-msgstr ""
+msgstr "Примечание"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
-msgstr ""
+msgstr "Эта смена"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
-msgstr ""
+msgstr "Завершено"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
-msgstr ""
+msgstr "Завершено в час"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
-msgstr ""
+msgstr "Этот проект"
#: status.php:95
msgid "VoIP On"
-msgstr ""
+msgstr "IP ТЕЛ Включен"
#: status.php:97
msgid "VoIP Off"
-msgstr ""
+msgstr "IP ТЕЛ Выключен"
#: status.php:102
msgid "No VoIP"
-msgstr ""
+msgstr "Нет IP Тел связи"
#: status.php:106
msgid "No call"
-msgstr ""
+msgstr "Нет звонка"
#: status.php:110
msgid "To be coded"
-msgstr ""
+msgstr "Необхоимо кодировать"
#: status.php:114
msgid "Requesting"
-msgstr ""
+msgstr "Вызываем"
#: status.php:130
msgid "APPT"
-msgstr ""
+msgstr "Повт. вызов"
#: status.php:131
msgid "MISSED"
-msgstr ""
+msgstr "НЕ попали по адресу"
#: rs_project_end.php:88
msgid "Call automatically ended with outcome: Complete"
-msgstr ""
+msgstr "Звонок автоматически завершился с результатом: Завершено"
#: nocallavailable.php:80
msgid "No call available"
-msgstr ""
+msgstr "Нет доступных звонков"
#: nocallavailable.php:83
msgid "Please click on:"
-msgstr ""
+msgstr "Пожалуйста, нажмите:"
#: nocallavailable.php:83
msgid "to display call script"
-msgstr ""
+msgstr "показать программу вызова"
#: nocallavailable.php:177
msgid "Will dial in"
-msgstr ""
+msgstr "Позвоним через"
#: nocallavailable.php:178
msgid "Dialling now"
-msgstr ""
+msgstr "Звоним"
#: nocallavailable.php:184
msgid "Will end case in"
-msgstr ""
+msgstr "Закончим задание через"
#: nocallavailable.php:185
msgid "Ending case now"
-msgstr ""
+msgstr "Завершаем задание сейчас"
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
-msgstr ""
+msgstr "секунды"
#: nocallavailable.php:216
msgid ""
"Your VoIP extension is not active. Please activate VoIP by clicking once on "
"the red button that says 'VoIP Off'"
msgstr ""
+"Ваш внутр. номер неактивирован. Активируйте IP ТЕЛ , для этого нажмите "
+"красную кнопку 'IP ТЕЛ Выключен'"
#: nocallavailable.php:222
msgid "Auto dialling unavailable as VoIP is not enabled"
-msgstr ""
+msgstr "Автодозвон недоступен т.к. IP Тел. выключен"
#: nocallavailable.php:228
msgid "Auto dialling unavailable as you are already on a call"
-msgstr ""
+msgstr "Автодозвон недоступен, т.к. вы уже звоните"
#: referral.php:167
msgid "Generated referral to case id"
-msgstr ""
+msgstr "Создана ссылка на задание №"
#: referral.php:173
msgid "Generated as referral from case id"
-msgstr ""
+msgstr "Создана как ссылка от задания №"
#: referral.php:179
msgid "Created referral case - you may now close this window"
-msgstr ""
+msgstr "Ссылка создана - можете закрыть это окно"
#: referral.php:183
msgid ""
"Failed to create referral case - please check your input and try again"
msgstr ""
+"Не удалось создать ссылку - проверьте введенные данные и попробуйте еще раз"
#: referral.php:189
msgid "You must supply a primary phone number"
-msgstr ""
+msgstr "Необходимо предоставить Основной номер телефона"
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
-msgstr ""
+msgstr "Создать ссылку"
#: referral.php:241
msgid "Call this new referral immediately after this case?"
-msgstr ""
+msgstr "Похвонить по этой ссылке сразу после этого задания ?"
#: referral.php:248
msgid "Referrals not available for this questionnaire"
-msgstr ""
+msgstr "Для этой Анкеты Ссылки не заданы"
#: rs_quota_end.php:61
msgid "Respondent Selection - Project Quota End"
-msgstr ""
+msgstr "Отбор Респондентов - В случае закрытия квоты по проекту"
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
-msgstr ""
+msgstr "Закончить звонок с результатом: Квота заполнена"
#: email.php:241
msgid "Self completion invitation sent via email to"
msgstr ""
+"Приглашение для самостоятельного заполнения Анкеты оправлено на адрес эл. "
+"почты для"
#: email.php:295
msgid "The email did not send"
-msgstr ""
+msgstr "Письмо эл. почты не отправлено"
#: email.php:300
msgid "The email address is not valid"
-msgstr ""
+msgstr "Адрес эл. почты недействителен"
#: email.php:329
msgid "Email respondent for self completion"
msgstr ""
+"Отправить сообщение по эл. почте для самостоятельного заполнения анкеты"
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
-msgstr ""
+msgstr "Имя"
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
-msgstr ""
+msgstr "Фамилия"
#: email.php:342
msgid "Send invitation"
-msgstr ""
+msgstr "Отправить приглашение"
#: email.php:344
msgid "Send invitation and Hang up"
-msgstr ""
+msgstr "Отправить приглашение и повесить трубку"
#: email.php:348
msgid "Self completion email not available for this questionnaire"
msgstr ""
+"Приглашение для самостоятельного заполнения для этой Анкеты не задано"
#: appointmentlist.php:56
msgid "Appointment List"
-msgstr ""
+msgstr "Список Повторных звонков"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
-msgstr ""
+msgstr "Еще не звонили"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
-msgstr ""
+msgstr "Любой Оператор"
#: appointmentlist.php:83
msgid "No appointments made"
-msgstr ""
+msgstr "Повторные звонки не назначены"
#: appointmentlist.php:85
msgid "No future appointments scheduled"
-msgstr ""
+msgstr "Повторных звонков не запланировано"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
-msgstr ""
+msgstr "Повторный звонок с"
#: supervisor.php:61
msgid "Please wait till you have ended this call to call the supervisor"
-msgstr ""
+msgstr "Дожитесь окончания звонка перед звонком Супервайзеру"
#: supervisor.php:105
msgid "You may now close this window"
-msgstr ""
+msgstr "Теперь Вы можете закрыть окно"
#: supervisor.php:110
msgid "Calling the supervisor, you may close this window"
-msgstr ""
+msgstr "Звоним Супервайзеру, можете закрыть это окно"
#: supervisor.php:115
msgid ""
"Click here to call the supervisor's phone. Otherwise close this window"
-msgstr ""
+msgstr "Нажмите здесь для звонка Супервайзеру или закройте окно"
#: supervisor.php:116
msgid "Hangup when calling the supervisor"
-msgstr ""
+msgstr "Закончите разговор перед звонком Супервайзеру"
#: supervisor.php:121
msgid "Try calling the supervisor"
-msgstr ""
+msgstr "Попробовать позвонить Супервайзеру"
#: supervisor.php:128
msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
-msgstr ""
+msgstr "Подождите ответа на этот звонок перед звонком Супервайзеру"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
-msgstr ""
+msgstr "Монитор автоматической расширенной сортировки заданий"
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
-msgstr ""
+msgstr "Текущий процесс:"
#: admin/systemsort.php:81
msgid "Kill signal sent: Please wait..."
-msgstr ""
+msgstr "Сигнал остановки отправлен. Пожалуйста, подождите..."
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
+"Процесс уже закрыт (напр. серевер был перезагружен) - нажмите для "
+"подтверждения"
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
-msgstr ""
+msgstr "Остановить текущий процесс"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
-msgstr ""
+msgstr "ID записи в журнале"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
-msgstr ""
+msgstr "Дата"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
-msgstr ""
+msgstr "Запись в журнале"
#: admin/systemsort.php:100
msgid "Click here to enable and begin system wide case sorting"
-msgstr ""
+msgstr "Нажмите здесь для для включения и запуска сортировки заданий."
#: admin/systemsort.php:101
msgid ""
@@ -1126,332 +1125,342 @@ msgid ""
"complex quotas in place. If you are not experiencing any performance "
"problems, it is not recommended to use this feature."
msgstr ""
+"Серверная сортировка заданий (в соответствии с параметром конфигурации "
+"SYSTEM_SORT_MINUTES) периодически принудительно сортирует задания вместо "
+"поиска наиболее подходящего задания когда оператор вызывает новое "
+"заданию.\r\n"
+"Это может повысить производительность когда существует большое количество "
+"заданий или сложных квот. \r\n"
+"Если вы не испытываете никаких проблем с производительностью, не "
+"рекомендуется использовать эту функцию."
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
-msgstr ""
+msgstr "Результат последних процессов"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
-msgstr ""
+msgstr "История звонков"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
-msgstr ""
+msgstr "Дата/время начала звонка"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
-msgstr ""
+msgstr "Время окончания"
#: admin/callhistory.php:110
msgid "Download Call History List"
-msgstr ""
+msgstr "Скачать Историю звонков"
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
-msgstr ""
+msgstr "Привязать клиентов к Опросам"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
-msgstr ""
+msgstr "Отчет по Квоте"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
-msgstr ""
+msgstr "Выберите опрос из списка"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
-msgstr ""
+msgstr "Выберите Список контактов из списка"
#: admin/quotareport.php:178
msgid "Total sample"
-msgstr ""
+msgstr "Общее количество контактов в списке"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
-msgstr ""
+msgstr "закрыто"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
-msgstr ""
+msgstr "открыто"
#: admin/quotareport.php:284
msgid "Strata"
-msgstr ""
+msgstr "Статистика"
#: admin/quotareport.php:284
msgid "Quota"
-msgstr ""
+msgstr "Квота"
#: admin/quotareport.php:284
msgid "Sample Used"
-msgstr ""
+msgstr "Используемый Список контактов"
#: admin/quotareport.php:284
msgid "Sample Remaining"
-msgstr ""
+msgstr "Оставшихся номеров в списке"
#: admin/quotareport.php:284
msgid "% Complete"
-msgstr ""
+msgstr "% Завершено"
#: admin/quotareport.php:284
msgid "Set priority"
-msgstr ""
+msgstr "Задать приоритет"
#: admin/quotareport.php:284
msgid "Auto prioritise"
-msgstr ""
+msgstr "Кстановить приоритеты автоматически"
#: admin/quotareport.php:285
msgid "Update priorities"
-msgstr ""
+msgstr "Обновить приоритеты"
#: admin/import.php:51
msgid "Import: Validating and uploading"
-msgstr ""
+msgstr "Импорт: Проверка и загрузка"
#: admin/import.php:67
msgid "Successfully imported file"
-msgstr ""
+msgstr "Файл успешно импортирован"
#: admin/import.php:71
msgid "Error importing file. Please try again"
-msgstr ""
+msgstr "Ошибка импорта файла. Попробуйте еще раз"
#: admin/import.php:75
msgid "Error:"
-msgstr ""
+msgstr "Ошибка:"
#: admin/import.php:75
msgid "Please go back in your browser and fix the problem"
-msgstr ""
+msgstr "Перейдите назад в броузере и устраните проблему"
#: admin/import.php:87
msgid "Import: Select columns to import"
-msgstr ""
+msgstr "Импорт : Выберите столбцы для импорта"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
-msgstr ""
+msgstr "Импорт : Выберите файл для импорта"
#: admin/import.php:117
msgid "Choose the CSV sample file to upload:"
-msgstr ""
+msgstr "Выберите файл в формате CSV для загрузки Списка контактов:"
#: admin/import.php:118
msgid "Description for file:"
-msgstr ""
+msgstr "Введите название для списка контактов:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
-msgstr ""
+msgstr "Добавить список контактов"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
-msgstr ""
+msgstr "Запуск сортировки заданий"
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
-msgstr ""
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
+msgstr "Проверка заданий открытых более 24 часов"
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
+"Система автоматически закрыла задание, т.к. оно не было закрыто более 24х "
+"часов"
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
-msgstr ""
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
+msgstr "Закрытие завершенных заданий"
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
-msgstr ""
+msgstr "Эта задача заняла"
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr "Не удалось закрыть завершенные задания"
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr "Сортировка заданий по "
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr "Сортировка завершена"
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
-msgstr ""
+msgstr "Не могу завершить сортировку"
#: admin/displayappointments.php:149
msgid "Now modify case outcome"
-msgstr ""
+msgstr "Теперь измените результат задания"
#: admin/displayappointments.php:151
msgid ""
"The appointment has been deleted. Now you must modify the case outcome"
-msgstr ""
+msgstr "Повторный звонок был удален. Необходимо изменить результат задания"
#: admin/displayappointments.php:152
msgid "Modify case outcome"
-msgstr ""
+msgstr "Изменить результат задания"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
-msgstr ""
+msgstr "Редактировать повторный звонок"
#: admin/displayappointments.php:185
msgid "Contact phone"
-msgstr ""
+msgstr "Контактный телефон"
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
-msgstr ""
+msgstr "Время начала"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
-msgstr ""
+msgstr "Время окончания"
#: admin/displayappointments.php:215
msgid "Cancel edit"
-msgstr ""
+msgstr "Отмена редактирования"
#: admin/displayappointments.php:216
msgid "Delete this appointment"
-msgstr ""
+msgstr "Удалить повторный звонок"
#: admin/displayappointments.php:225
msgid "Display Appointments"
-msgstr ""
+msgstr "Показать повторные звонки"
#: admin/displayappointments.php:227
msgid "All appointments (with times displayed in your time zone)"
msgstr ""
+"Все повторные звонки (с временем в соответствии с вашей временной зоной)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
-msgstr ""
+msgstr "Удалить"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
-msgstr ""
+msgstr "Редактировать"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
-msgstr ""
+msgstr "Имя Оператора"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
-msgstr ""
+msgstr "Имя Респондента"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
-msgstr ""
+msgstr "Фамилия"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
-msgstr ""
+msgstr "Текущий результат"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
-msgstr ""
+msgstr "Оператор кто звонил"
#: admin/displayappointments.php:246
msgid "No appointments in the future"
-msgstr ""
+msgstr "Нет повторных звонков в будущем"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
-msgstr ""
+msgstr "Управление квотами"
#: admin/quota.php:134
msgid "Current quotas (click to delete)"
-msgstr ""
+msgstr "Существующие квоты (кликните для удаления)"
#: admin/quota.php:146
msgid "Currently no quotas"
-msgstr ""
+msgstr "В данный момент квоты не заданы"
#: admin/quota.php:152
msgid "Stop calling this sample when:"
-msgstr ""
+msgstr "Остановить звонки по Списку контактов при условии:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
-msgstr ""
+msgstr "для"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
-msgstr ""
+msgstr "Завершения"
#: admin/quota.php:155
msgid "Quota reached"
-msgstr ""
+msgstr "Квота Достигнута"
#: admin/quota.php:157
msgid "Quota not yet reached"
-msgstr ""
+msgstr "Квота еще не Достигнута"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
-msgstr ""
+msgstr "Текущие завершения: "
#: admin/quota.php:167
msgid "Select a question for the quota"
-msgstr ""
+msgstr "Выберите вопрос для квоты"
#: admin/quota.php:192
msgid "Enter the details for creating the quota:"
-msgstr ""
+msgstr "Введите параметры для задания квоты"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
-msgstr ""
+msgstr "Предопределенные значение для этого вопроса:"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
-msgstr ""
+msgstr "Для этого вопроса не заданы эрлыки"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
-msgstr ""
+msgstr "Значение кода"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
-msgstr ""
+msgstr "Значение кода для сравнения"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
-msgstr ""
+msgstr "тип сравнения"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
-msgstr ""
+msgstr "Количесто завершений для остановки звонков"
#: admin/quota.php:219
msgid "Add quota"
-msgstr ""
+msgstr "Добавить квоту"
#: admin/operatorskill.php:149
msgid "Assign operators to Skills"
-msgstr ""
+msgstr "Редактировать возможности и обязанности операторов"
#: admin/operatorskill.php:151
msgid ""
@@ -1459,411 +1468,433 @@ msgid ""
"note that all operators will be allowed to assign all possible outcomes to a "
"case. This restricts which ones will be assigned to an operator."
msgstr ""
+"Задать типы результатов доступные для каждого оператора. Обратите ВНИМАНИЕ "
+"что ВСЕМ операторам будет разрешено присваивать заданиям ВСЕ возможные "
+"результаты. Здесь Вы можете задать ограничения для конкретного оператора."
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
-msgstr ""
+msgstr "Изменить навыки и возможности операторов"
#: admin/operatorperformance.php:66
msgid "Operator Performance"
-msgstr ""
+msgstr "Производительность Оператора"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
-msgstr ""
+msgstr "Выберите опрос"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
-msgstr ""
+msgstr "Звонков"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
-msgstr ""
+msgstr "Общее время"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
-msgstr ""
+msgstr "Время звонка"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
-msgstr ""
+msgstr "Завершено в час"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
-msgstr ""
+msgstr "Звонков в час"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
-msgstr ""
+msgstr "Эффективность"
#: admin/operatorperformance.php:88
msgid "till"
-msgstr ""
+msgstr "до"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
-msgstr ""
+msgstr "Выберите смену"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
-msgstr ""
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
+msgstr "Временные интервалы"
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
-msgstr ""
+msgstr "Изменить"
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
+"Временные интервалы определяют промежутки времени в течение заданных дней "
+"недели. Используются для функции доступности и функции Временного интервала "
+"попытки звонка."
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
-msgstr ""
+msgid "No time slots"
+msgstr "Нет Временных интервалов"
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
-msgstr ""
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
+msgstr "Временной интервал"
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
-msgstr ""
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
+msgstr "Добавить Временной интервал"
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
-msgstr ""
+msgid "Time slot name"
+msgstr "Название для Временного интервала"
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
-msgstr ""
+msgstr "отчеты по сменам"
#: admin/shiftreport.php:92
msgid "Reports for this shift"
-msgstr ""
+msgstr "Отчеты для этой смены"
#: admin/shiftreport.php:104
msgid "Report"
-msgstr ""
+msgstr "Отчет"
#: admin/shiftreport.php:107
msgid "Create new report for this shift"
-msgstr ""
+msgstr "Создать новый отчет для этой смены"
#: admin/shiftreport.php:113
msgid "Enter report for this shift"
-msgstr ""
+msgstr "Введите отчет для этой смены"
#: admin/shiftreport.php:117
msgid "Add report"
-msgstr ""
+msgstr "Добавить отчет"
#: admin/shiftreport.php:153
msgid "This report does not exist in the database"
-msgstr ""
+msgstr "Этот отчет в базе не существует"
#: admin/shiftreport.php:158
msgid "Edit report for this shift"
-msgstr ""
+msgstr "Редактировать отчет для этой смены"
#: admin/shiftreport.php:163
msgid "Modify report"
-msgstr ""
+msgstr "Изменить отчет"
#: admin/index.php:46
msgid "Administrative Tools"
-msgstr ""
+msgstr "Административные инструменты"
#: admin/index.php:50
msgid "Questionnaire creation and management"
-msgstr "Создание и управление анкетами"
+msgstr "Создание и управление опросами"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
-msgstr ""
+msgstr "Создать анекту в Limesurvey:"
#: admin/index.php:52
msgid "Create a new questionnaire"
-msgstr ""
+msgstr "Создать новый опрос"
#: admin/index.php:53
msgid "Questionnaire management"
-msgstr ""
+msgstr "Управление опросами"
#: admin/index.php:54
msgid "Administer instruments with Limesurvey"
-msgstr ""
+msgstr "Администрировать анкеты в Lime"
#: admin/index.php:56
msgid "Sample/List management"
-msgstr ""
+msgstr "Управление Списками контактов"
#: admin/index.php:57
msgid "Import a sample file (in CSV form)"
-msgstr ""
+msgstr "Импортировать файл со Списком контактов (в формате CSV)"
#: admin/index.php:58
msgid "Sample management"
-msgstr ""
+msgstr "Управление Списками контактов"
#: admin/index.php:59
msgid "Assign samples to questionnaires"
-msgstr ""
+msgstr "Привязать Списки контактов к опросам"
#: admin/index.php:60
msgid "Set values in questionnaire to pre fill"
-msgstr ""
+msgstr "Задать значения для Анкеты по умолчанию"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
-msgstr ""
+msgstr "Управление квотой по строке"
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
-msgstr ""
+msgstr "Управление записями операторов"
#: admin/index.php:67
msgid "Add operators to the system"
-msgstr ""
+msgstr "Добавить операторов"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
-msgstr ""
+msgstr "Привязать операторов к опросам"
#: admin/index.php:72
msgid "Availability and shift management"
-msgstr ""
+msgstr "Управление доступностью и сменами"
#: admin/index.php:73
-msgid "Manage availablity groups"
-msgstr ""
+msgid "Manage time slots"
+msgstr "Управление Временными интервалами"
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
-msgstr ""
+msgstr "Привязать группы доступности к опросам"
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr "Привязать Временные интервалы попыток звонков к опросу"
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
-msgstr ""
-
-#: admin/index.php:77
-msgid "Questionnaire progress"
-msgstr ""
+msgstr "Управление сменами (добавить /удалить)"
#: admin/index.php:78
-msgid "Display all future appointments"
-msgstr ""
+msgid "Questionnaire progress"
+msgstr "Прогресс по Опросу"
#: admin/index.php:79
-msgid "Sample call attempts report"
-msgstr ""
+msgid "Display all future appointments"
+msgstr "Показать все будущие повторные звонки"
-#: admin/index.php:81
-msgid "Questionnaire outcomes"
-msgstr ""
+#: admin/index.php:80
+msgid "Sample call attempts report"
+msgstr "Отчет по звонкам по Списку контактов"
#: admin/index.php:82
+msgid "Questionnaire outcomes"
+msgstr "Результаты опроса"
+
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
-msgstr ""
+msgstr "Вывод данных"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
-msgstr ""
-
-#: admin/index.php:87
-msgid "Client management"
-msgstr ""
+msgstr "Производительность Операторов"
#: admin/index.php:88
+msgid "Client management"
+msgstr "Управление учетными записями клиентов"
+
+#: admin/index.php:89
msgid "Add clients to the system"
-msgstr ""
+msgstr "Добавить клиента"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
-msgstr ""
-
-#: admin/index.php:92
-msgid "Assign outcomes to cases"
-msgstr ""
+msgstr "Функции Супервайзера"
#: admin/index.php:93
+msgid "Assign outcomes to cases"
+msgstr "Назначить результаты заданиям"
+
+#: admin/index.php:94
msgid "Search the sample"
-msgstr ""
+msgstr "Поиск по Списку контактов"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
-msgstr ""
+msgstr "Статус и привязка задания"
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
-msgstr ""
-
-#: admin/index.php:99
-msgid "System settings"
-msgstr ""
+msgstr "Генератор повторных звонков"
#: admin/index.php:100
-msgid "Set default timezone list"
-msgstr ""
+msgid "System settings"
+msgstr "Установки системы"
#: admin/index.php:101
-msgid "Set default shift times"
-msgstr ""
+msgid "Set default timezone list"
+msgstr "Задать список временных зон по умолчанию"
#: admin/index.php:102
-msgid "Set call restriction times"
-msgstr ""
+msgid "Set default shift times"
+msgstr "Задать времена для смен по умолчанию"
#: admin/index.php:103
-#: admin/centreinfo.php:62
+msgid "Set call restriction times"
+msgstr "Задать ограничение времени звонков"
+
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
-msgstr ""
+msgstr "Сведения о Колл-Центре"
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
-msgstr ""
-
-#: admin/index.php:109
-msgid "VoIP"
-msgstr ""
+msgstr "Запуск и монитор сортировки заданий"
#: admin/index.php:110
+msgid "VoIP"
+msgstr "IP ТЕЛЕФОН"
+
+#: admin/index.php:111
msgid "Start and monitor VoIP"
-msgstr ""
+msgstr "Запуск и мониторинг IP Телефонии"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
-msgstr ""
+msgstr "Статус внутр. тел.номера"
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
-msgstr ""
+msgstr "Привязать Список контактов: Выберите Список контактов для привязки"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
-msgstr ""
+msgstr "Редактировать параметры Списка контактов"
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
-msgstr ""
+msgstr "Макс. количество звонков для всех номеров ( 0 = без ограничений )"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr ""
+"Макс. количество попыток звонков по каждому номеру ( 0 = без ограничений "
+")"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
-msgstr ""
+msgstr "Количество сообщений оставить на автоответчике ( 0 = не оставлять)"
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
+"Выбор респондента из Списка контактов случайно ? ( иначе последовательно)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr "Разрешить использовать новые номера из списка контактов?"
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
-msgstr ""
+msgstr "Списки контактов выбранные для этого опроса"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
-msgstr ""
+msgstr "Без ограничений"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
-msgstr ""
+msgstr "Последовательно"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
-msgstr ""
+msgstr "Случайно"
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
-msgstr ""
+msgstr "Никогда"
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr "Нет"
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr "Да"
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
-msgstr ""
+msgstr "Кликнуть для отсоединения"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
-msgstr ""
+msgstr "Макс. количество звонков"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
-msgstr ""
+msgstr "Макс. число попыток звонков"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
-msgstr ""
+msgstr "Кол-во Сообщений для Автоответчика"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
-msgstr ""
+msgstr "Порядок выбора респондентов из списка"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
-msgstr ""
+msgstr "Отсоединиить Список контактов"
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
-msgstr ""
+msgstr "Для этого опроса не выбраны Списки контактов"
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
-msgstr ""
+msgstr "Добавить Список контактов к опросу :"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
-msgstr ""
+msgstr "Выбрать список контактов:"
#: admin/centreinfo.php:66
msgid "Set centre information: "
-msgstr ""
+msgstr "Укажите информацию о Колл-Центре "
#: admin/centreinfo.php:67
msgid "Update centre information"
-msgstr ""
+msgstr "Обновить информацию о Центре"
#: admin/questionnaireavailability.php:93
msgid "Assign availability group to questionnaire"
-msgstr ""
+msgstr "Задать группы доступности для опроса"
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+"Привязка группы доступности к опросу позволит операторам выбрать и "
+"ограничить допустимое время звонка для конкретного задания в пределах "
+"выбранных групп"
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
-msgstr ""
+msgstr "Для этого опроса не выбраны группы доступности"
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
-msgstr ""
-
-#: admin/questionnaireavailability.php:132
-msgid "Add an availability group to this questionnaire:"
-msgstr ""
+msgstr "Группы доступности выбранные для этого Опроса"
#: admin/questionnaireavailability.php:135
+msgid "Add an availability group to this questionnaire:"
+msgstr "Добавить группу доступности для этого Опроса :"
+
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
-msgstr ""
+msgstr "Выбрать группу доступности:"
+
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr "Добавить группу доступности"
#: admin/supervisorchat.php:63
msgid ""
@@ -1871,354 +1902,360 @@ msgid ""
"is a BOSH enabled XMPP/Jabber server. The operators and the supervisor will "
"need XMPP/Jabber accounts."
msgstr ""
+"Разрешить интервьюерам час с супервайзером через XMPP (Jabber). Требуется "
+"сервер XMPP/Jabber с подключением BOSH. Операторам и супервайзеру "
+"потребуются учетные записи XMPP/Jabber."
#: admin/supervisorchat.php:73
msgid "Enable supervisor chat?"
-msgstr ""
+msgstr "Разрешить чат супервайзеру?"
#: admin/supervisorchat.php:74
msgid "Set BOSH URL"
-msgstr ""
+msgstr "Сыылка на сервер сообщений BOSH"
#: admin/supervisorchat.php:75
msgid "Supervisor XMPP/Jabber id"
-msgstr ""
+msgstr "IP супервайзера для сервера XMPP/Jabber"
#: admin/supervisorchat.php:76
msgid "Update"
-msgstr ""
+msgstr "Обновить"
#: admin/samplesearch.php:83
msgid "Search sample"
-msgstr ""
+msgstr "Поиск по Списку контактов"
#: admin/samplesearch.php:100
msgid "No cases yet assigned: Delete this sample record"
-msgstr ""
+msgstr "Заданий не присвоено: Удалить запись контакта"
#: admin/samplesearch.php:100
msgid "Assigned to questionnaire: "
-msgstr ""
+msgstr "Привязано к Опросу : "
#: admin/samplesearch.php:110
msgid "No records in this sample match this search criteria"
-msgstr ""
+msgstr "Нет записей в Списке контактов удовлетворяющих критериям поиска"
#: admin/samplesearch.php:121
msgid "Sample id"
-msgstr ""
+msgstr "ID по списку контактов"
#: admin/samplesearch.php:130
msgid "Link"
-msgstr ""
+msgstr "Ссылка"
#: admin/samplesearch.php:149
msgid "Search within this sample"
-msgstr ""
+msgstr "Поиск по Списку контактов"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
-msgstr ""
+msgstr "Используйте символ % для подстановки любого значения"
#: admin/samplesearch.php:156
msgid "Search for:"
-msgstr ""
+msgstr "Искать:"
#: admin/samplesearch.php:158
msgid "Start search"
-msgstr ""
+msgstr "Начать поиск"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
-msgstr ""
+msgstr "Результаты Опроса"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
-msgstr ""
+msgstr "Результаты"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
-msgstr ""
+msgstr "Состояние списка контактов"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
-msgstr ""
+msgstr "Завершено из списка контактов"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
-msgstr ""
+msgstr "Осталось в Списке контактов"
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
-msgstr ""
+msgstr "Количество"
#: admin/outcomes.php:99
msgid "Case availability (cases with temporary or appointment outcomes)"
msgstr ""
+"Доступные задания (задания с временными результатами или повторные звонки )"
#: admin/outcomes.php:131
msgid "No cases currently available to call"
-msgstr ""
+msgstr "В данный момент нет доступных для звонка заданий"
#: admin/outcomes.php:135
msgid "Cases currently available to call"
-msgstr ""
+msgstr "Задания доступные для звонка в данный момент"
#: admin/outcomes.php:142
msgid "Average time on a completed questionnaire"
-msgstr ""
+msgstr "Среднее время на завершенный опрос"
#: admin/outcomes.php:142
msgid "Min"
-msgstr ""
+msgstr "Минут"
#: admin/outcomes.php:142
msgid "Secs"
-msgstr ""
+msgstr "Секунд"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
-msgstr ""
+msgstr "Соотношение"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
-msgstr ""
+msgstr "Соотношение ответов"
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
-msgstr ""
+msgstr "Соотношение отказов"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
-msgstr ""
+msgstr "Соотношение сотрудничества"
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
-msgstr ""
+msgstr "Соотношение контактов"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
-msgstr ""
+msgstr "Сумма"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
-msgstr ""
+msgstr "%"
#: admin/outcomes.php:193
msgid "Operator call outcomes"
-msgstr ""
+msgstr "Результаты звонков оператора"
#: admin/outcomes.php:264
msgid "No outcomes recorded for this sample"
-msgstr ""
+msgstr "Для этого списка контактов НЕТ записей результатов"
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
-msgstr ""
+msgstr "Для этого опроса НЕТ записей результатов"
#: admin/outcomes.php:276
msgid "No shift reports: Add report"
-msgstr ""
+msgstr "Нет отчетов по смене: Добавить отчет"
#: admin/outcomes.php:276
msgid "View shift reports"
-msgstr ""
+msgstr "Посмотреть отчеты по сменам"
#: admin/outcomes.php:276
msgid "View operator performance"
-msgstr ""
+msgstr "Просмотр производительности Оператора"
#: admin/outcomes.php:295
msgid "No shifts defined for this questionnaire"
-msgstr ""
+msgstr "Для этого опроса смены не заданы"
#: admin/outcomes.php:297
msgid "Shift"
-msgstr ""
+msgstr "Смена"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
-msgstr ""
+msgstr "Отчет по смене"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
-msgstr ""
+msgstr "Мониторинг IP Телефонии"
#: admin/voipmonitor.php:79
msgid ""
"Kill signal sent: Please wait... (Note: Process will be stalled until there "
"is activity on the VoIP Server)"
msgstr ""
+"Сигнал остановки отправлен : Пожалуйста, подождите... (Примечание: "
+"Процесс будет приостановлен , до тех пор, пока существует активность на "
+"сервере IP Телефонии)"
#: admin/voipmonitor.php:84
msgid "(requires activity on the VoIP Server to take effect)"
-msgstr ""
+msgstr "(для выполнения требуется работающий сервер IP Телефонии)"
#: admin/voipmonitor.php:97
msgid "Click here to begin monitoring the VoIP Process"
-msgstr ""
+msgstr "Нажмите здесь для начала мониторинга IP Телефонии"
#: admin/questionnaireprefill.php:99
msgid "Pre fill questionnaire: Set values for questionnaire to prefill"
msgstr ""
+"Предварительное заполнение Опроса : задайте значения опроса для "
+"предварительного заполнения"
#: admin/questionnaireprefill.php:110
msgid "Current pre fills (click to delete)"
msgstr ""
+"Существующие данные Предварительного заполнения (нажмите для удаления)"
#: admin/questionnaireprefill.php:120
msgid "Currently no pre fills"
-msgstr ""
+msgstr "Предварительное заполнение в данный момент не задано"
#: admin/questionnaireprefill.php:132
msgid "Select a question to pre fill"
-msgstr ""
+msgstr "Выберите вопрос для Предварительного заполнения"
#: admin/questionnaireprefill.php:164
msgid "Enter a value to pre fill this question with:"
-msgstr ""
+msgstr "Введите значение для Предварительного заполнения этот вопроса :"
#: admin/questionnaireprefill.php:166
msgid "Possible uses:"
-msgstr ""
+msgstr "Возможные варианты использования:"
#: admin/questionnaireprefill.php:168
msgid "{Respondent:firstName} First name of the respondent"
-msgstr ""
+msgstr "{Respondent:firstName} Имя респондента"
#: admin/questionnaireprefill.php:169
msgid "{Respondent:lastName} Last name of the respondent"
-msgstr ""
+msgstr "{Respondent:lastName} Фамилия респондента"
#: admin/questionnaireprefill.php:170
msgid "{Sample:var} A record from the sample where the column name is 'var'"
msgstr ""
+"{Sample:var} Запись из Списка контактов где 'var' - название столбца "
+"переменной"
#: admin/questionnaireprefill.php:183
msgid "The value to pre fill"
-msgstr ""
+msgstr "Значение для Предварительного заполнения"
#: admin/questionnaireprefill.php:184
msgid "or: Select pre fill from sample list"
-msgstr ""
+msgstr "или : Выберите Предварительное заполнение из списка контактов"
#: admin/questionnaireprefill.php:190
msgid "Add pre fill"
-msgstr ""
+msgstr "Добавить Предварительное заполнение"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
-msgstr ""
+msgstr "Переименовать"
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
-msgstr ""
+msgstr "Разрешения операторам на просмотр"
#: admin/samplelist.php:182
msgid ""
"Select which fields from this sample should be able to be viewed by operators"
-msgstr ""
+msgstr "Выберите какие поля из Списка контактов будут видны операторам"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
-msgstr ""
+msgstr "Поле"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
-msgstr ""
+msgstr "Пример данных"
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
-msgstr ""
+msgstr "Показать поле Операторам ?"
#: admin/samplelist.php:190
msgid "Save changes"
-msgstr ""
+msgstr "Сохранить изменения"
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
-msgstr ""
+msgstr "Редактировать"
#: admin/samplelist.php:219
msgid ""
"Select which fields from this sample to deidentify. Deidentified fields will "
"be permanently deleted from the sample."
msgstr ""
+"Выберите поля из списка для удаления. Выбранные записи будут ПОЛНОСТЬЮ "
+"удалены из этого списка контактов."
#: admin/samplelist.php:227
msgid "Delete selected fields"
-msgstr ""
+msgstr "Удалить выбранные поля"
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
-msgstr ""
+msgstr "Включить"
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
-msgstr ""
+msgstr "Выключить"
#: admin/samplelist.php:276
msgid "Sample list"
-msgstr ""
+msgstr "Список контактов"
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
-msgstr ""
+msgstr "Включить / Выключить"
#: admin/bulkappointment.php:199
msgid "Added appointment"
-msgstr ""
+msgstr "Повторный звонок добавлен"
#: admin/bulkappointment.php:203
msgid ""
"No such case id, or case set to a final outcome, or case currently assigned "
"to an operator"
msgstr ""
+"Нет задания с таким № (ID), или заданию присвоен финальный результат, или "
+"задание назначено оператору"
#: admin/bulkappointment.php:209
msgid "Result"
-msgstr ""
+msgstr "Результат"
#: admin/bulkappointment.php:229
msgid ""
"Please check the case id's, appointment start and end times and notes are "
"correct before accepting below"
msgstr ""
+"Перед загрузкой файла Проверьте правильность ID заданий, времена начал и "
+"окончаний повторных звонков"
#: admin/bulkappointment.php:235
msgid "Accept and generate bulk appointments"
-msgstr ""
+msgstr "Принять и сгенерировать массовые повторные звонки"
#: admin/bulkappointment.php:240
msgid ""
"The file does not contain at least caseid, starttime and endtime columns. "
"Please try again."
msgstr ""
+"В файле отсутствуют столбцы с ID задания, временем начала и окончания. "
+"Попробуйте еще раз."
#: admin/bulkappointment.php:251
msgid ""
@@ -2228,767 +2265,834 @@ msgid ""
"temporary (non final) outcomes will have appointments generated, and the "
"outcome of the case will be updated to an appointment outcome."
msgstr ""
+"Предоставьте данные в виде CSV-файла со строкой заголовка таблицы , "
+"содержащий по крайней мере 3 колонки - caseid, starttime и endtime. Можете "
+"добавить столбец note (Примечания) для заметок дополнительно к параметрам "
+"повторного звонка . \r\n"
+"Внимание! Будут созданы повторные звонки только для заданий с временным (не "
+"окончательным) результатом и заданию будет присвоен результат \"Назначен "
+"повторный звонок \" ."
#: admin/bulkappointment.php:252
msgid "Example CSV file:"
-msgstr ""
+msgstr "Файл примера в формате CSV:"
#: admin/bulkappointment.php:261
msgid "Choose the CSV file to upload:"
-msgstr ""
+msgstr "Выберите файл в формате CSV для загрузки:"
#: admin/bulkappointment.php:262
msgid "Load bulk appointment CSV"
-msgstr ""
+msgstr "Загрузить файл CSV для массовых повторных звонков"
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
-msgstr ""
+msgstr "Добавить смены"
#: admin/addshift.php:88
msgid ""
"You must be an operator (as well as have administrator access) to add/edit "
"shifts"
msgstr ""
+"Для добавления/редактирования смен вы должны быть оператором и иметь доступ "
+"администратора"
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
+"В Вашей базе данных не установлены Временные зоны, ознакомьтесь с деталями "
+"здесь"
#: admin/addshift.php:163
msgid "Add shifts in your Time Zone"
-msgstr ""
+msgstr "Добавьте смены для своей Временной зоны"
#: admin/addshift.php:166
msgid ""
"Shifts allow you to restrict appointments being made, and interviewers to "
"working on a particlar project at defined times."
msgstr ""
+"Смены позволяют ограничить назначение повторных звонков и время работы "
+"оператора по проекту"
#: admin/addshift.php:173
msgid "Select year"
-msgstr ""
+msgstr "Выбрать год:"
#: admin/addshift.php:184
msgid "Select week of year"
-msgstr ""
+msgstr "Выбрать неделю года:"
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
-msgstr ""
+msgstr "День"
#: admin/addshift.php:238
msgid "Use shift?"
-msgstr ""
+msgstr "Использовать смены?"
#: admin/addshift.php:263
msgid "Submit changes"
-msgstr ""
+msgstr "Отправить изменения"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
-msgid "Copied quotas"
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
msgstr ""
+"Назначение временных интервалов попыток звонков для опросов позволит "
+"совершить N + 1 попытку для задания в этот интервал времени, где N - "
+"количество предыдущих попыток во всех назначенных временных интервалах. \r\n"
+"Обратите внимание, временные интервалы должны охватывать все возможные "
+"периоды времени, иначе ни одно задание не будет доступно в течение "
+"пропущенных временных интервалов."
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr "Для этого опроса Временные интервалы попытки звонка не выбраны"
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr "Временные интервалы попытки звонка выбранные для этого опроса"
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr "Добавить Временной интервал попытки звонка для этого опроса :"
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr "Выберите Временной интервал попытки звонка :"
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr "Добавить Временной интервал попытки звонка"
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
+msgid "Copied quotas"
+msgstr "Квоты скопированы"
#: admin/quotarow.php:163
msgid "Current row quotas (click to delete)"
-msgstr ""
+msgstr "Текущие квоты по строке (кликнуть по квоте для удаления )"
#: admin/quotarow.php:175
msgid "Currently no row quotas"
-msgstr ""
+msgstr "В данный момент нет квот по строке"
#: admin/quotarow.php:182
msgid "Replicate: Where"
-msgstr ""
+msgstr "Дублировать: Где"
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
-msgstr ""
+msgstr "подобен (похож)"
#: admin/quotarow.php:184
msgid "Sample only. Stop calling where"
-msgstr ""
+msgstr "Только для Списка контактов! Прекратить звонить когда"
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
-msgstr ""
+msgstr "сроки из этого списка контактов когда :"
#: admin/quotarow.php:187
msgid "Stop calling"
-msgstr ""
+msgstr "Прекратить звонок"
#: admin/quotarow.php:190
msgid "Row quota reached (Closed)"
-msgstr ""
+msgstr "Квота по строке заполнена (Закрыта)"
#: admin/quotarow.php:192
msgid "Row quota not yet reached (Open)"
-msgstr ""
+msgstr "Квота по строке не заполнена (Открыта)"
#: admin/quotarow.php:212
msgid "Copy quotas for this sample to (No error/duplicate checking): "
msgstr ""
+"Копировать квоты для этого списка контактов (без проверки ошибок/ дубликатов "
+") "
#: admin/quotarow.php:214
msgid "Copy"
-msgstr ""
+msgstr "Копировать"
#: admin/quotarow.php:216
msgid ""
"Copy quotas for this sample to (No error/duplicate checking) with adjusting: "
msgstr ""
+"Копировать квоты для этого списка контактов (без проверки ошибок/ дубликатов "
+") с дополнительными настройками "
#: admin/quotarow.php:218
msgid "Copy adjustments"
-msgstr ""
+msgstr "Копировать настройки"
#: admin/quotarow.php:224
msgid "Select a question for the row quota"
-msgstr ""
+msgstr "Выбрать вопрос для квоты по строке"
#: admin/quotarow.php:248
msgid "No question (Replicate)"
-msgstr ""
+msgstr "Нет вопроса (Дублировать)"
#: admin/quotarow.php:252
msgid "Sample only quota"
-msgstr ""
+msgstr "Квота только по Списку контактов"
#: admin/quotarow.php:262
msgid "Select the sample variable to exclude"
-msgstr ""
+msgstr "Выберите переменную из списка контактов для исключения"
#: admin/quotarow.php:274
msgid "Enter the details for creating the row quota:"
-msgstr ""
+msgstr "Введите описание для создания коты по строке"
#: admin/quotarow.php:300
msgid "Describe this quota"
-msgstr ""
+msgstr "Опишите эту квоту"
#: admin/quotarow.php:301
msgid "Quota priority (50 is default, 100 highest, 0 lowest)"
msgstr ""
+"Приоритет квоты (50 - по умолчанию, 100 - наивысший, 0 - самый низкий)"
#: admin/quotarow.php:302
msgid ""
"Should the priority be automatically updated based on the number of "
"completions in this quota?"
msgstr ""
+"Требуется автоматически обновить приоритеты в соответствии с заполнением "
+"квоты?"
#: admin/quotarow.php:316
msgid "Exclude from the sample where the value is like"
-msgstr ""
+msgstr "Исключить из списка контактов где значение похоже на"
#: admin/quotarow.php:334
msgid "Add row quota"
-msgstr ""
+msgstr "Добавить квоту по строке"
#: admin/operators.php:147
msgid "Added:"
-msgstr ""
+msgstr "Добавлено:"
#: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect"
msgstr ""
+"АТС FreePBX была перезагружена чтобы новый внутреннй номер был подключен"
#: admin/operators.php:174
msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
+"Невозможно добавить оператора. Возможно оператор с таким именем уже "
+"существует:"
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
-msgstr ""
+msgstr "Добавить оператора"
#: admin/operators.php:204
msgid "Adding an operator here will give the user the ability to call cases"
-msgstr ""
+msgstr "Добавление оператора"
#: admin/operators.php:204
msgid "Assign Operator to Questionnaire"
-msgstr ""
+msgstr "Привязать оператора к Опросу"
#: admin/operators.php:204
msgid "tool"
-msgstr ""
+msgstr "инструмент"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
"queXS using Apache file based security, enter the usernames of the users "
"here."
msgstr ""
+"Используйте эту форму, чтобы ввести имя пользователя на основании вашей "
+"системы безопасности каталогов. Например если вы защитили каталог queXS с "
+"использованием системы безопасности Apache на основе файла, введите сюда "
+"имена пользователей."
#: admin/operators.php:206
msgid "The username and extension must be unique for each operator."
msgstr ""
+"Логин и внутр. номер должны быть уникальными для каждого опрератора !"
#: admin/operators.php:208
msgid "Enter the username of an operator to add:"
-msgstr ""
+msgstr "Задайте логин для оператора:"
#: admin/operators.php:210
msgid "Enter the password of an operator to add:"
-msgstr ""
+msgstr "Задайте пароль для оператора:"
#: admin/operators.php:212
msgid "Enter the first name of an operator to add:"
-msgstr ""
+msgstr "Введите Имя оператора:"
#: admin/operators.php:213
msgid "Enter the surname of an operator to add:"
-msgstr ""
+msgstr "Введите Фамилию оператора:"
#: admin/operators.php:214
msgid "Enter the Time Zone of an operator to add:"
-msgstr ""
+msgstr "Задайте временную зону оператора:"
#: admin/operators.php:216
msgid "Select an extension for this operator:"
-msgstr ""
+msgstr "Выбрать внутр. номер для этого оператора:"
#: admin/operators.php:218
msgid "Will this operator be using VoIP?"
-msgstr ""
+msgstr "Будет использовать IP телефон ?"
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
-msgstr ""
+msgstr "Введите Логин для Jabber/XMPP чата"
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
-msgstr ""
+msgstr "Введите Пароль для Jabber/XMPP чата"
#: admin/operators.php:221
msgid "Will this operator be using chat?"
-msgstr ""
+msgstr "Оператор будет использовать чат?"
#: admin/operators.php:222
msgid "Is the operator a normal interviewer?"
-msgstr ""
+msgstr "Оператор обычный Интервьютер?"
#: admin/operators.php:223
msgid "Is the operator a supervisor?"
-msgstr ""
+msgstr "Функция Супервайзера?"
#: admin/operators.php:224
msgid "Is the operator a refusal converter?"
-msgstr ""
+msgstr "Будт обрабатывать отказы?"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
-msgstr ""
+msgstr "Добавить пользователя"
#: admin/new.php:59
msgid "New: Create new questionnaire"
-msgstr ""
+msgstr "Создать новый Опрос"
#: admin/new.php:118
msgid "Successfully inserted"
-msgstr ""
+msgstr "Успешно вставлен"
#: admin/new.php:118
msgid "as questionnaire"
-msgstr ""
+msgstr "как опрос"
#: admin/new.php:118
msgid "linked to"
-msgstr ""
+msgstr "связан с"
#: admin/new.php:121
msgid "Error: Failed to insert questionnaire"
-msgstr ""
+msgstr "ОШИБКА: Не удалось вставить опрос"
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
-msgstr "Наименование анкеты:"
+msgstr "Название Опроса :"
#: admin/new.php:133
msgid "Select limesurvey instrument:"
-msgstr ""
+msgstr "Выбрать Анкету из списка:"
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
-msgstr ""
+msgstr "Существующая анкета:"
#: admin/new.php:156
msgid "Respondent selection type:"
-msgstr ""
+msgstr "Способ отбора респондента :"
#: admin/new.php:157
msgid "No respondent selection (go straight to questionnaire)"
-msgstr ""
+msgstr "Без отбора респондента ( переход прямо к анкете )"
#: admin/new.php:157
msgid "Use basic respondent selection text (below)"
-msgstr ""
+msgstr "Использовать базовый текст для отбора респондентов (ниже)"
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
-msgstr ""
+msgstr "Привязать повторные звонки к сменам?"
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
-msgstr ""
+msgstr "Ограничить временем смен?"
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
-msgstr ""
+msgstr "Опрос только для тестирования?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
-msgstr ""
+msgstr "Разрешить операторам создавать ссылки для доступа к анкете?"
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
+"Разрешить респондентам самостоятельно отвечать на анкету ? (после отправки "
+"приглашения по эл. почте)"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
-msgstr ""
+msgstr "Режим отображения Анкеты для Респондента"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
-msgstr ""
+msgstr "Все сразу на одной странице"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
-msgstr ""
+msgstr "Вопрос за вопросом"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
-msgstr ""
+msgstr "Группа за группой"
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
-msgstr ""
+msgstr "Шаблон Анкеты для показа Респонденту"
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
+"Ссылка переадресации респондентов для самостоятельного запонения Анкеты "
+"(обязательна)"
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
-msgstr ""
+msgstr "Отбор респондентов Вступление:"
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
-msgstr ""
+msgstr "Отбор респондентов Вступительная часть проекта:"
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
-msgstr ""
+msgstr "Отбор респондентов обратный звонок (опрос уже начат) :"
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
-msgstr ""
+msgstr "Текст сообщения для автоответчика:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
-msgstr ""
+msgstr "Сообщение по окончании опроса (страница СПАСИБО):"
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
-msgstr ""
+msgstr "Информация о проекте для интервьюеров / операторов:"
#: admin/new.php:224
msgid "Create Questionnaire"
-msgstr ""
+msgstr "Создать Опрос"
#: admin/extensionstatus.php:101
msgid ""
"Failed to add extension. There already may be an extension of this name"
msgstr ""
+"Не удалось добавить внутр. номер. Возможно внутр. номер с таким именем уже "
+"существует"
#: admin/extensionstatus.php:133
msgid "Display extension status"
-msgstr ""
+msgstr "Показать статус внутр. номера"
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
-msgstr ""
+msgstr "Название внутр. номера (напр. SIP/1000) :"
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
-msgstr ""
+msgstr "Пароль для внутр. номера:"
#: admin/extensionstatus.php:149
msgid "Edit extension"
-msgstr ""
+msgstr "Редактировать внутр. номер"
#: admin/extensionstatus.php:155
msgid "Delete extension"
-msgstr ""
+msgstr "Удалить внутр. номер"
#: admin/extensionstatus.php:160
msgid "Unassign the operator from this extension to be able to delete it"
msgstr ""
+"Отсоедините оператора от этого внутр. номера для возможности удалить внутр. "
+"номер"
#: admin/extensionstatus.php:168
msgid "Unassign"
-msgstr ""
+msgstr "Отвязать"
#: admin/extensionstatus.php:168
msgid "End case to change assignment"
-msgstr ""
+msgstr "Завершить задание для изменения привязки"
#: admin/extensionstatus.php:169
msgid "VoIP Offline"
-msgstr ""
+msgstr "IP Тел НЕ на линии"
#: admin/extensionstatus.php:169
msgid "VoIP Online"
-msgstr ""
+msgstr "IP Тел на линии"
#: admin/extensionstatus.php:170
msgid "Not called"
-msgstr ""
+msgstr "Не звонили"
#: admin/extensionstatus.php:170
msgid "Done"
-msgstr ""
+msgstr "Готово"
#: admin/extensionstatus.php:200
msgid "Assignment"
-msgstr ""
+msgstr "Привязка"
#: admin/extensionstatus.php:200
msgid "VoIP Status"
-msgstr ""
+msgstr "Статус IP Телефонии"
#: admin/extensionstatus.php:200
msgid "Call state"
-msgstr ""
+msgstr "Состояние звонка"
#: admin/extensionstatus.php:200
msgid "Time on call"
-msgstr ""
+msgstr "Продолжительность звонка"
#: admin/extensionstatus.php:203
msgid "No extensions"
-msgstr ""
+msgstr "Нет свободных внутр. номеров"
#: admin/extensionstatus.php:205
msgid "Add an extension"
-msgstr ""
+msgstr "Добавить внутренний номер"
#: admin/extensionstatus.php:211
msgid "Add extension"
-msgstr ""
+msgstr "Добавить внутренний номер"
#: admin/databasestrings.php:32
msgid "Not attempted or worked"
-msgstr ""
+msgstr "Не начинали работать"
#: admin/databasestrings.php:33
msgid "No answer"
-msgstr ""
+msgstr "Абонент не отвечает / занято"
#: admin/databasestrings.php:34
msgid "Technical phone problems"
-msgstr ""
+msgstr "Проблемы со связью"
#: admin/databasestrings.php:35
msgid "Other, Referred to Supervisor (Eligible)"
-msgstr ""
+msgstr "Другое - направить Супервайзеру"
#: admin/databasestrings.php:36
msgid "Other, Referred to Supervisor (Unknown eligibility)"
-msgstr ""
+msgstr "Другое - направить Супервайзеру"
#: admin/databasestrings.php:37
msgid "Soft Refusal, Other"
-msgstr ""
+msgstr "Отказ , другое"
#: admin/databasestrings.php:38
msgid "Hard Refusal, Other"
-msgstr ""
+msgstr "Отказ респондента"
#: admin/databasestrings.php:39
msgid "Soft Refusal, Respondent"
-msgstr ""
+msgstr "Отказ респондента"
#: admin/databasestrings.php:40
msgid "Hard Refusal, Respondent"
-msgstr ""
+msgstr "Отказ респондента"
#: admin/databasestrings.php:41
msgid "Complete"
-msgstr ""
+msgstr "Завершено"
#: admin/databasestrings.php:42
msgid "Known respondent refusal"
-msgstr ""
+msgstr "Подтвержденный отказ Респондента"
#: admin/databasestrings.php:43
msgid "Household-level refusal"
-msgstr ""
+msgstr "Отказ членов семьи"
#: admin/databasestrings.php:44
msgid "Broken appointment (Implicit refusal)"
-msgstr ""
+msgstr "Повторный звонок не состоялся (Неявный отказ)"
#: admin/databasestrings.php:45
msgid "Disconnected number"
-msgstr ""
+msgstr "Номер разъединился"
#: admin/databasestrings.php:46
msgid "Fax/data line"
-msgstr ""
+msgstr "Включается ФАКС"
#: admin/databasestrings.php:47
msgid "Business, government office, other organization"
-msgstr ""
+msgstr "Офис, госучереждение, другая организация"
#: admin/databasestrings.php:48
msgid "No eligible respondent"
-msgstr ""
+msgstr "По этому номеру нужного Респондента не существует"
#: admin/databasestrings.php:49
msgid "Accidental hang up or temporary phone problem"
-msgstr ""
+msgstr "Внезапно разъединилось или временные проблемы со связью"
#: admin/databasestrings.php:50
msgid "Definite Appointment - Respondent"
-msgstr ""
+msgstr "Повторный звонок с указанием времени, согласован с Респондентом"
#: admin/databasestrings.php:51
msgid "Definite Appointment - Other"
-msgstr ""
+msgstr "Повторный звонок с указанием времени - Другое"
#: admin/databasestrings.php:52
msgid "Unspecified Appointment - Respondent"
msgstr ""
+"Повторный звонок без указания конкретного времени, согласован с Респондентом"
#: admin/databasestrings.php:53
msgid "Unspecified Appointment - Other"
-msgstr ""
+msgstr "Повторный звонок без указания конкретного времени - Другое"
#: admin/databasestrings.php:54
msgid "Household answering machine - Message left"
-msgstr ""
+msgstr "Автоответчик - Сообщение оставлено"
#: admin/databasestrings.php:55
msgid "Household answering machine - No message left"
-msgstr ""
+msgstr "Автоответчик - сообщение НЕ оставлено"
#: admin/databasestrings.php:56
msgid "Respondent Dead"
-msgstr ""
+msgstr "Респондент скончался"
#: admin/databasestrings.php:57
msgid "Physically or mentally unable/incompetent"
-msgstr ""
+msgstr "Физически или психологически недоступен / недееспособен"
#: admin/databasestrings.php:58
msgid "Household level language problem"
-msgstr ""
+msgstr "Ответивший не понимает по-русски"
#: admin/databasestrings.php:59
msgid "Respondent language problem"
-msgstr ""
+msgstr "НЕ ПОНИМАЕТ ПО-Русски"
#: admin/databasestrings.php:60
msgid "Answering machine - Not a household"
-msgstr ""
+msgstr "Автоответчик - Не частное жилье"
#: admin/databasestrings.php:61
msgid "Out of sample"
-msgstr ""
+msgstr "Не соответствеут требованиям по отбору респондентов"
#: admin/databasestrings.php:62
msgid "Non contact"
-msgstr ""
+msgstr "НЕ связались с респондентом"
#: admin/databasestrings.php:63
msgid "Temporary Outcomes (normal cases)"
-msgstr ""
+msgstr "Временные результаты (обызные случаи)"
#: admin/databasestrings.php:64
msgid "Supervisor Outcomes (referred to supervisor)"
msgstr ""
+"Результат - Направить Супервайзеру (На звонок ответили, но требуется "
+"участие / решение супервайзера )"
#: admin/databasestrings.php:65
msgid "Refusal Outcomes (respondent refused)"
-msgstr ""
+msgstr "ОТКАЗЫ (респондент отказался )"
#: admin/databasestrings.php:66
msgid "Final Outcomes (completed, final refusal, etc)"
-msgstr ""
+msgstr "Итоговые Результаты (завершено, отказ, и т.д.)"
#: admin/databasestrings.php:67
msgid "Miscellaneous - Unavailable for a week"
-msgstr ""
+msgstr "Разное - Недоступен на неделю"
#: admin/databasestrings.php:69
msgid "Monday"
-msgstr ""
+msgstr "Понедельник"
#: admin/databasestrings.php:70
msgid "Tuesday"
-msgstr ""
+msgstr "Вторник"
#: admin/databasestrings.php:71
msgid "Wednesday"
-msgstr ""
+msgstr "Среда"
#: admin/databasestrings.php:72
msgid "Thursday"
-msgstr ""
+msgstr "Четверг"
#: admin/databasestrings.php:73
msgid "Friday"
-msgstr ""
+msgstr "Пятница"
#: admin/databasestrings.php:74
msgid "Saturday"
-msgstr ""
+msgstr "Суббота"
#: admin/databasestrings.php:75
msgid "Sunday"
-msgstr ""
+msgstr "Воскресенье"
#: admin/databasestrings.php:76
msgid "Quota filled"
-msgstr ""
+msgstr "Квота заполнена"
#: admin/databasestrings.php:77
msgid "Weekday mornings (Before 12pm)"
-msgstr ""
+msgstr "Рабочие дни (до 12:00)"
#: admin/databasestrings.php:78
msgid "Weekday afternoons (After 12pm but before 6pm)"
-msgstr ""
+msgstr "Рабочие дни (с 12:00 до 18:00)"
#: admin/databasestrings.php:79
msgid "Evenings (After 6pm)"
-msgstr ""
+msgstr "Вечера (после 18:00)"
#: admin/databasestrings.php:80
msgid "Saturdays"
-msgstr ""
+msgstr "Субботы"
#: admin/databasestrings.php:81
msgid "String"
-msgstr ""
+msgstr "Строковые данные"
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
-msgstr ""
+msgstr "Номер телефона"
#: admin/databasestrings.php:83
msgid "Primary phone number"
-msgstr ""
+msgstr "ОСНОВНОЙ номер телефона"
#: admin/databasestrings.php:84
msgid "State"
-msgstr ""
+msgstr "ШТАТ (облать)"
#: admin/databasestrings.php:85
msgid "Postcode"
-msgstr ""
+msgstr "Индекс"
#: admin/databasestrings.php:86
msgid "Respondent first name"
-msgstr ""
+msgstr "Имя Респондента"
#: admin/databasestrings.php:87
msgid "Respondent last name"
-msgstr ""
+msgstr "Фамилия Респондента"
#: admin/databasestrings.php:88
msgid "Email address"
-msgstr ""
+msgstr "Адрес эл. почты"
#: admin/databasestrings.php:89
msgid "Self completion email invitation sent"
-msgstr ""
+msgstr "Письмо с приглашением для самостоятельного заполнения отправлено"
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
-msgstr ""
+msgstr "Заполнено самостоятельно онлайн"
#: admin/casesbyoutcome.php:52
msgid "Cases by outcome"
-msgstr ""
+msgstr "Заданиия по типу результата"
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
-msgstr ""
+msgstr "Проект"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
-msgstr ""
+msgstr "Текущий результат:"
#: admin/casesbyoutcome.php:84
msgid "No cases with this outcome"
-msgstr ""
+msgstr "Нет заданий с таким результатом"
#: admin/casesbyoutcome.php:91
msgid "Error with input"
-msgstr ""
+msgstr "Ошибка ввода"
#: admin/process.php:90
msgid "Cannot connect to VoIP Server"
-msgstr ""
+msgstr "Не могу соединиться с сервером IP Телефонии"
#: admin/availability.php:57
-msgid "No availability group set"
-msgstr ""
+msgid "No time slot group set"
+msgstr "НЕ УСТАНОВЛЕНО Групп Временного интервала"
#: admin/availability.php:95
-msgid "Modify availability"
-msgstr ""
+msgid "Modify time slots"
+msgstr "Изменить Временные интервалы"
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
+"Для ограничения времени звонков, задайте время начала и окончания для "
+"каждого требуемого дня недели"
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
-msgstr ""
+msgstr "Добавить строку"
+
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr "Название для группы Временного интервала"
#: admin/availability.php:162
-msgid "Save changes to availabilities"
-msgstr ""
+msgid "Save changes to time slot group"
+msgstr "Сохранить изменения для группы Временного интервала"
#: admin/availability.php:166
-msgid "Delete this availability group"
-msgstr ""
+msgid "Delete this time slot group"
+msgstr "Удалить эту группу Временного интервала"
#: admin/clients.php:84
msgid "Could not add"
-msgstr ""
+msgstr "Не могу добавить"
#: admin/clients.php:84
msgid "There may already be a client of this name"
-msgstr ""
+msgstr "Клиент с таким именен может уже существует"
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
-msgstr ""
+msgstr "Добавить клиента"
#: admin/clients.php:105
msgid ""
@@ -2996,81 +3100,85 @@ msgid ""
"client subdirectory. You can assign a client to a particular project using "
"the"
msgstr ""
+"Добаление клиента позволит им получить доступ к информации о проекте в "
+"клиентской директрии. Вы можете задать доступ клиетну к конкретному проектц "
+"используя"
#: admin/clients.php:105
msgid "Assign client to Questionnaire"
-msgstr ""
+msgstr "Привязать клиента к Опросу"
#: admin/clients.php:105
msgid "tool."
-msgstr ""
+msgstr "."
#: admin/clients.php:108
msgid "Enter the username of a client to add:"
-msgstr ""
+msgstr "Введите Логин для нового клиента :"
#: admin/clients.php:110
msgid "Enter the password of a client to add:"
-msgstr ""
+msgstr "Введите Пароль для нового клиента :"
#: admin/clients.php:112
msgid "Enter the first name of a client to add:"
-msgstr ""
+msgstr "Введите Имя нового клиента :"
#: admin/clients.php:113
msgid "Enter the surname of a client to add:"
-msgstr ""
+msgstr "Введите Фамилию нового клиента :"
#: admin/clients.php:114
msgid "Enter the Time Zone of a client to add:"
-msgstr ""
+msgstr "Введите временную зону нового клиента :"
#: admin/shifttemplate.php:82
msgid "Modify shift template"
-msgstr ""
+msgstr "Изменить график смены"
#: admin/shifttemplate.php:96
msgid ""
"Enter standard shift start and end times for each day of the week in local "
"time"
msgstr ""
+"Задайте время начала и окончания смен для каждого дня недели по местному "
+"времени"
#: admin/shifttemplate.php:135
msgid "Save changes to shifts"
-msgstr ""
+msgstr "Сохранить изменеия по сменам"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
-msgstr ""
+msgstr "Сейчас"
#: admin/casestatus.php:92
msgid "Not assigned, select to assign"
-msgstr ""
+msgstr "Не привязан, нажмите для привязки"
#: admin/casestatus.php:93
msgid "Assigned to"
-msgstr ""
+msgstr "Привязано к"
#: admin/casestatus.php:93
msgid "Order"
-msgstr ""
+msgstr "№ пп"
#: admin/casestatus.php:111
msgid "Case available in x minutes"
-msgstr ""
+msgstr "Задние доступно через x минут"
#: admin/casestatus.php:111
msgid "Assigned to operator"
-msgstr ""
+msgstr "Назначено оператору"
#: admin/casestatus.php:119
msgid "Choose operator to assign selected cases to"
-msgstr ""
+msgstr "Выберите оператора для привязки к нему выбранных заданий"
#: admin/casestatus.php:122
msgid "Assign cases to operator queue"
-msgstr ""
+msgstr "Привязать задания к очереди оператора"
#: admin/casestatus.php:199
msgid ""
@@ -3079,100 +3187,105 @@ msgid ""
"operator, it will override the normal scheduling process and call them as "
"soon as the operator is available."
msgstr ""
+"Вывести список заданий по опросу и списку контактов с возможностью "
+"назначения следующего звонка в очередь конкретного оператора. Если вы "
+"назначите задания операторам, это изменит порядок звонков и поставит в "
+"начало списка."
#: admin/dataoutput.php:202
msgid "Download data for this questionnaire via Limesurvey"
-msgstr ""
+msgstr "Скачать данные для этого опроса с помощью Lime"
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
-msgstr ""
+msgstr "Выберите Список контактов"
#: admin/dataoutput.php:211
msgid "Download data for this sample via Limesurvey"
-msgstr ""
+msgstr "Скачать данные для этого списка контактов с помощью Lime"
#: admin/dataoutput.php:218
msgid "Download key file: select sample var"
-msgstr ""
+msgstr "Скачать файл с полем из списка контактов : выберите поле"
#: admin/dataoutput.php:222
msgid "Download complete key file"
-msgstr ""
+msgstr "Скачать полный файл с полями списка контактов"
#: admin/dataoutput.php:225
msgid "Download complete sample file with current outcomes"
-msgstr ""
+msgstr "Скачать полный список контактов с текущими результатами"
#: admin/callrestrict.php:82
msgid "Modify call restriction times"
-msgstr ""
+msgstr "Изменить время ограничения звонка"
#: admin/callrestrict.php:135
msgid "Save changes to restriction times"
-msgstr ""
+msgstr "Сохранить изменения времени ограничения звонка"
#: admin/operatorlist.php:60
msgid "If changing usernames, you must specify a new password"
msgstr ""
+"При изменении Логина (имени пользователя) необходимо задать новый пароль"
#: admin/operatorlist.php:116
msgid "Successfully updated user"
-msgstr ""
+msgstr "Данные пользователя успешно обновлены"
#: admin/operatorlist.php:120
msgid "Failed to update user. Please make sure the username is unique"
msgstr ""
+"Не могу обновить данные пользователя. Убедитесь что имя пользователя (логин) "
+"уникально"
#: admin/operatorlist.php:129
msgid "Operator edit"
-msgstr ""
+msgstr "Редактировать данные оператора"
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
-msgstr ""
+msgstr "Логин (Имя пользователя)"
#: admin/operatorlist.php:162
msgid "Update password (leave blank to keep existing password)"
-msgstr ""
+msgstr "Обновить пароль (чтобы оставить старый пароль оставьте поле пустым)"
#: admin/operatorlist.php:170
msgid "Uses chat"
-msgstr ""
+msgstr "Использует Чат"
#: admin/operatorlist.php:171
msgid "Timezone"
-msgstr ""
+msgstr "Временная зона"
#: admin/operatorlist.php:173
msgid "Uses VoIP"
-msgstr ""
+msgstr "Использует IP Телефонию (VOIP)"
#: admin/operatorlist.php:176
msgid "Update operator"
-msgstr ""
+msgstr "Обновить данные оператора"
#: admin/operatorlist.php:270
msgid "Windows bat file"
-msgstr ""
+msgstr "Файл *bat для Windows"
#: admin/operatorlist.php:271
msgid "*nix script file"
-msgstr ""
+msgstr "файл скрипта *nix (Unix систем )"
#: admin/operatorlist.php:279
msgid "Enable VoIP"
-msgstr ""
+msgstr "Включить IP Телефонию"
#: admin/operatorlist.php:281
msgid "Disable VoIP"
-msgstr ""
+msgstr "Выключить IP Телефонию"
#: admin/operatorlist.php:290
msgid "Operator list"
-msgstr ""
+msgstr "Список Операторов"
#: admin/operatorlist.php:297
msgid ""
@@ -3180,78 +3293,82 @@ msgid ""
"executable. When the file is executed, it will run the voip.exe program with "
"the correct connection details to connect the operator to the VoIP server"
msgstr ""
+"Скачайте файл для каждого пользователя и сохраните в той-же папке что и "
+"файл voip.exe (программа IP Телефонии). При запуск этого файла, запустится "
+"программа voip.exe с требуемыми параметрами соединения для подключения "
+"этого оператора к серверу IP телефонии"
#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
-msgstr ""
+msgstr "Скачать программу IP Тел для Windows"
#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
-msgstr ""
+msgstr "Скачать программу IP Тел для Linux"
#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
-msgstr ""
+msgstr "Включить / Выключить IP Телефонию"
#: admin/operatorlist.php:306
msgid "Windows VoIP"
-msgstr ""
+msgstr "IP Тел для Windows"
#: admin/operatorlist.php:307
msgid "*nix VoIP"
-msgstr ""
+msgstr "файл для *nix систем IP Телефонии"
#: admin/samplecallattempts.php:107
msgid "Number of cases"
-msgstr ""
+msgstr "Количество заданий"
#: admin/samplecallattempts.php:107
msgid "Call attempts made"
-msgstr ""
+msgstr "Сделано попыток звонков"
#: admin/samplecallattempts.php:170
msgid "Sample call attempt"
-msgstr ""
+msgstr "Попытка звонка по Списку контактов"
#: admin/samplecallattempts.php:175
msgid "Overall"
-msgstr ""
+msgstr "Все вместе"
#: admin/samplecallattempts.php:195
msgid "Please select a quota"
-msgstr ""
+msgstr "Выберите Квоту"
#: admin/samplecallattempts.php:201
msgid "No calls for this quota"
-msgstr ""
+msgstr "Нет звонков по этой Квоте"
#: admin/samplecallattempts.php:205
msgid "No calls for this sample"
-msgstr ""
+msgstr "По этому Списку контактов звонков не было"
#: admin/samplecallattempts.php:210
msgid "No calls for this questionnaire"
-msgstr ""
+msgstr "По этому опросу звонков не было"
#: admin/questionnairelist.php:277
msgid "Questionnaire list"
-msgstr ""
+msgstr "Список Опросов"
#: admin/questionnairelist.php:329
msgid "Edit instrument in Limesurvey"
-msgstr ""
+msgstr "Редактировать Анкету в Lime"
#: admin/questionnairelist.php:362
msgid "Edit respondent selection instrument in Limesurvey"
-msgstr ""
+msgstr "Редактировать отбор респондентов в Lime"
#: admin/questionnairelist.php:365
msgid "Update Questionnaire"
-msgstr ""
+msgstr "Обновить Опрос"
#: admin/questionnairelist.php:384
msgid "Any collected data and the limesurvey instrument will NOT be deleted"
-msgstr ""
+msgstr "Все полученные данные и Анкета в Limesurvey НЕ будут удалены"
#: admin/questionnairelist.php:385
msgid ""
@@ -3259,375 +3376,411 @@ msgid ""
"case notes, respondent details, appointments and the links between "
"operators, clients and the questionnaire"
msgstr ""
+"Этот опрос будет удален из базы queXS, включая историю звонков, заданий, "
+"примечаний, деталей респондентов, повторных звонков их связми между "
+"операторами, клиентами и опросом"
#: admin/questionnairelist.php:386
msgid "Please confirm you wish to delete the questionnaire"
-msgstr ""
+msgstr "Подтвердите намерение удалить этот Опрос"
#: admin/questionnairelist.php:389
msgid "Delete this questionnaire"
-msgstr ""
+msgstr "Удалить этот Опрос"
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
-msgstr ""
+msgstr "Редактировать список Временных зон"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr "Задать Временную зону по умолчанию:"
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr "Временная зона по умолчанию: "
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
-msgstr ""
+msgstr "Нажмите для удаления Временной зоны из списка"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
-msgstr ""
+msgstr "Добавить временную зону :"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
-msgstr ""
+msgstr "Временная зона : "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
-msgstr ""
+msgstr "Добавить временную зону"
#: admin/supervisor.php:133
msgid "Enter a case id or select a case from the list below:"
-msgstr ""
+msgstr "Введите номер задания или выберите из списка заданий :"
#: admin/supervisor.php:144
msgid "Select case from list of cases referred to the supervisor:"
-msgstr ""
+msgstr "Выберите задание из списка направленных Супервайзеру :"
#: admin/supervisor.php:153
msgid "Select case"
-msgstr ""
+msgstr "Выберите задание"
#: admin/supervisor.php:176
msgid "Set an outcome for this call"
-msgstr ""
+msgstr "Установить результат для этого звонка"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
-msgstr ""
+msgstr "Установить результат"
#: admin/supervisor.php:300
msgid "No appointments for this case"
-msgstr ""
+msgstr "Нет повторных звонков для этого задания"
#: admin/supervisor.php:302
msgid "Create appointment for this case"
-msgstr ""
+msgstr "Создать повторный звонок для этого задания"
#: admin/supervisor.php:314
msgid "Call list"
-msgstr ""
+msgstr "Список звонков"
#: admin/supervisor.php:320
msgid "Change outcome"
-msgstr ""
+msgstr "Изменить результат"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr "Попытки звонка за Временной интервал"
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr "Попытки звонка"
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
-msgstr ""
+msgstr "Примечания по заданию"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
-msgstr ""
+msgstr "Изменить ответы для этого задания"
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
-msgstr ""
+msgstr "Заполнение Анкеты для этого задания еще не начиналось"
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
-msgstr ""
+msgstr "Установите результа для задания"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
-msgstr ""
+msgstr "Обновить Доступность для задания"
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
+"Назначить это задание оператору (появится как следующее задание для "
+"оператора)"
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
-msgstr ""
+msgstr "Назначить это задание оператору"
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
+"Удалить все контактные данные и номера телефонов для этого Респондента"
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
-msgstr ""
+msgstr "Задание не существует"
#: voip/downloadvoipclient.php:52
msgid "Error: Cannot write to temporary directory"
-msgstr ""
+msgstr "ОШИБКА : Невозможно записать во временную директорию"
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
-msgstr ""
+msgstr "утро"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
-msgstr ""
+msgstr "день"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
-msgstr ""
+msgstr "вечер"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
msgstr ""
+"ОШИБКА: У вас включена проверка подлинности на стороне сервера поэтому "
+"queXS не может определить, какой пользователь получает доступ к системе."
#: functions/functions.calendar.php:265
msgid "First name:"
-msgstr ""
+msgstr "Имя :"
#: functions/functions.calendar.php:266
msgid "Last name:"
-msgstr ""
+msgstr "Фамилия :"
#: functions/functions.calendar.php:271
msgid "Time Zone:"
-msgstr ""
+msgstr "Временная зона :"
#: functions/functions.calendar.php:328
msgid "Shift from:"
-msgstr ""
+msgstr "Смена с :"
#: functions/functions.calendar.php:335
msgid "Start Time"
-msgstr ""
+msgstr "Время начала"
#: functions/functions.calendar.php:385
msgid "End Time"
-msgstr ""
+msgstr "Время окончания"
#: functions/functions.performance.php:469
msgid "No shift"
-msgstr ""
+msgstr "Смена не задана"
#: functions/functions.performance.php:492
msgid "Total completions"
-msgstr ""
+msgstr "Итого Завершено"
#: functions/functions.performance.php:521
msgid "Completions this shift"
-msgstr ""
+msgstr "Завершено в эту смену"
#: functions/functions.performance.php:544
#: functions/functions.performance.php:590
msgid "No previous shift"
-msgstr ""
+msgstr "Нет предыдущей смены"
#: functions/functions.performance.php:564
msgid "Completions on the previous shift"
-msgstr ""
+msgstr "Завершено в предыдущую смену"
#: functions/functions.performance.php:611
msgid "Completions this time on the previous shift"
-msgstr ""
+msgstr "Завершено в это время в предыдущую смену"
#: functions/functions.performance.php:629
msgid "No calls made for this shift"
-msgstr ""
+msgstr "За эту смену звонков не было"
#: functions/functions.performance.php:631
msgid "Top CPH for this shift"
-msgstr ""
+msgstr "Рейтинг производительности (звонков в час ) для этой смены"
#: functions/functions.performance.php:648
msgid "No calls made for this project"
-msgstr ""
+msgstr "По этому проекту звонков не было"
#: functions/functions.performance.php:650
msgid "Top CPH"
-msgstr ""
+msgstr "Рейтинг производительности (звонков в час )"
#: functions/functions.import.php:89
msgid "Duplicate name"
-msgstr ""
+msgstr "Повторяющееся имя"
#: functions/functions.import.php:111
msgid "You must select one and one only Primary Phone number"
-msgstr ""
+msgstr "Необходимо задать единственный Основной номер телефона"
#: functions/functions.import.php:127
msgid "Import?"
-msgstr ""
+msgstr "Импортировать?"
#: functions/functions.import.php:127
msgid "Type"
-msgstr ""
+msgstr "Тип"
#: functions/functions.voip.php:449
msgid "online"
-msgstr ""
+msgstr "на связи"
#: functions/functions.voip.php:449
msgid "offline"
-msgstr ""
+msgstr "не на связи"
#: functions/functions.voip.php:528
msgid "Disconnected"
-msgstr ""
+msgstr "Разъединено"
#: functions/functions.voip.php:530
msgid "Reconnected"
-msgstr ""
+msgstr "Переподключился"
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
-msgstr ""
+msgstr " Внутренний тел.номер "
#: functions/functions.voip.php:587
msgid "Unregistered"
-msgstr ""
+msgstr "Не зарегистрировано"
#: functions/functions.voip.php:596
msgid "Registered"
-msgstr ""
+msgstr "Зарегистрировано"
#: functions/functions.freepbx.php:138
#, php-format
msgid "Reload failed because retrieve_conf encountered an error: %s"
msgstr ""
+"Перезагрузка не удалась, т.к. выполнение файла retrieve_conf привело к "
+"ошибке : %s"
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr ""
+"Выпонение файла retrieve_conf не удалось, изменения конфигурации НЕ применены"
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
+"Перезагрузка НЕ произведена, т.к. FreePBX не может подключиться к панели "
+"управления Asterisk ."
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
+"Невозможно перегрузить сервер панелей оператоов используя скрипт "
+"bounce_op.sh . Изменения в конфигурации могли не отразиться на экране "
+"панели."
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
-msgstr ""
+msgstr "Код выходя был %s с результатом : %s"
#: display/index.php:111
msgid "Display"
-msgstr ""
+msgstr "Показать"
#: client/index.php:72
msgid "There are no questionnaires assigned to you"
-msgstr ""
+msgstr "Для Вас анкеты не назначены"
#: client/index.php:123
msgid "You are not a valid client"
-msgstr ""
+msgstr "Пользователь с таким Логином и Паролем не существует"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
-msgstr ""
+msgstr "Не назначен повторный звонок"
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
-msgstr ""
+msgstr "Назначен повторный звонок"
#: include/limesurvey/quexs.php:987
msgid "All samples"
-msgstr ""
+msgstr "Все Списки контактов"
#: include/limesurvey/common_functions.php:6298
msgid "queXS: Number of call attempts"
-msgstr ""
+msgstr "CATI: Количество попыток звонков"
#: include/limesurvey/common_functions.php:6299
msgid "queXS: On appointment?"
-msgstr ""
+msgstr "CATI : Повторный звонок назначен?"
#: include/limesurvey/common_functions.php:6300
msgid "queXS: Percentage complete"
-msgstr ""
+msgstr "CATI: Завершено %"
#: include/limesurvey/common_functions.php:6301
msgid "queXS: Number of answering machine messages left"
-msgstr ""
+msgstr "CATI: Кол-во сообщений оставленных на Автоответчике"
#: include/limesurvey/optout.php:83
msgid "Self completion refused via opt out function"
-msgstr ""
+msgstr "Отказ от самостоятельго заполнения переход по по ссылке отказа"
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
-msgstr ""
+msgstr "Выбор Опроса и Списка контактов:"
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
-msgstr ""
+msgstr "Все Опросы и Списки контактов для этой Анкете"
#: include/limesurvey/admin/exportresults.php:257
msgid "Token"
-msgstr ""
+msgstr "Маркер доступа"
#: include/limesurvey/admin/exportresults.php:259
#: include/limesurvey/admin/exportresults.php:648
#: include/limesurvey/admin/exportresults.php:649
#: include/limesurvey/admin/exportresults.php:969
msgid "Case outcome"
-msgstr ""
+msgstr "Результат задания"
#: include/limesurvey/admin/exportresults.php:260
#: include/limesurvey/admin/exportresults.php:603
#: include/limesurvey/admin/exportresults.php:604
#: include/limesurvey/admin/exportresults.php:972
msgid "Number of call attempts"
-msgstr ""
+msgstr "Количетсво попыток звонков"
#: include/limesurvey/admin/exportresults.php:261
#: include/limesurvey/admin/exportresults.php:608
#: include/limesurvey/admin/exportresults.php:609
#: include/limesurvey/admin/exportresults.php:975
msgid "Number of answering machine messages left"
-msgstr ""
+msgstr "Количество сообшений оставленных на Автоответчике"
#: include/limesurvey/admin/exportresults.php:263
#: include/limesurvey/admin/exportresults.php:618
#: include/limesurvey/admin/exportresults.php:619
#: include/limesurvey/admin/exportresults.php:981
msgid "Total interview time over all calls (mins)"
-msgstr ""
+msgstr "Общее время интервью по всем звонкам (мин)"
#: include/limesurvey/admin/exportresults.php:264
#: include/limesurvey/admin/exportresults.php:623
#: include/limesurvey/admin/exportresults.php:624
#: include/limesurvey/admin/exportresults.php:984
msgid "Interview time for last call (mins)"
-msgstr ""
+msgstr "Продолжительность интервью последнего звонка (мин)"
#: include/limesurvey/admin/exportresults.php:265
#: include/limesurvey/admin/exportresults.php:628
#: include/limesurvey/admin/exportresults.php:629
#: include/limesurvey/admin/exportresults.php:987
msgid "Last number dialled"
-msgstr ""
+msgstr "Последний набранный номер"
#: include/limesurvey/admin/exportresults.php:266
#: include/limesurvey/admin/exportresults.php:633
#: include/limesurvey/admin/exportresults.php:634
#: include/limesurvey/admin/exportresults.php:990
msgid "Operator username for last call"
-msgstr ""
+msgstr "Имя оператора последнего звонка"
#: include/php-gettext-1.0.11/examples/pigs_dropin.php:77
#: include/php-gettext-1.0.11/examples/pigs_fallback.php:76
@@ -3635,3 +3788,29 @@ msgid ""
"This is how the story goes.\n"
"\n"
msgstr ""
+"Вот такие пироги...\n"
+"\n"
+
+#~ msgid "Sorting cases"
+#~ msgstr "Сортировка заданий"
+
+#~ msgid "Availability groups"
+#~ msgstr "Группы доступности времени звонка"
+
+#~ msgid "No availability groups"
+#~ msgstr "Не заданы группы доступности"
+
+#~ msgid "Availablity group"
+#~ msgstr "Группа доступности времени звонка"
+
+#~ msgid "Manage availablity groups"
+#~ msgstr "Управление группами доступности"
+
+#~ msgid "No availability group set"
+#~ msgstr "Группы доступности не заданы"
+
+#~ msgid "Modify availability"
+#~ msgstr "Изменить Доступность"
+
+#~ msgid "Save changes to availabilities"
+#~ msgstr "Сохранить изменения для доступности"
diff --git a/locale/sv/LC_MESSAGES/sv.mo b/locale/sv/LC_MESSAGES/sv.mo
index f3bd3beb..be6db8e1 100644
Binary files a/locale/sv/LC_MESSAGES/sv.mo and b/locale/sv/LC_MESSAGES/sv.mo differ
diff --git a/locale/sv/LC_MESSAGES/sv.po b/locale/sv/LC_MESSAGES/sv.po
index 8f8799b5..45ea3dd1 100644
--- a/locale/sv/LC_MESSAGES/sv.po
+++ b/locale/sv/LC_MESSAGES/sv.po
@@ -7,171 +7,165 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Swedish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "Historiklista intervjuer"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "Inga samtal genomförda"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "Datum/Tid"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "Intervju ID"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "Resultat"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "Kontaktperson"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "Ingen intervjuare"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
msgstr "Val kontaktperson - Telefonsvarare"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
msgstr "Lämna ej något meddelande, vänligen lägg på"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "Avsluta samtal med resultatet: Telefonsvarare"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
msgstr ""
"Avsluta samtal med resultatet: Lämnat meddelande på "
"telefonsvararen"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
msgstr ""
"Avsluta samtal med resultatet: Ej lämnat meddelande på "
"telefonsvararen"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "Tillbaka"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
msgstr "Val kontaktperson - Företagssvar"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
msgstr "Förlåt att jag störde, jag ringde fel nummer"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
msgstr "Avsluta samtal med resultatet: Företagsnummer"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "Find´Em"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "Återkontakt"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr ""
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr ""
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "Avsluta jobb"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr "Pil för att expandera eller dra ihop"
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "Kommentarer"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "Kontaktinformation"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "Samtalshistorik"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
msgstr "Skift"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "Återkontakter"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "Prestanda"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "Arbetshistoria"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "Projektinformation"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "Information"
@@ -179,9 +173,7 @@ msgstr "Information"
msgid "Stop REC"
msgstr "Stoppa inspelning"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "Spela in"
@@ -189,8 +181,7 @@ msgstr "Spela in"
msgid "Beginning recording..."
msgstr "Startar inspelning..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "Inte i ett samtal, påbörja inte en inspelning"
@@ -198,8 +189,8 @@ msgstr "Inte i ett samtal, påbörja inte en inspelning"
msgid "Begin the manual recording now..."
msgstr "Påbörja manuell inspelning nu..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "Starta inspelning"
@@ -211,37 +202,40 @@ msgstr "Stoppar inspelning..."
msgid "Stop the manual recording now..."
msgstr "Stoppa manuella inspelningen..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
msgstr "Val kontaktperson - Ring tillbaka"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "Du är: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr "% complete"
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
msgstr "Ja - Fortsätt där vi slutade"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
msgstr "Avsluta samtal med resultatet: Kontaktperson vägrade"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
msgstr "Val kontaktperson - Projektinledning"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "Ja, fortsätt"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
@@ -249,7 +243,8 @@ msgstr ""
"Avsluta samtal med resultatet: Ingen giltig kontaktperson (personen finns "
"inte tillgänglig på detta nummer)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr ""
@@ -287,7 +282,7 @@ msgstr "Lägg till denna kontaktperson"
msgid "Select phone number:"
msgstr "Välj telefonnummer"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "Ingen"
@@ -312,7 +307,7 @@ msgstr "Återkontakt:"
msgid "Accept appointment from "
msgstr "Acceptera återkontakt från "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " tills "
@@ -328,7 +323,8 @@ msgstr "den"
msgid "Appointment with myself only?"
msgstr ""
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr ""
@@ -336,7 +332,7 @@ msgstr ""
msgid "Call List"
msgstr "Samtalslista"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "Inga samtal gjorda"
@@ -344,12 +340,17 @@ msgstr "Inga samtal gjorda"
msgid "Number called"
msgstr "Uppringt nummer"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "Intervjuare"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "Ingen intervju"
@@ -357,15 +358,18 @@ msgstr "Ingen intervju"
msgid "Get a new case"
msgstr "Gör en ny intervju"
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "Slut"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "Ring/lägg på"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
msgstr "Handledare"
@@ -373,11 +377,12 @@ msgstr "Handledare"
msgid "Restart"
msgstr "Starta om"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "Tillgänglighet"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
msgstr ""
@@ -389,7 +394,11 @@ msgstr "Information"
msgid "Me"
msgstr ""
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr "Intervju ID"
@@ -401,8 +410,7 @@ msgstr ""
msgid "Supervisor not available"
msgstr ""
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr ""
@@ -418,57 +426,34 @@ msgstr ""
msgid "Supervisor chat is not enabled"
msgstr ""
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "Ring"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "Inte i samtal"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "Avsluta ärende"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr ""
"Tryck på samtalsknappen för att ringa numret för denna "
"återkontakt:"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "Nummer att ringa:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
@@ -477,61 +462,50 @@ msgstr ""
"VoIP genom att klicka en gång på den röda knappen som "
"säger \"VoIP Off\""
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "Välj telefonnummer att ringa:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "Det sista samtalet avslutade detta uppringningsförsök"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr ""
"Ange en anledning till detta resultat innan du avslutar detta ärende:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "Kräver kodande"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "Tilldela resultat"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "Error: Stäng fönster"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "Begär samtal"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "Kontaktperson svarade"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "Lägg på"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "Ringer"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "Besvarat"
@@ -559,7 +533,9 @@ msgid ""
"extension'"
msgstr ""
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr "Tillägg"
@@ -589,51 +565,44 @@ msgstr ""
msgid "Go back to work"
msgstr "Gå tillbaka till arbete"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "Status"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "Namn"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "Inga fler nummer att ringa"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
msgstr "Val kontaktperson - Introduktion"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "Företagsnummer"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "Telefonsvarare"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr "Avsluta samtal med resultatet: Inget svar (samtal eller upptagen) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "Avsluta samtal med resultatet: Råkade lägga på"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "Avsluta samtal med resultatet: Vägran av okänd person"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
@@ -641,8 +610,7 @@ msgstr ""
"Avsluta samtal med resultatet: Ingen giltig kontaktperson (personen finns "
"inte på detta nummer)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -656,8 +624,10 @@ msgstr "Skiftlista"
msgid "No shifts for this project"
msgstr "Inga skift för detta projekt"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "Start"
@@ -665,12 +635,14 @@ msgstr "Start"
msgid "No future shifts scheduled"
msgstr "Inga framtida skift schemalagda"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "Frågeformulär"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
msgstr "Kontaktperson val - Projekt slut"
@@ -678,50 +650,48 @@ msgstr "Kontaktperson val - Projekt slut"
msgid "Call automatically ended with outcome: Complete - End case"
msgstr "Samtal automatiskt slutade med resultatet: Klar - avsluta intervju"
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "Avsluta samtal med resultat: Klar"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "Lägg till kontaktperson"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "Gå tillbaka"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "Intervju ID:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "Kontaktperson:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "Var"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "Värde"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr ""
"Välj grupp för att begränsa tillgänglighet (Ingen vald "
"menas alltid tillgängliga)"
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr ""
"Tillgängligehtsgrupper inte definierade för denna enkät"
@@ -746,8 +716,7 @@ msgstr "Det finns ingen intervju tillgänglig just nu"
msgid "Reasons:"
msgstr "Orsak:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr ""
@@ -759,13 +728,12 @@ msgstr ""
msgid "Assigned questionnaires:"
msgstr "Tilldelade frågeformulär:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "ID"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "Beskrivning"
@@ -777,7 +745,10 @@ msgstr "Fel: Ingen enkät tilldelad till dig"
msgid "Assigned samples:"
msgstr ""
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "Kontakter"
@@ -854,34 +825,33 @@ msgstr "ANTAGLIGEN FEL: Rad kvot fylld för denna fråga"
msgid "Case Notes"
msgstr "Intervju kommentarer"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "Lägg till kommentar"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "Inga kommentarer"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "Kommentar"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
msgstr "Detta skift"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "Intervjuer"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "Intervjuer per timme"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "Detta projekt"
@@ -949,7 +919,9 @@ msgstr ""
msgid "Ending case now"
msgstr ""
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr "sekunder"
@@ -988,8 +960,7 @@ msgstr ""
msgid "You must supply a primary phone number"
msgstr ""
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr ""
@@ -1005,8 +976,7 @@ msgstr ""
msgid "Respondent Selection - Project Quota End"
msgstr "Kontaktperson val - Projekt kvot slut"
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr "Avsluta samtal med resultatet: Kvot fylld"
@@ -1026,11 +996,11 @@ msgstr ""
msgid "Email respondent for self completion"
msgstr ""
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr ""
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr ""
@@ -1050,11 +1020,13 @@ msgstr ""
msgid "Appointment List"
msgstr "Återkontaktlista"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "Inte ringd ännu"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr ""
@@ -1066,7 +1038,8 @@ msgstr "Inga återkontakter gjorda"
msgid "No future appointments scheduled"
msgstr "Inga framtida återkontakter schemalagda"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr ""
@@ -1106,13 +1079,11 @@ msgstr ""
"Vänta för detta samtal att svara innan du försöker ringa "
"handledaren"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
msgstr "Övervaka hela systemet intervju sortering"
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "Running process:"
@@ -1120,29 +1091,29 @@ msgstr "Running process:"
msgid "Kill signal sent: Please wait..."
msgstr "Död signal skickad: Vänligen vänta"
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr ""
"Processen är redan stängd (t.ex. server startas om) - klicka "
"här för att bekräfta"
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "Döda process"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr "Logg ID"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "Datum"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr "Loggpost"
@@ -1170,23 +1141,20 @@ msgstr ""
"prestandaproblem, är det inte rekommenderat att använda den "
"här funktionen."
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "Resultatet av förra processen kör (om någon)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "Samtalshistorik"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "Datum/Tid samtalstart"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "Sluttid"
@@ -1194,27 +1162,24 @@ msgstr "Sluttid"
msgid "Download Call History List"
msgstr "Ladda ned Samtalshistorik"
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "Tilldela klienter till enkäter"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr "Kvot rapport"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "Välj en enkät från listan nedan"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "Välj en kontakt frän listan nedan"
@@ -1222,13 +1187,11 @@ msgstr "Välj en kontakt frän listan nedan"
msgid "Total sample"
msgstr "Kontakter totalt"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "stängd"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "öppen"
@@ -1289,7 +1252,7 @@ msgstr ""
msgid "Import: Select columns to import"
msgstr "Importera: Välj kolumner att importera"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "Importera: Välj fil att importera"
@@ -1301,36 +1264,45 @@ msgstr "Välj CSV kontaktsfil för uppladdning"
msgid "Description for file:"
msgstr "Beskrivning för fil:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "Lägg till kontakter"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr "Sortering intervju som startar"
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
-msgstr "Sortera intervjuer"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
+msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr ""
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
-msgstr "Sortering klar"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
+msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr "Denna uppgift tog"
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr "Sortering klar"
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr "Misslyckades med att slutföra sortering"
@@ -1349,8 +1321,7 @@ msgstr ""
msgid "Modify case outcome"
msgstr "Ändra intervju resultat"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr "Redigera återkontakt"
@@ -1358,11 +1329,11 @@ msgstr "Redigera återkontakt"
msgid "Contact phone"
msgstr "Telefon"
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "Starttid"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "Sluttid"
@@ -1382,38 +1353,39 @@ msgstr "Visa återkontakter"
msgid "All appointments (with times displayed in your time zone)"
msgstr "Alla återkontakter (med visad tid i din tidszon)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "Radera"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "Redigera"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "Namn intervjuare"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "Namn kontaktperson"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "Efternamn"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "Nuvarande resultat"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "Intervjuare som ringde"
@@ -1421,9 +1393,7 @@ msgstr "Intervjuare som ringde"
msgid "No appointments in the future"
msgstr "Inga framtida återkontakter"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr "Kvothanterare"
@@ -1439,11 +1409,11 @@ msgstr "För tillfället inga kvoter"
msgid "Stop calling this sample when:"
msgstr "Sluta ring denna kontakt när:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "för"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr "Intervjuer"
@@ -1455,7 +1425,7 @@ msgstr "Kvot nådd"
msgid "Quota not yet reached"
msgstr "Kvot ännu inte nådd"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr "Aktuella intervjuer: "
@@ -1467,27 +1437,27 @@ msgstr "Välj en fråga för denna kvot"
msgid "Enter the details for creating the quota:"
msgstr "Ange informationen för att skapa kvoten:"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr "Fördefinierade värden för denna fråga:"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr "Ingen rubrik definierad för denna fråga:"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr "Kod värde"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr "Kodvärdet som ska jämföras"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr "Typen av jämförelse"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr "Antal intervjuer innan projektet ska brytas"
@@ -1506,8 +1476,7 @@ msgid ""
"case. This restricts which ones will be assigned to an operator."
msgstr ""
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr "Ändra intervjuar rättigheter"
@@ -1515,38 +1484,32 @@ msgstr "Ändra intervjuar rättigheter"
msgid "Operator Performance"
msgstr "Intervjuare statistik"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "Vänligen välj en enkät"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "Samtal"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "Totaltid"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr "Samtalstid"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr "Intervjuer/h"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr "Samtal/h"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr "Effektivitet"
@@ -1554,45 +1517,43 @@ msgstr "Effektivitet"
msgid "till"
msgstr "tills"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
msgstr "Vänligen välj ett skift"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
-msgstr "Tillgänglighetsgrupper"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
+msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr "Ändra"
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
-msgstr "Ingen tillgänglighet grupp"
-
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
-msgstr "Tillgänglighetsgrupper"
-
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
-msgstr "Lägg till tillgänglighetsgrupp"
-
-#: admin/availabilitygroup.php:126
-msgid "Availability group name"
+msgid "No time slots"
msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
+msgstr ""
+
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
+msgstr ""
+
+#: admin/availabilitygroup.php:126
+msgid "Time slot name"
+msgstr ""
+
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
msgstr "Skift rapport"
@@ -1636,7 +1597,7 @@ msgstr "Adminverktyg"
msgid "Questionnaire creation and management"
msgstr "Enkät framtagning och hantering"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
msgstr "Skapa nytt instrument"
@@ -1672,13 +1633,11 @@ msgstr "Tilldela kontakter till enkät"
msgid "Set values in questionnaire to pre fill"
msgstr "Ställ värden i enkäten att i förväg fylla"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr ""
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr "Intervjuare hanterare"
@@ -1686,7 +1645,8 @@ msgstr "Intervjuare hanterare"
msgid "Add operators to the system"
msgstr "Lägg till intervjuare i systemet"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "Tilldela intervjuare till enkäter"
@@ -1695,192 +1655,201 @@ msgid "Availability and shift management"
msgstr "Tillgänglighet och skift hanterare"
#: admin/index.php:73
-msgid "Manage availablity groups"
+msgid "Manage time slots"
msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr "Tlldela tillgänglighet till enkäter"
-#: admin/index.php:75
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
+
+#: admin/index.php:76
msgid "Shift management (add/remove)"
msgstr "Skift hanterare (lägg till/ta bort)"
-#: admin/index.php:77
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "Enkät framsteg"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr ""
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr "Kontakt samtalsförsöksrapport"
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr "Enkät resultat"
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "Skriv ut data"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "Intervjuare statistik"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "Klient hanterare"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "Lägg till klienter i systemet"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "Chefsfunktioner"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "Tilldela resultat till intervju"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "Sök kontakter"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr ""
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr ""
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "Systeminställningar"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr ""
-#: admin/index.php:101
+#: admin/index.php:102
msgid "Set default shift times"
msgstr ""
-#: admin/index.php:102
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr ""
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr ""
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
msgstr ""
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr ""
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr ""
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr ""
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr "Tilldela kontakter: Välj kontakter att tilldela"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr ""
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr "Max antal samtal (0 för oändligt)"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr "Max antal samtalsförsök (0 för oändligt)"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr ""
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr ""
"Välj från kontakter slumpmässigt? (annars i följd)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr "Kontakter valda för denna enkät"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr ""
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr ""
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr ""
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr "Klicka för att ta bort tilldelning"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
msgstr ""
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr ""
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr ""
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr "Lägg till kontakter till denna enkät"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "Välj kontakter:"
@@ -1896,22 +1865,33 @@ msgstr "Uppdatera callcenter information"
msgid "Assign availability group to questionnaire"
msgstr "Tilldela tillgänglighetsgrupper till enkäter"
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr ""
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr "Tillgängligehtsgrupper valda fär denna enkät"
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr "Lägg till en tillgänglighetsgrupp till denna enkät"
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr "Välj tillgänglighetsgrupp"
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr "Lägg till tillgänglighetsgrupp"
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1964,7 +1944,6 @@ msgid "Search within this sample"
msgstr "Sök inom dessa kontakter"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1976,32 +1955,27 @@ msgstr "Sök efter:"
msgid "Start search"
msgstr "Starta sökning"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr "Enkät resultat"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr "Resultat"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "Kontaktstatus"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr ""
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr ""
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "Nummer"
@@ -2029,35 +2003,32 @@ msgstr ""
msgid "Secs"
msgstr "sekunder"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "Rank"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr ""
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr "Vägran rank 1"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr ""
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr "Kontakt rank 1"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "Räkna"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr ""
@@ -2069,7 +2040,7 @@ msgstr "Intervjuar samtalsresultat"
msgid "No outcomes recorded for this sample"
msgstr ""
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr ""
@@ -2093,13 +2064,14 @@ msgstr ""
msgid "Shift"
msgstr "Skift"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
msgstr "Skift rapport"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr ""
@@ -2165,17 +2137,12 @@ msgstr ""
msgid "Add pre fill"
msgstr "Lägg till fyll i förvä"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr ""
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
msgstr ""
@@ -2185,17 +2152,15 @@ msgid ""
"Select which fields from this sample should be able to be viewed by operators"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr ""
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr ""
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr ""
@@ -2203,11 +2168,9 @@ msgstr ""
msgid "Save changes"
msgstr ""
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr ""
@@ -2221,11 +2184,13 @@ msgstr ""
msgid "Delete selected fields"
msgstr ""
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr "Aktivera"
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr "Inaktivera"
@@ -2233,7 +2198,8 @@ msgstr "Inaktivera"
msgid "Sample list"
msgstr ""
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr "Aktivera/inaktivera"
@@ -2288,8 +2254,7 @@ msgstr ""
msgid "Load bulk appointment CSV"
msgstr ""
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
msgstr "Lägg till skift"
@@ -2299,9 +2264,9 @@ msgid ""
"shifts"
msgstr ""
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr ""
@@ -2324,9 +2289,8 @@ msgstr ""
msgid "Select week of year"
msgstr ""
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "Dag"
@@ -2338,8 +2302,36 @@ msgstr "Använda skift?"
msgid "Submit changes"
msgstr "Skicka förändringar"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr ""
@@ -2355,9 +2347,7 @@ msgstr ""
msgid "Replicate: Where"
msgstr ""
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "som"
@@ -2365,8 +2355,7 @@ msgstr "som"
msgid "Sample only. Stop calling where"
msgstr "Endast kontakt. Sluta ring vart"
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr ""
@@ -2454,8 +2443,7 @@ msgid ""
"Could not add operator. There may already be an operator of this name:"
msgstr ""
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "Lägg till en intervjuare"
@@ -2471,8 +2459,7 @@ msgstr "Tilldela intervjuare till enkäter"
msgid "tool"
msgstr "verktyg"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2512,11 +2499,11 @@ msgstr ""
msgid "Will this operator be using VoIP?"
msgstr ""
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr ""
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr ""
@@ -2536,8 +2523,7 @@ msgstr "Är intervjuaren en chef"
msgid "Is the operator a refusal converter?"
msgstr "Är intervjuaren en vägran omvandlare"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "Lägg till användare"
@@ -2561,7 +2547,7 @@ msgstr "länkad till"
msgid "Error: Failed to insert questionnaire"
msgstr ""
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "Namn på enkät:"
@@ -2569,8 +2555,7 @@ msgstr "Namn på enkät:"
msgid "Select limesurvey instrument:"
msgstr "Välj enkätinstrument"
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
msgstr ""
@@ -2586,71 +2571,71 @@ msgstr ""
msgid "Use basic respondent selection text (below)"
msgstr ""
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
msgstr ""
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
msgstr ""
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr "Enkät för enbart test?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr ""
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr ""
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr ""
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr ""
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr ""
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
msgstr ""
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
msgstr ""
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
msgstr ""
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr ""
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr ""
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr ""
@@ -2667,13 +2652,11 @@ msgstr ""
msgid "Display extension status"
msgstr ""
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr ""
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr ""
@@ -2937,7 +2920,7 @@ msgstr "Lördagar"
msgid "String"
msgstr ""
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "Telefonnummer"
@@ -2969,7 +2952,7 @@ msgstr ""
msgid "Self completion email invitation sent"
msgstr ""
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr ""
@@ -2977,11 +2960,11 @@ msgstr ""
msgid "Cases by outcome"
msgstr "Intervjuer genom resultat"
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "Projekt"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "Aktuellt resultat:"
@@ -2998,30 +2981,34 @@ msgid "Cannot connect to VoIP Server"
msgstr ""
#: admin/availability.php:57
-msgid "No availability group set"
+msgid "No time slot group set"
msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
-msgstr "Ändra tillgänglighet"
+msgid "Modify time slots"
+msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr ""
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "Lägg till rad"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
-msgstr "Spara ändringar för tillgängligheter"
+msgid "Save changes to time slot group"
+msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
+msgid "Delete this time slot group"
msgstr ""
#: admin/clients.php:84
@@ -3032,8 +3019,7 @@ msgstr "Kunde ej lägga till"
msgid "There may already be a client of this name"
msgstr "Det kanske redan finns en klient med samma namn"
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "Lägg till klient"
@@ -3089,8 +3075,7 @@ msgstr ""
msgid "Save changes to shifts"
msgstr "Spara ändringar för skift"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr ""
@@ -3134,8 +3119,7 @@ msgstr ""
msgid "Download data for this questionnaire via Limesurvey"
msgstr ""
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr "Vänligen välj kontakter"
@@ -3179,8 +3163,7 @@ msgstr ""
msgid "Operator edit"
msgstr ""
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr "Användarnamn"
@@ -3318,24 +3301,32 @@ msgstr ""
msgid "Delete this questionnaire"
msgstr ""
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "Lägg till/Ta bort tidszoner"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr ""
"Klicka här för att ta bort ett tidszon från standardlistan"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr "Lägg till tidszon:"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "Tidszon: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr "Lägg till tidszon"
@@ -3355,8 +3346,7 @@ msgstr "Välj intervju"
msgid "Set an outcome for this call"
msgstr "Sätt resultat för detta samtal"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr "Sätt resultat"
@@ -3376,41 +3366,52 @@ msgstr "Samtalslista"
msgid "Change outcome"
msgstr "Ändra resultat"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr "Intervju kommentarer"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr "Ändra svar för detta ärende"
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr "Intervju inte påbörjad ännu i projektet"
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr "Sätt ärende resultat"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr "Uppdatera intervju tillgänglighet"
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
msgstr ""
"Tilldela denna intervju till en intervjuare (kommer upp som nästa "
"intervju för dom)"
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr "Tilldela denna intervju till en intervjuare"
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr ""
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "Intervju finns ej"
@@ -3418,19 +3419,19 @@ msgstr "Intervju finns ej"
msgid "Error: Cannot write to temporary directory"
msgstr ""
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "förmiddag"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "eftermiddag"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "kväll"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3534,10 +3535,8 @@ msgstr "Frånkopplad"
msgid "Reconnected"
msgstr "Kopplas om"
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr " Tillägg "
@@ -3588,13 +3587,11 @@ msgstr "Det finns inga frågeformulär som tilldelats dig"
msgid "You are not a valid client"
msgstr "Du har inte ett giltigt klientcertifikat"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr ""
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr ""
@@ -3623,10 +3620,16 @@ msgid "Self completion refused via opt out function"
msgstr ""
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr ""
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
msgstr ""
@@ -3701,6 +3704,9 @@ msgstr ""
#~ msgid "No operators"
#~ msgstr "Inga intervjuare"
+#~ msgid "Sorting cases"
+#~ msgstr "Sortera intervjuer"
+
#~ msgid "Randomly selected"
#~ msgstr "Slumpmässigt valda"
@@ -3709,3 +3715,18 @@ msgstr ""
#~ msgid "Max call attempts:"
#~ msgstr "Max antal samtalsförsök"
+
+#~ msgid "Modify availability"
+#~ msgstr "Ändra tillgänglighet"
+
+#~ msgid "Save changes to availabilities"
+#~ msgstr "Spara ändringar för tillgängligheter"
+
+#~ msgid "Availability groups"
+#~ msgstr "Tillgänglighetsgrupper"
+
+#~ msgid "No availability groups"
+#~ msgstr "Ingen tillgänglighet grupp"
+
+#~ msgid "Availablity group"
+#~ msgstr "Tillgänglighetsgrupper"
diff --git a/locale/updatepo.sh b/locale/updatepo.sh
new file mode 100755
index 00000000..f6251dfa
--- /dev/null
+++ b/locale/updatepo.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+#Source: http://stackoverflow.com/questions/7496156/gettext-how-to-update-po-and-pot-files-after-the-source-is-modified
+echo '' > messages.po # xgettext needs that file, and we need it empty
+cd ..
+find . -type f -iname "*.php" | xgettext --keyword='T_' -o locale/messages.po -j -f -
+cd locale
+msgmerge -N quexs.pot messages.po > new.po
+mv new.po quexs.pot
+rm messages.po
diff --git a/locale/zh/LC_MESSAGES/zh.mo b/locale/zh/LC_MESSAGES/zh.mo
index f85eead5..fbc6fd58 100644
Binary files a/locale/zh/LC_MESSAGES/zh.mo and b/locale/zh/LC_MESSAGES/zh.mo differ
diff --git a/locale/zh/LC_MESSAGES/zh.po b/locale/zh/LC_MESSAGES/zh.po
index 3a853e50..ee95fe3c 100644
--- a/locale/zh/LC_MESSAGES/zh.po
+++ b/locale/zh/LC_MESSAGES/zh.po
@@ -7,168 +7,162 @@ msgid ""
msgstr ""
"Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2014-03-17 10:47+1000\n"
-"PO-Revision-Date: 2014-05-09 09:17+0000\n"
-"Last-Translator: Shihui Yin \n"
+"POT-Creation-Date: 2014-12-19 10:21+1000\n"
+"PO-Revision-Date: 2014-09-01 03:16+0000\n"
+"Last-Translator: Daniel lee \n"
"Language-Team: Chinese (Simplified) \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2014-07-14 01:01+0000\n"
-"X-Generator: Launchpad (build 17111)\n"
+"X-Launchpad-Export-Date: 2015-02-09 00:52+0000\n"
+"X-Generator: Launchpad (build 17331)\n"
"Language: zh\n"
#: callhistory.php:56
msgid "Case History List"
msgstr "访问历史记录"
-#: callhistory.php:79
+#: callhistory.php:79 admin/callhistory.php:81
msgid "No calls ever made"
msgstr "没有打过电话"
-#: callhistory.php:83
-#: calllist.php:84
+#: callhistory.php:83 calllist.php:84 casenote.php:110
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Date/Time"
msgstr "日期/时间"
-#: callhistory.php:83
+#: callhistory.php:83 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/displayappointments.php:243 admin/extensionstatus.php:200
+#: admin/casesbyoutcome.php:87 include/limesurvey/admin/exportresults.php:258
+#: include/limesurvey/admin/exportresults.php:643
+#: include/limesurvey/admin/exportresults.php:644
+#: include/limesurvey/admin/exportresults.php:966
msgid "Case ID"
msgstr "访问编号"
-#: callhistory.php:83
-#: index_interface2.php:212
-#: calllist.php:84
+#: callhistory.php:83 index_interface2.php:215 calllist.php:84
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/outcomes.php:155 admin/outcomes.php:174 admin/outcomes.php:208
+#: admin/outcomes.php:261 admin/casestatus.php:111 admin/supervisor.php:320
+#: client/index.php:91 client/index.php:110
msgid "Outcome"
msgstr "结果"
-#: callhistory.php:83
+#: callhistory.php:83 appointmentlist.php:90 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:179
msgid "Respondent"
msgstr "受访者"
-#: callhistory.php:87
+#: callhistory.php:87 status.php:59 admin/callhistory.php:118
+#: admin/casesbyoutcome.php:94
msgid "No operator"
msgstr "没有电话调查员"
-#: rs_answeringmachine_interface2.php:64
-#: rs_answeringmachine.php:64
+#: rs_answeringmachine_interface2.php:64 rs_answeringmachine.php:64
msgid "Respondent Selection - Answering machine"
-msgstr "调查对象选项 - 电话答录机"
+msgstr "受访者筛选 - 电话答录机"
-#: rs_answeringmachine_interface2.php:78
-#: rs_answeringmachine.php:78
+#: rs_answeringmachine_interface2.php:78 rs_answeringmachine.php:78
msgid "Do not leave a message, please hang up"
-msgstr "请挂机,不要留言。"
+msgstr "不留言,直接挂机"
-#: rs_answeringmachine_interface2.php:81
-#: rs_answeringmachine.php:81
+#: rs_answeringmachine_interface2.php:81 rs_answeringmachine.php:81
msgid "End call with outcome: Business answering machine"
msgstr "结束电话:业务电话答录机"
-#: rs_answeringmachine_interface2.php:86
-#: rs_answeringmachine.php:86
+#: rs_answeringmachine_interface2.php:86 rs_answeringmachine.php:86
msgid "End call with outcome: Answering machine Message left"
-msgstr "结束电话:已留电话答录机留言"
+msgstr "结束电话:已给答录机留言"
-#: rs_answeringmachine_interface2.php:90
-#: rs_answeringmachine.php:90
+#: rs_answeringmachine_interface2.php:90 rs_answeringmachine.php:90
msgid "End call with outcome: Answering machine No message left"
-msgstr "结束电话:未留电话答录机留言"
+msgstr "结束电话:未给答录机留言"
-#: rs_answeringmachine_interface2.php:91
-#: rs_business_interface2.php:62
-#: rs_callback_interface2.php:89
-#: rs_project_intro.php:85
-#: rs_answeringmachine.php:91
+#: rs_answeringmachine_interface2.php:91 rs_business_interface2.php:62
+#: rs_callback_interface2.php:89 rs_project_intro.php:85
+#: rs_answeringmachine.php:91 rs_project_intro_interface2.php:85
+#: rs_callback.php:89 rs_business.php:62
msgid "Go Back"
msgstr "返回"
-#: rs_business_interface2.php:55
+#: rs_business_interface2.php:55 rs_business.php:55
msgid "Respondent Selection - Business answers"
-msgstr "调查对象选项 - 业务应答"
+msgstr "受访者筛选-商业电话"
-#: rs_business_interface2.php:59
+#: rs_business_interface2.php:59 rs_business.php:59
msgid "Sorry to bother you, I have called the wrong number"
-msgstr "对不起,打扰了,我拨错电话号码了"
+msgstr "对不起,打扰了,我拨错号码了"
-#: rs_business_interface2.php:61
+#: rs_business_interface2.php:61 rs_business.php:61
msgid "End call with outcome: Business number"
-msgstr "结束电话:业务电话号码"
+msgstr "结束电话:业务号码"
-#: index_interface2.php:195
-#: waitnextcase_interface2.php:49
-#: index.php:145
+#: index_interface2.php:198 waitnextcase_interface2.php:49 index.php:145
+#: selectextension.php:88
msgid "queXS"
msgstr "queXS"
-#: index_interface2.php:213
-#: appointment.php:121
-#: index.php:163
+#: index_interface2.php:216 appointment.php:121 index.php:163
+#: status_interface2.php:176
msgid "Appointment"
msgstr "预约"
-#: index_interface2.php:214
-#: index.php:166
+#: index_interface2.php:217 index.php:166 email.php:278 email.php:282
+#: email.php:288 email.php:309 email.php:339
msgid "Email"
msgstr "邮件"
-#: index_interface2.php:215
-#: index.php:167
+#: index_interface2.php:218 index.php:167 referral.php:198
msgid "Referral"
msgstr "被引荐的受访者"
-#: index_interface2.php:216
-#: waitnextcase_interface2.php:55
+#: index_interface2.php:219 waitnextcase_interface2.php:55
+#: call_interface2.php:313 call_interface2.php:315 call_interface2.php:431
+#: call_interface2.php:436 call_interface2.php:452 call_interface2.php:458
+#: call.php:276 call.php:278 call.php:394 call.php:399 call.php:415
+#: call.php:421
msgid "End work"
msgstr "结束工作"
-#: index_interface2.php:294
-#: index.php:169
+#: index_interface2.php:310 index.php:169
msgid "Arrow for expanding or contracting"
msgstr "伸缩轴"
-#: index_interface2.php:306
-#: index.php:220
+#: index_interface2.php:322 index.php:223
msgid "Notes"
msgstr "备注"
-#: index_interface2.php:314
-#: index.php:238
+#: index_interface2.php:330 index.php:241 contactdetails.php:70
msgid "Contact details"
msgstr "联络详细信息"
-#: index_interface2.php:323
-#: index.php:247
+#: index_interface2.php:339 index.php:250 admin/index.php:95
msgid "Call history"
msgstr "呼叫历史"
-#: index_interface2.php:332
-#: index.php:256
+#: index_interface2.php:348 index.php:259 admin/outcomes.php:273
msgid "Shifts"
-msgstr "时区转换"
+msgstr "调查时段"
-#: index_interface2.php:341
-#: index.php:265
+#: index_interface2.php:357 index.php:268 admin/displayappointments.php:227
+#: admin/databasestrings.php:68 admin/supervisor.php:281
msgid "Appointments"
msgstr "预约"
-#: index_interface2.php:350
-#: index.php:274
+#: index_interface2.php:366 index.php:277 performance.php:61
+#: admin/index.php:85
msgid "Performance"
msgstr "表现"
-#: index_interface2.php:358
-#: index.php:282
+#: index_interface2.php:374 index.php:285
msgid "Work history"
msgstr "工作历史"
-#: index_interface2.php:366
-#: project_info.php:61
-#: index.php:290
+#: index_interface2.php:382 project_info.php:61 index.php:293
msgid "Project information"
msgstr "项目信息"
-#: index_interface2.php:375
-#: index.php:306
+#: index_interface2.php:391 index.php:309
msgid "Info"
msgstr "信息"
@@ -176,9 +170,7 @@ msgstr "信息"
msgid "Stop REC"
msgstr "停止录音"
-#: record.php:56
-#: record.php:79
-#: record.php:96
+#: record.php:56 record.php:79 record.php:96
msgid "Record"
msgstr "录音"
@@ -186,8 +178,7 @@ msgstr "录音"
msgid "Beginning recording..."
msgstr "开始录音..."
-#: record.php:69
-#: record.php:97
+#: record.php:69 record.php:97
msgid "Not on a call, so not beginning a recording"
msgstr "未接通,所以不能开始录音"
@@ -195,8 +186,8 @@ msgstr "未接通,所以不能开始录音"
msgid "Begin the manual recording now..."
msgstr "启动手动录音..."
-#: record.php:78
-#: index.php:168
+#: record.php:78 index.php:168 call_interface2.php:196 call_interface2.php:261
+#: call.php:206 call.php:224 email.php:273
msgid "Start REC"
msgstr "开始录音"
@@ -208,43 +199,47 @@ msgstr "正在停止录音..."
msgid "Stop the manual recording now..."
msgstr "停止手动录音..."
-#: rs_callback_interface2.php:66
+#: rs_callback_interface2.php:66 rs_callback.php:66
msgid "Respondent Selection - Call back"
-msgstr "受访者选项 - 稍后再拨"
+msgstr "受访者筛选-稍后回拨"
-#: rs_callback_interface2.php:80
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "You are: "
msgstr "您是: "
-#: rs_callback_interface2.php:80
-#, php-format
+#: rs_callback_interface2.php:80 rs_callback.php:80
msgid "% complete"
msgstr ""
-#: rs_callback_interface2.php:87
+#: rs_callback_interface2.php:87 rs_callback.php:87
msgid "Yes - Continue where we left off"
-msgstr "是的 - 继续上次调查"
+msgstr "是的 - 继续上次没说完的"
-#: rs_callback_interface2.php:88
-#: rs_project_intro.php:81
+#: rs_callback_interface2.php:88 rs_project_intro.php:81
+#: rs_project_intro_interface2.php:81 rs_callback.php:88 rs_intro.php:122
+#: rs_intro_interface2.php:122
msgid "End call with outcome: Refusal by respondent"
-msgstr "结束电话:调查对象拒绝接受电话调查"
+msgstr "结束电话:受访者拒访"
-#: rs_project_intro.php:59
+#: rs_project_intro.php:59 rs_project_intro_interface2.php:59
msgid "Respondent Selection - Project Introduction"
-msgstr "选择调查对象 - 项目介绍"
+msgstr "受访者筛选-项目介绍"
-#: rs_project_intro.php:79
+#: rs_project_intro.php:79 rs_project_intro_interface2.php:79 rs_intro.php:92
+#: rs_intro.php:98 rs_intro.php:106 rs_intro.php:112
+#: rs_intro_interface2.php:92 rs_intro_interface2.php:98
+#: rs_intro_interface2.php:106 rs_intro_interface2.php:112
msgid "Yes - Continue"
msgstr "是 - 请继续"
-#: rs_project_intro.php:82
+#: rs_project_intro.php:82 rs_project_intro_interface2.php:82
msgid ""
"End call with outcome: No eligible respondent (person not available on this "
"number)"
msgstr "结束电话:没有符合条件的调查对象(此号码无人接听)"
-#: rs_project_intro.php:83
+#: rs_project_intro.php:83 rs_project_intro_interface2.php:83 rs_intro.php:125
+#: rs_intro_interface2.php:125
msgid ""
"End call with outcome: Out of sample (already completed in another mode)"
msgstr "结束电话:样本用尽(样本已经采用其他方式访问完成)"
@@ -268,7 +263,7 @@ msgstr "选择一个受访者"
#: appointment.php:134
msgid "Create new respondent:"
-msgstr "寻找新的受访者:"
+msgstr "创建新受访者"
#: appointment.php:137
msgid "Add this respondent"
@@ -278,7 +273,7 @@ msgstr "增加该受访者"
msgid "Select phone number:"
msgstr "选择电话号码:"
-#: appointment.php:164
+#: appointment.php:164 functions/functions.calendar.php:197
msgid "None"
msgstr "无"
@@ -302,7 +297,7 @@ msgstr "预约:"
msgid "Accept appointment from "
msgstr "接受来自 的预约 "
-#: appointment.php:208
+#: appointment.php:208 functions/functions.calendar.php:328
msgid " till "
msgstr " 到 "
@@ -318,7 +313,8 @@ msgstr "在"
msgid "Appointment with myself only?"
msgstr "只与我预约?"
-#: appointment.php:219
+#: appointment.php:219 include/limesurvey/qanda.php:1701
+#: include/limesurvey/qanda.php:1921
msgid "Schedule Appointment"
msgstr "预约"
@@ -326,7 +322,7 @@ msgstr "预约"
msgid "Call List"
msgstr "呼叫清单"
-#: calllist.php:80
+#: calllist.php:80 admin/supervisor.php:316
msgid "No calls made"
msgstr "没有打过电话"
@@ -334,42 +330,51 @@ msgstr "没有打过电话"
msgid "Number called"
msgstr "已呼叫的号码"
-#: calllist.php:84
+#: calllist.php:84 casenote.php:110 performance.php:78 performance.php:85
+#: appointmentlist.php:90 admin/callhistory.php:96 admin/callhistory.php:111
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/shiftreport.php:104 admin/outcomes.php:187
+#: admin/extensionstatus.php:200 admin/operatorlist.php:293
+#: admin/supervisor.php:320 admin/supervisor.php:361
msgid "Operator"
msgstr "电话调查员"
-#: calllist.php:88
-#: project_info.php:82
+#: calllist.php:88 project_info.php:82 status_interface2.php:231
+#: casenote.php:113 status.php:134
msgid "No case"
msgstr "无受访者"
#: waitnextcase_interface2.php:54
msgid "Get a new case"
-msgstr "调取新访问"
+msgstr "调取新样本"
-#: index.php:162
+#: index.php:162 shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "End"
msgstr "结束"
-#: index.php:164
+#: index.php:164 nocallavailable.php:83
msgid "Call/Hangup"
msgstr "呼叫/挂机"
-#: index.php:165
+#: index.php:165 supervisorchat.php:79 supervisor.php:52
msgid "Supervisor"
-msgstr "调查督导员"
+msgstr "督导员"
#: index.php:170
msgid "Restart"
msgstr "重新开始"
-#: index.php:228
+#: index.php:231 availability.php:56
msgid "Availability"
msgstr "可选时间"
-#: index.php:298
+#: index.php:301 supervisorchat.php:56 admin/index.php:105
+#: admin/supervisorchat.php:61
msgid "Supervisor chat"
-msgstr "调查督导员聊天室"
+msgstr "与督导通话"
#: info.php:56
msgid "Information"
@@ -379,7 +384,11 @@ msgstr "信息"
msgid "Me"
msgstr "我"
-#: supervisorchat.php:82
+#: supervisorchat.php:82 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:185 admin/bulkappointment.php:209
+#: admin/bulkappointment.php:230 admin/casestatus.php:111
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577
msgid "Case id"
msgstr "访问编号"
@@ -391,8 +400,7 @@ msgstr "调查督导员在线"
msgid "Supervisor not available"
msgstr "调查督导员离开"
-#: supervisorchat.php:90
-#: supervisorchat.php:93
+#: supervisorchat.php:90 supervisorchat.php:93
msgid "Message"
msgstr "留言"
@@ -408,114 +416,80 @@ msgstr "从"
msgid "Supervisor chat is not enabled"
msgstr "调查督导员聊天室未启用"
-#: call_interface2.php:181
-#: call_interface2.php:210
-#: call_interface2.php:242
-#: call_interface2.php:246
-#: call_interface2.php:264
-#: call_interface2.php:295
-#: call_interface2.php:343
-#: call_interface2.php:414
-#: call.php:191
-#: call.php:211
-#: call.php:227
-#: call.php:258
-#: call.php:306
-#: call.php:377
+#: call_interface2.php:181 call_interface2.php:210 call_interface2.php:242
+#: call_interface2.php:246 call_interface2.php:264 call_interface2.php:295
+#: call_interface2.php:343 call_interface2.php:414 call.php:191 call.php:211
+#: call.php:227 call.php:258 call.php:306 call.php:377
msgid "Call"
msgstr "呼叫"
-#: call_interface2.php:302
-#: call.php:265
+#: call_interface2.php:302 call.php:265
msgid "Not on a call"
msgstr "呼叫未接通"
-#: call_interface2.php:314
-#: call_interface2.php:430
-#: call_interface2.php:435
-#: call_interface2.php:451
-#: call_interface2.php:457
-#: call.php:277
-#: call.php:393
-#: call.php:398
-#: call.php:414
-#: call.php:420
+#: call_interface2.php:314 call_interface2.php:430 call_interface2.php:435
+#: call_interface2.php:451 call_interface2.php:457 call.php:277 call.php:393
+#: call.php:398 call.php:414 call.php:420
msgid "End case"
msgstr "结束访问"
-#: call_interface2.php:339
-#: call.php:302
+#: call_interface2.php:339 call.php:302
msgid "Press the call button to dial the number for this appointment:"
msgstr "拨打该预约电话请按呼叫键:"
-#: call_interface2.php:342
-#: call.php:305
+#: call_interface2.php:342 call.php:305
msgid "Number to call:"
msgstr "呼叫号码:"
-#: call_interface2.php:346
-#: call_interface2.php:417
-#: call.php:309
-#: call.php:380
+#: call_interface2.php:346 call_interface2.php:417 call.php:309 call.php:380
msgid ""
"Your VoIP extension is not enabled. Please close this window and enable VoIP "
"by clicking once on the red button that says 'VoIP Off'"
msgstr "您的VoIP分机未启用。请关闭窗口并点击一下标有‘VoIP关闭’字样的红色按键以启用VoIP"
-#: call_interface2.php:407
-#: call.php:370
+#: call_interface2.php:407 call.php:370
msgid "Select phone number to dial:"
msgstr "选择所拨电话号码:"
-#: call_interface2.php:422
-#: call_interface2.php:456
-#: call.php:385
-#: call.php:419
+#: call_interface2.php:422 call_interface2.php:456 call.php:385 call.php:419
msgid "The last call completed this call attempt"
msgstr "上次呼叫完成了本次呼叫尝试"
-#: call_interface2.php:426
-#: call_interface2.php:449
-#: call.php:389
-#: call.php:412
+#: call_interface2.php:426 call_interface2.php:449 call.php:389 call.php:412
msgid "Enter a reason for this outcome before completing this case:"
msgstr "完成本次访问前请输入此次结果的成因:"
-#: call_interface2.php:467
-#: call.php:448
+#: call_interface2.php:467 call.php:448 admin/extensionstatus.php:170
msgid "Requires coding"
msgstr "需要区号"
-#: call_interface2.php:470
-#: call.php:451
+#: call_interface2.php:470 call.php:451
msgid "Assign outcome"
msgstr "分派结果"
-#: call_interface2.php:474
-#: call.php:455
+#: call_interface2.php:474 call.php:455
msgid "Error: Close window"
msgstr "错误:关闭窗口"
-#: call.php:427
+#: call.php:427 admin/extensionstatus.php:170
msgid "Requesting call"
msgstr "需要呼叫"
-#: call.php:428
-#: call.php:435
+#: call.php:428 call.php:435
msgid "Call Answered"
msgstr "呼叫已接通"
-#: call.php:431
-#: call.php:438
-#: call.php:445
+#: call.php:431 call.php:438 call.php:445 functions/functions.voip.php:577
msgid "Hangup"
msgstr "挂机"
-#: call.php:434
+#: call.php:434 status.php:118 admin/extensionstatus.php:170
+#: functions/functions.voip.php:553
msgid "Ringing"
msgstr "响铃"
-#: call.php:441
+#: call.php:441 status.php:122 admin/extensionstatus.php:170
+#: functions/functions.voip.php:565
msgid "Answered"
msgstr "接通"
@@ -543,7 +517,9 @@ msgid ""
"extension'"
msgstr "请从以下列表中选择您的分机并点击“选择分机”"
-#: selectextension.php:108
+#: selectextension.php:108 status.php:99 admin/extensionstatus.php:200
+#: admin/operatorlist.php:167 admin/operatorlist.php:293
+#: functions/functions.voip.php:449
msgid "Extension"
msgstr "分机"
@@ -571,58 +547,50 @@ msgstr "您已注销分机"
msgid "Go back to work"
msgstr "返回工作"
-#: status_interface2.php:70
+#: status_interface2.php:70 status.php:58 status.php:77
+#: admin/quotareport.php:284 admin/outcomes.php:97 admin/outcomes.php:241
msgid "Status"
msgstr "状态"
-#: status_interface2.php:79
+#: status_interface2.php:79 functions/functions.import.php:127
msgid "Name"
msgstr "姓名"
-#: status_interface2.php:225
-#: status_interface2.php:228
+#: status_interface2.php:225 status_interface2.php:228
msgid "No more numbers to call"
msgstr "无可呼叫电话号码"
-#: rs_intro.php:65
-#: rs_intro_interface2.php:65
+#: rs_intro.php:65 rs_intro_interface2.php:65
msgid "Respondent Selection - Introduction"
-msgstr "受访者选项 - 中心介绍"
+msgstr "受访者筛选 - 介绍"
-#: rs_intro.php:117
-#: rs_intro_interface2.php:117
+#: rs_intro.php:117 rs_intro_interface2.php:117
msgid "Business number"
msgstr "业务电话号码"
-#: rs_intro.php:118
-#: rs_intro_interface2.php:118
+#: rs_intro.php:118 rs_intro_interface2.php:118
msgid "Answering machine"
msgstr "电话答录机"
-#: rs_intro.php:119
-#: rs_intro_interface2.php:119
+#: rs_intro.php:119 rs_intro_interface2.php:119
msgid "End call with outcome: No answer (ring out or busy) "
msgstr "结束电话:无应答(无人接听或线路繁忙) "
-#: rs_intro.php:120
-#: rs_intro_interface2.php:120
+#: rs_intro.php:120 rs_intro_interface2.php:120
msgid "End call with outcome: Accidental hang up"
msgstr "结束电话:掉线"
-#: rs_intro.php:121
-#: rs_intro_interface2.php:121
+#: rs_intro.php:121 rs_intro_interface2.php:121
msgid "End call with outcome: Refusal by unknown person"
msgstr "结束电话:非受访者本人拒绝接受访问"
-#: rs_intro.php:123
-#: rs_intro_interface2.php:123
+#: rs_intro.php:123 rs_intro_interface2.php:123
msgid ""
"End call with outcome: No eligible respondent (person never available on "
"this number)"
msgstr "结束电话:无合适的受访者(此电话号码联系人没时间参与调查)"
-#: rs_intro.php:124
-#: rs_intro_interface2.php:124
+#: rs_intro.php:124 rs_intro_interface2.php:124
msgid ""
"End call with outcome: Non contact (person not currently available on this "
"number: no appointment made)"
@@ -630,76 +598,78 @@ msgstr "结束电话:无法联系(此电话号码联系人目前没空:没
#: shifts.php:57
msgid "Shift List"
-msgstr "时区转换列表"
+msgstr "可用调查时段"
#: shifts.php:80
msgid "No shifts for this project"
-msgstr "该项目无时区转换"
+msgstr "无可用的调查时段"
-#: shifts.php:82
-#: shifts.php:103
+#: shifts.php:82 shifts.php:103 appointmentlist.php:90
+#: admin/displayappointments.php:243 admin/addshift.php:238
+#: admin/availability.php:144 admin/shifttemplate.php:118
+#: admin/callrestrict.php:118 admin/supervisor.php:297
msgid "Start"
msgstr "开始"
#: shifts.php:101
msgid "No future shifts scheduled"
-msgstr "无时区转换时刻表"
+msgstr "还未设置调查时段计划"
-#: shifts.php:103
-#: nocaseavailable.php:138
+#: shifts.php:103 nocaseavailable.php:138 admin/callhistory.php:96
+#: admin/callhistory.php:111 admin/displayappointments.php:243
+#: admin/assignsample.php:138 admin/casestatus.php:207
+#: admin/questionnairelist.php:396 admin/supervisor.php:297
msgid "Questionnaire"
msgstr "问卷"
-#: rs_project_end_interface2.php:62
+#: rs_project_end_interface2.php:62 rs_project_end.php:71
msgid "Respondent Selection - Project end"
-msgstr "受访者选项 - 项目结束"
+msgstr "受访者筛选 - 项目结束"
#: rs_project_end_interface2.php:80
msgid "Call automatically ended with outcome: Complete - End case"
msgstr "自动结束电话:完成 - 结束访问"
-#: rs_project_end_interface2.php:85
+#: rs_project_end_interface2.php:85 rs_project_end.php:93
msgid "End call with outcome: Complete"
msgstr "结束电话:完成"
-#: contactdetails.php:90
-#: contactdetails.php:128
-#: respondent.php:94
-#: respondent.php:132
+#: contactdetails.php:90 contactdetails.php:128 respondent.php:94
+#: respondent.php:132 functions/functions.calendar.php:215
msgid "Add respondent"
msgstr "添加受访者"
-#: contactdetails.php:92
-#: respondent.php:96
+#: contactdetails.php:92 respondent.php:96 casenote.php:69
+#: admin/assignsample.php:141 admin/samplelist.php:128
+#: admin/samplelist.php:180 admin/samplelist.php:217
+#: admin/extensionstatus.php:143 admin/availability.php:109
+#: admin/operatorlist.php:145 admin/questionnairelist.php:328
+#: admin/questionnairelist.php:382
msgid "Go back"
msgstr "返回"
-#: contactdetails.php:98
-#: respondent.php:102
+#: contactdetails.php:98 respondent.php:102 admin/supervisor.php:152
msgid "Case id:"
msgstr "访问编号:"
-#: contactdetails.php:99
-#: respondent.php:103
+#: contactdetails.php:99 respondent.php:103
msgid "Respondent:"
msgstr "受访者:"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Var"
msgstr "变量"
-#: contactdetails.php:163
-#: respondent.php:171
+#: contactdetails.php:163 respondent.php:171
msgid "Value"
msgstr "值"
-#: availability.php:123
+#: availability.php:123 admin/supervisor.php:417
msgid ""
"Select groups to limit availability (Selecting none means always available)"
msgstr "选择分组以限定可选时间(不选表示随时都可以)"
-#: availability.php:143
+#: availability.php:143 admin/supervisor.php:440
msgid "Availability groups not defined for this questionnaire"
msgstr "本次调查问卷未定义可选时间分组"
@@ -723,8 +693,7 @@ msgstr "当前无可用访问"
msgid "Reasons:"
msgstr "原因:"
-#: nocaseavailable.php:80
-#: nocaseavailable.php:91
+#: nocaseavailable.php:80 nocaseavailable.php:91 admin/operatorlist.php:172
msgid "Enabled"
msgstr "已启用"
@@ -736,13 +705,12 @@ msgstr "未启用"
msgid "Assigned questionnaires:"
msgstr "被分派的问卷是:"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113
msgid "ID"
msgstr "序号"
-#: nocaseavailable.php:91
-#: nocaseavailable.php:113
+#: nocaseavailable.php:91 nocaseavailable.php:113 admin/quota.php:207
+#: admin/samplelist.php:132 admin/quotarow.php:294
msgid "Description"
msgstr "描述"
@@ -754,7 +722,10 @@ msgstr "错误:您未被分派问卷"
msgid "Assigned samples:"
msgstr "被分派的样本是:"
-#: nocaseavailable.php:113
+#: nocaseavailable.php:113 admin/quotareport.php:284
+#: admin/assignsample.php:139 admin/assignsample.php:203
+#: admin/outcomes.php:135 admin/outcomes.php:224 admin/samplelist.php:279
+#: admin/casestatus.php:111 admin/casestatus.php:209 admin/supervisor.php:274
msgid "Sample"
msgstr "样本"
@@ -764,19 +735,19 @@ msgstr "错误:问卷未分派样本"
#: nocaseavailable.php:135
msgid "Current shifts available:"
-msgstr "当前可用时区转换:"
+msgstr "当前可用调查时段:"
#: nocaseavailable.php:138
msgid "Shift start"
-msgstr "开始时区转换"
+msgstr "可用调查时段开始"
#: nocaseavailable.php:138
msgid "Shift end"
-msgstr "时区转换结束"
+msgstr "可用调查时段结束"
#: nocaseavailable.php:141
msgid "ERROR: No shifts at this time"
-msgstr "错误:当前无时区转换"
+msgstr "错误:当前没有调查时段(没有安排调查员轮班)"
#: nocaseavailable.php:161
msgid "Call restrictions:"
@@ -827,34 +798,33 @@ msgstr "可能错误:该问题达到行指标"
msgid "Case Notes"
msgstr "访问备注"
-#: casenote.php:66
-#: casenote.php:105
+#: casenote.php:66 casenote.php:105 admin/supervisor.php:368
msgid "Add note"
msgstr "添加备注"
-#: casenote.php:108
+#: casenote.php:108 admin/supervisor.php:359
msgid "No notes"
msgstr "无备注"
-#: casenote.php:110
+#: casenote.php:110 admin/bulkappointment.php:230 admin/supervisor.php:361
msgid "Note"
msgstr "备注"
-#: performance.php:77
+#: performance.php:77 admin/operatorperformance.php:103
msgid "This shift"
-msgstr "该时区转换"
+msgstr "当前调查时段"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85 admin/quotareport.php:284
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
+#: admin/outcomes.php:297
msgid "Completions"
msgstr "完成调查数"
-#: performance.php:78
-#: performance.php:85
+#: performance.php:78 performance.php:85
msgid "Completions per hour"
msgstr "每小时完成调查数"
-#: performance.php:84
+#: performance.php:84 admin/operatorperformance.php:80
msgid "This project"
msgstr "本次调查项目"
@@ -922,7 +892,9 @@ msgstr "将结束访问"
msgid "Ending case now"
msgstr "正在结束访问"
-#: nocallavailable.php:203
+#: nocallavailable.php:203 admin/systemsortprocess.php:194
+#: admin/systemsortprocess.php:196 admin/systemsortprocess.php:323
+#: admin/systemsortprocess.php:325
msgid "seconds"
msgstr "秒"
@@ -961,8 +933,7 @@ msgstr "创建被引荐受访者的访问失败 - 请检查您的输入并重试
msgid "You must supply a primary phone number"
msgstr "您必须提供一个主电话号码"
-#: referral.php:209
-#: referral.php:243
+#: referral.php:209 referral.php:243
msgid "Create referral"
msgstr "创建被引荐的受访者"
@@ -976,10 +947,9 @@ msgstr "被引荐的受访者没时间接受本次问卷调查"
#: rs_quota_end.php:61
msgid "Respondent Selection - Project Quota End"
-msgstr "受访者选项 - 项目配额结束"
+msgstr "受访者筛选 - 项目配额结束"
-#: rs_quota_end.php:72
-#: rs_quota_end.php:78
+#: rs_quota_end.php:72 rs_quota_end.php:78
msgid "End call with outcome: Quota filled"
msgstr "结束电话:配额已满"
@@ -999,11 +969,11 @@ msgstr "邮件地址无效"
msgid "Email respondent for self completion"
msgstr "发邮件请受访员参与自助问卷调查"
-#: email.php:337
+#: email.php:337 admin/operatorlist.php:165
msgid "First name"
msgstr "名"
-#: email.php:338
+#: email.php:338 admin/operatorlist.php:166
msgid "Last name"
msgstr "姓"
@@ -1023,11 +993,13 @@ msgstr "本次调查问卷未预备自助完成问卷邮件"
msgid "Appointment List"
msgstr "预约列表"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:229
+#: admin/supervisor.php:284
msgid "Not yet called"
msgstr "尚未呼叫"
-#: appointmentlist.php:70
+#: appointmentlist.php:70 admin/displayappointments.php:209
+#: admin/displayappointments.php:229
msgid "Any operator"
msgstr "任何电话调查员"
@@ -1039,7 +1011,8 @@ msgstr "无预约"
msgid "No future appointments scheduled"
msgstr "无预约时刻表"
-#: appointmentlist.php:90
+#: appointmentlist.php:90 admin/displayappointments.php:195
+#: admin/displayappointments.php:243
msgid "Appointment with"
msgstr "预约"
@@ -1073,13 +1046,11 @@ msgid ""
"Please wait for this call to answer before attempting to call the supervisor"
msgstr "呼叫调查督导员前,请等待本次呼叫应答"
-#: admin/systemsort.php:75
-#: admin/systemsort.php:98
-#: admin/systemsort.php:99
+#: admin/systemsort.php:75 admin/systemsort.php:98 admin/systemsort.php:99
msgid "Monitor system wide case sorting"
-msgstr "监控系统大规模访问排序"
+msgstr "监控全系统访问排序"
-#: admin/systemsort.php:77
+#: admin/systemsort.php:77 admin/voipmonitor.php:75
msgid "Running process:"
msgstr "运行进程:"
@@ -1087,27 +1058,27 @@ msgstr "运行进程:"
msgid "Kill signal sent: Please wait..."
msgstr "终止信号发送:请等待..."
-#: admin/systemsort.php:82
+#: admin/systemsort.php:82 admin/voipmonitor.php:80
msgid ""
"Process is already closed (eg. server was rebooted) - click here to confirm"
msgstr "进程已关闭(例如:服务器重启) - 点击确认"
-#: admin/systemsort.php:86
+#: admin/systemsort.php:86 admin/voipmonitor.php:84
msgid "Kill the running process"
msgstr "终止运行进程"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log id"
msgstr "登录编号"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/shiftreport.php:104
+#: admin/voipmonitor.php:90 admin/voipmonitor.php:102
msgid "Date"
msgstr "日期"
-#: admin/systemsort.php:92
-#: admin/systemsort.php:106
+#: admin/systemsort.php:92 admin/systemsort.php:106 admin/voipmonitor.php:90
+#: admin/voipmonitor.php:102
msgid "Log entry"
msgstr "登录"
@@ -1124,27 +1095,24 @@ msgid ""
"complex quotas in place. If you are not experiencing any performance "
"problems, it is not recommended to use this feature."
msgstr ""
-"系统大规模访问排序定期(使用SYSTEM_SORT_MINUTES配置指令)进行系统范围内的大规模访问排序, "
-"而不是在每次电话调查员请求一个新访问的时候寻找最合适的访问。这样可以在有大量访问或复杂配额的时候提高效率。如果您没有任何访问效率方面的问题,我们不推荐您使"
-"用该功能。"
+"全系统访问排序定期(使用SYSTEM_SORT_MINUTES配置指令)进行系统范围内的访问排序, "
+"而不是在每次电话调查员请求一个新访问的时候寻找最合适的访问对象。这样可以在有大量访问或复杂配额的时候提高效率。如果您没有任何访问效率方面的问题,我们不推荐"
+"您使用本功能。"
-#: admin/systemsort.php:102
+#: admin/systemsort.php:102 admin/voipmonitor.php:98
msgid "Outcome of last process run (if any)"
msgstr "最近的进程运行结果(如果有的话)"
-#: admin/callhistory.php:80
-#: admin/callhistory.php:109
+#: admin/callhistory.php:80 admin/callhistory.php:109
#: admin/callhistory.php:117
msgid "Call History List"
msgstr "呼叫历史列表"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Date/Time call start"
msgstr "日期/时间呼叫开始"
-#: admin/callhistory.php:96
-#: admin/callhistory.php:111
+#: admin/callhistory.php:96 admin/callhistory.php:111
msgid "Time end"
msgstr "时间结束"
@@ -1152,27 +1120,24 @@ msgstr "时间结束"
msgid "Download Call History List"
msgstr "下载呼叫历史列表"
-#: admin/clientquestionnaire.php:150
-#: admin/clientquestionnaire.php:271
+#: admin/clientquestionnaire.php:150 admin/clientquestionnaire.php:271
+#: admin/index.php:90
msgid "Assign clients to questionnaires"
msgstr "给项目分派客户"
-#: admin/quotareport.php:109
-#: admin/index.php:80
+#: admin/quotareport.php:109 admin/index.php:81
msgid "Quota report"
msgstr "配额报表"
-#: admin/quotareport.php:111
-#: admin/quota.php:110
-#: admin/assignsample.php:171
-#: admin/questionnaireavailability.php:94
-#: admin/outcomes.php:80
+#: admin/quotareport.php:111 admin/quota.php:110 admin/assignsample.php:180
+#: admin/questionnaireavailability.php:97 admin/outcomes.php:80
+#: admin/questionnaireprefill.php:100 admin/addshift.php:168
+#: admin/questionnairecatimeslots.php:97 admin/quotarow.php:127
msgid "Select a questionnaire from the list below"
msgstr "从下列列表中选择一张问卷"
-#: admin/quotareport.php:118
-#: admin/quota.php:123
-#: admin/samplesearch.php:84
+#: admin/quotareport.php:118 admin/quota.php:123 admin/samplesearch.php:84
+#: admin/quotarow.php:140
msgid "Select a sample from the list below"
msgstr "从下列列表中选择一批样本"
@@ -1180,13 +1145,11 @@ msgstr "从下列列表中选择一批样本"
msgid "Total sample"
msgstr "样本总量"
-#: admin/quotareport.php:233
-#: admin/quotareport.php:240
+#: admin/quotareport.php:233 admin/quotareport.php:240
msgid "closed"
msgstr "已关闭"
-#: admin/quotareport.php:235
-#: admin/quotareport.php:242
+#: admin/quotareport.php:235 admin/quotareport.php:242
msgid "open"
msgstr "开启"
@@ -1246,7 +1209,7 @@ msgstr "请回到您的浏览器修正问题"
msgid "Import: Select columns to import"
msgstr "导入:选择要导入的列"
-#: admin/import.php:112
+#: admin/import.php:112 admin/bulkappointment.php:248
msgid "Import: Select file to upload"
msgstr "导入:选择文件上传"
@@ -1258,36 +1221,45 @@ msgstr "选择要上传的CSV样本文件:"
msgid "Description for file:"
msgstr "文件描述:"
-#: admin/import.php:119
-#: admin/assignsample.php:227
+#: admin/import.php:119 admin/assignsample.php:238
msgid "Add sample"
msgstr "添加样本"
-#: admin/systemsortprocess.php:91
+#: admin/systemsortprocess.php:93
msgid "Sorting cases process starting"
msgstr "访问排序程序开始"
-#: admin/systemsortprocess.php:100
-msgid "Sorting cases"
-msgstr "访问排序"
+#: admin/systemsortprocess.php:106
+msgid "Checking for cases open for more than 24 hours"
+msgstr ""
-#: admin/systemsortprocess.php:130
-#: admin/systemsortprocess.php:142
-#: admin/systemsortprocess.php:168
-#: admin/systemsortprocess.php:180
+#: admin/systemsortprocess.php:135 admin/systemsortprocess.php:147
+#: admin/systemsortprocess.php:173 admin/systemsortprocess.php:185
msgid "System automatically closed case as not closed for more than 24 hours"
msgstr "由于访问24小时以上未被关闭,系统自动关闭该访问"
-#: admin/systemsortprocess.php:293
-msgid "Completed sort"
-msgstr "完成排序"
+#: admin/systemsortprocess.php:194
+msgid "Completed case closing"
+msgstr ""
-#: admin/systemsortprocess.php:293
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196
+#: admin/systemsortprocess.php:323 admin/systemsortprocess.php:325
msgid "This task took"
msgstr "本次任务需要"
-#: admin/systemsortprocess.php:295
+#: admin/systemsortprocess.php:196
+msgid "Failed to complete case closing"
+msgstr ""
+
+#: admin/systemsortprocess.php:211
+msgid "Sorting cases for "
+msgstr ""
+
+#: admin/systemsortprocess.php:323
+msgid "Completed sort"
+msgstr "完成排序"
+
+#: admin/systemsortprocess.php:325
msgid "Failed to complete sort"
msgstr "排序未完成"
@@ -1304,8 +1276,7 @@ msgstr "预约已删除。现在您必须修改访问结果"
msgid "Modify case outcome"
msgstr "修改访问结果"
-#: admin/displayappointments.php:159
-#: admin/displayappointments.php:212
+#: admin/displayappointments.php:159 admin/displayappointments.php:212
msgid "Edit appointment"
msgstr "编辑预约"
@@ -1313,11 +1284,11 @@ msgstr "编辑预约"
msgid "Contact phone"
msgstr "联系电话"
-#: admin/displayappointments.php:193
+#: admin/displayappointments.php:193 admin/bulkappointment.php:230
msgid "Start time"
msgstr "开始时间"
-#: admin/displayappointments.php:194
+#: admin/displayappointments.php:194 admin/bulkappointment.php:230
msgid "End time"
msgstr "结束时间"
@@ -1337,38 +1308,39 @@ msgstr "显示预约"
msgid "All appointments (with times displayed in your time zone)"
msgstr "所有预约(按您的时区显示时间)"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:407
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:347
+#: admin/supervisor.php:361
msgid "Delete"
msgstr "删除"
-#: admin/displayappointments.php:229
-#: admin/displayappointments.php:243
-#: admin/shiftreport.php:96
-#: admin/shiftreport.php:104
-#: admin/assignsample.php:149
-#: admin/assignsample.php:184
-#: admin/assignsample.php:193
+#: admin/displayappointments.php:229 admin/displayappointments.php:243
+#: admin/shiftreport.php:96 admin/shiftreport.php:104
+#: admin/assignsample.php:158 admin/assignsample.php:194
+#: admin/assignsample.php:203 admin/operatorlist.php:144
+#: admin/operatorlist.php:283 admin/operatorlist.php:293
+#: admin/supervisor.php:284 admin/supervisor.php:297 admin/supervisor.php:306
msgid "Edit"
msgstr "编辑"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator Name"
msgstr "电话调查员姓名"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Respondent Name"
msgstr "受访者姓名"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Surname"
msgstr "姓"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Current outcome"
msgstr "当前结果"
-#: admin/displayappointments.php:243
+#: admin/displayappointments.php:243 admin/supervisor.php:297
msgid "Operator who called"
msgstr "拨打过电话的电话调查员"
@@ -1376,9 +1348,7 @@ msgstr "拨打过电话的电话调查员"
msgid "No appointments in the future"
msgstr "未来无预约"
-#: admin/quota.php:109
-#: admin/index.php:62
-#: admin/index.php:63
+#: admin/quota.php:109 admin/index.php:62 admin/index.php:63
msgid "Quota management"
msgstr "配额管理"
@@ -1394,11 +1364,11 @@ msgstr "当前无配额"
msgid "Stop calling this sample when:"
msgstr "以下情况发生时停止呼叫该样本:"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:187
msgid "for"
msgstr "给"
-#: admin/quota.php:152
+#: admin/quota.php:152 admin/quotarow.php:184 admin/quotarow.php:187
msgid "completions"
msgstr "完成"
@@ -1410,7 +1380,7 @@ msgstr "达到配额"
msgid "Quota not yet reached"
msgstr "配额尚未达到"
-#: admin/quota.php:159
+#: admin/quota.php:159 admin/quotarow.php:195
msgid "Current completions: "
msgstr "当前完成: "
@@ -1422,27 +1392,27 @@ msgstr "给配额选择一个问卷"
msgid "Enter the details for creating the quota:"
msgstr "输入详细信息以创建配额:"
-#: admin/quota.php:193
+#: admin/quota.php:193 admin/quotarow.php:275
msgid "Pre defined values for this question:"
msgstr "该问卷预先定义值:"
-#: admin/quota.php:205
+#: admin/quota.php:205 admin/quotarow.php:292
msgid "No labels defined for this question"
msgstr "该问卷尚未定义标题"
-#: admin/quota.php:207
+#: admin/quota.php:207 admin/quotarow.php:294
msgid "Code value"
msgstr "编码值"
-#: admin/quota.php:213
+#: admin/quota.php:213 admin/quotarow.php:304
msgid "The code value to compare"
msgstr "要比较的编码值"
-#: admin/quota.php:214
+#: admin/quota.php:214 admin/quotarow.php:305
msgid "The type of comparison"
msgstr "比较类型"
-#: admin/quota.php:215
+#: admin/quota.php:215 admin/quotarow.php:310
msgid "The number of completions to stop calling at"
msgstr "停止呼叫的已完成数量"
@@ -1459,10 +1429,9 @@ msgid ""
"Set which types of cases will be made available to each operator. Please "
"note that all operators will be allowed to assign all possible outcomes to a "
"case. This restricts which ones will be assigned to an operator."
-msgstr "给每位电话调查员设置哪种类型的访问有效。请注意,所有电话调查员都有权给访问分派所有可能的结果。这限定了哪些访问会被分派给哪位电话调查员。"
+msgstr "给每位调查员设置可访样本。请注意,每个调查员都有权给访问样本选择所有可能的结果。这里的设置可以设置各位调查员可以被分派的样本类型。"
-#: admin/operatorskill.php:272
-#: admin/index.php:70
+#: admin/operatorskill.php:272 admin/index.php:70
msgid "Modify operator skills"
msgstr "修改电话调查员职能"
@@ -1470,38 +1439,32 @@ msgstr "修改电话调查员职能"
msgid "Operator Performance"
msgstr "电话调查员绩效"
-#: admin/operatorperformance.php:73
-#: admin/shiftreport.php:65
+#: admin/operatorperformance.php:73 admin/shiftreport.php:65
+#: admin/dataoutput.php:188 admin/samplecallattempts.php:172
msgid "Please select a questionnaire"
msgstr "请选择一个问卷"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls"
msgstr "呼叫"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Total time"
msgstr "总时间"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Call time"
msgstr "呼叫时间"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Completions p/h"
msgstr "完成数 人/小时"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Calls p/h"
msgstr "呼叫数 人/小时"
-#: admin/operatorperformance.php:81
-#: admin/operatorperformance.php:104
+#: admin/operatorperformance.php:81 admin/operatorperformance.php:104
msgid "Effectiveness"
msgstr "有效时间"
@@ -1509,51 +1472,49 @@ msgstr "有效时间"
msgid "till"
msgstr "直到"
-#: admin/operatorperformance.php:96
-#: admin/shiftreport.php:72
+#: admin/operatorperformance.php:96 admin/shiftreport.php:72
msgid "Please select a shift"
-msgstr "请选择一个时区转换"
+msgstr "请选择一个可用调查时段"
-#: admin/availabilitygroup.php:70
-#: admin/availabilitygroup.php:112
-msgid "Availability groups"
-msgstr "可用组"
+#: admin/availabilitygroup.php:70 admin/availabilitygroup.php:112
+msgid "Time slots"
+msgstr ""
-#: admin/availabilitygroup.php:107
-#: admin/availabilitygroup.php:119
+#: admin/availabilitygroup.php:107 admin/availabilitygroup.php:119
+#: admin/questionnairelist.php:396 admin/questionnairelist.php:406
msgid "Modify"
msgstr "修改"
#: admin/availabilitygroup.php:114
msgid ""
-"Availability groups define periods of time of respondent availability."
-msgstr "可用组定义了受访者的可接受访问时间。"
+"Time slots define periods of time during particular days of the week. These "
+"are used for the availability function and also the call attempt time slot "
+"function."
+msgstr ""
#: admin/availabilitygroup.php:117
-msgid "No availability groups"
-msgstr "无有效组"
+msgid "No time slots"
+msgstr ""
-#: admin/availabilitygroup.php:119
-msgid "Availablity group"
-msgstr "有效组"
+#: admin/availabilitygroup.php:119 admin/supervisor.php:342
+msgid "Time slot"
+msgstr ""
-#: admin/availabilitygroup.php:123
-#: admin/availabilitygroup.php:127
-msgid "Add availability group"
-msgstr "添加有效组"
+#: admin/availabilitygroup.php:123 admin/availabilitygroup.php:127
+msgid "Add time slot"
+msgstr ""
#: admin/availabilitygroup.php:126
-msgid "Availability group name"
-msgstr "可用组名"
+msgid "Time slot name"
+msgstr ""
-#: admin/shiftreport.php:61
-#: admin/index.php:95
+#: admin/shiftreport.php:61 admin/index.php:96
msgid "Shift reports"
-msgstr "时区转换报告"
+msgstr "调查时段报告"
#: admin/shiftreport.php:92
msgid "Reports for this shift"
-msgstr "该转换报告"
+msgstr "该调查时段概况"
#: admin/shiftreport.php:104
msgid "Report"
@@ -1561,11 +1522,11 @@ msgstr "报告"
#: admin/shiftreport.php:107
msgid "Create new report for this shift"
-msgstr "给该转换创建新报告"
+msgstr "创建调查时段报告"
#: admin/shiftreport.php:113
msgid "Enter report for this shift"
-msgstr "给该转换输入报告"
+msgstr "输入调查时段报告"
#: admin/shiftreport.php:117
msgid "Add report"
@@ -1577,7 +1538,7 @@ msgstr "该报告在数据库中不存在"
#: admin/shiftreport.php:158
msgid "Edit report for this shift"
-msgstr "给该转换编辑报告"
+msgstr "编辑调查时段报告"
#: admin/shiftreport.php:163
msgid "Modify report"
@@ -1591,9 +1552,9 @@ msgstr "管理工具"
msgid "Questionnaire creation and management"
msgstr "问卷创建及管理"
-#: admin/index.php:51
+#: admin/index.php:51 admin/new.php:153
msgid "Create an instrument in Limesurvey"
-msgstr "在LimeSurvey中创建提示语:"
+msgstr "在LimeSurvey中创建主问卷"
#: admin/index.php:52
msgid "Create a new questionnaire"
@@ -1605,7 +1566,7 @@ msgstr "问卷管理"
#: admin/index.php:54
msgid "Administer instruments with Limesurvey"
-msgstr "用LimeSurvey管理提示"
+msgstr "用LimeSurvey管理主问卷"
#: admin/index.php:56
msgid "Sample/List management"
@@ -1613,7 +1574,7 @@ msgstr "样本/列表管理"
#: admin/index.php:57
msgid "Import a sample file (in CSV form)"
-msgstr "导入样本文件(CSV格式)"
+msgstr "导入样本(CSV格式)"
#: admin/index.php:58
msgid "Sample management"
@@ -1627,214 +1588,222 @@ msgstr "给问卷分派样本"
msgid "Set values in questionnaire to pre fill"
msgstr "问卷预设值"
-#: admin/index.php:64
+#: admin/index.php:64 admin/quotarow.php:126
msgid "Quota row management"
msgstr "配额行管理"
-#: admin/index.php:66
-#: admin/index.php:68
-#: admin/index.php:111
+#: admin/index.php:66 admin/index.php:68 admin/index.php:112
msgid "Operator management"
msgstr "电话调查员管理"
#: admin/index.php:67
msgid "Add operators to the system"
-msgstr "在系统中添加电话调查员"
+msgstr "添加电话调查员"
-#: admin/index.php:69
+#: admin/index.php:69 admin/operatorquestionnaire.php:155
+#: admin/operatorquestionnaire.php:276
msgid "Assign operators to questionnaires"
msgstr "给问卷分派电话调查员"
#: admin/index.php:72
msgid "Availability and shift management"
-msgstr "有效时间及时区转换管理"
+msgstr "受访对象可及性及访问员电访时段管理"
#: admin/index.php:73
-msgid "Manage availablity groups"
-msgstr "管理可用组"
+msgid "Manage time slots"
+msgstr ""
#: admin/index.php:74
msgid "Assign availabilities to questionnaires"
msgstr "给问卷分派有效时间"
-#: admin/index.php:75
-msgid "Shift management (add/remove)"
-msgstr "时区转换管理(添加/移除)"
+#: admin/index.php:75 admin/questionnairecatimeslots.php:93
+msgid "Assign call attempt time slots to questionnaire"
+msgstr ""
-#: admin/index.php:77
+#: admin/index.php:76
+msgid "Shift management (add/remove)"
+msgstr "调查时段管理(添加/移除)"
+
+#: admin/index.php:78
msgid "Questionnaire progress"
msgstr "问卷进度"
-#: admin/index.php:78
+#: admin/index.php:79
msgid "Display all future appointments"
msgstr "显示全部未来预约"
-#: admin/index.php:79
+#: admin/index.php:80
msgid "Sample call attempts report"
msgstr "样本呼叫尝试报告"
-#: admin/index.php:81
+#: admin/index.php:82
msgid "Questionnaire outcomes"
msgstr "问卷结果"
-#: admin/index.php:82
+#: admin/index.php:83 admin/dataoutput.php:186
msgid "Data output"
msgstr "数据输出"
-#: admin/index.php:85
-#: admin/outcomes.php:297
+#: admin/index.php:86 admin/outcomes.php:297
msgid "Operator performance"
msgstr "电话调查员绩效"
-#: admin/index.php:87
+#: admin/index.php:88
msgid "Client management"
msgstr "客户管理"
-#: admin/index.php:88
+#: admin/index.php:89
msgid "Add clients to the system"
msgstr "在系统中添加客户"
-#: admin/index.php:91
+#: admin/index.php:92 admin/supervisor.php:131
msgid "Supervisor functions"
msgstr "调查督导员功能"
-#: admin/index.php:92
+#: admin/index.php:93
msgid "Assign outcomes to cases"
msgstr "给访问分派结果"
-#: admin/index.php:93
+#: admin/index.php:94
msgid "Search the sample"
msgstr "查询样本"
-#: admin/index.php:96
+#: admin/index.php:97 admin/casestatus.php:197
msgid "Case status and assignment"
msgstr "访问状态及分派"
-#: admin/index.php:97
+#: admin/index.php:98 admin/bulkappointment.php:250
msgid "Bulk appointment generator"
msgstr "批量预约生成器"
-#: admin/index.php:99
+#: admin/index.php:100
msgid "System settings"
msgstr "系统设置"
-#: admin/index.php:100
+#: admin/index.php:101
msgid "Set default timezone list"
msgstr "设置默认时区列表"
-#: admin/index.php:101
-msgid "Set default shift times"
-msgstr "设置默认转换时间"
-
#: admin/index.php:102
+msgid "Set default shift times"
+msgstr "设置默认的调查时段"
+
+#: admin/index.php:103
msgid "Set call restriction times"
msgstr "设置呼叫限定时间"
-#: admin/index.php:103
-#: admin/centreinfo.php:62
+#: admin/index.php:104 admin/centreinfo.php:62
msgid "Set centre information"
msgstr "设置中心信息"
-#: admin/index.php:105
+#: admin/index.php:106
msgid "Start and monitor system wide case sorting"
-msgstr "开始并监控系统大规模访问排序"
+msgstr "开始并监控全系统访问排序"
-#: admin/index.php:109
+#: admin/index.php:110
msgid "VoIP"
msgstr "VoIP"
-#: admin/index.php:110
+#: admin/index.php:111
msgid "Start and monitor VoIP"
msgstr "启动并监控VoIP"
-#: admin/index.php:112
+#: admin/index.php:113
msgid "Extension status"
msgstr "分机状态"
-#: admin/assignsample.php:115
-#: admin/assignsample.php:170
+#: admin/assignsample.php:120 admin/assignsample.php:179
msgid "Assign Sample: Select sample to assign"
msgstr "分派样本:选择要分派的样本"
-#: admin/assignsample.php:131
+#: admin/assignsample.php:137
msgid "Edit sample details"
msgstr "编辑样本详细信息"
-#: admin/assignsample.php:143
-#: admin/assignsample.php:222
+#: admin/assignsample.php:151 admin/assignsample.php:232
msgid "Max calls (0 for unlimited)"
msgstr "最多呼叫次数(0表示无限制)"
-#: admin/assignsample.php:144
-#: admin/assignsample.php:223
+#: admin/assignsample.php:152 admin/assignsample.php:233
msgid "Max call attempts (0 for unlimited)"
msgstr "最多呼叫尝试(0表示无限制)"
-#: admin/assignsample.php:145
-#: admin/assignsample.php:224
+#: admin/assignsample.php:153 admin/assignsample.php:234
msgid "Number of answering machine messages to leave per case (0 for never)"
msgstr "每个访问电话答录机的留言数量(0表示从不留言)"
-#: admin/assignsample.php:146
-#: admin/assignsample.php:225
+#: admin/assignsample.php:154 admin/assignsample.php:235
msgid "Select from sample randomly? (otherwise sequentially)"
msgstr "从样本中随机选择?(否则按顺序选择)"
-#: admin/assignsample.php:177
+#: admin/assignsample.php:155 admin/assignsample.php:203
+#: admin/assignsample.php:236
+msgid "Allow new numbers to be drawn?"
+msgstr ""
+
+#: admin/assignsample.php:186
msgid "Samples selected for this questionnaire"
msgstr "该问卷选择的样本"
-#: admin/assignsample.php:180
-#: admin/assignsample.php:181
+#: admin/assignsample.php:189 admin/assignsample.php:190
msgid "Unlimited"
msgstr "无限制"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Sequential"
msgstr "按顺序"
-#: admin/assignsample.php:182
+#: admin/assignsample.php:191
msgid "Random"
msgstr "随机"
-#: admin/assignsample.php:183
+#: admin/assignsample.php:192
msgid "Never"
msgstr "从不"
-#: admin/assignsample.php:185
-#: admin/questionnaireavailability.php:117
+#: admin/assignsample.php:193
+msgid "No"
+msgstr ""
+
+#: admin/assignsample.php:193
+msgid "Yes"
+msgstr ""
+
+#: admin/assignsample.php:195 admin/questionnaireavailability.php:120
+#: admin/questionnairecatimeslots.php:120 admin/casestatus.php:93
msgid "Click to unassign"
msgstr "点击解除分派"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max calls"
msgstr "最多呼叫数"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Max call attempts"
msgstr "最多呼叫尝试数"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Answering machine messages"
msgstr "电话答录机留言"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Selection type"
-msgstr "选项类型"
+msgstr "受访者筛选方式"
-#: admin/assignsample.php:193
+#: admin/assignsample.php:203
msgid "Unassign sample"
msgstr "尚未分派样本"
-#: admin/assignsample.php:195
+#: admin/assignsample.php:205
msgid "No samples selected for this questionnaire"
msgstr "该问卷未选择样本"
-#: admin/assignsample.php:209
+#: admin/assignsample.php:219
msgid "Add a sample to this questionnaire:"
msgstr "给该问卷添加样本:"
-#: admin/assignsample.php:212
+#: admin/assignsample.php:222
msgid "Select sample:"
msgstr "选择样本:"
@@ -1850,22 +1819,33 @@ msgstr "更新中心信息"
msgid "Assign availability group to questionnaire"
msgstr "给问卷分派有效组"
-#: admin/questionnaireavailability.php:110
+#: admin/questionnaireavailability.php:95
+msgid ""
+"Assigning an availability group to a questionnaire will allow interviewers "
+"to select from those groups to restrict calls to a particular case to the "
+"times within the group"
+msgstr ""
+
+#: admin/questionnaireavailability.php:113
msgid "There are no availability groups selected for this questionnaire"
msgstr "该问卷没有选择有效组"
-#: admin/questionnaireavailability.php:114
+#: admin/questionnaireavailability.php:117
msgid "Availability groups selected for this questionnaire"
msgstr "该问卷选择的有效组"
-#: admin/questionnaireavailability.php:132
+#: admin/questionnaireavailability.php:135
msgid "Add an availability group to this questionnaire:"
msgstr "给该问卷添加有效组:"
-#: admin/questionnaireavailability.php:135
+#: admin/questionnaireavailability.php:138
msgid "Select availability group:"
msgstr "选择有效组:"
+#: admin/questionnaireavailability.php:149
+msgid "Add availability group"
+msgstr "添加有效组"
+
#: admin/supervisorchat.php:63
msgid ""
"Allow interviewers to chat with the supervisor over XMPP (Jabber). Required "
@@ -1920,7 +1900,6 @@ msgid "Search within this sample"
msgstr "在该样本中查询"
#: admin/samplesearch.php:151
-#, php-format
msgid "Use the % character as a wildcard"
msgstr ""
@@ -1932,32 +1911,27 @@ msgstr "查询:"
msgid "Start search"
msgstr "开始查询"
-#: admin/outcomes.php:77
+#: admin/outcomes.php:77 client/index.php:59
msgid "Questionnaire Outcomes"
msgstr "问卷结果"
-#: admin/outcomes.php:86
-#: admin/outcomes.php:244
+#: admin/outcomes.php:86 admin/outcomes.php:244
msgid "Outcomes"
msgstr "结果"
-#: admin/outcomes.php:88
-#: admin/outcomes.php:231
+#: admin/outcomes.php:88 admin/outcomes.php:231
msgid "Sample status"
msgstr "样本状态"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Drawn from sample"
msgstr "从样本中提取"
-#: admin/outcomes.php:90
-#: admin/outcomes.php:233
+#: admin/outcomes.php:90 admin/outcomes.php:233
msgid "Remain in sample"
msgstr "保留在样本中"
-#: admin/outcomes.php:97
-#: admin/outcomes.php:241
+#: admin/outcomes.php:97 admin/outcomes.php:241
msgid "Number"
msgstr "数字"
@@ -1985,35 +1959,32 @@ msgstr "最小"
msgid "Secs"
msgstr "秒"
-#: admin/outcomes.php:155
+#: admin/outcomes.php:155 client/index.php:91
msgid "Rate"
msgstr "率"
-#: admin/outcomes.php:156
+#: admin/outcomes.php:156 client/index.php:92
msgid "Response Rate 1"
msgstr "回应率 1"
-#: admin/outcomes.php:157
+#: admin/outcomes.php:157 client/index.php:93
msgid "Refusal Rate 1"
msgstr "拒绝率 1"
-#: admin/outcomes.php:158
+#: admin/outcomes.php:158 client/index.php:94
msgid "Cooperation Rate 1"
msgstr "合作率 1"
-#: admin/outcomes.php:159
+#: admin/outcomes.php:159 client/index.php:95
msgid "Contact Rate 1"
msgstr "联系率 1"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
+#: client/index.php:110
msgid "Count"
msgstr "总数"
-#: admin/outcomes.php:174
-#: admin/outcomes.php:208
-#: admin/outcomes.php:261
+#: admin/outcomes.php:174 admin/outcomes.php:208 admin/outcomes.php:261
msgid "%"
msgstr "%"
@@ -2025,17 +1996,17 @@ msgstr "电话调查员呼叫结果"
msgid "No outcomes recorded for this sample"
msgstr "该样本无结果记录"
-#: admin/outcomes.php:269
+#: admin/outcomes.php:269 client/index.php:113
msgid "No outcomes recorded for this questionnaire"
msgstr "该问卷无结果记录"
#: admin/outcomes.php:276
msgid "No shift reports: Add report"
-msgstr "无时区转换报告:添加报告"
+msgstr "无时时段报告:添加报告"
#: admin/outcomes.php:276
msgid "View shift reports"
-msgstr "查看时区转换报告"
+msgstr "查看时段报告"
#: admin/outcomes.php:276
msgid "View operator performance"
@@ -2043,19 +2014,20 @@ msgstr "查看电话调查员绩效"
#: admin/outcomes.php:295
msgid "No shifts defined for this questionnaire"
-msgstr "该问卷未定义时区转换"
+msgstr "该问卷没有设置可用调查时段"
#: admin/outcomes.php:297
msgid "Shift"
-msgstr "时区转换"
+msgstr "调查时段(访问员轮班)"
-#: admin/outcomes.php:297
+#: admin/outcomes.php:297 include/limesurvey/admin/exportresults.php:267
+#: include/limesurvey/admin/exportresults.php:638
+#: include/limesurvey/admin/exportresults.php:639
+#: include/limesurvey/admin/exportresults.php:993
msgid "Shift report"
-msgstr "时区转换报告"
+msgstr "时段报告"
-#: admin/voipmonitor.php:73
-#: admin/voipmonitor.php:95
-#: admin/voipmonitor.php:96
+#: admin/voipmonitor.php:73 admin/voipmonitor.php:95 admin/voipmonitor.php:96
msgid "Monitor VoIP Process"
msgstr "监控VoIP进程"
@@ -2063,11 +2035,11 @@ msgstr "监控VoIP进程"
msgid ""
"Kill signal sent: Please wait... (Note: Process will be stalled until there "
"is activity on the VoIP Server)"
-msgstr "终止信号发送:请等待...(注意:进程将阻塞直到VoIP服务器有活动)"
+msgstr "终止信号发送:请等待...(注意:进程将直到VoIP服务器有反应才会停止)"
#: admin/voipmonitor.php:84
msgid "(requires activity on the VoIP Server to take effect)"
-msgstr "(需要VoIP服务器有活动才有效)"
+msgstr "(需要VoIP服务器有反应动作才有效)"
#: admin/voipmonitor.php:97
msgid "Click here to begin monitoring the VoIP Process"
@@ -2075,7 +2047,7 @@ msgstr "点击开始监控VoIP进程"
#: admin/questionnaireprefill.php:99
msgid "Pre fill questionnaire: Set values for questionnaire to prefill"
-msgstr "预设答案问卷:设置问卷预设值"
+msgstr "加载问卷预填字段:设置问卷预填信息"
#: admin/questionnaireprefill.php:110
msgid "Current pre fills (click to delete)"
@@ -2121,37 +2093,30 @@ msgstr "或者:从样本列表中选择预设"
msgid "Add pre fill"
msgstr "添加预设"
-#: admin/samplelist.php:117
-#: admin/samplelist.php:127
-#: admin/samplelist.php:134
-#: admin/samplelist.php:270
-#: admin/samplelist.php:279
+#: admin/samplelist.php:117 admin/samplelist.php:127 admin/samplelist.php:134
+#: admin/samplelist.php:270 admin/samplelist.php:279
msgid "Rename"
msgstr "重命名"
-#: admin/samplelist.php:146
-#: admin/samplelist.php:179
-#: admin/samplelist.php:269
+#: admin/samplelist.php:146 admin/samplelist.php:179 admin/samplelist.php:269
#: admin/samplelist.php:279
msgid "Operator viewing permissions"
-msgstr "电话调查员查看许可"
+msgstr "电话调查员浏览权限"
#: admin/samplelist.php:182
msgid ""
"Select which fields from this sample should be able to be viewed by operators"
-msgstr "选择样本中哪些域对电话调查员可见"
+msgstr "设置调查员可浏览的样本信息"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Field"
msgstr "域"
-#: admin/samplelist.php:187
-#: admin/samplelist.php:224
+#: admin/samplelist.php:187 admin/samplelist.php:224
msgid "Example data"
msgstr "样例数据"
-#: admin/samplelist.php:187
+#: admin/samplelist.php:187 functions/functions.import.php:127
msgid "Allow operator to see?"
msgstr "允许电话调查员查看?"
@@ -2159,11 +2124,9 @@ msgstr "允许电话调查员查看?"
msgid "Save changes"
msgstr "保存修改"
-#: admin/samplelist.php:202
-#: admin/samplelist.php:216
-#: admin/samplelist.php:224
-#: admin/samplelist.php:268
-#: admin/samplelist.php:279
+#: admin/samplelist.php:202 admin/samplelist.php:216 admin/samplelist.php:224
+#: admin/samplelist.php:268 admin/samplelist.php:279 admin/supervisor.php:462
+#: admin/supervisor.php:468
msgid "Deidentify"
msgstr "删除"
@@ -2177,11 +2140,13 @@ msgstr "选择样本中哪些域要删除。删除域将永久从样本中删除
msgid "Delete selected fields"
msgstr "删除所选域"
-#: admin/samplelist.php:263
+#: admin/samplelist.php:263 admin/operatorlist.php:273
+#: admin/questionnairelist.php:401
msgid "Enable"
msgstr "启用"
-#: admin/samplelist.php:265
+#: admin/samplelist.php:265 admin/operatorlist.php:275
+#: admin/questionnairelist.php:403
msgid "Disable"
msgstr "禁用"
@@ -2189,7 +2154,8 @@ msgstr "禁用"
msgid "Sample list"
msgstr "样本列表"
-#: admin/samplelist.php:279
+#: admin/samplelist.php:279 admin/operatorlist.php:293
+#: admin/questionnairelist.php:396
msgid "Enable/Disable"
msgstr "启用/禁用"
@@ -2201,7 +2167,7 @@ msgstr "已添加预约"
msgid ""
"No such case id, or case set to a final outcome, or case currently assigned "
"to an operator"
-msgstr "没有所需访问编号,或所需访问已形成最终结果,或所需访问当前已分派给电话调查员"
+msgstr "无此样本编号,已经完结,或已被分派给其他调查员"
#: admin/bulkappointment.php:209
msgid "Result"
@@ -2246,33 +2212,32 @@ msgstr "选择要上传的CSV文件:"
msgid "Load bulk appointment CSV"
msgstr "加载批量预约CSV"
-#: admin/addshift.php:87
-#: admin/addshift.php:140
+#: admin/addshift.php:87 admin/addshift.php:140
msgid "Add shifts"
-msgstr "添加时区转换"
+msgstr "添加调查时段"
#: admin/addshift.php:88
msgid ""
"You must be an operator (as well as have administrator access) to add/edit "
"shifts"
-msgstr "您必须是电话调查员(以及具有管理员访问权限)才可以添加/编辑时区转换"
+msgstr "您必须是电话调查员(以及具有管理员访问权限)才可以添加/编辑调查时段"
-#: admin/addshift.php:151
-#: admin/availability.php:106
-#: admin/shifttemplate.php:93
+#: admin/addshift.php:151 admin/availability.php:106
+#: admin/shifttemplate.php:93 admin/callrestrict.php:93
+#: admin/timezonetemplate.php:104
msgid ""
"Your database does not have timezones installed, please see here for details"
msgstr "您的数据库没有安装时区,请看这里查看详细信息"
#: admin/addshift.php:163
msgid "Add shifts in your Time Zone"
-msgstr "在您的时区内添加时区转换"
+msgstr "在您的时区内添加可用调查时段"
#: admin/addshift.php:166
msgid ""
"Shifts allow you to restrict appointments being made, and interviewers to "
"working on a particlar project at defined times."
-msgstr "时区转换允许您将特定项目的预约、访问员的工作限定在规定的时间段内。"
+msgstr "可用调查时段允许您将特定项目的预约、访问员的工作限定在规定的时间段内。"
#: admin/addshift.php:173
msgid "Select year"
@@ -2282,22 +2247,49 @@ msgstr "选择年份"
msgid "Select week of year"
msgstr "选择星期"
-#: admin/addshift.php:238
-#: admin/availability.php:144
-#: admin/shifttemplate.php:118
+#: admin/addshift.php:238 admin/availability.php:144
+#: admin/shifttemplate.php:118 admin/callrestrict.php:118
msgid "Day"
msgstr "日"
#: admin/addshift.php:238
msgid "Use shift?"
-msgstr "使用时区转换?"
+msgstr "使用调查时段?"
#: admin/addshift.php:263
msgid "Submit changes"
msgstr "提交修改"
-#: admin/quotarow.php:154
-#: admin/quotarow.php:160
+#: admin/questionnairecatimeslots.php:95
+msgid ""
+"Assigning call attempt time slots to questionnaires will only allow cases to "
+"be attempted in a time slot for the n + 1th time where it has been attempted "
+"at least n times in all assigned timeslots. Please note timeslots must cover "
+"all possible time periods otherwise no cases will be available during "
+"missing timeslots."
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:113
+msgid "There are no call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:117
+msgid "Call attempt time slots selected for this questionnaire"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:135
+msgid "Add a call attempt time slot to this questionnaire:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:138
+msgid "Select call attempt time slot:"
+msgstr ""
+
+#: admin/questionnairecatimeslots.php:149
+msgid "Add call attempt time slot"
+msgstr ""
+
+#: admin/quotarow.php:154 admin/quotarow.php:160
msgid "Copied quotas"
msgstr "复制的配额"
@@ -2313,9 +2305,7 @@ msgstr "当前无行配额"
msgid "Replicate: Where"
msgstr "复制:在"
-#: admin/quotarow.php:182
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:182 admin/quotarow.php:184 admin/quotarow.php:187
msgid "like"
msgstr "像"
@@ -2323,8 +2313,7 @@ msgstr "像"
msgid "Sample only. Stop calling where"
msgstr "仅样本。停止呼叫于"
-#: admin/quotarow.php:184
-#: admin/quotarow.php:187
+#: admin/quotarow.php:184 admin/quotarow.php:187
msgid "rows from this sample when:"
msgstr "行在该样本中当:"
@@ -2410,16 +2399,15 @@ msgstr "FreePBX已重新加载以启用新的VoIP分机"
#: admin/operators.php:174
msgid ""
"Could not add operator. There may already be an operator of this name:"
-msgstr "不能添加电话调查员。可能调查员姓名已存在:"
+msgstr "无法添加调查员。系统中可能已有同名访问员:"
-#: admin/operators.php:182
-#: admin/operators.php:203
+#: admin/operators.php:182 admin/operators.php:203
msgid "Add an operator"
msgstr "添加电话调查员"
#: admin/operators.php:204
msgid "Adding an operator here will give the user the ability to call cases"
-msgstr "在此添加电话调查员会给新调查员呼叫受访者的访问功能"
+msgstr "在此添加电话调查员,将允许新调查员呼叫受访者"
#: admin/operators.php:204
msgid "Assign Operator to Questionnaire"
@@ -2429,8 +2417,7 @@ msgstr "给问卷分派电话调查员"
msgid "tool"
msgstr "工具"
-#: admin/operators.php:205
-#: admin/clients.php:106
+#: admin/operators.php:205 admin/clients.php:106
msgid ""
"Use this form to enter the username of a user based on your directory "
"security system. For example, if you have secured the base directory of "
@@ -2470,11 +2457,11 @@ msgstr "给该电话调查员选择一个分机:"
msgid "Will this operator be using VoIP?"
msgstr "该电话调查员使用VoIP吗?"
-#: admin/operators.php:219
+#: admin/operators.php:219 admin/operatorlist.php:168
msgid "Jabber/XMPP chat user"
msgstr "Jabber/XMPP聊天室用户名"
-#: admin/operators.php:220
+#: admin/operators.php:220 admin/operatorlist.php:169
msgid "Jabber/XMPP chat password"
msgstr "Jabber/XMPP聊天室密码"
@@ -2494,8 +2481,7 @@ msgstr "该调查员是调查督导员吗?"
msgid "Is the operator a refusal converter?"
msgstr "该调查员可以转接拒绝访问的样本吗?"
-#: admin/operators.php:225
-#: admin/clients.php:115
+#: admin/operators.php:225 admin/clients.php:115
msgid "Add user"
msgstr "添加电话调查员"
@@ -2519,96 +2505,95 @@ msgstr "连接到"
msgid "Error: Failed to insert questionnaire"
msgstr "错误:添加问卷失败"
-#: admin/new.php:132
+#: admin/new.php:132 admin/questionnairelist.php:332
msgid "Name for questionnaire:"
msgstr "问卷名:"
#: admin/new.php:133
msgid "Select limesurvey instrument:"
-msgstr "选择LimeSurvey提示语:"
+msgstr "选择LimeSurvey主问卷:"
-#: admin/new.php:147
-#: admin/new.php:171
+#: admin/new.php:147 admin/new.php:171
msgid "Existing instrument:"
-msgstr "已存在的提示语:"
+msgstr "已有问卷工具:"
#: admin/new.php:156
msgid "Respondent selection type:"
-msgstr "受访者选项类型:"
+msgstr "受访者筛选方式"
#: admin/new.php:157
msgid "No respondent selection (go straight to questionnaire)"
-msgstr "无受访者选项(直接开始问卷)"
+msgstr "不进行受访者筛选(直接开始问卷)"
#: admin/new.php:157
msgid "Use basic respondent selection text (below)"
-msgstr "使用基本的受访者选项文本(如下)"
+msgstr "使用基本的受访者筛选文本(如下)"
-#: admin/new.php:195
+#: admin/new.php:195 admin/questionnairelist.php:333
msgid "Restrict appointments to shifts?"
-msgstr "将预约限定在时区转换内?"
+msgstr "将预约限定在调查时段内?"
-#: admin/new.php:196
+#: admin/new.php:196 admin/questionnairelist.php:334
msgid "Restrict work to shifts?"
-msgstr "将访问限定在时区转换内?"
+msgstr "将访问限定在调查时段内?"
-#: admin/new.php:197
+#: admin/new.php:197 admin/questionnairelist.php:335
msgid "Questionnaire for testing only?"
msgstr "问卷仅用于测试吗?"
-#: admin/new.php:198
+#: admin/new.php:198 admin/questionnairelist.php:336
msgid "Allow operators to generate referrals?"
msgstr "允许电话调查员生成被引荐的受访者吗?"
-#: admin/new.php:199
+#: admin/new.php:199 admin/questionnairelist.php:337
msgid "Allow for respondent self completion via email invitation?"
msgstr "允许受访者通过邮件邀请自助完成访问吗?"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Questionnaire display mode for respondent"
msgstr "受访者问卷显示模式"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "All in one"
msgstr "在一页中显示所有问题"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Question by question"
msgstr "按问题显示"
-#: admin/new.php:201
+#: admin/new.php:201 admin/questionnairelist.php:339
msgid "Group at a time"
msgstr "按组显示"
-#: admin/new.php:202
+#: admin/new.php:202 admin/questionnairelist.php:340
msgid "Limesurvey template for respondent"
msgstr "受访者LimeSurvey模板"
-#: admin/new.php:214
+#: admin/new.php:214 admin/questionnairelist.php:355
msgid "URL to forward respondents on self completion (required)"
msgstr "受访者自助完成问卷后的跳转链接(必要)"
-#: admin/new.php:217
+#: admin/new.php:217 admin/questionnairelist.php:358
msgid "Respondent selection introduction:"
-msgstr "受访者选项说明:"
+msgstr "受访者筛选说明:"
-#: admin/new.php:218
+#: admin/new.php:218 admin/questionnairelist.php:359
msgid "Respondent selection project introduction:"
-msgstr "受访者选项项目说明:"
+msgstr "受访者筛选-项目说明:"
-#: admin/new.php:219
+#: admin/new.php:219 admin/questionnairelist.php:360
msgid "Respondent selection callback (already started questionnaire):"
-msgstr "受访者选项复查(已开始的问卷):"
+msgstr "受访者筛选回叫(已开始的问卷):"
-#: admin/new.php:220
+#: admin/new.php:220 admin/questionnairelist.php:361
msgid "Message to leave on an answering machine:"
msgstr "电话答录机留言:"
-#: admin/new.php:222
+#: admin/new.php:222 admin/questionnairelist.php:363
msgid "Project end text (thank you screen):"
msgstr "项目结束文本(感谢结语):"
-#: admin/new.php:223
+#: admin/new.php:223 admin/questionnairelist.php:364
msgid "Project information for interviewers/operators:"
msgstr "提供给访问员/电话调查员的项目信息:"
@@ -2625,13 +2610,11 @@ msgstr "添加分机失败。该姓名可能已有分机"
msgid "Display extension status"
msgstr "显示分机状态"
-#: admin/extensionstatus.php:146
-#: admin/extensionstatus.php:209
+#: admin/extensionstatus.php:146 admin/extensionstatus.php:209
msgid "Extension name (such as SIP/1000):"
msgstr "分机名称(如SIP/1000):"
-#: admin/extensionstatus.php:147
-#: admin/extensionstatus.php:210
+#: admin/extensionstatus.php:147 admin/extensionstatus.php:210
msgid "Extension password:"
msgstr "分机密码:"
@@ -2895,7 +2878,7 @@ msgstr "周六"
msgid "String"
msgstr "字符串"
-#: admin/databasestrings.php:82
+#: admin/databasestrings.php:82 admin/supervisor.php:320
msgid "Phone number"
msgstr "电话号码"
@@ -2927,7 +2910,7 @@ msgstr "电子邮箱地址"
msgid "Self completion email invitation sent"
msgstr "自助完成邮件邀请已发送"
-#: admin/databasestrings.php:90
+#: admin/databasestrings.php:90 include/limesurvey/quexs.php:171
msgid "Self completed online"
msgstr "在线自助完成"
@@ -2935,11 +2918,11 @@ msgstr "在线自助完成"
msgid "Cases by outcome"
msgstr "访问结果"
-#: admin/casesbyoutcome.php:72
+#: admin/casesbyoutcome.php:72 admin/supervisor.php:273
msgid "Project"
msgstr "项目"
-#: admin/casesbyoutcome.php:73
+#: admin/casesbyoutcome.php:73 admin/supervisor.php:276
msgid "Current outcome:"
msgstr "当前结果:"
@@ -2956,31 +2939,35 @@ msgid "Cannot connect to VoIP Server"
msgstr "无法连接到VoIP服务器"
#: admin/availability.php:57
-msgid "No availability group set"
-msgstr "未设立有效组"
+msgid "No time slot group set"
+msgstr ""
#: admin/availability.php:95
-msgid "Modify availability"
-msgstr "修改有效时间"
+msgid "Modify time slots"
+msgstr ""
-#: admin/availability.php:122
+#: admin/availability.php:122 admin/callrestrict.php:96
msgid ""
"Enter the start and end times for each day of the week to restrict calls "
"within"
msgstr "输入一周每天的起止时间来限定呼叫时间在"
-#: admin/availability.php:160
-#: admin/shifttemplate.php:134
+#: admin/availability.php:160 admin/shifttemplate.php:134
+#: admin/callrestrict.php:134
msgid "Add row"
msgstr "添加行"
+#: admin/availability.php:161
+msgid "Time slot group name"
+msgstr ""
+
#: admin/availability.php:162
-msgid "Save changes to availabilities"
-msgstr "保存对有效时间的修改"
+msgid "Save changes to time slot group"
+msgstr ""
#: admin/availability.php:166
-msgid "Delete this availability group"
-msgstr "删除该可用组"
+msgid "Delete this time slot group"
+msgstr ""
#: admin/clients.php:84
msgid "Could not add"
@@ -2990,8 +2977,7 @@ msgstr "不能添加"
msgid "There may already be a client of this name"
msgstr "可能客户姓名已存在"
-#: admin/clients.php:89
-#: admin/clients.php:104
+#: admin/clients.php:89 admin/clients.php:104
msgid "Add a client"
msgstr "添加客户"
@@ -3032,20 +3018,19 @@ msgstr "输入要添加的客户的时区:"
#: admin/shifttemplate.php:82
msgid "Modify shift template"
-msgstr "修改时区转换模板"
+msgstr "修改调查时段模板"
#: admin/shifttemplate.php:96
msgid ""
"Enter standard shift start and end times for each day of the week in local "
"time"
-msgstr "按当地时间输入一周每天的标准起止时间转换"
+msgstr "按当地时间输入一周每天的标准调查起止时段"
#: admin/shifttemplate.php:135
msgid "Save changes to shifts"
-msgstr "保存对时区转换的修改"
+msgstr "保存对调查时段的修改"
-#: admin/casestatus.php:88
-#: admin/casestatus.php:89
+#: admin/casestatus.php:88 admin/casestatus.php:89
msgid "Now"
msgstr "现在"
@@ -3071,7 +3056,7 @@ msgstr "分派给电话调查员"
#: admin/casestatus.php:119
msgid "Choose operator to assign selected cases to"
-msgstr "选择电话调查员分派已选的访问"
+msgstr "将选定的样本分给哪个调查员,请选择"
#: admin/casestatus.php:122
msgid "Assign cases to operator queue"
@@ -3084,15 +3069,13 @@ msgid ""
"operator, it will override the normal scheduling process and call them as "
"soon as the operator is available."
msgstr ""
-"按问卷和样本列出访问,并允许将访问分派给指定的电话调查员以立即成为下一个待呼叫访问。如果您将访问分派给电话调查员,将优先于正常的访问调度过程,当调查员可以"
-"呼叫时,立即呼叫分派的访问。"
+"按问卷和样本列出样本,可以设置样本被呼叫的顺序。如果您将样本分派给特定调查员,该将优先于正常的访问调度过程,调查员将优先呼叫被分派的样本。"
#: admin/dataoutput.php:202
msgid "Download data for this questionnaire via Limesurvey"
msgstr "使用LimeSurvey下载该问卷数据"
-#: admin/dataoutput.php:204
-#: admin/samplecallattempts.php:184
+#: admin/dataoutput.php:204 admin/samplecallattempts.php:184
msgid "Please select a sample"
msgstr "请选择样本"
@@ -3136,8 +3119,7 @@ msgstr "更新用户信息失败。请确认用户名唯一"
msgid "Operator edit"
msgstr "电话调查员信息编辑"
-#: admin/operatorlist.php:158
-#: admin/operatorlist.php:293
+#: admin/operatorlist.php:158 admin/operatorlist.php:293
msgid "Username"
msgstr "用户名"
@@ -3187,16 +3169,16 @@ msgid ""
"executable. When the file is executed, it will run the voip.exe program with "
"the correct connection details to connect the operator to the VoIP server"
msgstr ""
-"给每个用户下载该文件,并保存在与可执行程序voip.exe相同的文件夹内。当该文件执行时,会启动voip.exe程序,使用正确的连接信息将电话调查员连接到"
-"VoIP服务器"
+"为每个用户下载列表中的脚本文件。同时下载客户端文件voip.exe。两者保存在同一文件夹内。执行本脚本文件将启动voip.exe程序,并自动利用其中的连接"
+"信息将电话调查员连接到VoIP服务器"
#: admin/operatorlist.php:299
msgid "Download Windows VoIP Executable"
-msgstr "下载Windows下的VoIP可执行文件"
+msgstr "VoIP客户端(Windows)"
#: admin/operatorlist.php:300
msgid "Download Linux VoIP Executable"
-msgstr "下载Linux下的VoIP可执行文件"
+msgstr "VoIP客户端(Linux)"
#: admin/operatorlist.php:305
msgid "Enable/Disable VoIP"
@@ -3204,11 +3186,11 @@ msgstr "启用/禁用VoIP"
#: admin/operatorlist.php:306
msgid "Windows VoIP"
-msgstr "Windows下的VoIP"
+msgstr "VoIP Windows客户端"
#: admin/operatorlist.php:307
msgid "*nix VoIP"
-msgstr "*nix VoIP"
+msgstr "VoIP L/Unix等客户端"
#: admin/samplecallattempts.php:107
msgid "Number of cases"
@@ -3248,11 +3230,11 @@ msgstr "问卷列表"
#: admin/questionnairelist.php:329
msgid "Edit instrument in Limesurvey"
-msgstr "在LimeSurvey中编辑提示"
+msgstr "在LimeSurvey中编辑主问卷"
#: admin/questionnairelist.php:362
msgid "Edit respondent selection instrument in Limesurvey"
-msgstr "在LimeSurvey中编辑受访者选项提示"
+msgstr "在LimeSurvey中编辑受访者筛选工具"
#: admin/questionnairelist.php:365
msgid "Update Questionnaire"
@@ -3260,7 +3242,7 @@ msgstr "更新问卷"
#: admin/questionnairelist.php:384
msgid "Any collected data and the limesurvey instrument will NOT be deleted"
-msgstr "任何收集的数据和LimeSurvey提示都不会被删除"
+msgstr "任何收集的数据和LimeSurvey主问卷都不会被删除"
#: admin/questionnairelist.php:385
msgid ""
@@ -3277,23 +3259,31 @@ msgstr "请确认您想删除问卷"
msgid "Delete this questionnaire"
msgstr "删除该问卷"
-#: admin/timezonetemplate.php:87
+#: admin/timezonetemplate.php:92
msgid "Add/Remove Timezones"
msgstr "添加/移除时区"
-#: admin/timezonetemplate.php:101
+#: admin/timezonetemplate.php:107 admin/timezonetemplate.php:111
+msgid "Set default timezone"
+msgstr ""
+
+#: admin/timezonetemplate.php:110
+msgid "Default Timezone: "
+msgstr ""
+
+#: admin/timezonetemplate.php:115
msgid "Click to remove a Timezone from the default list"
msgstr "点击从默认列表中移除一个时区"
-#: admin/timezonetemplate.php:113
+#: admin/timezonetemplate.php:127
msgid "Add a Timezone:"
msgstr "添加时区:"
-#: admin/timezonetemplate.php:116
+#: admin/timezonetemplate.php:130
msgid "Timezone: "
msgstr "时区: "
-#: admin/timezonetemplate.php:117
+#: admin/timezonetemplate.php:131
msgid "Add Timezone"
msgstr "添加时区"
@@ -3313,8 +3303,7 @@ msgstr "选择访问"
msgid "Set an outcome for this call"
msgstr "给该呼叫设置一个结果"
-#: admin/supervisor.php:189
-#: admin/supervisor.php:374
+#: admin/supervisor.php:189 admin/supervisor.php:397
msgid "Set outcome"
msgstr "设置结果"
@@ -3334,39 +3323,50 @@ msgstr "呼叫列表"
msgid "Change outcome"
msgstr "修改结果"
-#: admin/supervisor.php:333
+#: admin/supervisor.php:331
+msgid "Call attempts by timeslot"
+msgstr ""
+
+#: admin/supervisor.php:342
+msgid "Call attempts"
+msgstr ""
+
+#: admin/supervisor.php:356 include/limesurvey/admin/exportresults.php:262
+#: include/limesurvey/admin/exportresults.php:613
+#: include/limesurvey/admin/exportresults.php:614
+#: include/limesurvey/admin/exportresults.php:978
msgid "Case notes"
msgstr "访问备注"
-#: admin/supervisor.php:355
+#: admin/supervisor.php:378
msgid "Modify responses for this case"
msgstr "修改该访问受访者"
-#: admin/supervisor.php:357
+#: admin/supervisor.php:380
msgid "Case not yet started in Limesurvey"
msgstr "访问尚未在LimeSurvey中开始"
-#: admin/supervisor.php:361
+#: admin/supervisor.php:384
msgid "Set a case outcome"
msgstr "设置一个访问结果"
-#: admin/supervisor.php:411
+#: admin/supervisor.php:434
msgid "Update case availability"
msgstr "更新访问有效时间"
-#: admin/supervisor.php:423
+#: admin/supervisor.php:445
msgid "Assign this case to operator (will appear as next case for them)"
-msgstr "将该访问分派给电话调查员(会作为下一个访问出现在调查员访问页面)"
+msgstr "将该样本分派给电话调查员(作为下一个访问样本出现在调查员的访问页面)"
-#: admin/supervisor.php:435
+#: admin/supervisor.php:457
msgid "Assign this case to operator"
msgstr "将该访问分派给电话调查员"
-#: admin/supervisor.php:441
+#: admin/supervisor.php:463
msgid "Remove all sample details and contact numbers from this case"
msgstr "从该访问移除所有的样本详细信息和联系电话"
-#: admin/supervisor.php:454
+#: admin/supervisor.php:476
msgid "Case does not exist"
msgstr "访问不存在"
@@ -3374,19 +3374,19 @@ msgstr "访问不存在"
msgid "Error: Cannot write to temporary directory"
msgstr "错误:无法写入临时目录"
-#: functions/functions.operator.php:167
+#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning"
msgstr "上午"
-#: functions/functions.operator.php:168
+#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363
msgid "afternoon"
msgstr "下午"
-#: functions/functions.operator.php:169
+#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364
msgid "evening"
msgstr "晚间"
-#: functions/functions.operator.php:903
+#: functions/functions.operator.php:904
msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system."
@@ -3406,7 +3406,7 @@ msgstr "时区:"
#: functions/functions.calendar.php:328
msgid "Shift from:"
-msgstr "转换自:"
+msgstr "调查时段为:"
#: functions/functions.calendar.php:335
msgid "Start Time"
@@ -3418,7 +3418,7 @@ msgstr "结束时间"
#: functions/functions.performance.php:469
msgid "No shift"
-msgstr "无转换"
+msgstr "无可用调查时段"
#: functions/functions.performance.php:492
msgid "Total completions"
@@ -3426,28 +3426,28 @@ msgstr "完成总数"
#: functions/functions.performance.php:521
msgid "Completions this shift"
-msgstr "本次转换完成数"
+msgstr "本调查时段完成数"
#: functions/functions.performance.php:544
#: functions/functions.performance.php:590
msgid "No previous shift"
-msgstr "无先前转换"
+msgstr "没有更早的调查时段了"
#: functions/functions.performance.php:564
msgid "Completions on the previous shift"
-msgstr "先前转换完成数"
+msgstr "此前调查时段的完成数"
#: functions/functions.performance.php:611
msgid "Completions this time on the previous shift"
-msgstr "本次先前转换完成数"
+msgstr "以往调查时段的相应完成数"
#: functions/functions.performance.php:629
msgid "No calls made for this shift"
-msgstr "本次转换无呼叫"
+msgstr "该调查时段没有进行呼叫"
#: functions/functions.performance.php:631
msgid "Top CPH for this shift"
-msgstr "本次转换最高呼叫频率"
+msgstr "本时段最高的小时完成量"
#: functions/functions.performance.php:648
msgid "No calls made for this project"
@@ -3455,7 +3455,7 @@ msgstr "该项目无呼叫"
#: functions/functions.performance.php:650
msgid "Top CPH"
-msgstr "最高呼叫频率"
+msgstr "最高小时完成量"
#: functions/functions.import.php:89
msgid "Duplicate name"
@@ -3489,10 +3489,8 @@ msgstr "掉线"
msgid "Reconnected"
msgstr "重新连线"
-#: functions/functions.voip.php:553
-#: functions/functions.voip.php:565
-#: functions/functions.voip.php:577
-#: functions/functions.voip.php:587
+#: functions/functions.voip.php:553 functions/functions.voip.php:565
+#: functions/functions.voip.php:577 functions/functions.voip.php:587
#: functions/functions.voip.php:596
msgid " Extension "
msgstr " 分机 "
@@ -3524,7 +3522,7 @@ msgstr "重新加载失败,FreePBX无法连接到asterisk管理员界面"
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
-msgstr "无法用bounce_op.sh脚本重新加载FOP电话调查员版面服务器。配置面板可能不能改变系统配置。"
+msgstr "无法用bounce_op.sh脚本重新加载FOP电话调查员控制面板。面板可能没有反映系统配置修改。"
#: functions/functions.freepbx.php:174
#, php-format
@@ -3543,13 +3541,11 @@ msgstr "没有分派给您的问卷"
msgid "You are not a valid client"
msgstr "您不是已验证客户"
-#: include/limesurvey/quexs.php:674
-#: include/limesurvey/quexs.php:753
+#: include/limesurvey/quexs.php:674 include/limesurvey/quexs.php:753
msgid "Not on an appointment"
msgstr "无预约"
-#: include/limesurvey/quexs.php:676
-#: include/limesurvey/quexs.php:755
+#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755
msgid "On an appointment"
msgstr "预约中"
@@ -3578,12 +3574,18 @@ msgid "Self completion refused via opt out function"
msgstr "通过选择功能拒绝自助完成调查"
#: include/limesurvey/admin/browse.php:791
+#: include/limesurvey/admin/vvexport.php:69
+#: include/limesurvey/admin/exportresults.php:110
+#: include/limesurvey/admin/statistics.php:268
msgid "Questionnaire and Sample selection:"
msgstr "问卷及样本选择:"
#: include/limesurvey/admin/browse.php:792
+#: include/limesurvey/admin/vvexport.php:70
+#: include/limesurvey/admin/exportresults.php:111
+#: include/limesurvey/admin/statistics.php:269
msgid "All queXS questionnaires and samples associated with this instrument"
-msgstr "与该提示语相关的所有queXS问卷和样本"
+msgstr "所有与该主问卷相关的queXS问卷和样本"
#: include/limesurvey/admin/exportresults.php:257
msgid "Token"
@@ -3647,11 +3649,35 @@ msgstr ""
"事情是这样的。\n"
"\n"
+#~ msgid "Sorting cases"
+#~ msgstr "访问排序"
+
#~ msgid "Enter the telephone extension number:"
#~ msgstr "输入要添加的电话调查员的分机号:"
#~ msgid "Enter the telephone extension password:"
#~ msgstr "输入要添加的电话调查员的分机密码:"
+#~ msgid "Availability groups"
+#~ msgstr "可用组"
+
+#~ msgid "No availability groups"
+#~ msgstr "无有效组"
+
+#~ msgid "Availablity group"
+#~ msgstr "有效组"
+
#~ msgid "No operators"
#~ msgstr "无电话调查员"
+
+#~ msgid "No availability group set"
+#~ msgstr "未设立有效组"
+
+#~ msgid "Modify availability"
+#~ msgstr "修改有效时间"
+
+#~ msgid "Save changes to availabilities"
+#~ msgstr "保存对有效时间的修改"
+
+#~ msgid "Manage availablity groups"
+#~ msgstr "管理可用组"
diff --git a/nocaseavailable.php b/nocaseavailable.php
index 8f574094..aeed624c 100644
--- a/nocaseavailable.php
+++ b/nocaseavailable.php
@@ -141,6 +141,8 @@ else
?>
" . T_("There are ") . $rs['c'] . T_(" unassigned case(s) available within the specified call restrictions") . "";
}
-
+ */
?>
diff --git a/referral.php b/referral.php
index 4cb99cf2..7f08adfe 100644
--- a/referral.php
+++ b/referral.php
@@ -101,7 +101,7 @@ if (isset($_POST['submit']))
$rs = $db->GetAll($sql);
- $tzone = DEFAULT_TIME_ZONE; //set this to default
+ $tzone = get_setting("DEFAULT_TIME_ZONE"); //set this to default
//Get the timezone
foreach($rs as $r)