mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Dev: Updated outcomes to be 4 new outcomes (max calls, max call attempts split by eligible, unknown eligibility) Dev: Set the end_case function to set the outcomes to max call * reached if those variables set Dev: Made sure outcomes are temporary outcomes as otherwise numbers will not be available again if max call limits changed Dev: This means the outcomes are indicators only and could still be assigned to operators - it is merely a temporary case outcome (not a final outcome nor a call outcome)
96 lines
3.2 KiB
PHP
Executable File
96 lines
3.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* A list of database strings for translation
|
|
*
|
|
*
|
|
* This file is part of queXS
|
|
*
|
|
* queXS is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* queXS is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with queXS; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*
|
|
* @author Adam Zammit <adam.zammit@deakin.edu.au>
|
|
* @copyright Deakin University 2007,2008
|
|
* @package queXS
|
|
* @subpackage admin
|
|
* @link http://www.deakin.edu.au/dcarf/ queXS was writen for DCARF - Deakin Computer Assisted Research Facility
|
|
* @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
|
|
*
|
|
*/
|
|
|
|
T_("Not attempted or worked");
|
|
T_("No answer");
|
|
T_("Technical phone problems");
|
|
T_("Other, Referred to Supervisor (Eligible)");
|
|
T_("Other, Referred to Supervisor (Unknown eligibility)");
|
|
T_("Soft Refusal, Other");
|
|
T_("Hard Refusal, Other");
|
|
T_("Soft Refusal, Respondent");
|
|
T_("Hard Refusal, Respondent");
|
|
T_("Complete");
|
|
T_("Known respondent refusal");
|
|
T_("Household-level refusal");
|
|
T_("Broken appointment (Implicit refusal)");
|
|
T_("Disconnected number");
|
|
T_("Fax/data line");
|
|
T_("Business, government office, other organization");
|
|
T_("No eligible respondent");
|
|
T_("Accidental hang up or temporary phone problem");
|
|
T_("Definite Appointment - Respondent");
|
|
T_("Definite Appointment - Other");
|
|
T_("Unspecified Appointment - Respondent");
|
|
T_("Unspecified Appointment - Other");
|
|
T_("Household answering machine - Message left");
|
|
T_("Household answering machine - No message left");
|
|
T_("Respondent Dead");
|
|
T_("Physically or mentally unable/incompetent");
|
|
T_("Household level language problem");
|
|
T_("Respondent language problem");
|
|
T_("Answering machine - Not a household");
|
|
T_("Out of sample");
|
|
T_("Non contact");
|
|
T_("Temporary Outcomes (normal cases)");
|
|
T_("Supervisor Outcomes (referred to supervisor)");
|
|
T_("Refusal Outcomes (respondent refused)");
|
|
T_("Final Outcomes (completed, final refusal, etc)");
|
|
T_("Miscellaneous - Unavailable for a week");
|
|
T_("Appointments");
|
|
T_("Monday");
|
|
T_("Tuesday");
|
|
T_("Wednesday");
|
|
T_("Thursday");
|
|
T_("Friday");
|
|
T_("Saturday");
|
|
T_("Sunday");
|
|
T_("Quota filled");
|
|
T_("Weekday mornings (Before 12pm)");
|
|
T_("Weekday afternoons (After 12pm but before 6pm)");
|
|
T_("Evenings (After 6pm)");
|
|
T_("Saturdays");
|
|
T_("String");
|
|
T_("Phone number");
|
|
T_("Primary phone number");
|
|
T_("State");
|
|
T_("Postcode");
|
|
T_("Respondent first name");
|
|
T_("Respondent last name");
|
|
T_("Email address");
|
|
T_("Self completion email invitation sent");
|
|
T_("Self completed online");
|
|
T_("Max call attempts reached (Eligible)");
|
|
T_("Max calls reached (Eligible)");
|
|
T_("Max call attempts reached (Unknown eligibility)");
|
|
T_("Max calls reached (Unknown eligibility)");
|
|
?>
|