diff --git a/CHANGELOG b/CHANGELOG index 44940fce..b4785991 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,63 @@ +queXS 2.0.0 - Changes since 1.15.0 + +queXS 2.0.0 removes the included version of Limesurvey 1.91+ and instead relies on an existing install of Limesurvey +of at least version 2.0, with the JSON remote control API enabled to collect data. + +Therefore queXS 2.0.0 has an additional requirement of a separate installation of Limesurvey with the JSON RPC API enabled. + +Both the 1.x and 2.x branches will continue to be maintained for now. Be warned: If you choose to upgrade to the 2.0.0 version, +there is "no going back" unless you restore from a backup. + +Due to the previous tight integration of queXS and Limesurvey, some noteable features are NOT supported in the 2.x series, including: + +- Data export: +* Exporting data "by sample" or "by questionnaire" from Limesurvey directly +* queXS paradata export from within Limesurvey + +- Integration: +* {SAMPLE:xxx} replacement fields in Limesurvey (you will need to replace these with {TOKEN:attribute_1}, {TOKEN:attribute_2}, etc) +* queXS replacement fields including: CALLATTEMPTS, ONAPPOINTMENT, PERIODOFDAY, APPOINTMENTDATE, APPOINTMENTTIME, APPOINTMENTNUMBER, PERCCOMPLETE, ENDINTERVIEWURL, STARTINTERVIEWURL +* Altering of template / mode of delivery for self complete surveys versus interviewer administered surveys + +- Interface: +* Automatically proceedingt to next question on answer selection (no need to press "NEXT") + +Please note that you may be able to implement some of these in Limesurvey directly or work around them. If they are critical for your operations, +please do not proceed with the upgrade to queXS 2.0.0 + + + +Upgrade procedure from 1.15.0 to 2.0.0: + + + ALTER TABLE `questionnaire` ADD `remote_id` INT NOT NULL , ADD INDEX ( `remote_id` ) ; +queXS 1.15.0 - Changes since 1.14.4 + +This release contains a weighted timeslot feature to allow for varying numbers of attempts in particular timeslots, +as well as features and fixes to web/CATI mode integration. + +New feature: Weighted timeslots (allow more attempts in particular timeslots) +New feature: Allow for tokens to be imported in a queXS sample + +Fixed issue: Database structure not optimised for sample_var_import_restrict table +Fixed issue: Cases being generated without a valid email address when importing to Limesurvey +Fixed issue: Limesurvey save form not displaying +Fixed issue: Limesurvey welcome screen not displaying +Fixed issue: Admin permissions not propogating to Limesurvey +Fixed issue: Mode of delivery (single page, group by group, etc) not determined if no token in queXS + +Database changes required: + +INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES(9, 'Token', ''); +ALTER TABLE `sample_import_var_restrict` ADD INDEX ( `var` ) ; +ALTER TABLE `sample_import_var_restrict` ADD INDEX ( `sample_import_id` ) ; +ALTER TABLE `questionnaire_timeslot` ADD `weight` INT( 11 ) NOT NULL DEFAULT '1'; +ALTER TABLE `questionnaire_sample_timeslot` ADD `weight` INT( 11 ) NOT NULL DEFAULT '1'; + queXS 1.14.4 - Changes since 1.14.3 Fourth bug fix release. diff --git a/admin/assignsample.php b/admin/assignsample.php index a9efad0a..a4ce3bda 100644 --- a/admin/assignsample.php +++ b/admin/assignsample.php @@ -81,7 +81,6 @@ global $db; $error = ""; - if (isset($_GET['questionnaire_id']) && isset($_GET['sample']) && isset($_GET['call_max']) && isset($_GET['call_attempt_max'])) { //need to add sample to questionnaire @@ -106,7 +105,6 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['sample']) && isset($_GET[' if (isset($_GET['generatecases'])) { - //find the number of sample variables required $sql = "SELECT count(*) FROM sample_import_var_restrict @@ -122,28 +120,31 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['sample']) && isset($_GET[' } include_once("../functions/functions.operator.php"); + include_once("../functions/functions.limesurvey.php"); $db->StartTrans(); $lime_sid = $db->GetOne("SELECT lime_sid FROM questionnaire WHERE questionnaire_id = '$questionnaire_id'"); $testing = $db->GetOne("SELECT testing FROM questionnaire WHERE questionnaire_id = '$questionnaire_id'"); - //generate one case for each sample record and set outcome to 41 - $sql = "SELECT sample_id - FROM sample - WHERE import_id = '$sid'"; + //generate one case for each sample record and set outcome to 41 (where an email address provided) + $sql = "SELECT s.sample_id, sv.val as email + FROM sample as s + LEFT JOIN (sample_var as sv, sample_import_var_restrict as sivr) ON (sv.sample_id = s.sample_id and sv.var_id = sivr.var_id and sivr.type = 8) + WHERE s.import_id = '$sid'"; $rs = $db->GetAll($sql); foreach($rs as $r) { set_time_limit(30); - if (add_case($r['sample_id'],$questionnaire_id,"NULL",$testing,41, $addsample) === false) { - $error = "Could not add case - please ensure there enough additional attributes available in your Limesurvey participant table"; - break; + if (validate_email($r['email'])) { + if (add_case($r['sample_id'],$questionnaire_id,"NULL",$testing,41, $addsample) === false) { + $error = "Could not add case - please ensure there enough additional attributes available in your Limesurvey participant table"; + break; + } } } - $db->CompleteTrans(); } } @@ -300,6 +301,9 @@ xhtml_head(T_("Assign samples to questionnaires"),true,$css,$js_head,false,false print " " . T_("Go back") . ""; +if (!empty($error)) { + print "
$error
"; +} $questionnaire_id = false; if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']); @@ -401,7 +405,7 @@ if ($questionnaire_id != false)
" data-off="" data-width="85"/>



- +
" data-off="" data-width="85"/>
*

diff --git a/admin/assigntimeslots.php b/admin/assigntimeslots.php index a0d8a877..64a4196f 100644 --- a/admin/assigntimeslots.php +++ b/admin/assigntimeslots.php @@ -105,9 +105,10 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['ca_availability_group'])) //need to add availability_group to questionnaire $questionnaire_id = bigintval($_GET['questionnaire_id']); $availability_group = bigintval($_GET['ca_availability_group']); + $weight = bigintval($_GET['weight']); - $sql = "INSERT INTO questionnaire_timeslot(questionnaire_id,availability_group_id) - VALUES('$questionnaire_id','$availability_group')"; + $sql = "INSERT INTO questionnaire_timeslot(questionnaire_id,availability_group_id,weight) + VALUES('$questionnaire_id','$availability_group','$weight')"; $db->Execute($sql); } @@ -131,9 +132,10 @@ if (isset($_GET['questionnaire_id']) && isset($_GET['sample_import_id']) && isse $questionnaire_id = bigintval($_GET['questionnaire_id']); $sample_import_id = bigintval($_GET['sample_import_id']); $availability_group = bigintval($_GET['qs_availability_group']); + $weight = bigintval($_GET['weights']); - $sql = "INSERT INTO questionnaire_sample_timeslot (questionnaire_id,sample_import_id,availability_group_id) - VALUES('$questionnaire_id','$sample_import_id','$availability_group')"; + $sql = "INSERT INTO questionnaire_sample_timeslot (questionnaire_id,sample_import_id,availability_group_id,weight) + VALUES('$questionnaire_id','$sample_import_id','$availability_group','$weight')"; $db->Execute($sql); } @@ -216,11 +218,12 @@ print ""; print "

" . T_("Call attempt time slots") . "

"; 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.") ."
"; - $sql = "SELECT q.availability_group_id,a.description as description, CONCAT('" . T_("Click to unassign") . "') as link - - FROM questionnaire_timeslot as q, availability_group as a - WHERE q.availability_group_id = a.availability_group_id - AND q.questionnaire_id = '$questionnaire_id'"; +$sql = "SELECT q.availability_group_id,a.description as description, + CONCAT('" . T_("Click to unassign") . "') as link, + q.weight + 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); print "
"; @@ -231,7 +234,7 @@ print "
" . T_("Assigning call attempt time slots to questionna else { print "

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

"; - xhtml_table ($qs,array("availability_group_id","description","link"),false,"table table-hover"); + xhtml_table ($qs,array("description","weight","link"),array(T_("Availability group"),T_("Weight"),T_("Unassign")),"table table-hover"); } print "
"; @@ -251,9 +254,15 @@ print "
" . T_("Assigning call attempt time slots to questionna { print ""; } - print "
- -   + print "
"; +?> +
+ +
+
+ +  
"; } print ""; @@ -270,7 +279,9 @@ print "
" . T_("Assigning call attempt time slots to questionna if ($sample_import_id !== false) { - $sql = "SELECT q.availability_group_id,a.description as description, CONCAT('" . T_("Click to unassign") . "') as link + $sql = "SELECT q.availability_group_id,a.description as description, + CONCAT('" . T_("Click to unassign") . "') as link, + q.weight 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' @@ -285,7 +296,7 @@ print "
" . T_("Assigning call attempt time slots to questionna else { print "

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

"; - xhtml_table ($qs,array("availability_group_id","description","link"),false,"table table-hover"); + xhtml_table ($qs,array("description","weight","link"),array(T_("Availability group"),T_("Weight"),T_("Unassign")),"table table-hover"); } $sql = "SELECT si.availability_group_id,si.description @@ -304,8 +315,14 @@ print "
" . T_("Assigning call attempt time slots to questionna { print ""; } - print "
- + print "
"; +?> +
+ +
+
+
"; diff --git a/admin/operatorlist.php b/admin/operatorlist.php index 66b6cc77..a24d84f0 100644 --- a/admin/operatorlist.php +++ b/admin/operatorlist.php @@ -72,7 +72,11 @@ if (isset($_POST['submit'])) SET users_name = " . $db->qstr($_POST['username']) . ", email = " . $db->qstr($_POST['email']) . ", full_name = " . $db->qstr($_POST['firstName']) . ", - superadmin = $superadmin"; + superadmin = $superadmin, + create_survey = $superadmin, + configurator = $superadmin, + manage_template = $superadmin, + manage_label = $superadmin"; if (!empty($_POST['password'])) { diff --git a/admin/operators.php b/admin/operators.php index e684034e..ba245d64 100644 --- a/admin/operators.php +++ b/admin/operators.php @@ -117,10 +117,9 @@ if (isset($_POST['operator']) && isset($_POST['adduser'])) include_once("../include/sha256.php"); - //Insert into lime_users + //Insert into users $sql = "INSERT INTO users (`users_name`,`password`,`full_name`,`superadmin`,`email`) VALUES ($operator, '" . SHA256::hashing($_POST['password']) . "',$firstname,$admin,$email)"; - $db->Execute($sql); if (FREEPBX_PATH !== false) diff --git a/admin/systemsortprocess.php b/admin/systemsortprocess.php index aea2ed90..9a49abad 100644 --- a/admin/systemsortprocess.php +++ b/admin/systemsortprocess.php @@ -275,11 +275,8 @@ while (!is_process_killed($process_id)) //check if process killed every $sleepin WHERE c.current_operator_id IS NULL AND c.questionnaire_id = '$questionnaire_id' AND ((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 ((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 FLOOR(COUNT(call_attempt_id) / questionnaire_timeslot.weight) FROM `call_attempt`, availability, questionnaire_timeslot WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND questionnaire_timeslot.questionnaire_id = c.questionnaire_id AND questionnaire_timeslot.availability_group_id = availability.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 FLOOR((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)) / questionnaire_timeslot.weight) 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 FLOOR(COUNT(call_attempt_id) / questionnaire_sample_timeslot.weight) FROM `call_attempt`, availability, questionnaire_sample_timeslot WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qasts.availability_group_id AND questionnaire_sample_timeslot.questionnaire_id = c.questionnaire_id AND questionnaire_sample_timeslot.availability_group_id = availability.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 FLOOR((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)) / questionnaire_sample_timeslot.weight) as cou FROM availability_group, questionnaire_sample_timeslot WHERE questionnaire_sample_timeslot.questionnaire_id = c.questionnaire_id AND questionnaire_sample_timeslot.sample_import_id = si.sample_import_id AND availability_group.availability_group_id = questionnaire_sample_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) AND (a.call_id is NULL or (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) or qsep.exclude = 0) diff --git a/database/quexs.sql b/database/quexs.sql index 5e2cc31e..2e7026f2 100644 --- a/database/quexs.sql +++ b/database/quexs.sql @@ -760,6 +760,7 @@ 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, + `weight` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`questionnaire_id`,`availability_group_id`,`sample_import_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; @@ -772,6 +773,7 @@ CREATE TABLE `questionnaire_sample_timeslot` ( CREATE TABLE `questionnaire_timeslot` ( `questionnaire_id` bigint(20) NOT NULL, `availability_group_id` bigint(20) NOT NULL, + `weight` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`questionnaire_id`,`availability_group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; @@ -865,8 +867,10 @@ CREATE TABLE `sample_import_var_restrict` ( `var` char(128) COLLATE utf8_unicode_ci DEFAULT NULL, `type` smallint(10) unsigned NOT NULL, `restrict` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`var_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; + PRIMARY KEY (`var_id`), + KEY (`var`), + KEY (`sample_import_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- @@ -943,6 +947,7 @@ INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES(5, 'Postco INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES(6, 'Respondent first name', ''); INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES(7, 'Respondent last name', ''); INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES(8, 'Email address', ''); +INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES(9, 'Token', ''); -- -------------------------------------------------------- diff --git a/functions/functions.import.php b/functions/functions.import.php index 500bc08d..440abed9 100644 --- a/functions/functions.import.php +++ b/functions/functions.import.php @@ -95,6 +95,18 @@ function verify_fields($fields) } } + //check that only 0 or 1 token fields selected + $count = 0; + foreach($names as $val) + { + if ($val == 9) $count++; + } + + if ($count > 1) + { + return T_("No more than one field may be a token field"); + } + //check that there is one and one only primary phone selected $count = 0; foreach($names as $val) diff --git a/functions/functions.operator.php b/functions/functions.operator.php index 9ff5a6c2..982f1d70 100644 --- a/functions/functions.operator.php +++ b/functions/functions.operator.php @@ -333,10 +333,23 @@ function add_case($sample_id,$questionnaire_id,$operator_id = "NULL",$testing = { global $db; + //if token is specified, get from sample + $sql = "SELECT sv.val + FROM sample_var as sv, sample_import_var_restrict as sivr + WHERE sv.sample_id = '$sample_id' + AND sv.var_id = sivr.var_id + AND sivr.type = 9"; //9 is the token value + + $dtoken = $db->GetOne($sql); + $ttries = 0; do { - $token = sRandomChars(); + if (empty($dtoken)) { + $token = sRandomChars(); + } else { + $token = $dtoken; + } $sql = "SELECT count(*) as c FROM `case` @@ -344,7 +357,9 @@ function add_case($sample_id,$questionnaire_id,$operator_id = "NULL",$testing = $ttries++; } while ($db->GetOne($sql) > 0 && $ttries < 10); - + + if ($ttries >= 10) //failed to get a token + return false; $sql = "INSERT INTO `case` (case_id, sample_id, questionnaire_id, last_call_id, current_operator_id, current_call_id, current_outcome_id,token) VALUES (NULL, $sample_id, $questionnaire_id, NULL, $operator_id, NULL, '$current_outcome_id','$token')"; @@ -674,8 +689,8 @@ function get_case_id($operator_id, $create = false) JOIN operator_skill as os on (os.operator_id = op.operator_id and os.outcome_type_id = ou.outcome_type_id) WHERE c.current_operator_id IS NULL AND ((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 ((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 FLOOR(COUNT(call_attempt_id) / questionnaire_timeslot.weight) FROM `call_attempt`, availability, questionnaire_timeslot WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qast.availability_group_id AND questionnaire_timeslot.availability_group_id = availability.availability_group_id AND questionnaire_timeslot.questionnaire_id = c.questionnaire_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 FLOOR((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)) / questionnaire_timeslot.weight) 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 FLOOR(COUNT(call_attempt_id) / questionnaire_sample_timeslot.weight) FROM `call_attempt`, availability, questionnaire_sample_timeslot WHERE call_attempt.case_id = c.case_id AND (availability.availability_group_id = qasts.availability_group_id AND questionnaire_sample_timeslot.availability_group_id = availability.availability_group_id AND questionnaire_sample_timeslot.questionnaire_id = c.questionnaire_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 FLOOR((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)) / questionnaire_sample_timeslot.weight) as cou FROM availability_group, questionnaire_sample_timeslot WHERE questionnaire_sample_timeslot.questionnaire_id = c.questionnaire_id AND questionnaire_sample_timeslot.sample_import_id = si.sample_import_id AND availability_group.availability_group_id = questionnaire_sample_timeslot.availability_group_id ORDER BY cou ASC LIMIT 1))) AND ((a.call_id is NULL) OR (a.end < CONVERT_TZ(DATE_SUB(NOW(), INTERVAL ou.default_delay_minutes MINUTE),'System','UTC'))) AND ap.case_id is NULL AND ((qsep.questionnaire_id is NULL) OR (qsep.exclude = 0)) diff --git a/locale/bs/LC_MESSAGES/bs.po b/locale/bs/LC_MESSAGES/bs.po index ea4bf7c0..88f2427e 100644 --- a/locale/bs/LC_MESSAGES/bs.po +++ b/locale/bs/LC_MESSAGES/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/cs/LC_MESSAGES/cs.po b/locale/cs/LC_MESSAGES/cs.po index 8d3be503..e816559b 100644 --- a/locale/cs/LC_MESSAGES/cs.po +++ b/locale/cs/LC_MESSAGES/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" @@ -4502,9 +4502,11 @@ msgstr "" #~ msgid "retrieve_conf failed, config not applied" #~ msgstr "retrieve_conf selhalo, nastavení není použito" +#, php-format #~ msgid "Reload failed because retrieve_conf encountered an error: %s" #~ msgstr "Znovu načtení selhalo protože retrieve_conf narazilo na chybu: %s" +#, php-format #~ msgid "Exit code was %s and output was: %s" #~ msgstr "Kód ukončení byl %s a výstup byl: %s" @@ -4837,6 +4839,7 @@ msgstr "" #~ msgid "Search for:" #~ msgstr "Hledat:" +#, php-format #~ msgid "Use the % character as a wildcard" #~ msgstr "Použit znak % cjako zástupný znak" diff --git a/locale/de/LC_MESSAGES/de.po b/locale/de/LC_MESSAGES/de.po index b876765a..8416e5a0 100644 --- a/locale/de/LC_MESSAGES/de.po +++ b/locale/de/LC_MESSAGES/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/el/LC_MESSAGES/el.po b/locale/el/LC_MESSAGES/el.po index 44b8849b..dcd4aceb 100644 --- a/locale/el/LC_MESSAGES/el.po +++ b/locale/el/LC_MESSAGES/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/es/LC_MESSAGES/es.po b/locale/es/LC_MESSAGES/es.po index 86570e03..96201194 100644 --- a/locale/es/LC_MESSAGES/es.po +++ b/locale/es/LC_MESSAGES/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\n" "PO-Revision-Date: 2016-06-28 17:43+0000\n" "Last-Translator: Nicolas \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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/fa/LC_MESSAGES/fa.po b/locale/fa/LC_MESSAGES/fa.po index e30c1dd7..3e2ef4dc 100644 --- a/locale/fa/LC_MESSAGES/fa.po +++ b/locale/fa/LC_MESSAGES/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/fr/LC_MESSAGES/fr.po b/locale/fr/LC_MESSAGES/fr.po index a55500b3..fec9931a 100644 --- a/locale/fr/LC_MESSAGES/fr.po +++ b/locale/fr/LC_MESSAGES/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/gl/LC_MESSAGES/gl.po b/locale/gl/LC_MESSAGES/gl.po index 83a3c0b0..060a890b 100644 --- a/locale/gl/LC_MESSAGES/gl.po +++ b/locale/gl/LC_MESSAGES/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" @@ -4743,6 +4743,7 @@ msgstr "" #~ msgid "Link" #~ msgstr "Ligazón" +#, php-format #~ msgid "Use the % character as a wildcard" #~ msgstr "Usar o carácter % como comodín" diff --git a/locale/he/LC_MESSAGES/he.po b/locale/he/LC_MESSAGES/he.po index a74e75e8..ab5e2c3b 100644 --- a/locale/he/LC_MESSAGES/he.po +++ b/locale/he/LC_MESSAGES/he.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/hr/LC_MESSAGES/hr.po b/locale/hr/LC_MESSAGES/hr.po index a468ac57..f59abf33 100644 --- a/locale/hr/LC_MESSAGES/hr.po +++ b/locale/hr/LC_MESSAGES/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\n" "PO-Revision-Date: 2015-11-11 19:47+0000\n" "Last-Translator: Alen \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/id/LC_MESSAGES/id.po b/locale/id/LC_MESSAGES/id.po index c40a780d..46fa1c15 100644 --- a/locale/id/LC_MESSAGES/id.po +++ b/locale/id/LC_MESSAGES/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/it/LC_MESSAGES/it.po b/locale/it/LC_MESSAGES/it.po index f82ff147..33072d9a 100644 --- a/locale/it/LC_MESSAGES/it.po +++ b/locale/it/LC_MESSAGES/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" @@ -4609,6 +4609,7 @@ msgstr "" #~ msgid "End call with outcome: Quota filled" #~ msgstr "Termina la chiamata con esito: Quota raggiunta" +#, php-format #~ msgid "Reload failed because retrieve_conf encountered an error: %s" #~ msgstr "" #~ "Ricarica non riuscita perché retrieve_conf ha incontrato un errore: %s" @@ -4631,6 +4632,7 @@ msgstr "" #~ "utilizzando lo script bounce_op.sh. Modifiche alle configurazioni potrebbero " #~ "non comparire nel pannello." +#, php-format #~ msgid "Exit code was %s and output was: %s" #~ msgstr "Il codice in uscita è stato %s e l'output è stato: %s" @@ -4901,6 +4903,7 @@ msgstr "" #~ msgid "Link" #~ msgstr "Crea legame" +#, php-format #~ msgid "Use the % character as a wildcard" #~ msgstr "Utilizza il carattere % come jolly" diff --git a/locale/lt/LC_MESSAGES/lt.po b/locale/lt/LC_MESSAGES/lt.po index 359fcebb..353d1268 100644 --- a/locale/lt/LC_MESSAGES/lt.po +++ b/locale/lt/LC_MESSAGES/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" @@ -4687,6 +4687,7 @@ msgstr "" #~ msgid "Pre defined values for this question:" #~ msgstr "Šio klausimo išakstinio užpildymo reikšmės" +#, php-format #~ msgid "Use the % character as a wildcard" #~ msgstr "Use the % character as a wildcard" diff --git a/locale/nl/LC_MESSAGES/nl.po b/locale/nl/LC_MESSAGES/nl.po index d6ad6a1a..6b3d0f7b 100644 --- a/locale/nl/LC_MESSAGES/nl.po +++ b/locale/nl/LC_MESSAGES/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/oc/LC_MESSAGES/oc.po b/locale/oc/LC_MESSAGES/oc.po index 06b7b2f0..1aeabec2 100644 --- a/locale/oc/LC_MESSAGES/oc.po +++ b/locale/oc/LC_MESSAGES/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/pl/LC_MESSAGES/pl.po b/locale/pl/LC_MESSAGES/pl.po index 9b98b88a..fc9c1279 100644 --- a/locale/pl/LC_MESSAGES/pl.po +++ b/locale/pl/LC_MESSAGES/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/pt-br/LC_MESSAGES/pt-br.po b/locale/pt-br/LC_MESSAGES/pt-br.po index 9f108c91..858a0e66 100644 --- a/locale/pt-br/LC_MESSAGES/pt-br.po +++ b/locale/pt-br/LC_MESSAGES/pt-br.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" @@ -4444,6 +4444,7 @@ msgstr "" #~ msgid "retrieve_conf failed, config not applied" #~ msgstr "Falha no arquivo retrieve_conf. Configurações não aplicadas" +#, php-format #~ msgid "Exit code was %s and output was: %s" #~ msgstr "Código de saída foi %s e saída foi: %s" @@ -4605,6 +4606,7 @@ msgstr "" #~ msgid "Appointment:" #~ msgstr "Agendamentos:" +#, php-format #~ msgid "Reload failed because retrieve_conf encountered an error: %s" #~ msgstr "Falha ao recarregar. Arquivo retrieve_conf encontrou um erro: %s" @@ -4927,6 +4929,7 @@ msgstr "" #~ msgid "Timezone: " #~ msgstr "Fuso horário: " +#, php-format #~ msgid "Use the % character as a wildcard" #~ msgstr "Use the % character as a wildcard" diff --git a/locale/pt/LC_MESSAGES/pt.po b/locale/pt/LC_MESSAGES/pt.po index bea6a7be..97511a10 100644 --- a/locale/pt/LC_MESSAGES/pt.po +++ b/locale/pt/LC_MESSAGES/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" -"PO-Revision-Date: 2016-11-02 10:19+0000\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\n" +"PO-Revision-Date: 2017-02-22 11:46+0000\n" "Last-Translator: Andre Santos \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" @@ -94,7 +94,7 @@ msgstr "ativo" #: appointment.php:222 msgid "Appointment with myself only?" -msgstr "" +msgstr "Agendamento apenas comigo?" #: appointment.php:231 include/limesurvey/qanda.php:1701 #: include/limesurvey/qanda.php:1921 @@ -117,7 +117,7 @@ msgstr "Os meus agendamentos" #: myappointments.php:75 msgid "Already calling case" -msgstr "" +msgstr "Já com uma chamada" #: myappointments.php:75 myappointments.php:80 myappointments.php:90 msgid "next" @@ -125,7 +125,7 @@ msgstr "seguinte" #: myappointments.php:80 msgid "Will call case" -msgstr "" +msgstr "Será comunicado o caso" #: myappointments.php:89 appointmentlist.php:75 #: admin/displayappointments.php:265 admin/displayappointments.php:298 @@ -301,7 +301,7 @@ msgstr "Manhã" #: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 msgid "afternoon" -msgstr "Á tarde" +msgstr "de tarde" #: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 msgid "evening" @@ -317,28 +317,28 @@ msgstr "Sem turno" #: functions/functions.performance.php:492 msgid "Total completions" -msgstr "Total de terminados" +msgstr "Total de finalizados" #: functions/functions.performance.php:521 msgid "Completions this shift" -msgstr "" +msgstr "Finalizados neste turno" #: functions/functions.performance.php:544 #: functions/functions.performance.php:590 msgid "No previous shift" -msgstr "" +msgstr "Sem turno anterior" #: functions/functions.performance.php:564 msgid "Completions on the previous shift" -msgstr "" +msgstr "Finalizados no turno anterior" #: functions/functions.performance.php:611 msgid "Completions this time on the previous shift" -msgstr "" +msgstr "Finalizados a esta hora no turno anterior" #: functions/functions.performance.php:629 msgid "No calls made for this shift" -msgstr "" +msgstr "sem chamdas neste turno" #: functions/functions.performance.php:631 msgid "Top CPH for this shift" @@ -346,11 +346,11 @@ msgstr "" #: functions/functions.performance.php:648 msgid "No calls made for this project" -msgstr "" +msgstr "Não foram realizadas chamadas para este projecto" #: functions/functions.performance.php:650 msgid "Top CPH" -msgstr "" +msgstr "Principais CPH" #: functions/functions.calendar.php:193 msgid "Select a respondent" @@ -364,19 +364,19 @@ msgstr "Adicionar respondente" #: functions/functions.calendar.php:256 msgid "First name:" -msgstr "" +msgstr "Primeiro nome:" #: functions/functions.calendar.php:257 msgid "Last name:" -msgstr "" +msgstr "Último nome" #: functions/functions.calendar.php:262 msgid "Time Zone:" -msgstr "" +msgstr "Fuso horário:" #: functions/functions.calendar.php:313 msgid "Shift from:" -msgstr "" +msgstr "Alterar de:" #: functions/functions.calendar.php:317 msgid "Start Time" @@ -551,32 +551,32 @@ msgstr "" #: status.php:120 msgid "Requesting" -msgstr "" +msgstr "A requisitar" #: status.php:136 msgid "APPT" -msgstr "" +msgstr "APPT" #: status.php:137 status_interface2.php:181 msgid "MISSED" -msgstr "" +msgstr "PERDIDAS" #: status.php:140 casenote.php:119 status_interface2.php:239 calllist.php:93 #: project_info.php:88 msgid "No case" -msgstr "" +msgstr "Sem caso" #: referral.php:189 msgid "Generated referral to case id" -msgstr "" +msgstr "Gerada referência para o id do caso" #: referral.php:195 msgid "Generated as referral from case id" -msgstr "" +msgstr "Gerada como referência do id do caso" #: referral.php:201 msgid "Created referral case - you may now close this window" -msgstr "" +msgstr "Foi criado uma referência de caso. Pode agora fechar esta janela." #: referral.php:205 msgid "" @@ -585,23 +585,23 @@ msgstr "" #: referral.php:211 msgid "You must supply a primary phone number" -msgstr "" +msgstr "Deve fornecer um número de telefone primário" #: referral.php:220 index.php:172 index_interface2.php:231 msgid "Referral" -msgstr "" +msgstr "Referência" #: referral.php:231 referral.php:268 msgid "Create referral" -msgstr "" +msgstr "Referência criada" #: referral.php:266 msgid "Call this new referral immediately after this case?" -msgstr "" +msgstr "Contactar esta nova referência imediatamente após este caso?" #: referral.php:275 msgid "Referrals not available for this questionnaire" -msgstr "" +msgstr "Referências não disponíveis para este questionário" #: performance.php:67 index.php:282 index_interface2.php:301 msgid "Performance" @@ -609,7 +609,7 @@ msgstr "Desempenho" #: performance.php:83 admin/operatorperformance.php:108 msgid "This shift" -msgstr "" +msgstr "Este turno" #: performance.php:84 performance.php:91 casenote.php:116 #: appointmentlist.php:95 calllist.php:89 admin/outcomes.php:240 @@ -627,11 +627,11 @@ msgstr "Operador" #: admin/outcomes.php:305 admin/quotarow.php:586 #: admin/operatorperformance.php:86 admin/operatorperformance.php:109 msgid "Completions" -msgstr "" +msgstr "Conclusões" #: performance.php:84 performance.php:91 msgid "Completions per hour" -msgstr "" +msgstr "Conclusões por hora" #: performance.php:90 admin/operatorperformance.php:85 msgid "This project" @@ -639,11 +639,11 @@ msgstr "Este projeto" #: casenote.php:62 msgid "Case Notes" -msgstr "" +msgstr "Anotações do caso" #: casenote.php:72 casenote.php:111 admin/supervisor.php:440 msgid "Add note" -msgstr "" +msgstr "Adicionar anotação" #: casenote.php:75 admin/samplelist.php:283 admin/samplelist.php:491 #: admin/samplesearch.php:107 admin/sortsample.php:94 @@ -659,7 +659,7 @@ msgstr "Voltar" #: casenote.php:114 admin/supervisor.php:430 msgid "No notes" -msgstr "" +msgstr "Sem anotações" #: casenote.php:116 callhistory.php:88 calllist.php:89 #: admin/supervisor.php:415 admin/supervisor.php:432 @@ -668,19 +668,19 @@ msgstr "Data/Hora" #: casenote.php:116 admin/bulkappointment.php:237 admin/supervisor.php:432 msgid "Note" -msgstr "" +msgstr "Anotações" #: waitnextcase_interface2.php:49 msgid "Standby" -msgstr "" +msgstr "'Em espera'" #: waitnextcase_interface2.php:60 msgid "Operator Automatically logged out after: " -msgstr "" +msgstr "Operador desligado automaticamente depois de: " #: waitnextcase_interface2.php:60 msgid " minutes" -msgstr "" +msgstr " minutos" #: waitnextcase_interface2.php:63 endwork.php:55 msgid "You have been automatically logged out of work due to inactivity" @@ -688,40 +688,40 @@ msgstr "Você foi automaticamente desconectado por inatividade" #: waitnextcase_interface2.php:90 nocaseavailable.php:101 msgid "ERROR: No questionnaires assigned to you" -msgstr "" +msgstr "Erro: Não tem questionários assignados" #: waitnextcase_interface2.php:95 nocaseavailable.php:95 msgid "Assigned questionnaires:" -msgstr "" +msgstr "Questionários assignados" #: waitnextcase_interface2.php:121 nocaseavailable.php:125 msgid "ERROR: No samples assigned to the questionnaires" -msgstr "" +msgstr "Erro: não existem numerações assignadas a este questionário" #: waitnextcase_interface2.php:123 nocaseavailable.php:119 msgid "Assigned samples:" -msgstr "" +msgstr "Amostras assignadas" #: waitnextcase_interface2.php:139 nocaseavailable.php:150 msgid "ERROR: No shifts at this time" -msgstr "" +msgstr "Erro: Não existem turnos a esta hora" #: waitnextcase_interface2.php:142 nocaseavailable.php:144 msgid "Current shifts available:" -msgstr "" +msgstr "Turnos disponíveis:" #: waitnextcase_interface2.php:162 waitnextcase_interface2.php:165 #: admin/outcomes.php:128 msgid "Cases currently available to call" -msgstr "" +msgstr "Casos atualmente disponíveis para chamar" #: waitnextcase_interface2.php:181 waitnextcase_interface2.php:184 msgid "New samples available to call" -msgstr "" +msgstr "Novas numerações disponíveis para chamar" #: waitnextcase_interface2.php:197 msgid "Get a new case" -msgstr "" +msgstr "Obter novo caso" #: waitnextcase_interface2.php:200 call_interface2.php:299 #: call_interface2.php:317 call.php:282 call.php:284 call.php:400 call.php:405 @@ -731,19 +731,19 @@ msgstr "Terminar trabalho" #: rs_intro.php:73 rs_intro.php:133 msgid "Introduction" -msgstr "" +msgstr "Introdução" #: rs_intro.php:84 msgid "Not Contacted" -msgstr "" +msgstr "Desligado" #: rs_intro.php:94 admin/set_outcomes.php:177 admin/set_outcomes.php:277 msgid "Contacted" -msgstr "" +msgstr "Contactado" #: rs_intro.php:107 msgid "No eligible respondent (person never available on this number)" -msgstr "" +msgstr "Nenhum respondente elegível (pessoa nunca disponível neste número)" #: rs_intro.php:117 msgid "" @@ -753,7 +753,7 @@ msgstr "" #: rs_intro.php:129 rs_answeringmachine.php:69 msgid "Answering machine" -msgstr "Secretária Eletrônica/Caixa Postal" +msgstr "Caixa postal" #: rs_intro.php:156 rs_project_intro.php:114 msgid "Yes - Continue" @@ -794,35 +794,35 @@ msgstr "Pare a gravação manual" #: include/limesurvey/quexs.php:171 admin/databasestrings.php:90 msgid "Self completed online" -msgstr "" +msgstr "Autocompletado online" #: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 msgid "Not on an appointment" -msgstr "" +msgstr "Não está numa marcação" #: include/limesurvey/quexs.php:678 include/limesurvey/quexs.php:757 msgid "On an appointment" -msgstr "" +msgstr "Numa marcação" #: include/limesurvey/quexs.php:989 msgid "All samples" -msgstr "" +msgstr "Todas" #: include/limesurvey/common_functions.php:6298 msgid "queXS: Number of call attempts" -msgstr "" +msgstr "queXS: Número de chamadas tentadas" #: include/limesurvey/common_functions.php:6299 msgid "queXS: On appointment?" -msgstr "" +msgstr "queXs: Em agendamento?" #: include/limesurvey/common_functions.php:6300 msgid "queXS: Percentage complete" -msgstr "" +msgstr "queXS: Percentagem concluída" #: include/limesurvey/common_functions.php:6301 msgid "queXS: Number of answering machine messages left" -msgstr "" +msgstr "queXS: Número de mensagens deixadas na caixa postal" #: include/limesurvey/optout.php:83 msgid "Self completion refused via opt out function" @@ -833,7 +833,7 @@ msgstr "" #: include/limesurvey/admin/browse.php:791 #: include/limesurvey/admin/vvexport.php:69 msgid "Questionnaire and Sample selection:" -msgstr "" +msgstr "Selecção de Qquetionário e amostra:" #: include/limesurvey/admin/exportresults.php:111 #: include/limesurvey/admin/statistics.php:269 @@ -841,10 +841,11 @@ msgstr "" #: include/limesurvey/admin/vvexport.php:70 msgid "All queXS questionnaires and samples associated with this instrument" msgstr "" +"Todos os questionários e amostras queXS estão associados a este instrumento" #: include/limesurvey/admin/exportresults.php:257 msgid "Token" -msgstr "" +msgstr "Token" #: include/limesurvey/admin/exportresults.php:258 #: include/limesurvey/admin/exportresults.php:651 @@ -863,28 +864,28 @@ msgstr "ID do caso" #: include/limesurvey/admin/exportresults.php:983 admin/set_outcomes.php:250 #: admin/set_outcomes.php:277 admin/dataoutput.php:93 msgid "Outcome ID" -msgstr "" +msgstr "ID Resultado" #: include/limesurvey/admin/exportresults.php:260 #: include/limesurvey/admin/exportresults.php:661 #: include/limesurvey/admin/exportresults.php:662 #: include/limesurvey/admin/exportresults.php:986 msgid "Case outcome" -msgstr "" +msgstr "Resultado do caso" #: include/limesurvey/admin/exportresults.php:261 #: include/limesurvey/admin/exportresults.php:611 #: include/limesurvey/admin/exportresults.php:612 #: include/limesurvey/admin/exportresults.php:989 admin/dataoutput.php:93 msgid "Number of call attempts" -msgstr "" +msgstr "Número de tentativa de chamadas" #: include/limesurvey/admin/exportresults.php:262 #: include/limesurvey/admin/exportresults.php:616 #: include/limesurvey/admin/exportresults.php:617 #: include/limesurvey/admin/exportresults.php:992 msgid "Number of answering machine messages left" -msgstr "" +msgstr "Número de mensagens deixadas na caixa postal" #: include/limesurvey/admin/exportresults.php:263 #: include/limesurvey/admin/exportresults.php:621 @@ -892,35 +893,35 @@ msgstr "" #: include/limesurvey/admin/exportresults.php:995 admin/callhistory.php:132 #: admin/callhistory.php:157 admin/supervisor.php:427 admin/dataoutput.php:93 msgid "Case notes" -msgstr "" +msgstr "Anotações do caso" #: include/limesurvey/admin/exportresults.php:264 #: include/limesurvey/admin/exportresults.php:626 #: include/limesurvey/admin/exportresults.php:627 #: include/limesurvey/admin/exportresults.php:998 admin/dataoutput.php:93 msgid "Total interview time over all calls (mins)" -msgstr "" +msgstr "Tempo de entrevista total sobre todas as chamadas (minutos)" #: include/limesurvey/admin/exportresults.php:265 #: include/limesurvey/admin/exportresults.php:631 #: include/limesurvey/admin/exportresults.php:632 #: include/limesurvey/admin/exportresults.php:1001 admin/dataoutput.php:93 msgid "Interview time for last call (mins)" -msgstr "" +msgstr "Tempo de entrevista para a última chamada (minutos)" #: include/limesurvey/admin/exportresults.php:266 #: include/limesurvey/admin/exportresults.php:636 #: include/limesurvey/admin/exportresults.php:637 #: include/limesurvey/admin/exportresults.php:1004 admin/dataoutput.php:93 msgid "Last number dialled" -msgstr "" +msgstr "Último número marcado" #: include/limesurvey/admin/exportresults.php:267 #: include/limesurvey/admin/exportresults.php:641 #: include/limesurvey/admin/exportresults.php:642 #: include/limesurvey/admin/exportresults.php:1007 admin/dataoutput.php:93 msgid "Operator username for last call" -msgstr "" +msgstr "Úlitmo nome do operador da última chamada" #: include/limesurvey/admin/exportresults.php:268 #: include/limesurvey/admin/exportresults.php:646 @@ -928,11 +929,11 @@ msgstr "" #: include/limesurvey/admin/exportresults.php:1010 admin/outcomes.php:305 #: admin/dataoutput.php:93 msgid "Shift report" -msgstr "" +msgstr "Relatório de turno" #: voip/downloadvoipclient.php:59 msgid "Error: Cannot write to temporary directory" -msgstr "" +msgstr "Erro: não é possível escrever na pasta temporária" #: status_interface2.php:85 msgid "Name" @@ -944,24 +945,24 @@ msgstr "Compromisso" #: status_interface2.php:224 msgid "Dial" -msgstr "" +msgstr "Ligar" #: status_interface2.php:233 status_interface2.php:236 msgid "No more numbers to call" -msgstr "Não há mais números para discar" +msgstr "Não há mais números para marcar" #: appointmentlist.php:61 msgid "Appointment List" -msgstr "" +msgstr "Lista de Marcações" #: appointmentlist.php:75 admin/supervisor.php:369 #: admin/displayappointments.php:295 msgid "Not yet called" -msgstr "" +msgstr "Ainda não marcados" #: appointmentlist.php:88 msgid "No appointments made" -msgstr "" +msgstr "Não foram realizadas marcações" #: appointmentlist.php:95 admin/callrestrict.php:140 admin/addshift.php:243 #: admin/availability.php:165 admin/supervisor.php:388 @@ -969,12 +970,12 @@ msgstr "" #: admin/displayappointments.php:337 index.php:167 shifts.php:88 #: shifts.php:109 msgid "End" -msgstr "" +msgstr "Fim" #: appointmentlist.php:95 admin/displayappointments.php:251 #: admin/displayappointments.php:313 msgid "Appointment with" -msgstr "" +msgstr "Marcações com" #: appointmentlist.php:95 client/index.php:99 client/index.php:118 #: callhistory.php:88 calllist.php:89 admin/outcomes.php:147 @@ -986,53 +987,53 @@ msgstr "Resultado" #: client/index.php:65 admin/outcomes.php:71 msgid "Questionnaire Outcomes" -msgstr "" +msgstr "Resultados do questionário" #: client/index.php:78 msgid "There are no questionnaires assigned to you" -msgstr "" +msgstr "Não tem questionários assignados" #: client/index.php:99 admin/outcomes.php:147 msgid "Rate" -msgstr "" +msgstr "Rácio" #: client/index.php:100 admin/outcomes.php:148 msgid "Response Rate 1" -msgstr "" +msgstr "Rácio de resposta 1" #: client/index.php:101 admin/outcomes.php:149 msgid "Refusal Rate 1" -msgstr "" +msgstr "Rácio de recusa 1" #: client/index.php:102 admin/outcomes.php:150 msgid "Cooperation Rate 1" -msgstr "" +msgstr "Rácio de cooperação 1" #: client/index.php:103 admin/outcomes.php:151 msgid "Contact Rate 1" -msgstr "" +msgstr "Rácio de contacctos 1" #: client/index.php:118 admin/outcomes.php:169 admin/outcomes.php:220 #: admin/outcomes.php:262 msgid "Count" -msgstr "" +msgstr "Total" #: client/index.php:120 admin/outcomes.php:269 msgid "No outcomes recorded for this questionnaire" -msgstr "" +msgstr "Nenhum resultado registado para este questionário" #: client/index.php:122 msgid "View summary results" -msgstr "" +msgstr "Ver resumo de resultados" #: client/index.php:141 msgid "You are not a valid client" -msgstr "" +msgstr "Não é um cliente válido" #: supervisorchat.php:62 admin/supervisorchat.php:66 admin/index.php:196 #: index.php:315 msgid "Supervisor chat" -msgstr "" +msgstr "Falar com o supervisor" #: supervisorchat.php:85 index.php:170 supervisor.php:58 msgid "Supervisor" @@ -1040,44 +1041,44 @@ msgstr "Supervisor" #: supervisorchat.php:86 msgid "Me" -msgstr "" +msgstr "Eu" #: supervisorchat.php:93 msgid "Supervisor is available" -msgstr "" +msgstr "Supervisor disponível" #: supervisorchat.php:94 msgid "Supervisor not available" -msgstr "" +msgstr "Supervisor não disponível" #: supervisorchat.php:96 supervisorchat.php:99 msgid "Message" -msgstr "" +msgstr "Mensagem" #: supervisorchat.php:96 msgid "Send" -msgstr "" +msgstr "Enviado" #: supervisorchat.php:99 msgid "From" -msgstr "" +msgstr "Desde:" #: supervisorchat.php:102 msgid "Supervisor chat is not enabled" -msgstr "" +msgstr "Conversa com o supervisor não estão activadas" #: email.php:248 msgid "Self completion invitation sent via email to" -msgstr "" +msgstr "O convite de auto-preenchimento foi enviado por e-mail para" #: email.php:287 email.php:291 email.php:297 email.php:318 #: index_interface2.php:228 msgid "Invitation Email" -msgstr "" +msgstr "Email de convite" #: email.php:304 msgid "The email did not send" -msgstr "" +msgstr "Email não enviado" #: email.php:309 msgid "The email address is not valid" @@ -1085,7 +1086,7 @@ msgstr "Endereço de email é inválido" #: email.php:338 msgid "Email respondent for self completion" -msgstr "" +msgstr "Email do Entrevistado para auto-resposta" #: email.php:347 admin/operators.php:245 admin/clients.php:233 #: admin/operatorlist.php:228 @@ -1129,6 +1130,8 @@ msgstr "Disponibilidade" msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" +"Selecione grupos para limitar a disponibilidade (Selecione Nenhum para " +"Sempre Disponível)" #: availability.php:148 admin/supervisor.php:538 msgid "Availability groups not defined for this questionnaire" @@ -1136,43 +1139,43 @@ msgstr "A disponibilidade de grupos não foi definida para este questionário" #: calllist.php:61 msgid "Call List" -msgstr "" +msgstr "Lista de chamadas" #: calllist.php:85 admin/supervisor.php:411 msgid "No calls made" -msgstr "" +msgstr "Sem chamadas realizadas" #: calllist.php:89 msgid "Number called" -msgstr "" +msgstr "Número marcado" #: nocaseavailable.php:69 msgid "No case available" -msgstr "" +msgstr "Sem casos disponíveis" #: nocaseavailable.php:74 msgid "There is no case currently available" -msgstr "" +msgstr "Não tem casos disponíveis" #: nocaseavailable.php:75 msgid "Reasons:" -msgstr "" +msgstr "Razões" #: nocaseavailable.php:86 nocaseavailable.php:98 admin/samplelist.php:462 #: admin/questionnairelist.php:564 admin/operatorlist.php:290 msgid "Enabled" -msgstr "" +msgstr "Ativado" #: nocaseavailable.php:86 admin/samplelist.php:460 #: admin/questionnairelist.php:562 admin/index.php:212 msgid "Disabled" -msgstr "" +msgstr "Inativo" #: nocaseavailable.php:98 nocaseavailable.php:122 admin/samplelist.php:339 #: admin/availabilitygroup.php:133 admin/outcomes.php:169 #: admin/outcomes.php:220 msgid "ID" -msgstr "" +msgstr "ID" #: nocaseavailable.php:98 nocaseavailable.php:122 admin/samplelist.php:326 #: admin/set_outcomes.php:146 admin/set_outcomes.php:189 @@ -1180,7 +1183,7 @@ msgstr "" #: admin/quotarow.php:422 admin/quotarow.php:460 admin/quotarow.php:482 #: admin/quotarow.php:508 admin/quotarow.php:555 admin/quotarow.php:586 msgid "Description" -msgstr "" +msgstr "Descrição" #: nocaseavailable.php:122 admin/samplelist.php:317 admin/quotareport.php:310 #: admin/assigntimeslots.php:265 admin/outcomes.php:128 admin/outcomes.php:184 @@ -1191,47 +1194,47 @@ msgstr "" #: admin/casestatus.php:244 admin/displayappointments.php:313 #: admin/displayappointments.php:337 msgid "Sample" -msgstr "" +msgstr "Amostra" #: nocaseavailable.php:147 msgid "Shift start" -msgstr "" +msgstr "Início de turno" #: nocaseavailable.php:147 msgid "Shift end" -msgstr "" +msgstr "Fim de turno" #: nocaseavailable.php:185 msgid "Limesurvey links:" -msgstr "" +msgstr "Limesurvey links:" #: nocaseavailable.php:204 msgid "ERROR: No tokens table defined for LimeSurvey questionnaire" -msgstr "" +msgstr "ERRO: não há tokens definidos para o questionário LimeSurvey" #: nocaseavailable.php:204 msgid "from questionnaire:" -msgstr "" +msgstr "do questionário:" #: nocaseavailable.php:206 msgid "Tokens table exists for Limesurvey questionnaire:" -msgstr "" +msgstr "Tabela de tokes para o questionário LimeSurvey:" #: nocaseavailable.php:211 msgid "ERROR: Cannot find questionnaires with LimeSurvey ID's" -msgstr "" +msgstr "ERRO: Não foi possível encontrar o ID do questionário LimeSurvey" #: nocaseavailable.php:231 msgid "ERROR: Quota reached for this question" -msgstr "" +msgstr "ERRO: Foi atingida a quota para esta pergunta" #: nocaseavailable.php:250 msgid "POSSIBLE ERROR: Row quota reached for this quota" -msgstr "" +msgstr "Possível erro: Quota de linhas atingida para esta quota." #: admin/timezonetemplate.php:97 msgid "Set Timezones" -msgstr "" +msgstr "Definir fusos horários" #: admin/timezonetemplate.php:109 admin/callrestrict.php:115 #: admin/addshift.php:156 admin/availability.php:124 @@ -1239,57 +1242,61 @@ msgstr "" msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" +"A sua base de dados não tem fusos horários instalados, veja aqui para mais " +"detalhes" #: admin/timezonetemplate.php:109 admin/supervisor.php:157 admin/new.php:198 #: admin/new.php:406 msgid "or" -msgstr "" +msgstr "ou" #: admin/timezonetemplate.php:109 msgid "" "Check that you have granted relevant permissions on 'time_zone_...' tables " "in database named 'mysql'." msgstr "" +"Verifique se concedeu permissões relevantes nas tabelas 'time_zone _...' na " +"base de dados 'mysql'." #: admin/timezonetemplate.php:112 msgid "Default Timezone: " -msgstr "" +msgstr "Fuso horário por defeito: " #: admin/timezonetemplate.php:116 msgid "Set default timezone" -msgstr "" +msgstr "Definir fuso horário" #: admin/timezonetemplate.php:121 msgid "Timezone list" -msgstr "" +msgstr "Lista de fusos horários" #: admin/timezonetemplate.php:124 msgid "Remove Timezone" -msgstr "" +msgstr "Remover fuso horário" #: admin/timezonetemplate.php:124 admin/timezonetemplate.php:128 msgid "Remove" -msgstr "" +msgstr "Remover" #: admin/timezonetemplate.php:128 msgid "Timezone name" -msgstr "" +msgstr "Nome do fuso horário" #: admin/timezonetemplate.php:128 msgid "Time diff to Default Time zone" -msgstr "" +msgstr "Diferença horária ao fuso horário por defeito" #: admin/timezonetemplate.php:128 msgid "Current time" -msgstr "" +msgstr "Hora atual" #: admin/timezonetemplate.php:131 msgid "Add a Timezone:" -msgstr "" +msgstr "Adicionar um fuso horário" #: admin/timezonetemplate.php:135 msgid "Add Timezone" -msgstr "" +msgstr "Adicionar fuso horário" #: admin/samplelist.php:168 msgid "" @@ -1299,53 +1306,53 @@ msgstr "" #: admin/samplelist.php:280 msgid "Rename, Set viewing permissions & Manage sample variables" -msgstr "" +msgstr "Renomear, Definir permissões de visualização e gestão de amostras" #: admin/samplelist.php:281 admin/samplelist.php:489 admin/index.php:133 msgid "Sample management" -msgstr "" +msgstr "Geestão de amostras" #: admin/samplelist.php:318 msgid "Search this sample" -msgstr "" +msgstr "Procurar na amostra" #: admin/samplelist.php:326 admin/availabilitygroup.php:141 msgid "Enter" -msgstr "" +msgstr "Inserir" #: admin/samplelist.php:326 admin/availabilitygroup.php:141 msgid "new" -msgstr "" +msgstr "novo" #: admin/samplelist.php:330 msgid "Rename" -msgstr "" +msgstr "Renomear" #: admin/samplelist.php:339 msgid "Sample variable (Column)" -msgstr "" +msgstr "Variável da amostra (coluna)" #: admin/samplelist.php:339 msgid "Visible?" -msgstr "" +msgstr "Visível?" #: admin/samplelist.php:339 msgid "Var type" -msgstr "" +msgstr "Tipo de variável" #: admin/samplelist.php:339 msgid "Example data" -msgstr "" +msgstr "Dados de exemplo" #: admin/samplelist.php:339 msgid "Delete ?" -msgstr "" +msgstr "Apagar?" #: admin/samplelist.php:343 admin/addshift.php:268 admin/assignsample.php:238 #: admin/quotarow.php:398 admin/extensionstatus.php:210 #: admin/displayappointments.php:281 msgid "Save changes" -msgstr "" +msgstr "Guardar alterações" #: admin/samplelist.php:353 msgid "" @@ -1356,31 +1363,33 @@ msgstr "" #: admin/samplelist.php:357 msgid "There's no data in this sample. Probably was deidentified earlier." msgstr "" +"Não existem dados nesta amostra. Provavelmente foi desidentificado " +"anteriormente." #: admin/samplelist.php:371 msgid "Clean it" -msgstr "" +msgstr "Limpar" #: admin/samplelist.php:388 msgid "Fix this sample " -msgstr "" +msgstr "Corrigir esta amostra " #: admin/samplelist.php:465 admin/questionnairelist.php:567 #: admin/operatorlist.php:390 msgid "Enable" -msgstr "" +msgstr "Ativar" #: admin/samplelist.php:467 admin/samplelist.php:478 #: admin/questionnairelist.php:569 admin/assignsample.php:330 #: admin/supervisor.php:373 admin/supervisor.php:420 #: admin/displayappointments.php:297 admin/displayappointments.php:321 msgid "ARE YOU SURE?" -msgstr "" +msgstr "Tem a certeza?" #: admin/samplelist.php:467 admin/questionnairelist.php:569 #: admin/operatorlist.php:392 msgid "Disable" -msgstr "" +msgstr "Desativar" #: admin/samplelist.php:471 admin/operators.php:260 admin/operators.php:274 #: admin/sortsample.php:105 admin/sortsample.php:139 @@ -1391,23 +1400,23 @@ msgstr "" #: admin/shiftreport.php:102 admin/shiftreport.php:110 #: admin/displayappointments.php:313 admin/displayappointments.php:337 msgid "Edit" -msgstr "" +msgstr "Editar" #: admin/samplelist.php:471 msgid "Viewing permissions" -msgstr "" +msgstr "Ver permissões" #: admin/samplelist.php:473 msgid "Edit sample parameters" -msgstr "" +msgstr "Editar parâmetros da amostra" #: admin/samplelist.php:478 msgid "DELETE SAMPLE" -msgstr "" +msgstr "Apagar amostra" #: admin/samplelist.php:480 admin/samplesearch.php:86 admin/index.php:134 msgid "Search the sample" -msgstr "" +msgstr "Pesquisar a amostra" #: admin/samplelist.php:481 admin/questionnairelist.php:593 #: admin/index.php:168 index.php:255 index_interface2.php:277 @@ -1416,15 +1425,15 @@ msgstr "Histórico de chamadas" #: admin/samplelist.php:481 msgid "sample" -msgstr "" +msgstr "amostra" #: admin/samplelist.php:488 msgid "Sample list" -msgstr "" +msgstr "Listar amostras" #: admin/samplelist.php:492 admin/index.php:132 msgid "Import a sample file" -msgstr "" +msgstr "Importar ficheiro de amostras" #: admin/voipmonitor.php:78 admin/voipmonitor.php:100 msgid "Monitor VoIP Process" @@ -1432,7 +1441,7 @@ msgstr "" #: admin/voipmonitor.php:80 admin/systemsort.php:82 msgid "Running process:" -msgstr "" +msgstr "Processos em execução" #: admin/voipmonitor.php:84 msgid "" @@ -1442,15 +1451,15 @@ msgstr "" #: admin/voipmonitor.php:85 msgid "Process is already closed (eg. server was rebooted)" -msgstr "" +msgstr "Processo já tinha sido fechado. (ex. Servidor foi reeniciado)" #: admin/voipmonitor.php:85 msgid "click here to confirm" -msgstr "" +msgstr "clique aqui para confirmar" #: admin/voipmonitor.php:89 admin/systemsort.php:91 msgid "Kill the running process" -msgstr "" +msgstr "Finalizar processos em execução" #: admin/voipmonitor.php:89 msgid "(requires activity on the VoIP Server to take effect)" @@ -1465,16 +1474,16 @@ msgstr "" #: admin/systemsort.php:111 admin/outcomes.php:305 admin/callhistory.php:132 #: admin/callhistory.php:157 admin/shiftreport.php:110 msgid "Date" -msgstr "" +msgstr "Data" #: admin/voipmonitor.php:95 admin/voipmonitor.php:107 admin/systemsort.php:97 #: admin/systemsort.php:111 msgid "Log entry" -msgstr "" +msgstr "Entrada do registo" #: admin/voipmonitor.php:102 msgid "Click here to begin monitoring the VoIP Process" -msgstr "" +msgstr "Clique aqui para iniciar gestão do processo VoIP" #: admin/voipmonitor.php:103 admin/systemsort.php:110 msgid "Outcome of last process run (if any)" @@ -1482,43 +1491,45 @@ msgstr "" #: admin/systemsortprocess.php:93 msgid "Sorting cases process starting" -msgstr "" +msgstr "Processamento de reordenação aleatória de casos iniciado" #: admin/systemsortprocess.php:106 msgid "Checking for cases open for more than 24 hours" -msgstr "" +msgstr "Verificar casos abertos há mais de 24 horas" #: 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 casos que estavam abertos há mais de 24 " +"horas" #: admin/systemsortprocess.php:194 msgid "Completed case closing" -msgstr "" +msgstr "Fecho do caso concluído" #: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 #: admin/systemsortprocess.php:359 admin/systemsortprocess.php:361 msgid "This task took" -msgstr "" +msgstr "Esta tarefa durou" #: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 #: admin/systemsortprocess.php:359 admin/systemsortprocess.php:361 #: nocallavailable.php:208 msgid "seconds" -msgstr "" +msgstr "segundos" #: admin/systemsortprocess.php:196 msgid "Failed to complete case closing" -msgstr "" +msgstr "Conclusão do fecho do caso falhou" #: admin/systemsortprocess.php:211 msgid "Sorting cases for " -msgstr "" +msgstr "A reordenar casos aleatóriamente para " #: admin/systemsortprocess.php:239 admin/samplesearch.php:138 msgid "Deleted" -msgstr "" +msgstr "Eliminado" #: admin/systemsortprocess.php:239 msgid "call attempts with no calls" @@ -1530,28 +1541,30 @@ msgstr "" #: admin/systemsortprocess.php:359 msgid "Completed sort" -msgstr "" +msgstr "Reordenação completa" #: admin/systemsortprocess.php:361 msgid "Failed to complete sort" -msgstr "" +msgstr "Falha ao completar reordenamento" #: admin/systemsort.php:80 admin/systemsort.php:102 msgid "Monitor system wide case sorting" -msgstr "" +msgstr "Controlar a reordenação geral de sistema" #: admin/systemsort.php:86 msgid "Kill signal sent: Please wait..." -msgstr "" +msgstr "Pedido de encerrar tarefa enviado: Por favor espere..." #: admin/systemsort.php:87 msgid "" "Process is already closed (eg. server was rebooted) - click here to confirm" msgstr "" +"O Processo já foi encerrado (ex. Servidor reiniciou) - Clique aqui para " +"confirmar" #: admin/systemsort.php:104 msgid "Click here to enable and begin system wide case sorting" -msgstr "" +msgstr "Carregue aqui para ativar e inicar a reordenação geral de sistema" #: admin/systemsort.php:105 msgid "" @@ -1565,110 +1578,113 @@ msgstr "" #: admin/operators.php:146 msgid "Added operator :" -msgstr "" +msgstr "Operador adicionado:" #: admin/operators.php:149 msgid "" "FreePBX needs to be reloaded for the new VoIP extension to take effect" msgstr "" +"O FreePBX necessita de de ser recarregado para activar a extenção VoIP" #: admin/operators.php:163 msgid "" "Could not add operator. There may already be an operator of this name:" msgstr "" +"Não foi possível adicionar operador. Poderá já existir um operador com este " +"nome:" #: admin/operators.php:169 admin/operators.php:309 admin/operatorlist.php:424 msgid "Add an operator" -msgstr "" +msgstr "Adicionar operador" #: admin/operators.php:178 msgid "The username and extension must be unique for each operator." -msgstr "" +msgstr "O utilizador e extenção têm de ser unicos para cadda operador" #: admin/operators.php:233 admin/clients.php:126 admin/clients.php:221 #: admin/clientquestionnaire.php:293 admin/operatorlist.php:216 #: admin/operatorlist.php:408 admin/operatorskill.php:251 #: admin/operatorquestionnaire.php:247 msgid "Username" -msgstr "" +msgstr "Utilizador" #: admin/operators.php:237 admin/clients.php:225 admin/operatorlist.php:220 msgid "Password" -msgstr "" +msgstr "Senha" #: admin/operators.php:240 admin/clients.php:228 admin/operatorlist.php:223 #: admin/extensionstatus.php:201 msgid "Generate" -msgstr "" +msgstr "Gerar" #: admin/operators.php:240 admin/clients.php:228 admin/operatorlist.php:223 msgid "Password with" -msgstr "" +msgstr "senha com" #: admin/operators.php:241 admin/clients.php:229 admin/operatorlist.php:224 msgid "characters" -msgstr "" +msgstr "caracteres" #: admin/operators.php:261 admin/operatorlist.php:244 msgid "TimeZones list" -msgstr "" +msgstr "Lista de fusos horários" #: admin/operators.php:266 admin/operatorlist.php:250 msgid "Uses VoIP" -msgstr "" +msgstr "Usa VoIP" #: admin/operators.php:275 admin/operatorlist.php:261 #: admin/operatorlist.php:425 msgid "Extensions" -msgstr "" +msgstr "Extensões" #: admin/operators.php:282 admin/operatorlist.php:268 msgid "Uses chat" -msgstr "" +msgstr "Usar chat" #: admin/operators.php:288 admin/operatorlist.php:274 msgid "Jabber/XMPP chat user" -msgstr "" +msgstr "utilizador Jabber/XMPP" #: admin/operators.php:292 admin/operatorlist.php:278 msgid "Jabber/XMPP chat password" -msgstr "" +msgstr "senha Jabber/XMPP" #: admin/operators.php:298 admin/operatorlist.php:285 msgid "Is the operator a system administrator?" -msgstr "" +msgstr "este operador é administrador de sistema?" #: admin/quotareport.php:114 admin/questionnairelist.php:608 #: admin/index.php:170 msgid "Quota report" -msgstr "" +msgstr "Relatório de quotas" #: admin/quotareport.php:116 admin/assigntimeslots.php:161 #: admin/questionnaireprefill.php:107 admin/outcomes.php:74 #: admin/addshift.php:173 admin/assignsample.php:313 msgid "Select a questionnaire" -msgstr "" +msgstr "Selecionar questionário" #: admin/quotareport.php:124 msgid "Select a sample" -msgstr "" +msgstr "Selecionar amostra" #: admin/quotareport.php:212 admin/quotareport.php:219 admin/quotarow.php:571 msgid "closed" -msgstr "" +msgstr "fechado" #: admin/quotareport.php:212 admin/quotareport.php:214 #: admin/quotareport.php:221 admin/quotarow.php:571 msgid "open" -msgstr "" +msgstr "abrir" #: admin/quotareport.php:214 msgid "close" -msgstr "" +msgstr "fechar" #: admin/quotareport.php:307 msgid "Total sample" -msgstr "" +msgstr "Amostra total" #: admin/quotareport.php:310 msgid "Strata" @@ -1677,39 +1693,39 @@ msgstr "" #: admin/quotareport.php:310 admin/quotarow.php:134 admin/quotarow.php:390 #: admin/quotarow.php:586 msgid "Quota" -msgstr "" +msgstr "Quota" #: admin/quotareport.php:310 msgid "Sample Used" -msgstr "" +msgstr "Amostra usada" #: admin/quotareport.php:310 msgid "Sample Remaining" -msgstr "" +msgstr "Amostras disponíveis" #: admin/quotareport.php:310 msgid "% Complete" -msgstr "" +msgstr "% Completo" #: admin/quotareport.php:310 msgid "Set priority" -msgstr "" +msgstr "Definir prioridade" #: admin/quotareport.php:310 admin/quotarow.php:586 msgid "Auto prioritise" -msgstr "" +msgstr "Prioridade automática" #: admin/quotareport.php:314 msgid "Update priorities" -msgstr "" +msgstr "Atualizar prioridades" #: admin/assigntimeslots.php:159 admin/index.php:141 msgid "Assign Time slots" -msgstr "" +msgstr "Definir trnos" #: admin/assigntimeslots.php:168 msgid "Time slot groups" -msgstr "" +msgstr "Definir grupos de turno" #: admin/assigntimeslots.php:169 msgid "" @@ -1722,11 +1738,11 @@ msgstr "" #: admin/assigntimeslots.php:273 admin/assignsample.php:330 #: admin/casestatus.php:101 msgid "Click to unassign" -msgstr "" +msgstr "Clicar para cancelar a atribuição" #: admin/assigntimeslots.php:181 msgid "There are no time slots groups selected for this questionnaire" -msgstr "" +msgstr "Não foram atribuídos grupos de turno para este questionário" #: admin/assigntimeslots.php:185 msgid "Time slots groups selected for this questionnaire" @@ -1734,7 +1750,7 @@ msgstr "" #: admin/assigntimeslots.php:207 msgid "Add time slot group" -msgstr "" +msgstr "Adicionar grupo de turno" #: admin/assigntimeslots.php:216 msgid "Call attempt time slots" @@ -4321,6 +4337,8 @@ msgid "" "Your VoIP extension is not active. Please activate VoIP by clicking once on " "the red button that says 'VoIP Off'" msgstr "" +"A sua extensão VoIP não está activa. Por favor active a sua extensão VoIP " +"clicando no botão vermelho que diz \"VoIP Desligado\"" #: nocallavailable.php:227 msgid "Auto dialling unavailable as VoIP is not enabled" @@ -4332,7 +4350,7 @@ msgstr "" #: index_interface2.php:203 msgid "Case" -msgstr "" +msgstr "Caso" #: rs_quota_end.php:64 msgid "Project Quota End" diff --git a/locale/quexs.pot b/locale/quexs.pot index 2961e83f..b50f60d8 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: 2017-01-06 15:16+1100\n" +"POT-Creation-Date: 2017-03-21 15:25+1100\n" "PO-Revision-Date: \n" "Last-Translator: Adam Zammit \n" "Language-Team: \n" @@ -48,9 +48,8 @@ msgstr "" msgid "Add this respondent" msgstr "" -#: appointment.php:153 admin/operators.php:257 admin/clients.php:245 -#: admin/operatorlist.php:240 admin/supervisor.php:330 -#: admin/casestatus.php:126 +#: appointment.php:153 admin/clients.php:245 admin/operatorlist.php:244 +#: admin/supervisor.php:330 admin/casestatus.php:126 msgid "Timezone" msgstr "" @@ -94,8 +93,7 @@ msgstr "" msgid "Appointment with myself only?" msgstr "" -#: appointment.php:231 include/limesurvey/qanda.php:1701 -#: include/limesurvey/qanda.php:1921 +#: appointment.php:231 msgid "Schedule Appointment" msgstr "" @@ -103,9 +101,9 @@ msgstr "" msgid "Clear" msgstr "" -#: appointment.php:248 referral.php:269 email.php:360 admin/samplelist.php:467 -#: admin/samplelist.php:478 admin/operators.php:305 admin/clients.php:254 -#: admin/supervisor.php:181 admin/extensionstatus.php:207 admin/new.php:392 +#: appointment.php:248 referral.php:269 email.php:191 admin/samplelist.php:467 +#: admin/samplelist.php:478 admin/clients.php:254 admin/supervisor.php:181 +#: admin/extensionstatus.php:207 admin/new.php:322 msgid "Cancel" msgstr "" @@ -160,9 +158,9 @@ msgstr "" #: myappointments.php:118 nocaseavailable.php:147 admin/sortsample.php:139 #: admin/callhistory.php:132 admin/callhistory.php:157 #: admin/callhistory.php:162 admin/set_outcomes.php:200 admin/quota.php:115 -#: admin/assignsample.php:210 admin/quotarow.php:293 admin/casestatus.php:241 +#: admin/quotarow.php:293 admin/casestatus.php:241 #: admin/displayappointments.php:313 admin/displayappointments.php:337 -#: admin/new.php:148 admin/new.php:156 shifts.php:109 +#: admin/new.php:137 admin/new.php:145 shifts.php:109 msgid "Questionnaire" msgstr "" @@ -192,8 +190,8 @@ msgstr "" msgid "Complete" msgstr "" -#: rs_project_end.php:88 call_interface2.php:295 call.php:283 call.php:399 -#: call.php:404 call.php:420 call.php:426 +#: rs_project_end.php:88 call_interface2.php:299 call.php:287 call.php:403 +#: call.php:408 call.php:424 call.php:430 msgid "End case" msgstr "" @@ -211,41 +209,44 @@ msgstr "" msgid "Duplicate column name" msgstr "" -#: functions/functions.import.php:111 +#: functions/functions.import.php:107 +msgid "No more than one field may be a token field" +msgstr "" + +#: functions/functions.import.php:123 msgid "You must select one and one only Primary Phone number" msgstr "" -#: functions/functions.import.php:127 +#: functions/functions.import.php:139 msgid "Selected file column name" msgstr "" -#: functions/functions.import.php:127 +#: functions/functions.import.php:139 msgid "Import ?" msgstr "" -#: functions/functions.import.php:127 +#: functions/functions.import.php:139 msgid "New Sample Variable Name" msgstr "" -#: functions/functions.import.php:127 +#: functions/functions.import.php:139 msgid "Variable Type" msgstr "" -#: functions/functions.import.php:127 +#: functions/functions.import.php:139 msgid "Show to operator?" msgstr "" -#: functions/functions.import.php:144 functions/functions.import.php:156 +#: functions/functions.import.php:156 functions/functions.import.php:168 #: waitnextcase_interface2.php:142 admin/samplelist.php:304 #: admin/samplelist.php:305 admin/samplelist.php:467 admin/samplelist.php:478 -#: admin/operators.php:267 admin/operators.php:283 admin/operators.php:299 #: admin/samplesearch.php:101 admin/addshift.php:261 -#: admin/supervisorchat.php:79 admin/questionnairelist.php:390 -#: admin/questionnairelist.php:393 admin/questionnairelist.php:397 -#: admin/questionnairelist.php:401 admin/questionnairelist.php:405 -#: admin/questionnairelist.php:569 admin/operatorlist.php:251 -#: admin/operatorlist.php:269 admin/operatorlist.php:286 -#: admin/operatorlist.php:291 admin/set_outcomes.php:177 +#: admin/supervisorchat.php:79 admin/questionnairelist.php:376 +#: admin/questionnairelist.php:379 admin/questionnairelist.php:383 +#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 +#: admin/questionnairelist.php:507 admin/operatorlist.php:255 +#: admin/operatorlist.php:273 admin/operatorlist.php:290 +#: admin/operatorlist.php:295 admin/set_outcomes.php:177 #: admin/set_outcomes.php:178 admin/set_outcomes.php:179 #: admin/set_outcomes.php:180 admin/set_outcomes.php:181 #: admin/set_outcomes.php:184 admin/set_outcomes.php:185 @@ -253,27 +254,22 @@ msgstr "" #: admin/set_outcomes.php:264 admin/set_outcomes.php:265 #: admin/set_outcomes.php:266 admin/set_outcomes.php:267 #: admin/set_outcomes.php:268 admin/set_outcomes.php:269 -#: admin/assignsample.php:232 admin/assignsample.php:235 -#: admin/assignsample.php:328 admin/assignsample.php:330 -#: admin/assignsample.php:400 admin/assignsample.php:404 -#: admin/assignsample.php:410 admin/supervisor.php:200 -#: admin/supervisor.php:373 admin/supervisor.php:420 admin/quotarow.php:396 -#: admin/quotarow.php:570 admin/quotarow.php:600 +#: admin/supervisor.php:200 admin/supervisor.php:373 admin/supervisor.php:420 +#: admin/quotarow.php:396 admin/quotarow.php:575 admin/quotarow.php:605 #: admin/displayappointments.php:297 admin/displayappointments.php:321 -#: admin/new.php:220 admin/new.php:227 admin/new.php:234 admin/new.php:241 -#: admin/new.php:248 +#: admin/new.php:200 admin/new.php:207 admin/new.php:214 admin/new.php:221 +#: admin/new.php:228 msgid "Yes" msgstr "" -#: functions/functions.import.php:144 functions/functions.import.php:156 -#: admin/samplelist.php:304 admin/samplelist.php:305 admin/operators.php:267 -#: admin/operators.php:283 admin/operators.php:299 admin/addshift.php:261 -#: admin/supervisorchat.php:79 admin/questionnairelist.php:390 -#: admin/questionnairelist.php:393 admin/questionnairelist.php:397 -#: admin/questionnairelist.php:401 admin/questionnairelist.php:405 -#: admin/questionnairelist.php:569 admin/operatorlist.php:251 -#: admin/operatorlist.php:269 admin/operatorlist.php:286 -#: admin/operatorlist.php:291 admin/set_outcomes.php:177 +#: functions/functions.import.php:156 functions/functions.import.php:168 +#: admin/samplelist.php:304 admin/samplelist.php:305 admin/addshift.php:261 +#: admin/supervisorchat.php:79 admin/questionnairelist.php:376 +#: admin/questionnairelist.php:379 admin/questionnairelist.php:383 +#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 +#: admin/questionnairelist.php:507 admin/operatorlist.php:255 +#: admin/operatorlist.php:273 admin/operatorlist.php:290 +#: admin/operatorlist.php:295 admin/set_outcomes.php:177 #: admin/set_outcomes.php:178 admin/set_outcomes.php:179 #: admin/set_outcomes.php:180 admin/set_outcomes.php:181 #: admin/set_outcomes.php:184 admin/set_outcomes.php:185 @@ -281,31 +277,27 @@ msgstr "" #: admin/set_outcomes.php:264 admin/set_outcomes.php:265 #: admin/set_outcomes.php:266 admin/set_outcomes.php:267 #: admin/set_outcomes.php:268 admin/set_outcomes.php:269 -#: admin/assignsample.php:232 admin/assignsample.php:233 -#: admin/assignsample.php:235 admin/assignsample.php:328 -#: admin/assignsample.php:330 admin/assignsample.php:400 -#: admin/assignsample.php:401 admin/assignsample.php:404 -#: admin/assignsample.php:410 admin/supervisor.php:373 -#: admin/supervisor.php:420 admin/quotarow.php:396 admin/quotarow.php:570 -#: admin/quotarow.php:600 admin/displayappointments.php:297 -#: admin/displayappointments.php:321 admin/new.php:220 admin/new.php:227 -#: admin/new.php:234 admin/new.php:241 admin/new.php:248 +#: admin/supervisor.php:373 admin/supervisor.php:420 admin/quotarow.php:396 +#: admin/quotarow.php:575 admin/quotarow.php:605 +#: admin/displayappointments.php:297 admin/displayappointments.php:321 +#: admin/new.php:200 admin/new.php:207 admin/new.php:214 admin/new.php:221 +#: admin/new.php:228 msgid "No" msgstr "" -#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 +#: functions/functions.operator.php:146 msgid "morning" msgstr "" -#: functions/functions.operator.php:168 include/limesurvey/quexs.php:363 +#: functions/functions.operator.php:147 msgid "afternoon" msgstr "" -#: functions/functions.operator.php:169 include/limesurvey/quexs.php:364 +#: functions/functions.operator.php:148 msgid "evening" msgstr "" -#: functions/functions.operator.php:988 +#: functions/functions.operator.php:968 msgid "ERROR: You are not logged in." msgstr "" @@ -413,8 +405,8 @@ msgid "Sun" msgstr "" #: functions/functions.voip.php:449 selectextension.php:114 status.php:105 -#: admin/operators.php:271 admin/operatorlist.php:255 -#: admin/operatorlist.php:408 admin/extensionstatus.php:266 +#: admin/operatorlist.php:259 admin/operatorlist.php:412 +#: admin/extensionstatus.php:266 msgid "Extension" msgstr "" @@ -435,7 +427,7 @@ msgid "Reconnected" msgstr "" #: functions/functions.voip.php:553 status.php:124 -#: admin/extensionstatus.php:233 call.php:440 +#: admin/extensionstatus.php:233 call.php:444 msgid "Ringing" msgstr "" @@ -446,11 +438,11 @@ msgid " Extension " msgstr "" #: functions/functions.voip.php:565 status.php:128 -#: admin/extensionstatus.php:233 call.php:447 +#: admin/extensionstatus.php:233 call.php:451 msgid "Answered" msgstr "" -#: functions/functions.voip.php:577 call.php:437 call.php:444 call.php:451 +#: functions/functions.voip.php:577 call.php:441 call.php:448 call.php:455 msgid "Hangup" msgstr "" @@ -513,8 +505,8 @@ msgid "Choose extension" msgstr "" #: status.php:64 status.php:83 status_interface2.php:76 -#: admin/quotareport.php:310 admin/outcomes.php:88 admin/outcomes.php:200 -#: admin/quotarow.php:586 +#: admin/quotareport.php:263 admin/outcomes.php:88 admin/outcomes.php:200 +#: admin/quotarow.php:591 msgid "Status" msgstr "" @@ -607,7 +599,7 @@ msgstr "" #: performance.php:84 performance.php:91 casenote.php:116 #: appointmentlist.php:95 calllist.php:89 admin/outcomes.php:240 #: admin/callhistory.php:132 admin/callhistory.php:157 -#: admin/operatorlist.php:200 admin/operatorlist.php:408 +#: admin/operatorlist.php:204 admin/operatorlist.php:412 #: admin/casesbyoutcome.php:95 admin/supervisor.php:388 #: admin/supervisor.php:415 admin/supervisor.php:432 #: admin/operatorskill.php:251 admin/operatorperformance.php:86 @@ -616,8 +608,8 @@ msgstr "" msgid "Operator" msgstr "" -#: performance.php:84 performance.php:91 admin/quotareport.php:310 -#: admin/outcomes.php:305 admin/quotarow.php:586 +#: performance.php:84 performance.php:91 admin/quotareport.php:263 +#: admin/outcomes.php:305 admin/quotarow.php:591 #: admin/operatorperformance.php:86 admin/operatorperformance.php:109 msgid "Completions" msgstr "" @@ -640,13 +632,12 @@ msgstr "" #: casenote.php:75 admin/samplelist.php:283 admin/samplelist.php:491 #: admin/samplesearch.php:107 admin/sortsample.php:94 -#: admin/questionnairelist.php:375 admin/questionnairelist.php:523 -#: admin/questionnairelist.php:545 admin/questionnairelist.php:553 +#: admin/questionnairelist.php:361 admin/questionnairelist.php:461 +#: admin/questionnairelist.php:483 admin/questionnairelist.php:491 #: admin/callhistory.php:145 admin/availability.php:127 -#: admin/operatorlist.php:198 admin/import.php:48 admin/import.php:86 -#: admin/import.php:117 admin/casesbyoutcome.php:59 admin/assignsample.php:209 -#: admin/assignsample.php:307 admin/casestatus.php:215 respondent.php:101 -#: contactdetails.php:100 +#: admin/operatorlist.php:202 admin/import.php:48 admin/import.php:86 +#: admin/import.php:117 admin/casesbyoutcome.php:59 admin/casestatus.php:215 +#: respondent.php:101 contactdetails.php:100 msgid "Go back" msgstr "" @@ -716,9 +707,9 @@ msgstr "" msgid "Get a new case" msgstr "" -#: waitnextcase_interface2.php:200 call_interface2.php:299 -#: call_interface2.php:317 call.php:282 call.php:284 call.php:400 call.php:405 -#: call.php:421 call.php:427 index_interface2.php:233 +#: waitnextcase_interface2.php:200 call_interface2.php:303 +#: call_interface2.php:321 call.php:286 call.php:288 call.php:404 call.php:409 +#: call.php:425 call.php:431 index_interface2.php:233 msgid "End work" msgstr "" @@ -772,8 +763,8 @@ msgstr "" msgid "Begin the manual recording now..." msgstr "" -#: record.php:84 email.php:280 call_interface2.php:211 call.php:212 -#: call.php:230 index.php:173 +#: record.php:84 email.php:111 call_interface2.php:215 call.php:216 +#: call.php:234 index.php:173 msgid "Start REC" msgstr "" @@ -785,144 +776,6 @@ msgstr "" msgid "Stop the manual recording now..." msgstr "" -#: include/limesurvey/quexs.php:171 admin/databasestrings.php:90 -msgid "Self completed online" -msgstr "" - -#: include/limesurvey/quexs.php:676 include/limesurvey/quexs.php:755 -msgid "Not on an appointment" -msgstr "" - -#: include/limesurvey/quexs.php:678 include/limesurvey/quexs.php:757 -msgid "On an appointment" -msgstr "" - -#: include/limesurvey/quexs.php:989 -msgid "All samples" -msgstr "" - -#: include/limesurvey/common_functions.php:6298 -msgid "queXS: Number of call attempts" -msgstr "" - -#: include/limesurvey/common_functions.php:6299 -msgid "queXS: On appointment?" -msgstr "" - -#: include/limesurvey/common_functions.php:6300 -msgid "queXS: Percentage complete" -msgstr "" - -#: include/limesurvey/common_functions.php:6301 -msgid "queXS: Number of answering machine messages left" -msgstr "" - -#: include/limesurvey/optout.php:83 -msgid "Self completion refused via opt out function" -msgstr "" - -#: include/limesurvey/admin/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:651 -#: include/limesurvey/admin/exportresults.php:652 -#: include/limesurvey/admin/exportresults.php:980 callhistory.php:88 -#: admin/samplesearch.php:162 admin/callhistory.php:132 -#: admin/callhistory.php:157 admin/casesbyoutcome.php:117 -#: admin/dataoutput.php:85 admin/extensionstatus.php:266 -#: admin/displayappointments.php:313 admin/displayappointments.php:337 -msgid "Case ID" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:259 -#: include/limesurvey/admin/exportresults.php:656 -#: include/limesurvey/admin/exportresults.php:657 -#: include/limesurvey/admin/exportresults.php:983 admin/set_outcomes.php:250 -#: admin/set_outcomes.php:277 admin/dataoutput.php:93 -msgid "Outcome ID" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:260 -#: include/limesurvey/admin/exportresults.php:661 -#: include/limesurvey/admin/exportresults.php:662 -#: include/limesurvey/admin/exportresults.php:986 -msgid "Case outcome" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:261 -#: include/limesurvey/admin/exportresults.php:611 -#: include/limesurvey/admin/exportresults.php:612 -#: include/limesurvey/admin/exportresults.php:989 admin/dataoutput.php:93 -msgid "Number of call attempts" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:262 -#: include/limesurvey/admin/exportresults.php:616 -#: include/limesurvey/admin/exportresults.php:617 -#: include/limesurvey/admin/exportresults.php:992 -msgid "Number of answering machine messages left" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:263 -#: include/limesurvey/admin/exportresults.php:621 -#: include/limesurvey/admin/exportresults.php:622 -#: include/limesurvey/admin/exportresults.php:995 admin/callhistory.php:132 -#: admin/callhistory.php:157 admin/supervisor.php:427 admin/dataoutput.php:93 -msgid "Case notes" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:264 -#: include/limesurvey/admin/exportresults.php:626 -#: include/limesurvey/admin/exportresults.php:627 -#: include/limesurvey/admin/exportresults.php:998 admin/dataoutput.php:93 -msgid "Total interview time over all calls (mins)" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:265 -#: include/limesurvey/admin/exportresults.php:631 -#: include/limesurvey/admin/exportresults.php:632 -#: include/limesurvey/admin/exportresults.php:1001 admin/dataoutput.php:93 -msgid "Interview time for last call (mins)" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:266 -#: include/limesurvey/admin/exportresults.php:636 -#: include/limesurvey/admin/exportresults.php:637 -#: include/limesurvey/admin/exportresults.php:1004 admin/dataoutput.php:93 -msgid "Last number dialled" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:267 -#: include/limesurvey/admin/exportresults.php:641 -#: include/limesurvey/admin/exportresults.php:642 -#: include/limesurvey/admin/exportresults.php:1007 admin/dataoutput.php:93 -msgid "Operator username for last call" -msgstr "" - -#: include/limesurvey/admin/exportresults.php:268 -#: include/limesurvey/admin/exportresults.php:646 -#: include/limesurvey/admin/exportresults.php:647 -#: include/limesurvey/admin/exportresults.php:1010 admin/outcomes.php:305 -#: admin/dataoutput.php:93 -msgid "Shift report" -msgstr "" - #: voip/downloadvoipclient.php:59 msgid "Error: Cannot write to temporary directory" msgstr "" @@ -1018,11 +871,11 @@ msgstr "" msgid "View summary results" msgstr "" -#: client/index.php:141 +#: client/index.php:145 msgid "You are not a valid client" msgstr "" -#: supervisorchat.php:62 admin/supervisorchat.php:66 admin/index.php:196 +#: supervisorchat.php:62 admin/supervisorchat.php:66 admin/index.php:195 #: index.php:315 msgid "Supervisor chat" msgstr "" @@ -1059,50 +912,49 @@ msgstr "" msgid "Supervisor chat is not enabled" msgstr "" -#: email.php:248 +#: email.php:96 msgid "Self completion invitation sent via email to" msgstr "" -#: email.php:287 email.php:291 email.php:297 email.php:318 +#: email.php:118 email.php:122 email.php:128 email.php:149 #: index_interface2.php:228 msgid "Invitation Email" msgstr "" -#: email.php:304 +#: email.php:135 msgid "The email did not send" msgstr "" -#: email.php:309 +#: email.php:140 msgid "The email address is not valid" msgstr "" -#: email.php:338 +#: email.php:169 msgid "Email respondent for self completion" msgstr "" -#: email.php:347 admin/operators.php:245 admin/clients.php:233 -#: admin/operatorlist.php:228 +#: email.php:178 admin/clients.php:233 admin/operatorlist.php:232 msgid "First name" msgstr "" -#: email.php:350 admin/operators.php:249 admin/operatorlist.php:232 +#: email.php:181 admin/operatorlist.php:236 msgid "Last name" msgstr "" -#: email.php:353 admin/operators.php:253 admin/clients.php:241 -#: admin/operatorlist.php:236 index.php:171 +#: email.php:184 admin/clients.php:241 admin/operatorlist.php:240 +#: index.php:171 msgid "Email" msgstr "" -#: email.php:357 +#: email.php:188 msgid "Send invitation" msgstr "" -#: email.php:359 +#: email.php:190 msgid "Send invitation and Hang up" msgstr "" -#: email.php:365 +#: email.php:196 msgid "Self completion email not available for this questionnaire" msgstr "" @@ -1114,16 +966,56 @@ msgstr "" msgid "No calls ever made" msgstr "" +#: callhistory.php:88 admin/samplesearch.php:162 admin/callhistory.php:132 +#: admin/callhistory.php:157 admin/casesbyoutcome.php:117 +#: admin/dataoutput.php:85 admin/extensionstatus.php:266 +#: admin/displayappointments.php:313 admin/displayappointments.php:337 +msgid "Case ID" +msgstr "" + +#: usercontrol.php:96 usercontrol.php:163 +msgid "Incorrect username and/or password!" +msgstr "" + +#: usercontrol.php:98 usercontrol.php:165 usercontrol.php:174 +#: login_check.php:103 +msgid "" +"You have exceeded you maximum login attempts. Please wait %d minutes before " +"trying again" +msgstr "" + +#: usercontrol.php:99 usercontrol.php:166 usercontrol.php:175 +msgid "Continue" +msgstr "" + +#: usercontrol.php:113 +msgid "" +"Warning: You are still using the default password ('password'). Please " +"change your password and re-login again." +msgstr "" + +#: usercontrol.php:130 +msgid "Logged in" +msgstr "" + +#: usercontrol.php:131 +msgid "Welcome %s!" +msgstr "" + +#: usercontrol.php:183 +msgid "Logout successful." +msgstr "" + #: availability.php:61 index.php:236 index_interface2.php:261 msgid "Availability" msgstr "" -#: availability.php:128 admin/supervisor.php:519 +#: availability.php:128 admin/supervisor.php:521 msgid "" "Select groups to limit availability (Selecting none means always available)" msgstr "" -#: availability.php:148 admin/supervisor.php:538 +#: availability.php:148 admin/supervisor.php:540 msgid "Availability groups not defined for this questionnaire" msgstr "" @@ -1152,34 +1044,33 @@ msgid "Reasons:" msgstr "" #: nocaseavailable.php:86 nocaseavailable.php:98 admin/samplelist.php:462 -#: admin/questionnairelist.php:564 admin/operatorlist.php:290 +#: admin/questionnairelist.php:502 admin/operatorlist.php:294 msgid "Enabled" msgstr "" #: nocaseavailable.php:86 admin/samplelist.php:460 -#: admin/questionnairelist.php:562 admin/index.php:212 +#: admin/questionnairelist.php:500 admin/index.php:211 msgid "Disabled" msgstr "" #: nocaseavailable.php:98 nocaseavailable.php:122 admin/samplelist.php:339 -#: admin/availabilitygroup.php:133 admin/outcomes.php:169 +#: admin/remote.php:132 admin/availabilitygroup.php:133 admin/outcomes.php:169 #: admin/outcomes.php:220 msgid "ID" msgstr "" #: nocaseavailable.php:98 nocaseavailable.php:122 admin/samplelist.php:326 #: admin/set_outcomes.php:146 admin/set_outcomes.php:189 -#: admin/set_outcomes.php:250 admin/set_outcomes.php:277 admin/quota.php:256 -#: admin/quotarow.php:422 admin/quotarow.php:460 admin/quotarow.php:482 -#: admin/quotarow.php:508 admin/quotarow.php:555 admin/quotarow.php:586 +#: admin/set_outcomes.php:250 admin/set_outcomes.php:277 admin/quota.php:259 +#: admin/quotarow.php:422 admin/quotarow.php:461 admin/quotarow.php:487 +#: admin/quotarow.php:513 admin/quotarow.php:560 admin/quotarow.php:591 msgid "Description" msgstr "" -#: nocaseavailable.php:122 admin/samplelist.php:317 admin/quotareport.php:310 -#: admin/assigntimeslots.php:265 admin/outcomes.php:128 admin/outcomes.php:184 +#: nocaseavailable.php:122 admin/samplelist.php:317 admin/quotareport.php:263 +#: admin/assigntimeslots.php:274 admin/outcomes.php:128 admin/outcomes.php:184 #: admin/sortsample.php:139 admin/callhistory.php:132 #: admin/callhistory.php:157 admin/callhistory.php:168 admin/quota.php:137 -#: admin/assignsample.php:211 admin/assignsample.php:364 #: admin/supervisor.php:313 admin/quotarow.php:312 admin/casestatus.php:126 #: admin/casestatus.php:244 admin/displayappointments.php:313 #: admin/displayappointments.php:337 @@ -1198,27 +1089,27 @@ msgstr "" msgid "Limesurvey links:" msgstr "" -#: nocaseavailable.php:204 +#: nocaseavailable.php:206 msgid "ERROR: No tokens table defined for LimeSurvey questionnaire" msgstr "" -#: nocaseavailable.php:204 +#: nocaseavailable.php:206 msgid "from questionnaire:" msgstr "" -#: nocaseavailable.php:206 +#: nocaseavailable.php:208 msgid "Tokens table exists for Limesurvey questionnaire:" msgstr "" -#: nocaseavailable.php:211 +#: nocaseavailable.php:213 msgid "ERROR: Cannot find questionnaires with LimeSurvey ID's" msgstr "" -#: nocaseavailable.php:231 +#: nocaseavailable.php:233 msgid "ERROR: Quota reached for this question" msgstr "" -#: nocaseavailable.php:250 +#: nocaseavailable.php:252 msgid "POSSIBLE ERROR: Row quota reached for this quota" msgstr "" @@ -1233,8 +1124,7 @@ msgid "" "Your database does not have timezones installed, please see here for details" msgstr "" -#: admin/timezonetemplate.php:109 admin/supervisor.php:157 admin/new.php:198 -#: admin/new.php:406 +#: admin/timezonetemplate.php:109 admin/supervisor.php:157 msgid "or" msgstr "" @@ -1294,7 +1184,7 @@ msgstr "" msgid "Rename, Set viewing permissions & Manage sample variables" msgstr "" -#: admin/samplelist.php:281 admin/samplelist.php:489 admin/index.php:133 +#: admin/samplelist.php:281 admin/samplelist.php:489 admin/index.php:131 msgid "Sample management" msgstr "" @@ -1302,11 +1192,13 @@ msgstr "" msgid "Search this sample" msgstr "" -#: admin/samplelist.php:326 admin/availabilitygroup.php:141 +#: admin/samplelist.php:326 admin/remote.php:165 +#: admin/availabilitygroup.php:141 msgid "Enter" msgstr "" -#: admin/samplelist.php:326 admin/availabilitygroup.php:141 +#: admin/samplelist.php:326 admin/remote.php:165 +#: admin/availabilitygroup.php:141 msgid "new" msgstr "" @@ -1334,9 +1226,8 @@ msgstr "" msgid "Delete ?" msgstr "" -#: admin/samplelist.php:343 admin/addshift.php:268 admin/assignsample.php:238 -#: admin/quotarow.php:398 admin/extensionstatus.php:210 -#: admin/displayappointments.php:281 +#: admin/samplelist.php:343 admin/addshift.php:268 admin/quotarow.php:398 +#: admin/extensionstatus.php:210 admin/displayappointments.php:281 msgid "Save changes" msgstr "" @@ -1358,29 +1249,27 @@ msgstr "" msgid "Fix this sample " msgstr "" -#: admin/samplelist.php:465 admin/questionnairelist.php:567 -#: admin/operatorlist.php:390 +#: admin/samplelist.php:465 admin/questionnairelist.php:505 +#: admin/operatorlist.php:394 msgid "Enable" msgstr "" #: admin/samplelist.php:467 admin/samplelist.php:478 -#: admin/questionnairelist.php:569 admin/assignsample.php:330 -#: admin/supervisor.php:373 admin/supervisor.php:420 -#: admin/displayappointments.php:297 admin/displayappointments.php:321 +#: admin/questionnairelist.php:507 admin/supervisor.php:373 +#: admin/supervisor.php:420 admin/displayappointments.php:297 +#: admin/displayappointments.php:321 msgid "ARE YOU SURE?" msgstr "" -#: admin/samplelist.php:467 admin/questionnairelist.php:569 -#: admin/operatorlist.php:392 +#: admin/samplelist.php:467 admin/questionnairelist.php:507 +#: admin/operatorlist.php:396 msgid "Disable" msgstr "" -#: admin/samplelist.php:471 admin/operators.php:260 admin/operators.php:274 -#: admin/sortsample.php:105 admin/sortsample.php:139 -#: admin/questionnairelist.php:385 admin/clientquestionnaire.php:308 -#: admin/operatorlist.php:243 admin/operatorlist.php:259 -#: admin/operatorlist.php:399 admin/assignsample.php:329 -#: admin/assignsample.php:364 admin/supervisor.php:374 admin/quotarow.php:586 +#: admin/samplelist.php:471 admin/sortsample.php:105 admin/sortsample.php:139 +#: admin/questionnairelist.php:371 admin/clientquestionnaire.php:275 +#: admin/operatorlist.php:247 admin/operatorlist.php:263 +#: admin/operatorlist.php:403 admin/supervisor.php:374 admin/quotarow.php:591 #: admin/shiftreport.php:102 admin/shiftreport.php:110 #: admin/displayappointments.php:313 admin/displayappointments.php:337 msgid "Edit" @@ -1398,12 +1287,12 @@ msgstr "" msgid "DELETE SAMPLE" msgstr "" -#: admin/samplelist.php:480 admin/samplesearch.php:86 admin/index.php:134 +#: admin/samplelist.php:480 admin/samplesearch.php:86 admin/index.php:132 msgid "Search the sample" msgstr "" -#: admin/samplelist.php:481 admin/questionnairelist.php:593 -#: admin/index.php:168 index.php:255 index_interface2.php:277 +#: admin/samplelist.php:481 admin/questionnairelist.php:531 +#: admin/index.php:166 index.php:255 index_interface2.php:277 msgid "Call history" msgstr "" @@ -1415,7 +1304,7 @@ msgstr "" msgid "Sample list" msgstr "" -#: admin/samplelist.php:492 admin/index.php:132 +#: admin/samplelist.php:492 admin/index.php:130 msgid "Import a sample file" msgstr "" @@ -1491,12 +1380,12 @@ msgid "Completed case closing" msgstr "" #: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 -#: admin/systemsortprocess.php:359 admin/systemsortprocess.php:361 +#: admin/systemsortprocess.php:356 admin/systemsortprocess.php:358 msgid "This task took" msgstr "" #: admin/systemsortprocess.php:194 admin/systemsortprocess.php:196 -#: admin/systemsortprocess.php:359 admin/systemsortprocess.php:361 +#: admin/systemsortprocess.php:356 admin/systemsortprocess.php:358 #: nocallavailable.php:208 msgid "seconds" msgstr "" @@ -1521,11 +1410,11 @@ msgstr "" msgid "No call attempts without calls" msgstr "" -#: admin/systemsortprocess.php:359 +#: admin/systemsortprocess.php:356 msgid "Completed sort" msgstr "" -#: admin/systemsortprocess.php:361 +#: admin/systemsortprocess.php:358 msgid "Failed to complete sort" msgstr "" @@ -1556,87 +1445,14 @@ msgid "" "problems, it is not recommended to use this feature." msgstr "" -#: admin/operators.php:146 -msgid "Added operator :" -msgstr "" - -#: admin/operators.php:149 -msgid "FreePBX needs to be reloaded for the new VoIP extension to take effect" -msgstr "" - -#: admin/operators.php:163 -msgid "Could not add operator. There may already be an operator of this name:" -msgstr "" - -#: admin/operators.php:169 admin/operators.php:309 admin/operatorlist.php:424 -msgid "Add an operator" -msgstr "" - -#: admin/operators.php:178 -msgid "The username and extension must be unique for each operator." -msgstr "" - -#: admin/operators.php:233 admin/clients.php:126 admin/clients.php:221 -#: admin/clientquestionnaire.php:293 admin/operatorlist.php:216 -#: admin/operatorlist.php:408 admin/operatorskill.php:251 -#: admin/operatorquestionnaire.php:247 -msgid "Username" -msgstr "" - -#: admin/operators.php:237 admin/clients.php:225 admin/operatorlist.php:220 -msgid "Password" -msgstr "" - -#: admin/operators.php:240 admin/clients.php:228 admin/operatorlist.php:223 -#: admin/extensionstatus.php:201 -msgid "Generate" -msgstr "" - -#: admin/operators.php:240 admin/clients.php:228 admin/operatorlist.php:223 -msgid "Password with" -msgstr "" - -#: admin/operators.php:241 admin/clients.php:229 admin/operatorlist.php:224 -msgid "characters" -msgstr "" - -#: admin/operators.php:261 admin/operatorlist.php:244 -msgid "TimeZones list" -msgstr "" - -#: admin/operators.php:266 admin/operatorlist.php:250 -msgid "Uses VoIP" -msgstr "" - -#: admin/operators.php:275 admin/operatorlist.php:261 -#: admin/operatorlist.php:425 -msgid "Extensions" -msgstr "" - -#: admin/operators.php:282 admin/operatorlist.php:268 -msgid "Uses chat" -msgstr "" - -#: admin/operators.php:288 admin/operatorlist.php:274 -msgid "Jabber/XMPP chat user" -msgstr "" - -#: admin/operators.php:292 admin/operatorlist.php:278 -msgid "Jabber/XMPP chat password" -msgstr "" - -#: admin/operators.php:298 admin/operatorlist.php:285 -msgid "Is the operator a system administrator?" -msgstr "" - -#: admin/quotareport.php:114 admin/questionnairelist.php:608 -#: admin/index.php:170 +#: admin/quotareport.php:114 admin/questionnairelist.php:546 +#: admin/index.php:168 msgid "Quota report" msgstr "" -#: admin/quotareport.php:116 admin/assigntimeslots.php:161 +#: admin/quotareport.php:116 admin/assigntimeslots.php:163 #: admin/questionnaireprefill.php:107 admin/outcomes.php:74 -#: admin/addshift.php:173 admin/assignsample.php:313 +#: admin/addshift.php:173 msgid "Select a questionnaire" msgstr "" @@ -1644,12 +1460,12 @@ msgstr "" msgid "Select a sample" msgstr "" -#: admin/quotareport.php:212 admin/quotareport.php:219 admin/quotarow.php:571 +#: admin/quotareport.php:212 admin/quotareport.php:219 admin/quotarow.php:576 msgid "closed" msgstr "" #: admin/quotareport.php:212 admin/quotareport.php:214 -#: admin/quotareport.php:221 admin/quotarow.php:571 +#: admin/quotareport.php:221 admin/quotarow.php:576 msgid "open" msgstr "" @@ -1657,81 +1473,142 @@ msgstr "" msgid "close" msgstr "" -#: admin/quotareport.php:307 +#: admin/quotareport.php:260 msgid "Total sample" msgstr "" -#: admin/quotareport.php:310 +#: admin/quotareport.php:263 msgid "Strata" msgstr "" -#: admin/quotareport.php:310 admin/quotarow.php:134 admin/quotarow.php:390 -#: admin/quotarow.php:586 +#: admin/quotareport.php:263 admin/quotarow.php:134 admin/quotarow.php:390 +#: admin/quotarow.php:591 msgid "Quota" msgstr "" -#: admin/quotareport.php:310 +#: admin/quotareport.php:263 msgid "Sample Used" msgstr "" -#: admin/quotareport.php:310 +#: admin/quotareport.php:263 msgid "Sample Remaining" msgstr "" -#: admin/quotareport.php:310 +#: admin/quotareport.php:263 msgid "% Complete" msgstr "" -#: admin/quotareport.php:310 +#: admin/quotareport.php:263 msgid "Set priority" msgstr "" -#: admin/quotareport.php:310 admin/quotarow.php:586 +#: admin/quotareport.php:263 admin/quotarow.php:591 msgid "Auto prioritise" msgstr "" -#: admin/quotareport.php:314 +#: admin/quotareport.php:267 msgid "Update priorities" msgstr "" -#: admin/assigntimeslots.php:159 admin/index.php:141 +#: admin/remote.php:80 +msgid "Questionnaire services" +msgstr "" + +#: admin/remote.php:116 admin/remote.php:132 admin/availabilitygroup.php:122 +#: admin/availabilitygroup.php:133 +msgid "Modify" +msgstr "" + +#: admin/remote.php:121 +msgid "" +"Questionnaire services available. Services include Limesurvey remote control." +msgstr "" + +#: admin/remote.php:124 +msgid "Service not added/updated. Error: " +msgstr "" + +#: admin/remote.php:129 +msgid "No questionnaire services defined" +msgstr "" + +#: admin/remote.php:132 +msgid "Service" +msgstr "" + +#: admin/remote.php:148 +msgid "Update questionnaire service" +msgstr "" + +#: admin/remote.php:154 +msgid "Update questionnaire serivce" +msgstr "" + +#: admin/remote.php:164 +msgid "Add new questionnaire service" +msgstr "" + +#: admin/remote.php:165 +msgid "Questionnaire service description" +msgstr "" + +#: admin/remote.php:166 +msgid "RPC Url (eg: http://localhost/limesurvey/index.php/admin/remotecontrol)" +msgstr "" + +#: admin/remote.php:167 +msgid "Username (eg: admin)" +msgstr "" + +#: admin/remote.php:168 +msgid "Password (eg: password)" +msgstr "" + +#: admin/remote.php:169 +msgid "Questionnaire entry Url (eg: http://localhost/limesurvey/index.php/)" +msgstr "" + +#: admin/remote.php:170 +msgid "Add questionnaire serivce" +msgstr "" + +#: admin/assigntimeslots.php:161 admin/index.php:139 msgid "Assign Time slots" msgstr "" -#: admin/assigntimeslots.php:168 +#: admin/assigntimeslots.php:170 msgid "Time slot groups" msgstr "" -#: admin/assigntimeslots.php:169 +#: admin/assigntimeslots.php:171 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/assigntimeslots.php:171 admin/assigntimeslots.php:219 -#: admin/assigntimeslots.php:273 admin/assignsample.php:330 -#: admin/casestatus.php:101 +#: admin/assigntimeslots.php:173 admin/assigntimeslots.php:222 +#: admin/assigntimeslots.php:283 admin/casestatus.php:101 msgid "Click to unassign" msgstr "" -#: admin/assigntimeslots.php:181 +#: admin/assigntimeslots.php:183 msgid "There are no time slots groups selected for this questionnaire" msgstr "" -#: admin/assigntimeslots.php:185 +#: admin/assigntimeslots.php:187 msgid "Time slots groups selected for this questionnaire" msgstr "" -#: admin/assigntimeslots.php:207 +#: admin/assigntimeslots.php:209 msgid "Add time slot group" msgstr "" -#: admin/assigntimeslots.php:216 +#: admin/assigntimeslots.php:218 msgid "Call attempt time slots" msgstr "" -#: admin/assigntimeslots.php:217 admin/assigntimeslots.php:263 +#: admin/assigntimeslots.php:219 admin/assigntimeslots.php:272 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 " @@ -1740,32 +1617,49 @@ msgid "" "missing timeslots." msgstr "" -#: admin/assigntimeslots.php:229 +#: admin/assigntimeslots.php:232 msgid "There are no call attempt time slots selected for this questionnaire" msgstr "" -#: admin/assigntimeslots.php:233 +#: admin/assigntimeslots.php:236 msgid "Call attempt time slots selected for this questionnaire" msgstr "" -#: admin/assigntimeslots.php:256 +#: admin/assigntimeslots.php:237 admin/assigntimeslots.php:299 +msgid "Availability group" +msgstr "" + +#: admin/assigntimeslots.php:237 admin/assigntimeslots.php:299 +msgid "Weight" +msgstr "" + +#: admin/assigntimeslots.php:237 admin/assigntimeslots.php:299 +#: admin/extensionstatus.php:231 +msgid "Unassign" +msgstr "" + +#: admin/assigntimeslots.php:260 admin/assigntimeslots.php:321 +msgid "Weighting (relative number of calls in this slot)" +msgstr "" + +#: admin/assigntimeslots.php:265 msgid "Add call attempt time slot" msgstr "" -#: admin/assigntimeslots.php:262 +#: admin/assigntimeslots.php:271 msgid "Call attempt time slots for sample" msgstr "" -#: admin/assigntimeslots.php:283 +#: admin/assigntimeslots.php:294 msgid "" "There are no call attempt time slots selected for this questionnaire sample" msgstr "" -#: admin/assigntimeslots.php:287 +#: admin/assigntimeslots.php:298 msgid "Call attempt time slots selected for this sample" msgstr "" -#: admin/assigntimeslots.php:310 +#: admin/assigntimeslots.php:327 msgid "Add call attempt time slot for sample" msgstr "" @@ -1789,14 +1683,14 @@ msgstr "" msgid "SGQA code" msgstr "" -#: admin/questionnaireprefill.php:134 admin/quotarow.php:508 +#: admin/questionnaireprefill.php:134 admin/quotarow.php:513 msgid "Sample variable" msgstr "" #: admin/questionnaireprefill.php:134 admin/samplesearch.php:101 -#: admin/clientquestionnaire.php:307 admin/set_outcomes.php:278 +#: admin/clientquestionnaire.php:274 admin/set_outcomes.php:278 #: admin/supervisor.php:200 admin/supervisor.php:373 admin/supervisor.php:420 -#: admin/quotarow.php:422 admin/quotarow.php:508 +#: admin/quotarow.php:422 admin/quotarow.php:513 #: admin/displayappointments.php:313 admin/displayappointments.php:337 msgid "Delete" msgstr "" @@ -1805,35 +1699,35 @@ msgstr "" msgid "Select a question to pre fill" msgstr "" -#: admin/questionnaireprefill.php:172 +#: admin/questionnaireprefill.php:169 msgid "Enter a value to pre fill this question with:" msgstr "" -#: admin/questionnaireprefill.php:174 +#: admin/questionnaireprefill.php:171 msgid "Possible uses:" msgstr "" -#: admin/questionnaireprefill.php:176 +#: admin/questionnaireprefill.php:173 msgid "{Respondent:firstName} First name of the respondent" msgstr "" -#: admin/questionnaireprefill.php:177 +#: admin/questionnaireprefill.php:174 msgid "{Respondent:lastName} Last name of the respondent" msgstr "" -#: admin/questionnaireprefill.php:178 +#: admin/questionnaireprefill.php:175 msgid "{Sample:var} A record from the sample where the column name is 'var'" msgstr "" -#: admin/questionnaireprefill.php:187 +#: admin/questionnaireprefill.php:184 msgid "The value to pre fill" msgstr "" -#: admin/questionnaireprefill.php:188 +#: admin/questionnaireprefill.php:185 msgid "or: Select pre fill from sample list" msgstr "" -#: admin/questionnaireprefill.php:196 +#: admin/questionnaireprefill.php:193 msgid "Add pre fill" msgstr "" @@ -1849,10 +1743,6 @@ msgstr "" msgid "Time slots" msgstr "" -#: admin/availabilitygroup.php:122 admin/availabilitygroup.php:133 -msgid "Modify" -msgstr "" - #: admin/availabilitygroup.php:127 msgid "" "Time slots define periods of time during particular days of the week. These " @@ -1932,7 +1822,7 @@ msgstr "" msgid "Operator call outcomes" msgstr "" -#: admin/outcomes.php:274 admin/questionnairelist.php:576 index.php:264 +#: admin/outcomes.php:274 admin/questionnairelist.php:514 index.php:264 #: index_interface2.php:285 msgid "Shifts" msgstr "" @@ -1957,7 +1847,11 @@ msgstr "" msgid "Shift time" msgstr "" -#: admin/outcomes.php:305 admin/operatorlist.php:428 admin/index.php:161 +#: admin/outcomes.php:305 admin/dataoutput.php:93 +msgid "Shift report" +msgstr "" + +#: admin/outcomes.php:305 admin/operatorlist.php:432 admin/index.php:159 msgid "Operator performance" msgstr "" @@ -2007,7 +1901,7 @@ msgid "Result" msgstr "" #: admin/bulkappointment.php:134 admin/bulkappointment.php:223 -#: admin/bulkappointment.php:259 admin/index.php:185 +#: admin/bulkappointment.php:259 admin/index.php:183 msgid "Bulk appointment generator" msgstr "" @@ -2073,7 +1967,7 @@ msgstr "" msgid "Select bulk appointment CSV file to upload" msgstr "" -#: admin/bulkappointment.php:284 admin/import.php:134 admin/quotarow.php:613 +#: admin/bulkappointment.php:284 admin/import.php:134 admin/quotarow.php:618 msgid "Select file" msgstr "" @@ -2081,7 +1975,7 @@ msgstr "" msgid "Upload file" msgstr "" -#: admin/callrestrict.php:104 admin/index.php:194 +#: admin/callrestrict.php:104 admin/index.php:193 msgid "Set call restriction times" msgstr "" @@ -2115,7 +2009,7 @@ msgid "" "shifts" msgstr "" -#: admin/addshift.php:145 admin/index.php:145 +#: admin/addshift.php:145 admin/index.php:143 msgid "Shift management" msgstr "" @@ -2172,7 +2066,7 @@ msgstr "" msgid "List and sort samples" msgstr "" -#: admin/sortsample.php:92 admin/index.php:136 +#: admin/sortsample.php:92 admin/index.php:134 msgid "Sort questionnaire samples" msgstr "" @@ -2185,52 +2079,46 @@ msgid "Samples selected for this questionnaire" msgstr "" #: admin/sortsample.php:101 admin/sortsample.php:102 -#: admin/assignsample.php:224 admin/assignsample.php:227 -#: admin/assignsample.php:324 admin/assignsample.php:325 -#: admin/assignsample.php:389 admin/assignsample.php:393 msgid "Unlimited" msgstr "" -#: admin/sortsample.php:103 admin/assignsample.php:326 +#: admin/sortsample.php:103 msgid "Sequential" msgstr "" -#: admin/sortsample.php:103 admin/assignsample.php:326 +#: admin/sortsample.php:103 msgid "Random" msgstr "" -#: admin/sortsample.php:104 admin/assignsample.php:230 -#: admin/assignsample.php:327 admin/assignsample.php:397 +#: admin/sortsample.php:104 msgid "Never" msgstr "" -#: admin/sortsample.php:120 admin/assignsample.php:344 +#: admin/sortsample.php:120 msgid "Pull step Down" msgstr "" -#: admin/sortsample.php:121 admin/assignsample.php:345 +#: admin/sortsample.php:121 msgid "Push step Up" msgstr "" -#: admin/sortsample.php:139 admin/assignsample.php:364 +#: admin/sortsample.php:139 msgid "Sort order" msgstr "" -#: admin/sortsample.php:139 admin/assignsample.php:222 -#: admin/assignsample.php:364 admin/assignsample.php:387 +#: admin/sortsample.php:139 msgid "Max calls" msgstr "" -#: admin/sortsample.php:139 admin/assignsample.php:225 -#: admin/assignsample.php:364 admin/assignsample.php:391 +#: admin/sortsample.php:139 msgid "Max call attempts" msgstr "" -#: admin/sortsample.php:139 admin/assignsample.php:364 +#: admin/sortsample.php:139 msgid "Answering machine messages" msgstr "" -#: admin/sortsample.php:139 admin/assignsample.php:364 +#: admin/sortsample.php:139 msgid "Selection type" msgstr "" @@ -2238,183 +2126,155 @@ msgstr "" msgid "No samples assigned to questionnaires" msgstr "" -#: admin/questionnairelist.php:353 +#: admin/questionnairelist.php:339 msgid "Modify Questionnaire " msgstr "" -#: admin/questionnairelist.php:375 +#: admin/questionnairelist.php:361 msgid "Assigned survey" msgstr "" -#: admin/questionnairelist.php:379 +#: admin/questionnairelist.php:365 msgid "Edit instrument in Limesurvey" msgstr "" -#: admin/questionnairelist.php:385 admin/questionnairelist.php:386 -#: admin/new.php:183 admin/new.php:185 +#: admin/questionnairelist.php:371 admin/questionnairelist.php:372 +#: admin/new.php:171 admin/new.php:173 msgid "Name for questionnaire:" msgstr "" -#: admin/questionnairelist.php:389 admin/new.php:218 +#: admin/questionnairelist.php:375 admin/new.php:198 msgid "Restrict appointments to shifts?" msgstr "" -#: admin/questionnairelist.php:392 admin/new.php:225 +#: admin/questionnairelist.php:378 admin/new.php:205 msgid "Restrict work to shifts?" msgstr "" -#: admin/questionnairelist.php:396 admin/new.php:232 +#: admin/questionnairelist.php:382 admin/new.php:212 msgid "Questionnaire for testing only?" msgstr "" -#: admin/questionnairelist.php:400 admin/new.php:239 +#: admin/questionnairelist.php:386 admin/new.php:219 msgid "Allow operators to generate referrals?" msgstr "" -#: admin/questionnairelist.php:404 admin/new.php:246 +#: admin/questionnairelist.php:390 admin/new.php:226 msgid "Allow for respondent self completion via email invitation?" msgstr "" -#: admin/questionnairelist.php:409 admin/new.php:254 -msgid "Questionnaire display mode for respondent" -msgstr "" - -#: admin/questionnairelist.php:412 admin/new.php:257 -msgid "All in one" -msgstr "" - -#: admin/questionnairelist.php:413 admin/new.php:258 -msgid "Question by question" -msgstr "" - -#: admin/questionnairelist.php:414 admin/new.php:259 -msgid "Group at a time" -msgstr "" - -#: admin/questionnairelist.php:419 admin/new.php:264 -msgid "Limesurvey template for respondent" -msgstr "" - -#: admin/questionnairelist.php:448 admin/new.php:294 -msgid "URL to forward respondents on self completion (required)" -msgstr "" - -#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 -#: admin/questionnairelist.php:479 admin/questionnairelist.php:489 -#: admin/questionnairelist.php:505 admin/questionnairelist.php:515 -#: admin/new.php:330 admin/new.php:340 admin/new.php:350 admin/new.php:360 -#: admin/new.php:372 admin/new.php:382 +#: admin/questionnairelist.php:399 admin/questionnairelist.php:409 +#: admin/questionnairelist.php:419 admin/questionnairelist.php:429 +#: admin/questionnairelist.php:443 admin/questionnairelist.php:453 +#: admin/new.php:260 admin/new.php:270 admin/new.php:280 admin/new.php:290 +#: admin/new.php:302 admin/new.php:312 msgid "Expand/Collapse" msgstr "" -#: admin/questionnairelist.php:460 admin/new.php:331 +#: admin/questionnairelist.php:400 admin/new.php:261 msgid "Respondent selection introduction:" msgstr "" -#: admin/questionnairelist.php:470 admin/new.php:341 +#: admin/questionnairelist.php:410 admin/new.php:271 msgid "Respondent selection project introduction:" msgstr "" -#: admin/questionnairelist.php:480 admin/new.php:351 +#: admin/questionnairelist.php:420 admin/new.php:281 msgid "Respondent selection callback (already started questionnaire):" msgstr "" -#: admin/questionnairelist.php:490 admin/new.php:361 +#: admin/questionnairelist.php:430 admin/new.php:291 msgid "Message to leave on an answering machine:" msgstr "" -#: admin/questionnairelist.php:500 -msgid "Edit respondent selection instrument in Limesurvey" -msgstr "" - -#: admin/questionnairelist.php:506 admin/new.php:373 +#: admin/questionnairelist.php:444 admin/new.php:303 msgid "Project end text (thank you screen):" msgstr "" -#: admin/questionnairelist.php:516 admin/new.php:383 +#: admin/questionnairelist.php:454 admin/new.php:313 msgid "Project information for interviewers/operators:" msgstr "" -#: admin/questionnairelist.php:524 +#: admin/questionnairelist.php:462 msgid "Update Questionnaire" msgstr "" -#: admin/questionnairelist.php:538 +#: admin/questionnairelist.php:476 msgid "Delete Questionnaire" msgstr "" -#: admin/questionnairelist.php:540 +#: admin/questionnairelist.php:478 msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgstr "" -#: admin/questionnairelist.php:541 +#: admin/questionnairelist.php:479 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:542 +#: admin/questionnairelist.php:480 msgid "Please confirm you wish to delete the questionnaire" msgstr "" -#: admin/questionnairelist.php:545 +#: admin/questionnairelist.php:483 msgid "Delete this questionnaire" msgstr "" -#: admin/questionnairelist.php:551 admin/index.php:124 admin/new.php:157 -#: admin/new.php:167 +#: admin/questionnairelist.php:489 admin/index.php:123 admin/new.php:146 +#: admin/new.php:156 msgid "Questionnaire management" msgstr "" -#: admin/questionnairelist.php:551 +#: admin/questionnairelist.php:489 msgid "Questionnaire list" msgstr "" -#: admin/questionnairelist.php:554 admin/index.php:123 admin/new.php:47 +#: admin/questionnairelist.php:492 admin/index.php:122 admin/new.php:52 msgid "Create a new questionnaire" msgstr "" -#: admin/questionnairelist.php:571 +#: admin/questionnairelist.php:509 msgid "Edit Questionnaire" msgstr "" -#: admin/questionnairelist.php:572 +#: admin/questionnairelist.php:510 msgid "Edit Lime survey" msgstr "" -#: admin/questionnairelist.php:576 admin/questionnairelist.php:593 -#: admin/questionnairelist.php:594 admin/questionnairelist.php:598 -#: admin/questionnairelist.php:608 +#: admin/questionnairelist.php:514 admin/questionnairelist.php:531 +#: admin/questionnairelist.php:532 admin/questionnairelist.php:536 +#: admin/questionnairelist.php:546 msgid "questionnaire" msgstr "" -#: admin/questionnairelist.php:581 admin/index.php:127 +#: admin/questionnairelist.php:519 admin/index.php:125 msgid "Pre-fill questionnaire" msgstr "" -#: admin/questionnairelist.php:586 +#: admin/questionnairelist.php:524 msgid "Delete questionnaire" msgstr "" -#: admin/questionnairelist.php:591 +#: admin/questionnairelist.php:529 msgid "Outcomes for questionnaire" msgstr "" -#: admin/questionnairelist.php:594 +#: admin/questionnairelist.php:532 msgid "Set outcomes" msgstr "" -#: admin/questionnairelist.php:598 admin/index.php:172 +#: admin/questionnairelist.php:536 admin/index.php:170 #: admin/dataoutput.php:200 msgid "Data output" msgstr "" -#: admin/questionnairelist.php:603 +#: admin/questionnairelist.php:541 msgid "Assigned samples" msgstr "" -#: admin/questionnairelist.php:613 admin/index.php:184 +#: admin/questionnairelist.php:551 admin/index.php:182 #: admin/casestatus.php:214 msgid "Case status and assignment" msgstr "" @@ -2428,6 +2288,11 @@ msgstr "" msgid "Phone number" msgstr "" +#: admin/callhistory.php:132 admin/callhistory.php:157 +#: admin/supervisor.php:427 admin/dataoutput.php:93 +msgid "Case notes" +msgstr "" + #: admin/callhistory.php:150 msgid "NO Call history records for Your query" msgstr "" @@ -2460,6 +2325,13 @@ msgstr "" msgid "Could not add" msgstr "" +#: admin/clients.php:126 admin/clients.php:221 +#: admin/clientquestionnaire.php:260 admin/operatorlist.php:220 +#: admin/operatorlist.php:412 admin/operatorskill.php:251 +#: admin/operatorquestionnaire.php:247 login_check.php:93 login_check.php:94 +msgid "Username" +msgstr "" + #: admin/clients.php:126 msgid "is already in use" msgstr "" @@ -2498,10 +2370,28 @@ msgstr "" msgid "Assign client to Questionnaire" msgstr "" +#: admin/clients.php:225 admin/operatorlist.php:224 login_check.php:95 +#: login_check.php:96 +msgid "Password" +msgstr "" + #: admin/clients.php:226 msgid "Leave this blank to keep current password" msgstr "" +#: admin/clients.php:228 admin/operatorlist.php:227 +#: admin/extensionstatus.php:201 +msgid "Generate" +msgstr "" + +#: admin/clients.php:228 admin/operatorlist.php:227 +msgid "Password with" +msgstr "" + +#: admin/clients.php:229 admin/operatorlist.php:228 +msgid "characters" +msgstr "" + #: admin/clients.php:237 msgid "Surname" msgstr "" @@ -2530,120 +2420,152 @@ msgstr "" msgid "Delete this time slot group" msgstr "" -#: admin/clientquestionnaire.php:200 +#: admin/clientquestionnaire.php:167 msgid "Clients and questionnaires" msgstr "" -#: admin/clientquestionnaire.php:293 +#: admin/clientquestionnaire.php:260 msgid "Client" msgstr "" -#: admin/clientquestionnaire.php:296 +#: admin/clientquestionnaire.php:263 msgid "" "NOTICE! Please, check your user righs to edit client permissions or contact " "your superviser." msgstr "" -#: admin/clientquestionnaire.php:296 +#: admin/clientquestionnaire.php:263 msgid "Questionnaire permissions" msgstr "" -#: admin/clientquestionnaire.php:323 +#: admin/clientquestionnaire.php:290 msgid "Assign clients to questionnaires" msgstr "" -#: admin/operatorlist.php:127 +#: admin/operatorlist.php:131 msgid "Successfully updated user" msgstr "" -#: admin/operatorlist.php:131 admin/operatorlist.php:136 +#: admin/operatorlist.php:135 admin/operatorlist.php:140 msgid "Failed to update user" msgstr "" -#: admin/operatorlist.php:131 admin/operatorlist.php:136 +#: admin/operatorlist.php:135 admin/operatorlist.php:140 msgid "Please make sure the username is unique" msgstr "" -#: admin/operatorlist.php:144 +#: admin/operatorlist.php:148 msgid "Edit Operator settings" msgstr "" -#: admin/operatorlist.php:221 +#: admin/operatorlist.php:225 msgid "leave blank to keep existing password" msgstr "" -#: admin/operatorlist.php:260 +#: admin/operatorlist.php:248 +msgid "TimeZones list" +msgstr "" + +#: admin/operatorlist.php:254 +msgid "Uses VoIP" +msgstr "" + +#: admin/operatorlist.php:264 msgid "Add" msgstr "" -#: admin/operatorlist.php:296 +#: admin/operatorlist.php:265 admin/operatorlist.php:429 +msgid "Extensions" +msgstr "" + +#: admin/operatorlist.php:272 +msgid "Uses chat" +msgstr "" + +#: admin/operatorlist.php:278 +msgid "Jabber/XMPP chat user" +msgstr "" + +#: admin/operatorlist.php:282 +msgid "Jabber/XMPP chat password" +msgstr "" + +#: admin/operatorlist.php:289 +msgid "Is the operator a system administrator?" +msgstr "" + +#: admin/operatorlist.php:300 msgid "Update operator" msgstr "" -#: admin/operatorlist.php:387 +#: admin/operatorlist.php:391 msgid "Win .bat file" msgstr "" -#: admin/operatorlist.php:388 +#: admin/operatorlist.php:392 msgid "*nix script file" msgstr "" -#: admin/operatorlist.php:395 +#: admin/operatorlist.php:399 msgid "Enable VoIP" msgstr "" -#: admin/operatorlist.php:397 +#: admin/operatorlist.php:401 msgid "Disable VoIP" msgstr "" -#: admin/operatorlist.php:405 +#: admin/operatorlist.php:409 msgid "Operator list" msgstr "" -#: admin/operatorlist.php:415 +#: admin/operatorlist.php:419 msgid "VoIP ON/Off" msgstr "" -#: admin/operatorlist.php:416 +#: admin/operatorlist.php:420 msgid "Win file" msgstr "" -#: admin/operatorlist.php:417 +#: admin/operatorlist.php:421 msgid "*nix flle" msgstr "" -#: admin/operatorlist.php:426 +#: admin/operatorlist.php:428 +msgid "Add an operator" +msgstr "" + +#: admin/operatorlist.php:430 msgid "Assign to questionnaire" msgstr "" -#: admin/operatorlist.php:427 +#: admin/operatorlist.php:431 msgid "Operator skills" msgstr "" -#: admin/operatorlist.php:432 +#: admin/operatorlist.php:436 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:434 +#: admin/operatorlist.php:438 msgid "Download Windows VoIP Client Executable file" msgstr "" -#: admin/operatorlist.php:434 +#: admin/operatorlist.php:438 msgid "Download Win file" msgstr "" -#: admin/operatorlist.php:435 +#: admin/operatorlist.php:439 msgid "Download Linux VoIP Executable file" msgstr "" -#: admin/operatorlist.php:435 +#: admin/operatorlist.php:439 msgid "Download Linux file" msgstr "" -#: admin/centreinfo.php:68 admin/index.php:195 +#: admin/centreinfo.php:68 admin/index.php:194 msgid "Set centre information" msgstr "" @@ -2680,7 +2602,7 @@ msgstr "" msgid "Select columns to import" msgstr "" -#: admin/import.php:102 admin/import.php:150 admin/assignsample.php:417 +#: admin/import.php:102 admin/import.php:150 msgid "Add sample" msgstr "" @@ -2736,136 +2658,132 @@ msgstr "" msgid "Questionnairies" msgstr "" -#: admin/index.php:122 admin/new.php:199 admin/new.php:405 -msgid "Create an instrument in Limesurvey" -msgstr "" - -#: admin/index.php:125 admin/set_outcomes.php:161 +#: admin/index.php:124 admin/set_outcomes.php:161 msgid "Set questionnaire outcomes" msgstr "" -#: admin/index.php:126 admin/new.php:407 -msgid "Administer instruments with Limesurvey" -msgstr "" - -#: admin/index.php:130 +#: admin/index.php:128 msgid "Samples" msgstr "" -#: admin/index.php:135 admin/assignsample.php:305 +#: admin/index.php:133 msgid "Assign samples to questionnaires" msgstr "" -#: admin/index.php:139 +#: admin/index.php:137 msgid "Time slots and shifts" msgstr "" -#: admin/index.php:148 +#: admin/index.php:146 msgid "Quotas" msgstr "" -#: admin/index.php:150 admin/quota.php:114 +#: admin/index.php:148 admin/quota.php:114 msgid "Quota management" msgstr "" -#: admin/index.php:151 admin/quotarow.php:292 +#: admin/index.php:149 admin/quotarow.php:292 msgid "Quota row management" msgstr "" -#: admin/index.php:154 +#: admin/index.php:152 msgid "Operators" msgstr "" -#: admin/index.php:156 +#: admin/index.php:154 msgid "Add operators to the system" msgstr "" -#: admin/index.php:157 +#: admin/index.php:155 msgid "Operator management" msgstr "" -#: admin/index.php:158 +#: admin/index.php:156 msgid "Extension status" msgstr "" -#: admin/index.php:159 admin/operatorquestionnaire.php:157 +#: admin/index.php:157 admin/operatorquestionnaire.php:157 #: admin/operatorquestionnaire.php:272 msgid "Assign operators to questionnaires" msgstr "" -#: admin/index.php:160 admin/operatorskill.php:275 +#: admin/index.php:158 admin/operatorskill.php:275 msgid "Modify operator skills" msgstr "" -#: admin/index.php:164 +#: admin/index.php:162 msgid "Results" msgstr "" -#: admin/index.php:166 +#: admin/index.php:164 msgid "Display all future appointments" msgstr "" -#: admin/index.php:167 +#: admin/index.php:165 msgid "Sample call attempts report" msgstr "" -#: admin/index.php:169 admin/shiftreport.php:67 +#: admin/index.php:167 admin/shiftreport.php:67 msgid "Shift reports" msgstr "" -#: admin/index.php:171 +#: admin/index.php:169 msgid "Questionnaire outcomes" msgstr "" -#: admin/index.php:175 +#: admin/index.php:173 msgid "Clients" msgstr "" -#: admin/index.php:177 +#: admin/index.php:175 msgid "Add clients to the system" msgstr "" -#: admin/index.php:178 +#: admin/index.php:176 msgid "Manage clients" msgstr "" -#: admin/index.php:181 +#: admin/index.php:179 msgid "Supervisor functions" msgstr "" -#: admin/index.php:183 admin/supervisor.php:125 +#: admin/index.php:181 admin/supervisor.php:125 msgid "Assign outcomes to cases" msgstr "" -#: admin/index.php:188 +#: admin/index.php:186 msgid "System settings" msgstr "" -#: admin/index.php:190 admin/set_outcomes.php:160 +#: admin/index.php:188 +msgid "Questionnaire service (RPC)" +msgstr "" + +#: admin/index.php:189 admin/set_outcomes.php:160 msgid "Set default outcomes" msgstr "" -#: admin/index.php:191 +#: admin/index.php:190 msgid "Set default timezone list" msgstr "" -#: admin/index.php:192 +#: admin/index.php:191 msgid "Manage Time slots" msgstr "" -#: admin/index.php:193 admin/shifttemplate.php:99 +#: admin/index.php:192 admin/shifttemplate.php:99 msgid "Set default shift times" msgstr "" -#: admin/index.php:197 +#: admin/index.php:196 msgid "System wide case sorting" msgstr "" -#: admin/index.php:204 admin/index.php:212 +#: admin/index.php:203 admin/index.php:211 msgid "VoIP" msgstr "" -#: admin/index.php:206 +#: admin/index.php:205 msgid "Start and monitor VoIP" msgstr "" @@ -2890,7 +2808,7 @@ msgstr "" msgid "Overall" msgstr "" -#: admin/samplecallattempts.php:202 admin/dataoutput.php:218 +#: admin/samplecallattempts.php:202 admin/dataoutput.php:219 msgid "Please select a sample" msgstr "" @@ -3007,8 +2925,8 @@ msgstr "" msgid "Permanent outcome" msgstr "" -#: admin/set_outcomes.php:189 admin/quotarow.php:422 admin/quotarow.php:508 -#: admin/quotarow.php:540 respondent.php:175 contactdetails.php:171 +#: admin/set_outcomes.php:189 admin/quotarow.php:422 admin/quotarow.php:513 +#: admin/quotarow.php:545 respondent.php:175 contactdetails.php:171 msgid "Value" msgstr "" @@ -3016,7 +2934,12 @@ msgstr "" msgid "Save custom Outcome" msgstr "" -#: admin/set_outcomes.php:250 admin/quotarow.php:586 +#: admin/set_outcomes.php:250 admin/set_outcomes.php:277 +#: admin/dataoutput.php:93 +msgid "Outcome ID" +msgstr "" + +#: admin/set_outcomes.php:250 admin/quotarow.php:591 msgid "Select" msgstr "" @@ -3096,15 +3019,15 @@ msgstr "" msgid "Enter the details for creating the quota:" msgstr "" -#: admin/quota.php:216 admin/quotarow.php:458 admin/quotarow.php:539 +#: admin/quota.php:216 admin/quotarow.php:459 admin/quotarow.php:544 msgid "The type of comparison" msgstr "" -#: admin/quota.php:226 admin/quotarow.php:459 +#: admin/quota.php:226 admin/quotarow.php:460 msgid "The code value to compare" msgstr "" -#: admin/quota.php:229 admin/quotarow.php:395 admin/quotarow.php:599 +#: admin/quota.php:229 admin/quotarow.php:395 admin/quotarow.php:604 msgid "The number of completions to stop calling at" msgstr "" @@ -3112,79 +3035,18 @@ msgstr "" msgid "Add quota" msgstr "" -#: admin/quota.php:242 admin/quotarow.php:465 +#: admin/quota.php:242 admin/quotarow.php:466 msgid "Code values for this question" msgstr "" -#: admin/quota.php:254 admin/quotarow.php:480 +#: admin/quota.php:257 admin/quotarow.php:485 msgid "No labels defined for this question" msgstr "" -#: admin/quota.php:256 admin/quotarow.php:482 +#: admin/quota.php:259 admin/quotarow.php:487 msgid "Code value" msgstr "" -#: admin/assignsample.php:190 -msgid "Edit assignment parameters" -msgstr "" - -#: admin/assignsample.php:191 -msgid "Assign samples to questionnaire: " -msgstr "" - -#: admin/assignsample.php:228 admin/assignsample.php:395 -msgid "Number of answering machine messages to leave per case" -msgstr "" - -#: admin/assignsample.php:231 admin/assignsample.php:399 -msgid "Select from sample randomly?" -msgstr "" - -#: admin/assignsample.php:233 admin/assignsample.php:401 -msgid "Sequentially" -msgstr "" - -#: admin/assignsample.php:234 admin/assignsample.php:364 -#: admin/assignsample.php:403 -msgid "Allow new numbers to be drawn?" -msgstr "" - -#: admin/assignsample.php:304 -msgid "List & Add Sample" -msgstr "" - -#: admin/assignsample.php:321 -msgid "Samples assigned to questionnaire" -msgstr "" - -#: admin/assignsample.php:364 -msgid "Unassign sample" -msgstr "" - -#: admin/assignsample.php:367 -msgid "No samples selected for this questionnaire" -msgstr "" - -#: admin/assignsample.php:380 -msgid "Add a sample to this questionnaire:" -msgstr "" - -#: admin/assignsample.php:383 -msgid "Select sample:" -msgstr "" - -#: admin/assignsample.php:409 -msgid "" -"Generate cases for all sample records and set outcome to 'Self completion " -"email invitation sent'?" -msgstr "" - -#: admin/assignsample.php:411 -msgid "" -"Ideal if you intend to send an email invitation to sample members before " -"attempting to call using queXS" -msgstr "" - #: admin/supervisor.php:131 respondent.php:107 contactdetails.php:106 msgid "Case id:" msgstr "" @@ -3205,7 +3067,7 @@ msgstr "" msgid "Set an outcome for this call" msgstr "" -#: admin/supervisor.php:182 admin/supervisor.php:555 call_interface2.php:290 +#: admin/supervisor.php:182 admin/supervisor.php:557 call_interface2.php:294 msgid "Set outcome" msgstr "" @@ -3266,35 +3128,35 @@ msgstr "" msgid "Assign this case to operator" msgstr "" -#: admin/supervisor.php:497 +#: admin/supervisor.php:499 msgid "Modify responses for this case" msgstr "" -#: admin/supervisor.php:499 +#: admin/supervisor.php:501 msgid "Case not yet started in Limesurvey" msgstr "" -#: admin/supervisor.php:504 +#: admin/supervisor.php:506 msgid "Availability groups" msgstr "" -#: admin/supervisor.php:532 +#: admin/supervisor.php:534 msgid "Update case availability" msgstr "" -#: admin/supervisor.php:543 +#: admin/supervisor.php:545 msgid "Set a case outcome" msgstr "" -#: admin/supervisor.php:561 admin/supervisor.php:566 +#: admin/supervisor.php:563 admin/supervisor.php:568 msgid "Deidentify" msgstr "" -#: admin/supervisor.php:562 +#: admin/supervisor.php:564 msgid "Remove all sample details and contact numbers from this case" msgstr "" -#: admin/supervisor.php:572 +#: admin/supervisor.php:574 msgid "Case does not exist" msgstr "" @@ -3306,15 +3168,15 @@ msgstr "" msgid "To Row quotas" msgstr "" -#: admin/quotarow.php:395 admin/quotarow.php:597 +#: admin/quotarow.php:395 admin/quotarow.php:602 msgid "Describe this quota" msgstr "" -#: admin/quotarow.php:396 admin/quotarow.php:598 +#: admin/quotarow.php:396 admin/quotarow.php:603 msgid "Quota priority (50 is default, 100 highest, 0 lowest)" msgstr "" -#: admin/quotarow.php:396 admin/quotarow.php:600 +#: admin/quotarow.php:396 admin/quotarow.php:605 msgid "" "Should the priority be automatically updated based on the number of " "completions in this quota?" @@ -3343,85 +3205,85 @@ msgstr "" msgid "SGQ code" msgstr "" -#: admin/quotarow.php:422 admin/quotarow.php:508 +#: admin/quotarow.php:422 admin/quotarow.php:513 msgid "Comparison" msgstr "" -#: admin/quotarow.php:451 +#: admin/quotarow.php:445 msgid "Add restriction based on answered questions" msgstr "" -#: admin/quotarow.php:452 +#: admin/quotarow.php:446 msgid "Select Question" msgstr "" -#: admin/quotarow.php:461 admin/quotarow.php:557 +#: admin/quotarow.php:462 admin/quotarow.php:562 msgid "Add restriction" msgstr "" -#: admin/quotarow.php:499 +#: admin/quotarow.php:504 msgid "Restrictions based on sample records" msgstr "" -#: admin/quotarow.php:503 +#: admin/quotarow.php:508 msgid "Currently NO Restrictions based on sample records" msgstr "" -#: admin/quotarow.php:503 +#: admin/quotarow.php:508 msgid "This sample will be limited to number of completions set in quota" msgstr "" -#: admin/quotarow.php:503 +#: admin/quotarow.php:508 msgid "Caling cases for this sample will be stopped when the quota is reached" msgstr "" -#: admin/quotarow.php:507 +#: admin/quotarow.php:512 msgid "" "Completed responses that have the following sample details will be counted " "towards the quota and excluded when the quota is reached" msgstr "" -#: admin/quotarow.php:508 +#: admin/quotarow.php:513 msgid "Sample var ID" msgstr "" -#: admin/quotarow.php:531 +#: admin/quotarow.php:536 msgid "Add restriction based on sample records" msgstr "" -#: admin/quotarow.php:533 +#: admin/quotarow.php:538 msgid "Sample record" msgstr "" -#: admin/quotarow.php:580 +#: admin/quotarow.php:585 msgid "Currently no row quotas" msgstr "" -#: admin/quotarow.php:585 +#: admin/quotarow.php:590 msgid "Current row quotas" msgstr "" -#: admin/quotarow.php:586 +#: admin/quotarow.php:591 msgid "Priority" msgstr "" -#: admin/quotarow.php:588 +#: admin/quotarow.php:593 msgid "Export selected" msgstr "" -#: admin/quotarow.php:590 +#: admin/quotarow.php:595 msgid "Delete selected" msgstr "" -#: admin/quotarow.php:594 admin/quotarow.php:601 +#: admin/quotarow.php:599 admin/quotarow.php:606 msgid "Add row quota" msgstr "" -#: admin/quotarow.php:606 admin/quotarow.php:614 +#: admin/quotarow.php:611 admin/quotarow.php:619 msgid "Import row quota" msgstr "" -#: admin/quotarow.php:612 +#: admin/quotarow.php:617 msgid "Choose the CSV row quota file to import:" msgstr "" @@ -3445,20 +3307,36 @@ msgstr "" msgid "Current Outcome" msgstr "" +#: admin/dataoutput.php:93 +msgid "Number of call attempts" +msgstr "" + #: admin/dataoutput.php:93 msgid "Number of calls" msgstr "" +#: admin/dataoutput.php:93 +msgid "Total interview time over all calls (mins)" +msgstr "" + +#: admin/dataoutput.php:93 +msgid "Interview time for last call (mins)" +msgstr "" + +#: admin/dataoutput.php:93 +msgid "Last number dialled" +msgstr "" + #: admin/dataoutput.php:93 msgid "DATE/TIME Last number dialled" msgstr "" -#: admin/dataoutput.php:216 -msgid "Download data for this questionnaire via Limesurvey" +#: admin/dataoutput.php:93 +msgid "Operator username for last call" msgstr "" -#: admin/dataoutput.php:225 -msgid "Download data for this sample via Limesurvey" +#: admin/dataoutput.php:217 +msgid "Download data for this questionnaire via Limesurvey" msgstr "" #: admin/dataoutput.php:233 @@ -3664,10 +3542,6 @@ msgstr "" msgid "Unassign the operator from this extension to be able to delete it" msgstr "" -#: admin/extensionstatus.php:231 -msgid "Unassign" -msgstr "" - #: admin/extensionstatus.php:231 msgid "End case to change assignment" msgstr "" @@ -3684,11 +3558,11 @@ msgstr "" msgid "Not called" msgstr "" -#: admin/extensionstatus.php:233 call.php:433 +#: admin/extensionstatus.php:233 call.php:437 msgid "Requesting call" msgstr "" -#: admin/extensionstatus.php:233 call.php:454 +#: admin/extensionstatus.php:233 call.php:458 msgid "Requires coding" msgstr "" @@ -3792,63 +3666,59 @@ msgstr "" msgid "No missed appointments" msgstr "" -#: admin/new.php:121 +#: admin/new.php:110 msgid "Successfully inserted" msgstr "" -#: admin/new.php:121 +#: admin/new.php:110 msgid "with ID" msgstr "" -#: admin/new.php:121 +#: admin/new.php:110 msgid "linked to survey" msgstr "" -#: admin/new.php:126 +#: admin/new.php:115 msgid "Error: Failed to insert questionnaire" msgstr "" -#: admin/new.php:156 +#: admin/new.php:145 msgid "Create another ?" msgstr "" -#: admin/new.php:157 +#: admin/new.php:146 msgid "No, Thank you, go to" msgstr "" -#: admin/new.php:167 +#: admin/new.php:156 msgid "Go to" msgstr "" -#: admin/new.php:185 +#: admin/new.php:173 msgid "Enter New questionnaire name.." msgstr "" -#: admin/new.php:190 +#: admin/new.php:178 msgid "Select limesurvey instrument:" msgstr "" -#: admin/new.php:194 admin/new.php:211 -msgid "Survey" -msgstr "" - -#: admin/new.php:204 +#: admin/new.php:188 msgid "Respondent selection type:" msgstr "" -#: admin/new.php:207 +#: admin/new.php:191 msgid "No respondent selection (go straight to questionnaire)" msgstr "" -#: admin/new.php:208 +#: admin/new.php:192 msgid "Use basic respondent selection text (below)" msgstr "" -#: admin/new.php:395 +#: admin/new.php:325 msgid "Create Questionnaire" msgstr "" -#: admin/new.php:404 +#: admin/new.php:334 msgid "NO active Lime surveys available" msgstr "" @@ -4072,6 +3942,10 @@ msgstr "" msgid "Self completion email invitation sent" msgstr "" +#: admin/databasestrings.php:90 +msgid "Self completed online" +msgstr "" + #: admin/databasestrings.php:91 msgid "Max call attempts reached (Eligible)" msgstr "" @@ -4096,47 +3970,47 @@ msgstr "" msgid "NOT CONTACTED" msgstr "" -#: call_interface2.php:263 call_interface2.php:348 call_interface2.php:419 -#: call.php:197 call.php:217 call.php:233 call.php:264 call.php:312 -#: call.php:383 +#: call_interface2.php:267 call_interface2.php:352 call_interface2.php:423 +#: call.php:201 call.php:221 call.php:237 call.php:268 call.php:316 +#: call.php:387 msgid "Call" msgstr "" -#: call_interface2.php:306 call.php:271 +#: call_interface2.php:310 call.php:275 msgid "Not on a call" msgstr "" -#: call_interface2.php:343 call.php:308 +#: call_interface2.php:347 call.php:312 msgid "Press the call button to dial the number for this appointment:" msgstr "" -#: call_interface2.php:346 call.php:311 +#: call_interface2.php:350 call.php:315 msgid "Number to call:" msgstr "" -#: call_interface2.php:352 call_interface2.php:422 call.php:315 call.php:386 +#: call_interface2.php:356 call_interface2.php:426 call.php:319 call.php:390 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:412 call.php:376 +#: call_interface2.php:416 call.php:380 msgid "Select phone number to dial:" msgstr "" -#: call_interface2.php:427 call_interface2.php:458 call.php:391 call.php:425 +#: call_interface2.php:431 call_interface2.php:462 call.php:395 call.php:429 msgid "The last call completed this call attempt" msgstr "" -#: call_interface2.php:431 call_interface2.php:451 call.php:395 call.php:418 +#: call_interface2.php:435 call_interface2.php:455 call.php:399 call.php:422 msgid "Enter a reason for this outcome before completing this case:" msgstr "" -#: call_interface2.php:473 call.php:457 +#: call_interface2.php:477 call.php:461 msgid "Assign outcome" msgstr "" -#: call_interface2.php:478 call.php:461 +#: call_interface2.php:482 call.php:465 msgid "Error: Close window" msgstr "" @@ -4152,11 +4026,11 @@ msgstr "" msgid "Sorry to bother you, I have called the wrong number" msgstr "" -#: call.php:434 call.php:441 +#: call.php:438 call.php:445 msgid "Call Answered" msgstr "" -#: call.php:448 +#: call.php:452 msgid "Not Answered" msgstr "" @@ -4315,6 +4189,14 @@ msgstr "" msgid "Case" msgstr "" +#: login_check.php:86 +msgid "You have to login first." +msgstr "" + +#: login_check.php:100 +msgid "Login" +msgstr "" + #: rs_quota_end.php:64 msgid "Project Quota End" msgstr "" diff --git a/locale/ro/LC_MESSAGES/ro.po b/locale/ro/LC_MESSAGES/ro.po index 03c13847..38985147 100644 --- a/locale/ro/LC_MESSAGES/ro.po +++ b/locale/ro/LC_MESSAGES/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/ru/LC_MESSAGES/ru.po b/locale/ru/LC_MESSAGES/ru.po index 8a188575..d315e187 100644 --- a/locale/ru/LC_MESSAGES/ru.po +++ b/locale/ru/LC_MESSAGES/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs DDR\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\n" "PO-Revision-Date: 2016-01-28 10:30+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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" "Language: ru\n" #: appointment.php:76 @@ -4978,6 +4978,7 @@ msgstr "Квота для опроса заполнена" #~ "bounce_op.sh . Изменения в конфигурации могли не отразиться на экране " #~ "панели." +#, php-format #~ msgid "Reload failed because retrieve_conf encountered an error: %s" #~ msgstr "" #~ "Перезагрузка не удалась, т.к. выполнение файла retrieve_conf привело к " @@ -5012,12 +5013,14 @@ msgstr "Квота для опроса заполнена" #~ msgid "% complete" #~ msgstr "% завершено" +#, php-format #~ msgid "Use the % character as a wildcard" #~ msgstr "Используйте символ % для подстановки любого значения" #~ msgid "End call with outcome: Quota filled" #~ msgstr "Закончить звонок с результатом: Квота заполнена" +#, php-format #~ msgid "Exit code was %s and output was: %s" #~ msgstr "Код выхода был %s с результатом : %s" diff --git a/locale/sv/LC_MESSAGES/sv.po b/locale/sv/LC_MESSAGES/sv.po index 25a8e53d..8f60d837 100644 --- a/locale/sv/LC_MESSAGES/sv.po +++ b/locale/sv/LC_MESSAGES/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" #: appointment.php:76 msgid "Appointment error" diff --git a/locale/zh-cn/LC_MESSAGES/zh-cn.po b/locale/zh-cn/LC_MESSAGES/zh-cn.po index 9421e77b..0ae0f0b0 100644 --- a/locale/zh-cn/LC_MESSAGES/zh-cn.po +++ b/locale/zh-cn/LC_MESSAGES/zh-cn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: quexs\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-10-25 15:08+1100\n" +"POT-Creation-Date: 2017-01-06 15:16+1100\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: 2017-01-06 04:12+0000\n" -"X-Generator: Launchpad (build 18302)\n" +"X-Launchpad-Export-Date: 2017-03-21 03:24+0000\n" +"X-Generator: Launchpad (build 18332)\n" "Language: zh\n" #: appointment.php:76 @@ -4410,6 +4410,7 @@ msgstr "" #~ msgid "End call with outcome: Quota filled" #~ msgstr "结束电话:配额已满" +#, php-format #~ msgid "Reload failed because retrieve_conf encountered an error: %s" #~ msgstr "重新加载失败,retrieve_conf 文件遇到错误:%s" @@ -4421,6 +4422,7 @@ msgstr "" #~ "interface." #~ msgstr "重新加载失败,FreePBX无法连接到asterisk管理员界面" +#, php-format #~ msgid "Exit code was %s and output was: %s" #~ msgstr "退出编码是 %s ,输出是:%s"