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

merged rev. 486

This commit is contained in:
Alex
2015-09-10 02:10:45 +03:00
156 changed files with 5533 additions and 4493 deletions

View File

@@ -1 +1,5 @@
no vars no vars
./config.inc.local.php
./.htaccess
./admin/.htaccess
./include/limesurvey/admin/.htaccess

View File

@@ -1,5 +0,0 @@
AuthType Basic
AuthName "queXS CATI: Authentication Required"
AuthUserFile /var/opt/quexs/htpasswd
AuthGroupFile /var/opt/quexs/htgroup
require group interviewers

View File

@@ -1,12 +1,82 @@
required DB updates: queXS 1.14.0 - Changes since 1.13.1
ALTER TABLE `outcome` ADD `deflt` TINYINT(1) UNSIGNED NOT NULL DEFAULT '1' COMMENT 'Used as default for questionnaire outcomes' AFTER `calc`, ADD `const` TINYINT(1) UNSIGNED NOT NULL COMMENT 'Permanent outcome, used for all questionnaires, not possible to de-select' AFTER `deflt`;
UPDATE `outcome` SET `const` = '1' WHERE `outcome`.`outcome_id` IN (1,2,3,7,9,10,14,17,18,19,30,31) ;
ALTER TABLE `questionnaire` ADD `outcomes` VARCHAR(256) NULL DEFAULT '1,2,3,7,10' COMMENT 'coma-separated string of outcomes defined for the questionnaire' AFTER `enabled`;
Changes for session authentication:
queXS now uses the Limesurvey session based authentication system to authenticate all users.
Sessions are stored in the lime_sessions table and are managed by adodb.
If this is a fresh install - you can ignore the notes below. Otherwise - please read through
the following for converting from directory based authentication to session based authentication.
File changes for session authentication:
If you have used the example .htaccess files or created your own, and you want to move to purely
session based authentication, you can remove these files. They are typcially at these locations:
.htaccess
client/.htaccess
admin/.htaccess
include/limesurvey/.htaccess
include/limesurvey/admin/.htaccess
This will remove restrictions for access via directory based authentication and rely solely on session authentication.
Database changes for session authentication:
These queries will:
1. Make the first queXS user an admin user, and assign them the password "password"
2. Make all other users regular users, and assign them the password "password"
3. Make all clients regular clients, and assign them the password "password"
Once you have run these - please go to the operator management page and update passwords for all users.
/* Make the first user the admin user - with default password of: password */
INSERT INTO `lime_users` (`users_name`, `password`, `full_name`, `parent_id`, `lang`, `superadmin`)
SELECT username, '0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438', firstName, 0, 'auto', 1
FROM operator
WHERE operator_id = 1;
/* Make all other users operators - with default password of: password */
INSERT INTO `lime_users` (`users_name`, `password`, `full_name`, `parent_id`, `lang`, `superadmin`)
SELECT username, '0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438', firstName, 1, 'auto', 0
FROM operator
WHERE operator_id != 1;
/* Make all clients - with default password of: password */
INSERT INTO `lime_users` (`users_name`, `password`, `full_name`, `parent_id`, `lang`, `superadmin`)
SELECT username, '0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438', firstName, 1, 'auto', 0
FROM client
WHERE 1;
/* Remove redundant table */
DROP TABLE `sessions2`;
queXS 1.13.1 - Changes since 1.13.0
Fixed Bug: Remove references to old DEFAULT_TIME_ZONE config constant (use get_settings instead)
Fixed Bug: lp:1480880 - disable create new questionnaire if no active Limesurvey available
Fixed Bug: Update FreePBX compatability to 2.11 / Make IAX extensions start from 1000
Fixed Bug: Checkbox group selection and HTML errors in operator / skills / assignment pages
Fixed Bug: Max call attempts should be temporary outcome as value can change
Fixed Bug: Fix sample import given new database structure (sample_var table)
Fixed Bug: lp:1408870 Add "Maximum attempts reached" as an outcome
Fixed Bug: PHP notices when using call history
New Feature: Pre-generation of cases and copying of sample variables to Limesurvey attributes for "Web First" then CATI methodology
Updated translations from Launchpad - Thank you!
Database updates required:
/* Fix max attempt outcomes */
DELETE FROM `outcome` WHERE outcome_id IN (42,43,44,45);
INSERT INTO `outcome` (`outcome_id`, `aapor_id`, `description`, `default_delay_minutes`, `outcome_type_id`, `tryanother`, `contacted`, `tryagain`, `eligible`, `require_note`, `calc`) VALUES(42, '3.90', 'Max call attempts reached (Unknown eligibility)', 0, 1, 0, 1, 1, 0, 0, 'UH');
INSERT INTO `outcome` (`outcome_id`, `aapor_id`, `description`, `default_delay_minutes`, `outcome_type_id`, `tryanother`, `contacted`, `tryagain`, `eligible`, `require_note`, `calc`) VALUES(43, '3.90', 'Max calls reached (Unknown eligibility)', 0, 1, 0, 1, 1, 0, 0, 'UH');
INSERT INTO `outcome` (`outcome_id`, `aapor_id`, `description`, `default_delay_minutes`, `outcome_type_id`, `tryanother`, `contacted`, `tryagain`, `eligible`, `require_note`, `calc`) VALUES(44, '2.30', 'Max call attempts reached (Eligible)', 0, 1, 0, 1, 1, 1, 0, 'O');
INSERT INTO `outcome` (`outcome_id`, `aapor_id`, `description`, `default_delay_minutes`, `outcome_type_id`, `tryanother`, `contacted`, `tryagain`, `eligible`, `require_note`, `calc`) VALUES(45, '2.30', 'Max calls reached (Eligible)', 0, 1, 0, 1, 1, 1, 0, 'O');
queXS 1.13.0 - Changes since 1.12.1 queXS 1.13.0 - Changes since 1.12.1

15
DB update CHANGELOG Normal file
View File

@@ -0,0 +1,15 @@
required DB updates:
ALTER TABLE `outcome` ADD `deflt` TINYINT(1) UNSIGNED NOT NULL DEFAULT '1' COMMENT 'Used as default for questionnaire outcomes' AFTER `calc`, ADD `const` TINYINT(1) UNSIGNED NOT NULL COMMENT 'Permanent outcome, used for all questionnaires, not possible to de-select' AFTER `deflt`;
UPDATE `outcome` SET `const` = '1' WHERE `outcome`.`outcome_id` IN (1,2,3,7,9,10,14,17,18,19,30,31) ;
ALTER TABLE `questionnaire` ADD `outcomes` VARCHAR(256) NULL DEFAULT '1,2,3,7,10' COMMENT 'coma-separated string of outcomes defined for the questionnaire' AFTER `enabled`;
queXS 1.13.0 - Changes since 1.12.1
---

View File

@@ -1,5 +0,0 @@
AuthType Basic
AuthName "queXS CATI: Authentication Required"
AuthUserFile /var/opt/quexs/htpasswd
AuthGroupFile /var/opt/quexs/htgroup
require group admin

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -40,6 +40,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -40,6 +40,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

70
admin/auth-admin.php Normal file
View File

@@ -0,0 +1,70 @@
<?php
/**
* Session based authentication using the Limesurvey database (administrator)
*
*
* 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@acspri.org.au>
* @copyright Australian Consortium for Social and Political Research Incorporated (ACSPRI) 2013
* @package queXS
* @subpackage user
* @link http://www.acspri.org.au/ queXS was writen for ACSPRI
* @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
*
*/
/**
* Configuration file
*/
include_once(dirname(__FILE__) . "/../config.inc.php");
/**
* Database file
*/
include_once(dirname(__FILE__) . "/../db.inc.php");
//get session name from DB
//
$sql = "SELECT stg_value
FROM " . LIME_PREFIX . "settings_global
WHERE stg_name = 'SessionName'";
session_name($db->GetOne($sql));
session_start();
//check if the session exists or loginID not set
if (session_id() == "" || !isset($_SESSION['loginID']))
{
//need to log in
header('Location: ../include/limesurvey/admin/admin.php');
die();
}
if ($_SESSION['USER_RIGHT_SUPERADMIN'] != 1)
{
include_once(dirname(__FILE__) . "/../lang.inc.php");
include_once(dirname(__FILE__) . "/../functions/functions.xhtml.php");
xhtml_head();
print "<p>" . T_("You do not have permission to access this area") . "</p>";
print "<p><a href='../include/limesurvey/admin/admin.php?action=logout'>" . T_("Logout") . "</a></p>";
xhtml_foot();
die();
}

View File

@@ -39,6 +39,12 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -40,6 +40,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -44,6 +44,11 @@ include ("../functions/functions.xhtml.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* Operator functions * Operator functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -100,18 +105,21 @@ if ($operator_id)
if (!isset($_GET['csv'])) if (!isset($_GET['csv']))
$sql .= " LIMIT 500"; $sql .= " LIMIT 500";
else $sql .= " LIMIT 5000"; // else $sql .= " LIMIT 5000"; no limit when using CSV
$rs = $db->Execute($sql); $rs = $db->Execute($sql);
if (empty($rs)) if (empty($rs))
{ {
xhtml_head(T_("Call History List"),true,$css,$js_head);
print "<div class='alert alert-warning col-sm-6'><p>" . T_("No calls ever made") . "</p></div>"; print "<div class='alert alert-warning col-sm-6'><p>" . T_("No calls ever made") . "</p></div>";
} }
else else
{ {
if (isset($_GET['csv'])) if (isset($_GET['csv']))
{ {
$qds = str_replace(' ','_',$_GET['dq']); $smpds = str_replace(' ','_',$_GET['ds']); $qds = $smpds = "";
if (isset($_GET['dq'])) $qds = str_replace(' ','_',$_GET['dq']);
if (isset($_GET['ds'])) $smpds = str_replace(' ','_',$_GET['ds']);
$fn = "callhistory-" . $qds . $smpds . date("_d-M-Y_H-i") . ".csv"; $fn = "callhistory-" . $qds . $smpds . date("_d-M-Y_H-i") . ".csv";
header("Content-Type: text/csv"); header("Content-Type: text/csv");
@@ -160,7 +168,17 @@ if ($operator_id)
print "<h3><small>" . T_("Sample") . "&emsp;ID: $sid</small>&emsp;" . $ds . "</h3>"; print "<h3><small>" . T_("Sample") . "&emsp;ID: $sid</small>&emsp;" . $ds . "</h3>";
unset($datacol[5]); unset($headers[5]); } unset($datacol[5]); unset($headers[5]); }
print "&nbsp;<a href='?csv=csv&amp;questionnaire_id=$qid&amp;dq=" . $dq . "&amp;sample_import_id=$sid&amp;ds=" . $ds . "' class='btn btn-default pull-right'><i class='fa fa-download fa-lg text-primary'></i>&emsp;" . T_("Download Call History List") . "</a> print "&nbsp;<a href='?csv=csv";
if (isset($qid))
print "&amp;questionnaire_id=$qid";
if (isset($dq))
print "&amp;dq=" . $dq;
if (isset($sid))
print "&amp;sample_import_id=$sid";
if (isset($ds))
print "&amp;ds=" . $ds;
print "' class='btn btn-default pull-right'><i class='fa fa-download fa-lg text-primary'></i>&emsp;" . T_("Download Call History List") . "</a>
"; //<a href='../../admin/config.php' target='_blank' class='btn btn-default col-sm-offset-6 '><i class='fa fa-link fa-lg text-primary'></i>&emsp;" . T_("Go to Call History Report") . "</a>&nbsp; "; //<a href='../../admin/config.php' target='_blank' class='btn btn-default col-sm-offset-6 '><i class='fa fa-link fa-lg text-primary'></i>&emsp;" . T_("Go to Call History Report") . "</a>&nbsp;
xhtml_table($rs,$datacol,$headers,"tclass",false,false,"bs-table"); xhtml_table($rs,$datacol,$headers,"tclass",false,false,"bs-table");

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -12,6 +12,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -40,6 +40,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -42,6 +42,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -56,6 +61,7 @@ if (isset($_POST['client']))
{ {
$client = $db->qstr($_POST['client'],get_magic_quotes_gpc()); $client = $db->qstr($_POST['client'],get_magic_quotes_gpc());
$firstname = $db->qstr($_POST['firstname'],get_magic_quotes_gpc()); $firstname = $db->qstr($_POST['firstname'],get_magic_quotes_gpc());
$email = $db->qstr($_POST['email'],get_magic_quotes_gpc());
$lastname = $db->qstr($_POST['lastname'],get_magic_quotes_gpc()); $lastname = $db->qstr($_POST['lastname'],get_magic_quotes_gpc());
$time_zone_name = $db->qstr($_POST['Time_zone_name'],get_magic_quotes_gpc()); $time_zone_name = $db->qstr($_POST['Time_zone_name'],get_magic_quotes_gpc());
@@ -67,16 +73,14 @@ if (isset($_POST['client']))
if ($db->Execute($sql)) if ($db->Execute($sql))
{ {
if (HTPASSWD_PATH !== false && HTGROUP_PATH !== false) include_once("../include/limesurvey/admin/classes/core/sha256.php");
{
//Get password and add it to the configured htpassword //Insert into lime_users
include_once("../functions/functions.htpasswd.php"); $sql = "INSERT INTO " . LIME_PREFIX . "users (`users_name`,`password`,`full_name`,`parent_id`,`superadmin`,`email`,`lang`)
$htp = New Htpasswd(HTPASSWD_PATH); VALUES ($client, '" . SHA256::hashing($_POST['password']) . "',$firstname,1,0,$email,'auto')";
$htg = New Htgroup(HTGROUP_PATH);
$db->Execute($sql);
$htp->addUser($_POST['client'],$_POST['password']);
$htg->addUserToGroup($_POST['client'],HTGROUP_CLIENT);
}
$a = T_("Added: $client"); $a = T_("Added: $client");
} }
@@ -142,23 +146,20 @@ function generate() {
<div class="well"> <div class="well">
<p><?php echo T_("Adding a client here will allow them to access project information in the client subdirectory. You can assign a client to a particular project using the"); ?> <a href="clientquestionnaire.php"><?php echo T_("Assign client to Questionnaire"); ?></a> <?php echo T_("tool."); ?></p> <p><?php echo T_("Adding a client here will allow them to access project information in the client subdirectory. You can assign a client to a particular project using the"); ?> <a href="clientquestionnaire.php"><?php echo T_("Assign client to Questionnaire"); ?></a> <?php echo T_("tool."); ?></p>
<p><?php echo T_("Use this form to enter the username of a user based on your directory security system. For example, if you have secured the base directory of queXS using Apache file based security, enter the usernames of the users here."); ?></p></div>
<form enctype="multipart/form-data" action="" method="post" class="form-horizontal" name="addclient" > <form enctype="multipart/form-data" action="" method="post" class="form-horizontal" name="addclient" >
<div class="form-group form-inline"> <div class="form-group form-inline">
<label class="control-label col-sm-3"><?php echo T_("Enter the username of a client to add:"); ?></label> <label class="control-label col-sm-3"><?php echo T_("Enter the username of a client to add:"); ?></label>
<input name="client" type="text" class="form-control pull-left" required size="40" /> <input name="client" type="text" class="form-control pull-left" required size="40" />
</div> </div>
<?php if (HTPASSWD_PATH !== false && HTGROUP_PATH !== false) { ?>
<div class="form-group form-inline"> <div class="form-group form-inline">
<label class="control-label col-sm-3"><?php echo T_("Enter the password of a client to add:"); ?></label> <label class="control-label col-sm-3"><?php echo T_("Enter the password of a client to add:"); ?></label>
<input name="password" type="text" class="form-control pull-left" size="40" required pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" /> <input name="password" type="text" class="form-control pull-left" size="40" required />
<div class="form-inline">&emsp;&emsp; <div class="form-inline">&emsp;&emsp;
<input type="button" onclick="generate();" value="<?php echo T_("Generate");?>" class="btn btn-default fa" />&emsp;<?php echo T_("Password with");?>&ensp; <input type="button" onclick="generate();" value="<?php echo T_("Generate");?>" class="btn btn-default fa" />&emsp;<?php echo T_("Password with");?>&ensp;
<input type="number" name="number" value="25" min="8" max="50" style="width:5em;" class="form-control" />&ensp;<?php echo T_("characters");?> <input type="number" name="number" value="25" min="8" max="50" style="width:5em;" class="form-control" />&ensp;<?php echo T_("characters");?>
</div> </div>
</div> </div>
<?php } ?>
<div class="form-group form-inline"> <div class="form-group form-inline">
<label class="control-label col-sm-3"><?php echo T_("Enter the first name of a client to add:"); ?></label> <label class="control-label col-sm-3"><?php echo T_("Enter the first name of a client to add:"); ?></label>
<input name="firstname" type="text" class="form-control pull-left" size="40" /> <input name="firstname" type="text" class="form-control pull-left" size="40" />
@@ -166,7 +167,11 @@ function generate() {
<div class="form-group form-inline"> <div class="form-group form-inline">
<label class="control-label col-sm-3"><?php echo T_("Enter the surname of a client to add:"); ?></label> <label class="control-label col-sm-3"><?php echo T_("Enter the surname of a client to add:"); ?></label>
<input name="lastname" type="text" class="form-control pull-left" size="40"/> <input name="lastname" type="text" class="form-control pull-left" size="40"/>
</div> </div>
<div class="form-group form-inline">
<label class="col-sm-3 control-label"><?php echo T_("Email") . ": ";?></label>
<input name="email" type="text" class="form-control pull-left"/>
</div>
<div class="form-group form-inline"> <div class="form-group form-inline">
<label class="control-label col-sm-3"><a href='timezonetemplate.php'><?php echo T_("Enter the Time Zone of a client to add:"); echo "</a></label>"; <label class="control-label col-sm-3"><a href='timezonetemplate.php'><?php echo T_("Enter the Time Zone of a client to add:"); echo "</a></label>";
display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",get_setting("DEFAULT_TIME_ZONE")),true,"pull-left"); ?> display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,false,array("value",get_setting("DEFAULT_TIME_ZONE")),true,"pull-left"); ?>

View File

@@ -1,4 +1,5 @@
<?php /** <?php
/**
* Output data as a fixed width ASCII file * Output data as a fixed width ASCII file
* *
* *
@@ -43,6 +44,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -12,6 +12,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -38,6 +38,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -180,7 +185,7 @@ if (isset($_GET['edit']) || isset($_GET['addext']))
WHERE extension_id = " . intval($_GET['edit']); WHERE extension_id = " . intval($_GET['edit']);
$rs = $db->GetRow($sql); $rs = $db->GetRow($sql);
} } else $rs = array();
print "<a href='?' class='btn btn-default pull-left'>" . T_("Go back") . "</a>"; print "<a href='?' class='btn btn-default pull-left'>" . T_("Go back") . "</a>";
?> ?>

View File

@@ -8,6 +8,11 @@
*/ */
include ("../config.inc.php"); include ("../config.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -1,6 +1,5 @@
<?php <?php
/* /**
* Display an index of Admin tools * Display an index of Admin tools
* *
* *
@@ -37,9 +36,24 @@ include ("../lang.inc.php");
/** /**
* Config file * Config file
*/ */
include ("../config.inc.php"); include ("../config.inc.php");
include ("../functions/functions.xhtml.php");
$username = $_SERVER['PHP_AUTH_USER']; /**
* Authentication file
*/
include ("auth-admin.php");
/*
* XHTML file
*/
include ("../functions/functions.xhtml.php");
/*
* Operator functions
*/
include ("../functions/functions.operator.php");
$username = $_SESSION['user'];
$g = 0; $g = 0;
if (isset($_GET['g'])) if (isset($_GET['g']))
$g = intval($_GET['g']); $g = intval($_GET['g']);
@@ -75,11 +89,11 @@ include ("../lang.inc.php");
<i class="fa fa-user fa fa-fw "></i><?php print T_("Logged as:") . "&ensp;" . $username ;?> <i class="fa fa-user fa fa-fw "></i><?php print T_("Logged as:") . "&ensp;" . $username ;?>
</a> </a>
<!--- User menu // not connected to pages so not working yet // could be hidden --> <!--- User menu // not connected to pages so not working yet // could be hidden -->
<!--- <ul class="dropdown-menu" role="menu"> <ul class="dropdown-menu" role="menu">
<li><a href="?page=settings.php"><i class="fa fa-cogs fa-fw "></i>&ensp;<?php print T_("Settings"); ?></a></li> <li><a href="?g=5&amp;page=operatorlist.php?edit=<?php print get_operator_id(); ?>"><i class="fa fa-cogs fa-fw "></i>&ensp;<?php print T_("Settings"); ?></a></li>
<li><a href="../screenloc.php"><i class="fa fa-lock fa-fw "></i>&ensp;<?php print T_("Lock Screen"); ?></a></li> <!--- <li><a href="../screenloc.php"><i class="fa fa-lock fa-fw "></i>&ensp;<?php print T_("Lock Screen"); ?></a></li> -->
<li><a href="../logout.php"><i class="fa fa-sign-out fa-fw "></i>&ensp;<?php print T_("Logout"); ?> </a></li> <li><a href="../include/limesurvey/admin/admin.php?action=logout"><i class="fa fa-sign-out fa-fw "></i>&ensp;<?php print T_("Logout"); ?> </a></li>
</ul> --> </ul>
</li> </li>
</ul> </ul>

View File

@@ -11,6 +11,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include_once(dirname(__FILE__).'/../db.inc.php'); include_once(dirname(__FILE__).'/../db.inc.php');
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -50,30 +55,50 @@ $msg = "";
if (isset($_POST['submit'])) if (isset($_POST['submit']))
{ {
$operator_id = intval($_POST['operator_id']); $operator_id = intval($_POST['operator_id']);
$chat_enable = $voip = $enabled = 0; $superadmin = $chat_enable = $voip = $enabled = 0;
if (isset($_POST['voip'])) $voip = 1; if (isset($_POST['voip'])) $voip = 1;
if (isset($_POST['chat_enable'])) $chat_enable = 1; if (isset($_POST['chat_enable'])) $chat_enable = 1;
if (isset($_POST['enabled'])) $enabled = 1; if (isset($_POST['enabled'])) $enabled = 1;
if (isset($_POST['admin'])) $superadmin = 1;
if (HTPASSWD_PATH !== false && $_POST['existing_username'] != $_POST['username'] && empty($_POST['password'])) //get username
{ $sql = "SELECT username
$msg = "<div class='alert alert-danger'><h3>" . T_("If changing usernames, you must specify a new password") . "</h3></div>"; FROM operator
} WHERE operator_id = $operator_id";
else
{
$sql = "UPDATE operator
SET username = " . $db->qstr($_POST['username']) . ",
lastName = " . $db->qstr($_POST['lastName']) . ",
firstName = " . $db->qstr($_POST['firstName']) . ",
chat_user = " . $db->qstr($_POST['chat_user']) . ",
chat_password = " . $db->qstr($_POST['chat_password']) . ",
Time_zone_name = " . $db->qstr($_POST['timezone']) . ",
voip = $voip, enabled = $enabled, chat_enable = $chat_enable
WHERE operator_id = $operator_id";
$rs = $db->Execute($sql); $uname = $db->GetOne($sql);
if (!empty($rs)) $sql = "UPDATE " . LIME_PREFIX . "users
SET users_name = " . $db->qstr($_POST['username']) . ",
email = " . $db->qstr($_POST['email']) . ",
full_name = " . $db->qstr($_POST['firstName']) . ",
superadmin = $superadmin";
if (!empty($_POST['password']))
{
include_once("../include/limesurvey/admin/classes/core/sha256.php");
$sql .= ", password = '" . SHA256::hashing($_POST['password']) . "' ";
}
$sql .= " WHERE users_name = '$uname'";
$rs = $db->Execute($sql);
if (!empty($rs))
{
$sql = "UPDATE operator
SET username = " . $db->qstr($_POST['username']) . ",
lastName = " . $db->qstr($_POST['lastName']) . ",
firstName = " . $db->qstr($_POST['firstName']) . ",
chat_user = " . $db->qstr($_POST['chat_user']) . ",
chat_password = " . $db->qstr($_POST['chat_password']) . ",
Time_zone_name = " . $db->qstr($_POST['timezone']) . ",
voip = $voip, enabled = $enabled, chat_enable = $chat_enable
WHERE operator_id = $operator_id";
$rs = $db->Execute($sql);
if (!empty($rs))
{ {
//only update extension if we aren't on a case //only update extension if we aren't on a case
$sql = "SELECT case_id $sql = "SELECT case_id
@@ -99,28 +124,18 @@ if (isset($_POST['submit']))
$db->Execute($sql); $db->Execute($sql);
} }
} }
$msg = "<div class='alert alert-info'><h3>" . T_("Successfully updated user") . ": " . $_POST['username'] . "</h3></div>";
if (HTPASSWD_PATH !== false && !empty($_POST['password'])) }
{ else
//update password in htaccess {
include_once(dirname(__FILE__).'/../functions/functions.htpasswd.php'); $msg = "<div class='alert alert-danger'><h3>" . T_("Failed to update user") . ": " . $_POST['username'] . " " . T_("Please make sure the username is unique") . "</h3></div>";
$htp = New Htpasswd(HTPASSWD_PATH); }
$htp->deleteUser($_POST["existing_username"]); }
$htp->deleteUser($_POST["username"]); else
$htp->addUser($_POST["username"],$_POST["password"]); {
$htg = New Htgroup(HTGROUP_PATH); $msg = "<div class='alert alert-danger'><h3>" . T_("Failed to update user") . ": " . $_POST['username'] . " " . T_("Please make sure the username is unique") . "</h3></div>";
$htg->deleteUserFromGroup($_POST["existing_username"],HTGROUP_INTERVIEWER); }
$htg->addUserToGroup($_POST["username"],HTGROUP_INTERVIEWER); $_GET['edit'] = $operator_id;
}
$msg = "<div class='alert alert-info'><h3>" . T_("Successfully updated user") . ": " . $_POST['username'] . "</h3></div>";
}
else
{
$msg = "<div class='alert alert-danger'><h3>" . T_("Failed to update user") . ": " . $_POST['username'] . " " . T_("Please make sure the username is unique") . "</h3></div>";
}
}
$_GET['edit'] = $operator_id;
} }
@@ -130,9 +145,10 @@ if (isset($_GET['edit']))
$operator_id = intval($_GET['edit']); $operator_id = intval($_GET['edit']);
$sql = "SELECT * $sql = "SELECT o.*,l.superadmin,l.email,l.parent_id
FROM operator FROM operator as o, " . LIME_PREFIX ."users as l
WHERE operator_id = $operator_id"; WHERE o.operator_id = $operator_id
AND l.users_name = o.username";
$rs = $db->GetRow($sql); $rs = $db->GetRow($sql);
@@ -200,7 +216,6 @@ function generate() {
<label for="username" class="col-sm-3 control-label"><?php echo T_("Username") . ": "; ?></label> <label for="username" class="col-sm-3 control-label"><?php echo T_("Username") . ": "; ?></label>
<div class="col-sm-3"><input type='text' name='username' class="form-control" value="<?php echo $rs['username'];?>"/></div> <div class="col-sm-3"><input type='text' name='username' class="form-control" value="<?php echo $rs['username'];?>"/></div>
</div> </div>
<?php if (HTPASSWD_PATH !== false) { ?>
<div class="form-group"> <div class="form-group">
<label for="password" class="col-sm-3 control-label"><?php echo T_("Password") . ": "; ?></label> <label for="password" class="col-sm-3 control-label"><?php echo T_("Password") . ": "; ?></label>
<div class="col-sm-3"><input type='text' name='password' class="form-control" placeholder="<?php echo T_("leave blank to keep existing password");?>"/></div> <div class="col-sm-3"><input type='text' name='password' class="form-control" placeholder="<?php echo T_("leave blank to keep existing password");?>"/></div>
@@ -209,7 +224,6 @@ function generate() {
<input type="number" name="number" value="25" min="8" max="50" style="width:5em;" class="form-control" />&ensp;<?php echo T_("characters");?> <input type="number" name="number" value="25" min="8" max="50" style="width:5em;" class="form-control" />&ensp;<?php echo T_("characters");?>
</div> </div>
</div> </div>
<?php } ?>
<div class="form-group"> <div class="form-group">
<label for="firstName" class="col-sm-3 control-label"><?php echo T_("First name") . ": "; ?></label> <label for="firstName" class="col-sm-3 control-label"><?php echo T_("First name") . ": "; ?></label>
<div class="col-sm-3"><input type='text' name='firstName' class="form-control" value="<?php echo $rs['firstName'];?>"/></div> <div class="col-sm-3"><input type='text' name='firstName' class="form-control" value="<?php echo $rs['firstName'];?>"/></div>
@@ -218,6 +232,10 @@ function generate() {
<label for="lastName" class="col-sm-3 control-label"><?php echo T_("Last name") . ": "; ?></label> <label for="lastName" class="col-sm-3 control-label"><?php echo T_("Last name") . ": "; ?></label>
<div class="col-sm-3"><input type='text' name='lastName' class="form-control" value="<?php echo $rs['lastName'];?>"/></div> <div class="col-sm-3"><input type='text' name='lastName' class="form-control" value="<?php echo $rs['lastName'];?>"/></div>
</div> </div>
<div class="form-group">
<label for="email" class="col-sm-3 control-label"><?php echo T_("Email") . ": "; ?></label>
<div class="col-sm-3"><input type='text' name='email' class="form-control" value="<?php echo $rs['email'];?>"/></div>
</div>
<div class="form-group"> <div class="form-group">
<label for="timezone" class="col-sm-3 control-label"><?php echo T_("Timezone") . ": ";?></label> <label for="timezone" class="col-sm-3 control-label"><?php echo T_("Timezone") . ": ";?></label>
<div class="col-sm-3"><?php display_chooser($tz,"timezone","timezone",false,false,false,true,array("value",$rs['Time_zone_name']),true,"form-inline"); ?></div> <div class="col-sm-3"><?php display_chooser($tz,"timezone","timezone",false,false,false,true,array("value",$rs['Time_zone_name']),true,"form-inline"); ?></div>
@@ -245,6 +263,10 @@ function generate() {
<div class="form-group"> <div class="form-group">
<label for="chat_password" class="col-sm-3 control-label"><?php echo T_("Jabber/XMPP chat password") . ": "; ?></label> <label for="chat_password" class="col-sm-3 control-label"><?php echo T_("Jabber/XMPP chat password") . ": "; ?></label>
<div class="col-sm-3"><input type='text' name='chat_password' class="form-control" value="<?php echo $rs['chat_password'];?>"/></div> <div class="col-sm-3"><input type='text' name='chat_password' class="form-control" value="<?php echo $rs['chat_password'];?>"/></div>
</div>
<div class="form-group">
<label for="admin" class="col-sm-3 control-label"><?php echo T_("Is the operator a system administrator?");?></label>
<div class="col-sm-3"><input name="admin" type="checkbox" data-toggle="toggle" data-on="<?php echo T_("Yes"); ?>" data-off="<?php echo T_("No"); ?>" data-offstyle="primary" data-onstyle="danger" <?php if ($rs['superadmin'] || ($rs['parent_id'] == 0)) echo " checked=\"checked\" "; if ($rs['parent_id'] == 0) echo " disabled=\"disabled\" "; ?> value="1"/></div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="chat_enable" class="col-sm-3 control-label"><?php echo T_("Uses chat") . "? ";?></label> <label for="chat_enable" class="col-sm-3 control-label"><?php echo T_("Uses chat") . "? ";?></label>
@@ -380,11 +402,11 @@ if ($display)
$titles[] = T_("Win file");//Windows VoIP $titles[] = T_("Win file");//Windows VoIP
$titles[] = T_("*nix flle");//*nix VoIP $titles[] = T_("*nix flle");//*nix VoIP
} }
echo "<div class=' col-sm-10'><div class=' panel-body'>"; echo "<div class='col-sm-9'><div class='panel-body'>";
xhtml_table($rs,$columns,$titles); xhtml_table($rs,$columns,$titles);
echo "</div></div>"; echo "</div></div>";
echo "<div class='form-group col-sm-2'> echo "<div class='form-group col-sm-3'>
<div class='panel-body'><a href='operators.php?add=add' class='btn btn-default btn-block'><i class='fa fa-lg fa-user-plus'></i>&emsp;" . T_("Add an operator") . "</a></div> <div class='panel-body'><a href='operators.php?add=add' class='btn btn-default btn-block'><i class='fa fa-lg fa-user-plus'></i>&emsp;" . T_("Add an operator") . "</a></div>
<div class='panel-body'><a href='extensionstatus.php' class='btn btn-default btn-block'><i class='fa fa-lg fa-whatsapp'></i>&emsp;" . T_("Extensions") . "</a></div> <div class='panel-body'><a href='extensionstatus.php' class='btn btn-default btn-block'><i class='fa fa-lg fa-whatsapp'></i>&emsp;" . T_("Extensions") . "</a></div>
<div class='panel-body'><a href='operatorquestionnaire.php' class='btn btn-default btn-block'><i class='fa fa-lg fa-link'></i> " . T_("Assign to questionnaire") . "</a></div> <div class='panel-body'><a href='operatorquestionnaire.php' class='btn btn-default btn-block'><i class='fa fa-lg fa-link'></i> " . T_("Assign to questionnaire") . "</a></div>

View File

@@ -38,6 +38,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -159,7 +164,7 @@ xhtml_head(T_("Assign operators to questionnaires"),true,array("../include/boots
print "questionnaire_id = new Array("; print "questionnaire_id = new Array(";
$s = ""; $s = "";
$q = array();
foreach($questionnaires as $q) foreach($questionnaires as $q)
{ {
$s .= "'{$q['questionnaire_id']}',"; $s .= "'{$q['questionnaire_id']}',";
@@ -246,7 +251,7 @@ foreach($questionnaires as $q)
} }
print "</tr></thead>"; print "</tr></thead>";
$v = array();
foreach($operators as $v) foreach($operators as $v)
{ {

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -52,6 +57,8 @@ $a = false;
if (isset($_POST['operator']) && isset($_POST['adduser'])) if (isset($_POST['operator']) && isset($_POST['adduser']))
{ {
$operator = $db->qstr($_POST['operator'],get_magic_quotes_gpc()); $operator = $db->qstr($_POST['operator'],get_magic_quotes_gpc());
$email= $db->qstr($_POST['email'],get_magic_quotes_gpc());
$password = $db->qstr($_POST['password'],get_magic_quotes_gpc());
$firstname = $db->qstr($_POST['firstname'],get_magic_quotes_gpc()); $firstname = $db->qstr($_POST['firstname'],get_magic_quotes_gpc());
$lastname = $db->qstr($_POST['lastname'],get_magic_quotes_gpc()); $lastname = $db->qstr($_POST['lastname'],get_magic_quotes_gpc());
$chat_user = $db->qstr($_POST['chat_user'],get_magic_quotes_gpc()); $chat_user = $db->qstr($_POST['chat_user'],get_magic_quotes_gpc());
@@ -91,12 +98,14 @@ if (isset($_POST['operator']) && isset($_POST['adduser']))
} }
$supervisor = 0; $supervisor = 0;
$temporary = 0; $temporary = 0;
$admin = 0;
$refusal = 0; $refusal = 0;
$voip = 0; $voip = 0;
$chat = 0; $chat = 0;
if (isset($_POST['supervisor']) && $_POST['supervisor'] == "on") $supervisor = 1; if (isset($_POST['supervisor']) && $_POST['supervisor'] == "on") $supervisor = 1;
if (isset($_POST['refusal']) && $_POST['refusal'] == "on") $refusal = 1; if (isset($_POST['refusal']) && $_POST['refusal'] == "on") $refusal = 1;
if (isset($_POST['temporary']) && $_POST['temporary'] == "on") $temporary = 1; if (isset($_POST['temporary']) && $_POST['temporary'] == "on") $temporary = 1;
if (isset($_POST['admin']) && $_POST['admin'] == "on") $admin = 1;
if (isset($_POST['voip']) && $_POST['voip'] == "on") $voip = 1; if (isset($_POST['voip']) && $_POST['voip'] == "on") $voip = 1;
if (isset($_POST['chat_enable']) && $_POST['chat_enable'] == "on") $chat = 1; if (isset($_POST['chat_enable']) && $_POST['chat_enable'] == "on") $chat = 1;
@@ -108,7 +117,15 @@ if (isset($_POST['operator']) && isset($_POST['adduser']))
if ($db->Execute($sql)) if ($db->Execute($sql))
{ {
$oid = $db->Insert_ID(); $oid = $db->Insert_ID();
include_once("../include/limesurvey/admin/classes/core/sha256.php");
//Insert into lime_users
$sql = "INSERT INTO " . LIME_PREFIX . "users (`users_name`,`password`,`full_name`,`parent_id`,`superadmin`,`email`,`lang`)
VALUES ($operator, '" . SHA256::hashing($_POST['password']) . "',$firstname,1,$admin,$email,'auto')";
$db->Execute($sql);
if (FREEPBX_PATH !== false) if (FREEPBX_PATH !== false)
{ {
@@ -130,20 +147,6 @@ if (isset($_POST['operator']) && isset($_POST['adduser']))
$db->Execute($sql); $db->Execute($sql);
} }
if (HTPASSWD_PATH !== false && HTGROUP_PATH !== false)
{
//Get password and add it to the configured htpassword
include_once("../functions/functions.htpasswd.php");
$htp = New Htpasswd(HTPASSWD_PATH);
$htg = New Htgroup(HTGROUP_PATH);
$htp->addUser($_POST['operator'],$_POST['password']);
$htg->addUserToGroup($_POST['operator'],HTGROUP_INTERVIEWER);
if ($supervisor)
$htg->addUserGroup(HTGROUP_ADMIN);
}
$a = "<div class='alert alert-info'><h3>" . T_("Added operator :") . " " . $operator . "</h3>"; $a = "<div class='alert alert-info'><h3>" . T_("Added operator :") . " " . $operator . "</h3>";
if (FREEPBX_PATH !== false) if (FREEPBX_PATH !== false)
@@ -183,7 +186,7 @@ if ($a) {
else { else {
echo "<div class='well'>"; echo "<div class='well'>";
//echo "<p>" . T_("Adding an operator here will give the user the ability to call cases") . "<a href='operatorquestionnaire.php'>" . T_("Assign Operator to Questionnaire") . "</a>" . T_("tool") . ".</p>"; //echo "<p>" . T_("Adding an operator here will give the user the ability to call cases") . "<a href='operatorquestionnaire.php'>" . T_("Assign Operator to Questionnaire") . "</a>" . T_("tool") . ".</p>";
echo "<p>" . T_("Use this form to enter the username of a user based on your directory security system. For example, if you have secured the base directory of queXS using Apache file based security, enter the usernames of the users here.") . "</p>"; //echo "<p>" . T_("Use this form to enter the username of a user based on your directory security system. For example, if you have secured the base directory of queXS using Apache file based security, enter the usernames of the users here.") . "</p>";
echo "<p>" . T_("The username and extension must be unique for each operator.") . "</p>"; echo "<p>" . T_("The username and extension must be unique for each operator.") . "</p>";
echo "</div>"; echo "</div>";
} }
@@ -242,16 +245,14 @@ function generate() {
<label class="col-sm-3 control-label"><?php echo T_("Username") . ": ";?></label> <label class="col-sm-3 control-label"><?php echo T_("Username") . ": ";?></label>
<div class="col-sm-3"><input name="operator" type="text" class="form-control" required /></div> <div class="col-sm-3"><input name="operator" type="text" class="form-control" required /></div>
</div> </div>
<?php if (HTPASSWD_PATH !== false && HTGROUP_PATH !== false) { ?>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label"><?php echo T_("Password") . ": ";?></label> <label class="col-sm-3 control-label"><?php echo T_("Password") . ": ";?></label>
<div class="col-sm-3"><input name="password" id="password" type="text" class="form-control" /></div> <div class="col-sm-3"><input name="password" id="password" type="text" class="form-control" required /></div>
<div class="col-sm-6 form-inline">&emsp; <div class="col-sm-6 form-inline">&emsp;
<input type="button" onclick="generate();" value="<?php echo T_("Generate");?>" class="btn btn-default fa" />&emsp;<?php echo T_("Password with");?>&ensp; <input type="button" onclick="generate();" value="<?php echo T_("Generate");?>" class="btn btn-default fa" />&emsp;<?php echo T_("Password with");?>&ensp;
<input type="number" name="number" value="25" min="8" max="50" style="width:5em;" class="form-control" />&ensp;<?php echo T_("characters");?> <input type="number" name="number" value="25" min="8" max="50" style="width:5em;" class="form-control" />&ensp;<?php echo T_("characters");?>
</div> </div>
</div> </div>
<?php } ?>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label"><?php echo T_("First name") . ": ";?></label> <label class="col-sm-3 control-label"><?php echo T_("First name") . ": ";?></label>
<div class="col-sm-3"><input name="firstname" type="text" class="form-control" required/></div> <div class="col-sm-3"><input name="firstname" type="text" class="form-control" required/></div>
@@ -260,6 +261,10 @@ function generate() {
<label class="col-sm-3 control-label"><?php echo T_("Last name") . ": ";?></label> <label class="col-sm-3 control-label"><?php echo T_("Last name") . ": ";?></label>
<div class="col-sm-3"><input name="lastname" type="text" class="form-control"/></div> <div class="col-sm-3"><input name="lastname" type="text" class="form-control"/></div>
</div> </div>
<div class="form-group">
<label class="col-sm-3 control-label"><?php echo T_("Email") . ": ";?></label>
<div class="col-sm-3"><input name="email" type="text" class="form-control"/></div>
</div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label"><?php echo T_("Timezone") . ": ";?></label> <label class="col-sm-3 control-label"><?php echo T_("Timezone") . ": ";?></label>
<div class="col-sm-3"><?php display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,true,array("value",get_setting("DEFAULT_TIME_ZONE")),true,"form-inline");?></div> <div class="col-sm-3"><?php display_chooser($rs,"Time_zone_name","Time_zone_name",false,false,false,true,array("value",get_setting("DEFAULT_TIME_ZONE")),true,"form-inline");?></div>
@@ -295,6 +300,10 @@ function generate() {
<label class="col-sm-3 control-label"><?php echo T_("Uses chat") . "? ";?></label> <label class="col-sm-3 control-label"><?php echo T_("Uses chat") . "? ";?></label>
<div class="col-sm-3"><input name="chat_enable" type="checkbox" data-toggle="toggle" data-on="<?php echo T_("Yes"); ?>" data-off="<?php echo T_("No"); ?>" /></div> <div class="col-sm-3"><input name="chat_enable" type="checkbox" data-toggle="toggle" data-on="<?php echo T_("Yes"); ?>" data-off="<?php echo T_("No"); ?>" /></div>
</div> </div>
<div class="form-group">
<label class="col-sm-3 control-label"><?php echo T_("Is the operator a system administrator?");?></label>
<div class="col-sm-3"><input name="admin" type="checkbox" data-toggle="toggle" data-on="<?php echo T_("Yes"); ?>" data-off="<?php echo T_("No"); ?>" data-offstyle="primary" data-onstyle="danger"/></div>
</div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label"><?php echo T_("Is the operator a normal interviewer?");?></label> <label class="col-sm-3 control-label"><?php echo T_("Is the operator a normal interviewer?");?></label>
<div class="col-sm-3"><input name="temporary" type="checkbox" data-toggle="toggle" data-on="<?php echo T_("Yes"); ?>" data-off="<?php echo T_("No"); ?>" data-offstyle="danger" checked="checked"/></div> <div class="col-sm-3"><input name="temporary" type="checkbox" data-toggle="toggle" data-on="<?php echo T_("Yes"); ?>" data-off="<?php echo T_("No"); ?>" data-offstyle="danger" checked="checked"/></div>

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -12,6 +12,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include_once(dirname(__FILE__).'/../db.inc.php'); include_once(dirname(__FILE__).'/../db.inc.php');
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include (dirname(__FILE__) . "/../config.inc.php");
*/ */
include (dirname(__FILE__) . "/../db.inc.php"); include (dirname(__FILE__) . "/../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* Process * Process
*/ */

View File

@@ -39,6 +39,11 @@ include("../config.inc.php");
*/ */
include("../db.inc.php"); include("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -533,7 +538,7 @@ else if (isset($_GET['delete']))
} }
else else
{ {
xhtml_head(T_("Questionnaire management"),true,$css,$js_head, false, false, false, "Questionnaire list"); xhtml_head(T_("Questionnaire management"),true,$css,$js_head, false, false, false,T_("Questionnaire list"));
echo "<div class='form-group'> echo "<div class='form-group'>
<a href='' onclick='history.back();return false;' class='btn btn-default'><i class='fa fa-chevron-left fa-lg text-primary'></i>&emsp;" . T_("Go back") . "</a> <a href='' onclick='history.back();return false;' class='btn btn-default'><i class='fa fa-chevron-left fa-lg text-primary'></i>&emsp;" . T_("Go back") . "</a>
<a href='new.php' class='btn btn-default col-sm-offset-6' ><i class='fa fa-file-text-o fa-lg'></i>&emsp;" . T_("Create a new questionnaire") . "</a> <a href='new.php' class='btn btn-default col-sm-offset-6' ><i class='fa fa-file-text-o fa-lg'></i>&emsp;" . T_("Create a new questionnaire") . "</a>

View File

@@ -40,6 +40,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -40,6 +40,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -41,6 +41,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -41,6 +41,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -1,4 +1,5 @@
<?php /** <?php
/**
* Display sample call attempt report (A listing of how many attempts made for cases within a sample) * Display sample call attempt report (A listing of how many attempts made for cases within a sample)
* *
* *
@@ -38,6 +39,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include_once(dirname(__FILE__).'/../db.inc.php'); include_once(dirname(__FILE__).'/../db.inc.php');
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -111,7 +116,7 @@ if (isset($_POST['ed']))
if (isset($_POST['type'])){ if (isset($_POST['type'])){
//check that we have correct var types and quantity //check that we have correct var types and quantity
$prph = 0; $pcd = 0; $st = 0; $fn = 0; $eml =0; $prph = 0; $pcd = 0; $st = 0; $fn = 0; $eml =0; $ln =0;
foreach($_POST['type'] as $key => $val) { foreach($_POST['type'] as $key => $val) {
if ($val == 3) $prph++; if ($val == 3) $prph++;
else if ($val == 5) $pcd++; else if ($val == 5) $pcd++;
@@ -288,17 +293,17 @@ if (isset($_GET['edit']) )
$sql = "SELECT * FROM sample_import WHERE sample_import_id = $sample_import_id"; $sql = "SELECT * FROM sample_import WHERE sample_import_id = $sample_import_id";
$sd = $db->GetRow($sql); $sd = $db->GetRow($sql);
if($sd['enabled'] == 1) $dis = disabled; // -> disable edit and delete if sample is enabled if($sd['enabled'] == 1) $dis = "disabled"; else $dis = false;// -> disable edit and delete if sample is enabled
$sql = "SELECT type, description $sql = "SELECT type, description
FROM sample_var_type"; FROM sample_var_type";
$rd = $db->GetAll($sql); $rd = $db->GetAll($sql);
$selected = "selected=\"selected\"";
$sql = "SELECT sir.var_id, $sql = "SELECT sir.var_id,
CONCAT('<input type=\"text\" onInput=\"$(this).attr(\'name\',\'var[',sir.var_id,']\');\" value=\"' ,sir.var, '\" required class=\"form-control\" style=\"min-width: 300px;\" $dis />') as var, CONCAT('<input type=\"text\" onInput=\"$(this).attr(\'name\',\'var[',sir.var_id,']\');\" value=\"' ,sir.var, '\" required class=\"form-control\" style=\"min-width: 300px;\" $dis />') as var,
CONCAT ('<select name=\"type[',sir.var_id,']\" class=\"form-control\" $dis > CONCAT ('<select name=\"type[',sir.var_id,']\" class=\"form-control\" $dis >
<option value=\"' ,svt.type, '\" $selected>' ,svt.description, '</option>"; <option value=\"' ,svt.type, '\" $selected>' ,svt.description, '</option>";
$selected = "selected=\"selected\"";
foreach($rd as $r) foreach($rd as $r)
{ {
$sql .= "<option value=\"{$r['type']}\">" . T_($r['description']) . "</option>"; $sql .= "<option value=\"{$r['type']}\">" . T_($r['description']) . "</option>";
@@ -468,7 +473,7 @@ $sql = "SELECT
CASE WHEN enabled = 0 THEN CASE WHEN enabled = 0 THEN
CONCAT('<a href=\'?sampleenable=',sample_import_id,'\' class=\'btn btn-default col-sm-12\'>" . TQ_("Enable") . "&emsp;<i class=\'fa fa-play fa-lg\' style=\'color:blue;\'></i></a>') CONCAT('<a href=\'?sampleenable=',sample_import_id,'\' class=\'btn btn-default col-sm-12\'>" . TQ_("Enable") . "&emsp;<i class=\'fa fa-play fa-lg\' style=\'color:blue;\'></i></a>')
ELSE ELSE
CONCAT('<a href=\'\' class=\'btn btn-default col-sm-12\' data-toggle=\'confirmation\' data-href=\'?sampledisable=',sample_import_id,'\' data-title=\'" . TQ_("ARE YOU SHURE?") . "\' data-btnOkLabel=\'" . TQ_("Yes") . "\' data-btnCancelLabel=\'" . TQ_("Cancel") . "\'><i class=\'fa fa-ban fa-lg\' style=\'color:red;\'></i>&ensp;&nbsp;" . TQ_("Disable") . "</a> ') CONCAT('<a href=\'\' class=\'btn btn-default col-sm-12\' data-toggle=\'confirmation\' data-href=\'?sampledisable=',sample_import_id,'\' data-title=\'" . TQ_("ARE YOU SURE?") . "\' data-btnOkLabel=\'" . TQ_("Yes") . "\' data-btnCancelLabel=\'" . TQ_("Cancel") . "\'><i class=\'fa fa-ban fa-lg\' style=\'color:red;\'></i>&ensp;&nbsp;" . TQ_("Disable") . "</a> ')
END END
as enabledisable, as enabledisable,
CASE WHEN enabled = 1 THEN CASE WHEN enabled = 1 THEN
@@ -479,7 +484,7 @@ $sql = "SELECT
CASE WHEN enabled = 1 THEN CASE WHEN enabled = 1 THEN
CONCAT('<a href=\'\' class=\'btn btn-default disabled\'><i class=\'fa fa-trash fa-lg fa-fw\' style=\'color:grey;\'></i></a>') CONCAT('<a href=\'\' class=\'btn btn-default disabled\'><i class=\'fa fa-trash fa-lg fa-fw\' style=\'color:grey;\'></i></a>')
ELSE ELSE
CONCAT('<a href=\'\' class=\'btn btn-default \' data-toggle=\'confirmation\' data-href=\'?delete_sample=',sample_import_id,'\' data-title=\'" . TQ_("ARE YOU SHURE?") . "\' data-btnOkLabel=\'" . TQ_("Yes") . "\' data-btnCancelLabel=\'" . TQ_("Cancel") . "\' ><i class=\'fa fa-trash fa-lg fa-fw text-danger \' data-toggle=\'tooltip\' title=\'" . TQ_("DELETE SAMPLE") . "\'></i></a>') CONCAT('<a href=\'\' class=\'btn btn-default \' data-toggle=\'confirmation\' data-href=\'?delete_sample=',sample_import_id,'\' data-title=\'" . TQ_("ARE YOU SURE?") . "\' data-btnOkLabel=\'" . TQ_("Yes") . "\' data-btnCancelLabel=\'" . TQ_("Cancel") . "\' ><i class=\'fa fa-trash fa-lg fa-fw text-danger \' data-toggle=\'tooltip\' title=\'" . TQ_("DELETE SAMPLE") . "\'></i></a>')
END as delsample, END as delsample,
CONCAT('<a href=\'samplesearch.php?sample_import_id=',sample_import_id,'\' class=\'btn btn-default\' data-toggle=\'tooltip\' title=\'" . TQ_("Search the sample") . "',sample_import_id,'\'><i class=\'fa fa-search fa-lg fa-fw text-primary\'></i></a>') as ssearch, CONCAT('<a href=\'samplesearch.php?sample_import_id=',sample_import_id,'\' class=\'btn btn-default\' data-toggle=\'tooltip\' title=\'" . TQ_("Search the sample") . "',sample_import_id,'\'><i class=\'fa fa-search fa-lg fa-fw text-primary\'></i></a>') as ssearch,
CONCAT('<a href=\'callhistory.php?sample_import_id=',sample_import_id,'\' class=\'btn btn-default\' data-toggle=\'tooltip\' title=\'" . TQ_("Call history"). "&ensp;\n" . TQ_("sample"). "&ensp;',sample_import_id,'\'><i class=\'fa fa-phone fa-lg text-primary\'></i></a>') as calls, CONCAT('<a href=\'callhistory.php?sample_import_id=',sample_import_id,'\' class=\'btn btn-default\' data-toggle=\'tooltip\' title=\'" . TQ_("Call history"). "&ensp;\n" . TQ_("sample"). "&ensp;',sample_import_id,'\'><i class=\'fa fa-phone fa-lg text-primary\'></i></a>') as calls,

View File

@@ -41,6 +41,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -89,7 +94,7 @@ xhtml_head(T_("Search the sample"),true,$css,$js_head);
<h4 class="modal-title text-danger " ><?php echo T_("WARNING !");?></h4> <h4 class="modal-title text-danger " ><?php echo T_("WARNING !");?></h4>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<p><?php echo T_("Are you shure you want to delete") . "&ensp;" . T_("Sample ID") . "&ensp;<b class='text-danger'>" . "</b>?";?></p> <p><?php echo T_("Are you sure you want to delete") . "&ensp;" . T_("Sample ID") . "&ensp;<b class='text-danger'>" . "</b>?";?></p>
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<button type="button" class="btn btn-default pull-left" data-dismiss="modal"><?php echo T_("NOOOO...");?></button> <button type="button" class="btn btn-default pull-left" data-dismiss="modal"><?php echo T_("NOOOO...");?></button>

View File

@@ -1,4 +1,5 @@
<?php /** <?php
/**
* List and edit reports on shifts * List and edit reports on shifts
* *
* *
@@ -38,6 +39,11 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -13,6 +13,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -131,9 +136,14 @@ xhtml_head(T_("Assign outcomes to cases"),true,$css,$js_head);//array("../css/ta
<?php <?php
$sql = "SELECT c.case_id as value, c.case_id as description, CASE WHEN c.case_id = '$case_id' THEN 'selected=\'selected\'' ELSE '' END AS selected $sql = "SELECT c.case_id as value, c.case_id as description, CASE WHEN c.case_id = '$case_id' THEN 'selected=\'selected\'' ELSE '' END AS selected
FROM `case` as c, `outcome` as o FROM `case` AS c, `outcome` AS o, `questionnaire` AS q, `sample` AS s, `sample_import` AS si
WHERE c.current_outcome_id = o.outcome_id WHERE c.current_outcome_id = o.outcome_id
AND o.outcome_type_id = 2"; AND q.questionnaire_id = c.questionnaire_id
AND s.sample_id = c.sample_id
AND s.import_id = si.sample_import_id
AND q.enabled = 1
AND si.enabled =1
AND o.outcome_type_id =2";
$rs = $db->GetAll($sql); $rs = $db->GetAll($sql);
@@ -153,14 +163,14 @@ if (!empty($rs))
</div><form method="get" action="?" class="form-inline "> </div><form method="get" action="?" class="form-inline ">
<div class="modal-body"> <div class="modal-body">
<?php <?php
$call_id = bigintval($_GET['call_id']); if (isset($_GET['call_id'])){ $call_id = bigintval($_GET['call_id']);
$sql = "SELECT o.outcome_id as value,description, CASE WHEN o.outcome_id = c.outcome_id THEN 'selected=\'selected\'' ELSE '' END AS selected $sql = "SELECT o.outcome_id as value,description, CASE WHEN o.outcome_id = c.outcome_id THEN 'selected=\'selected\'' ELSE '' END AS selected
FROM outcome as o, `call` as c FROM outcome as o, `call` as c
WHERE c.call_id = '$call_id'"; WHERE c.call_id = '$call_id'";
$rs2 = $db->GetAll($sql); $rs2 = $db->GetAll($sql);
translate_array($rs2,array("description")); translate_array($rs2,array("description"));
display_chooser($rs2, "set_outcome_id", "set_outcome_id",true,false,false,false); ?> display_chooser($rs2, "set_outcome_id", "set_outcome_id",true,false,false,false); ?>
<input type="hidden" name="call_id" value="<?php echo $call_id;?>"/><input type="hidden" name="case_id" value="<?php echo $case_id;?>"/> <input type="hidden" name="call_id" value="<?php echo $call_id;?>"/><input type="hidden" name="case_id" value="<?php echo $case_id;?>"/> <?php } ?>
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal"><?php echo T_("Cancel"); ?></button> <button type="button" class="btn btn-default" data-dismiss="modal"><?php echo T_("Cancel"); ?></button>
@@ -178,7 +188,7 @@ if (!empty($rs))
<h4 class="modal-title text-danger " ><?php echo T_("WARNING !");?></h4> <h4 class="modal-title text-danger " ><?php echo T_("WARNING !");?></h4>
</div> </div>
<div class="modal-body"> <div class="modal-body">
<p><?php echo T_("Are you shure you want to delete") . "&ensp;" . T_("Sample ID") . "&ensp;<b class='text-danger'>" . "</b>?";?></p> <p><?php echo T_("Are you sure you want to delete") . "&ensp;" . T_("Sample ID") . "&ensp;<b class='text-danger'>" . "</b>?";?></p>
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<button type="button" class="btn btn-default pull-left" data-dismiss="modal"><?php echo T_("NOOOO...");?></button> <button type="button" class="btn btn-default pull-left" data-dismiss="modal"><?php echo T_("NOOOO...");?></button>
@@ -375,7 +385,7 @@ if ($case_id != false)
print "<div class='alert text-danger col-sm-6' role='alert'><b>" . T_("No appointments for this case") . "</b></div>"; print "<div class='alert text-danger col-sm-6' role='alert'><b>" . T_("No appointments for this case") . "</b></div>";
// * disable appointment creation if no sample_id // * disable appointment creation if no sample_id
if ($r[0]['sample_id']){ if (isset($r[0]['sample_id'])){
$rtz= $r[0]['Time_zone_name']; $rtz= $r[0]['Time_zone_name'];
print "&emsp;<a href='displayappointments.php?case_id=$case_id&rtz=$rtz&new=new' class='btn btn-default'><i class='fa fa-clock-o fa-lg'></i>&emsp;" . T_("Create appointment") . "</a>"; } print "&emsp;<a href='displayappointments.php?case_id=$case_id&rtz=$rtz&new=new' class='btn btn-default'><i class='fa fa-clock-o fa-lg'></i>&emsp;" . T_("Create appointment") . "</a>"; }
@@ -454,7 +464,7 @@ if ($case_id != false)
print "<div class='clearfix '></div><div class='col-sm-6'>"; print "<div class='clearfix '></div><div class='col-sm-6'>";
if ($r[0]['sample_id']){ //if sample data exists assign this to an operator for their next case if (isset($r[0]['sample_id'])){ //if sample data exists assign this to an operator for their next case
print "<div class='panel-body'><h4><i class='fa fa-link'></i>&emsp;" . T_("Assign this case to operator (will appear as next case for them)") . "</h4>"; print "<div class='panel-body'><h4><i class='fa fa-link'></i>&emsp;" . T_("Assign this case to operator (will appear as next case for them)") . "</h4>";
?> ?>
@@ -483,7 +493,7 @@ if ($case_id != false)
print "<div class='alert text-danger' role='alert'>" . T_("Case not yet started in Limesurvey") . "</div>"; print "<div class='alert text-danger' role='alert'>" . T_("Case not yet started in Limesurvey") . "</div>";
print "</div></div>"; print "</div></div>";
if ($r[0]['sample_id']){ // if sample data exists view availability if (isset($r[0]['sample_id'])){ // if sample data exists view availability
print "<div class='panel-body col-sm-6'><h4 class=''><i class='fa fa-calendar'></i>&emsp;" . T_("Availability groups") . "</h4>"; print "<div class='panel-body col-sm-6'><h4 class=''><i class='fa fa-calendar'></i>&emsp;" . T_("Availability groups") . "</h4>";
if (is_using_availability($case_id)) if (is_using_availability($case_id))
@@ -501,15 +511,15 @@ if ($case_id != false)
//Display all availability groups as checkboxes //Display all availability groups as checkboxes
print "<form action='?' method='get' class='form-horizontal '>"; print "<form action='?' method='get' class='form-horizontal '>";
print "<h5 class=''>" . T_("Select groups to limit availability (Selecting none means always available)") . "</h5><div class='col-sm-6'>"; print "<h5 class=''>" . T_("Select groups to limit availability (Selecting none means always available)") . "</h5><div class='col-sm-6'>";
foreach ($rs as $r) foreach ($rs as $g)
{ {
$checked = ""; $checked = "";
//if ($allselected || $r['availability_group_id'] == $r['selected_group_id']) //if ($allselected || $g['availability_group_id'] == $g['selected_group_id'])
if ($r['availability_group_id'] == $r['selected_group_id']) if ($g['availability_group_id'] == $g['selected_group_id'])
$checked = "checked='checked'"; $checked = "checked='checked'";
print "&ensp;<input type='checkbox' name='ag{$r['availability_group_id']}' id='ag{$r['availability_group_id']}' value='{$r['availability_group_id']}' $checked />&ensp; <label class='control-label' for='ag{$r['availability_group_id']}'>{$r['description']}</label></br>"; print "&ensp;<input type='checkbox' name='ag{$g['availability_group_id']}' id='ag{$g['availability_group_id']}' value='{$g['availability_group_id']}' $checked />&ensp; <label class='control-label' for='ag{$g['availability_group_id']}'>{$g['description']}</label></br>";
} }
?> </div> ?> </div>
<input type="hidden" name="case_id" value="<?php echo $case_id;?>"/> <input type="hidden" name="case_id" value="<?php echo $case_id;?>"/>
@@ -541,7 +551,7 @@ if ($case_id != false)
<?php <?php
print "</div>"; print "</div>";
if ($r[0]['sample_id']){ // if sample data exists deidentify record if (isset($r[0]['sample_id'])){ // if sample data exists deidentify record
print "<div class='panel-body col-sm-6 pull-right'><h4 class ='text-danger'><i class='fa fa-trash-o fa-lg'></i>&emsp;" . T_("Deidentify") . "</h4>"; print "<div class='panel-body col-sm-6 pull-right'><h4 class ='text-danger'><i class='fa fa-trash-o fa-lg'></i>&emsp;" . T_("Deidentify") . "</h4>";
print "<div class='well'>" . T_("Remove all sample details and contact numbers from this case") . "</div>"; print "<div class='well'>" . T_("Remove all sample details and contact numbers from this case") . "</div>";
?> ?>

View File

@@ -40,6 +40,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* Process * Process
*/ */
@@ -96,13 +101,14 @@ else
{ {
xhtml_head(T_("Monitor system wide case sorting"),true,array("../include/bootstrap/css/bootstrap.min.css","../css/custom.css")); xhtml_head(T_("Monitor system wide case sorting"),true,array("../include/bootstrap/css/bootstrap.min.css","../css/custom.css"));
//print "<h2>" . T_("Monitor system wide case sorting") . "</h2>"; //print "<h2>" . T_("Monitor system wide case sorting") . "</h2>";
print "<p><a href='?watch=watch'>" . T_("Click here to enable and begin system wide case sorting") . "</a></p>"; print "<div class='col-sm-6'></br></br><a href='?watch=watch' class = 'btn btn-danger btn-lg'>" . T_("Click here to enable and begin system wide case sorting") . "</a></div>";
print "<div class='well pull-right col-sm-4'><p>" . T_("System wide case sorting is periodically (via SYSTEM_SORT_MINUTES configuration directive) sorting cases on a system wide basis instead of finding the most appropriate case each time an operator requests a new case. This may increase performance where there are a large number of cases or complex quotas in place. If you are not experiencing any performance problems, it is not recommended to use this feature.") . "</p></div>"; print "<div class='well pull-right col-sm-6'><p>" . T_("System wide case sorting is periodically (via SYSTEM_SORT_MINUTES configuration directive) sorting cases on a system wide basis instead of finding the most appropriate case each time an operator requests a new case. This may increase performance where there are a large number of cases or complex quotas in place. If you are not experiencing any performance problems, it is not recommended to use this feature.") . "</p></div>";
print "<h2>" . T_("Outcome of last process run (if any)") . "</h2>";
$d = process_get_last_data(2); $d = process_get_last_data(2);
if ($d !== false) if ($d !== false)
{ {
xhtml_table($d,array('process_log_id','datetime','data'),array(T_("Log id"), T_("Date"), T_("Log entry"))); print "<h2>" . T_("Outcome of last process run (if any)") . "</h2>";
xhtml_table($d,array('process_log_id','datetime','data'),array(T_("Log id"), T_("Date"), T_("Log entry")));
} }
} }
xhtml_foot(); xhtml_foot();

View File

@@ -39,6 +39,11 @@ include (dirname(__FILE__) . "/../config.inc.php");
*/ */
include (dirname(__FILE__) . "/../db.inc.php"); include (dirname(__FILE__) . "/../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* Process * Process
*/ */

View File

@@ -40,6 +40,11 @@ include("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* XHTML functions * XHTML functions
*/ */
@@ -101,7 +106,7 @@ $tzl = $db->GetAll($sql);
if (empty($tzl) || !$tzl) if (empty($tzl) || !$tzl)
{ {
print "<div class='alert alert-danger'>" . T_("Your database does not have timezones installed, please see here for details") . "<a href='http://dev.mysql.com/doc/mysql/en/time-zone-support.html'> ... </a></div>"; print "<div class='alert alert-danger'>" . T_("Your database does not have timezones installed, please see here for details") . "<a href='http://dev.mysql.com/doc/mysql/en/time-zone-support.html'> ... </a></br>" .T_("or") . "</br>" . T_("Check that you have granted relevant permissions on 'time_zone_...' tables in database named 'mysql'.") . "</div>";
} }
print "<div class='col-sm-4 '><h3 class=''>" . T_("Default Timezone: ") . "&emsp;<b class='text-primary'>$dtz</b></h3>";//<div class='panel-body'> print "<div class='col-sm-4 '><h3 class=''>" . T_("Default Timezone: ") . "&emsp;<b class='text-primary'>$dtz</b></h3>";//<div class='panel-body'>

View File

@@ -39,6 +39,11 @@ include ("../config.inc.php");
*/ */
include ("../db.inc.php"); include ("../db.inc.php");
/**
* Authentication file
*/
include ("auth-admin.php");
/** /**
* Process * Process
*/ */

View File

@@ -39,6 +39,11 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

59
auth-interviewer.php Normal file
View File

@@ -0,0 +1,59 @@
<?php
/**
* Session based authentication using the Limesurvey database (interviewer)
*
*
* 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@acspri.org.au>
* @copyright Australian Consortium for Social and Political Research Incorporated (ACSPRI) 2013
* @package queXS
* @subpackage user
* @link http://www.acspri.org.au/ queXS was writen for ACSPRI
* @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
*
*/
/**
* Configuration file
*/
include_once("config.inc.php");
/**
* Database file
*/
include_once("db.inc.php");
//get session name from DB
//
$sql = "SELECT stg_value
FROM " . LIME_PREFIX . "settings_global
WHERE stg_name = 'SessionName'";
session_name($db->GetOne($sql));
session_start();
//check if the session exists or loginID not set
if (session_id() == "" || !isset($_SESSION['loginID']))
{
//need to log in
header('Location: include/limesurvey/admin/admin.php');
die();
}

View File

@@ -39,6 +39,11 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,12 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,11 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -39,6 +39,12 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -1,5 +0,0 @@
AuthType Basic
AuthName "queXS CATI: Authentication Required"
AuthUserFile /var/opt/quexs/htpasswd
AuthGroupFile /var/opt/quexs/htgroup
require group clients

59
client/auth-client.php Normal file
View File

@@ -0,0 +1,59 @@
<?php
/**
* Session based authentication using the Limesurvey database (client)
*
*
* 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@acspri.org.au>
* @copyright Australian Consortium for Social and Political Research Incorporated (ACSPRI) 2013
* @package queXS
* @subpackage user
* @link http://www.acspri.org.au/ queXS was writen for ACSPRI
* @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2
*
*/
/**
* Configuration file
*/
include_once(dirname(__FILE__)."/../config.inc.php");
/**
* Database file
*/
include_once(dirname(__FILE__)."/../db.inc.php");
//get session name from DB
//
$sql = "SELECT stg_value
FROM " . LIME_PREFIX . "settings_global
WHERE stg_name = 'SessionName'";
session_name($db->GetOne($sql));
session_start();
//check if the session exists or loginID not set
if (session_id() == "" || !isset($_SESSION['loginID']))
{
//need to log in
header('Location: ../include/limesurvey/admin/admin.php');
die();
}

View File

@@ -38,6 +38,12 @@ include_once(dirname(__FILE__).'/../config.inc.php');
*/ */
include_once(dirname(__FILE__).'/../db.inc.php'); include_once(dirname(__FILE__).'/../db.inc.php');
/**
* Authentication
*/
include ("auth-client.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -168,31 +168,6 @@ if (!defined('PHP_EXEC')) define('PHP_EXEC', "php");
*/ */
if (!defined('ADODB_PATH')) define('ADODB_PATH',dirname(__FILE__).'/include/limesurvey/classes/adodb/'); if (!defined('ADODB_PATH')) define('ADODB_PATH',dirname(__FILE__).'/include/limesurvey/classes/adodb/');
/**
* Path to the HTPASSWD file read/writable by the web server user for htpasswd integration
*/
if (!defined('HTPASSWD_PATH')) define('HTPASSWD_PATH',false);
/**
* Path to the HTGROUP file read/writable by the web server user for htpasswd integration
*/
if (!defined('HTGROUP_PATH')) define('HTGROUP_PATH',false);
/**
* The name of the admin group for htaccess
*/
if (!defined('HTGROUP_ADMIN')) define('HTGROUP_ADMIN','admin');
/**
* The name of the interviewers group for htaccess
*/
if (!defined('HTGROUP_INTERVIEWER')) define('HTGROUP_INTERVIEWER','interviewers');
/**
* The name of the clients group for htaccess
*/
if (!defined('HTGROUP_CLIENT')) define('HTGROUP_CLIENT','clients');
/** /**
* Whether to automatically assign a call as complete if VoIP disabled at the end of a completed questionnaire * Whether to automatically assign a call as complete if VoIP disabled at the end of a completed questionnaire
*/ */

View File

@@ -39,6 +39,12 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -1,42 +0,0 @@
#menu ul{
list-style: none;
margin: 0;
padding: 0;
}
#menu ul ul{
list-style: square inside;
margin: 5px;
marker-offset: auto;
}
#menu h3 {
font-size: 100%;
margin-top: 10px;
margin-bottom: 0;
}
#menu {
position : absolute;
width : 20%;
height : 100%;
top : 0;
right : 0;
bottom : auto;
left : 0;
overflow: auto;
font-size: 0.8em;
/*border-bottom: 1px solid #aaa;*/
}
#main {
position : absolute;
top : 0;
left : 20%;
bottom : auto;
width : 80%;
height : 100%;
}
.embeddedobject {
width:100%;
height:100%;
position:absolute;
}

View File

@@ -1,4 +0,0 @@
h1 {font-family: Arial, sans-serif; font-size: 400%; text-align: center;}
h2 {font-family: Arial, sans-serif; font-size: 1100%; text-align: center;}
h3 {font-family: Arial, sans-serif; font-size: 150%; text-align: center;}
p {font-family: Arial, sans-serif; font-size: 100%;}

40
css/signin.css Normal file
View File

@@ -0,0 +1,40 @@
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: #eee;
}
.form-signin {
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
}
.form-signin .checkbox {
font-weight: normal;
}
.form-signin .form-control {
position: relative;
height: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type="user"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}

View File

@@ -955,7 +955,7 @@ CREATE TABLE `lime_users` (
-- Dumping data for table `lime_users` -- Dumping data for table `lime_users`
-- --
INSERT INTO `lime_users` (`uid`, `users_name`, `password`, `full_name`, `parent_id`, `lang`, `email`, `create_survey`, `create_user`, `participant_panel`, `delete_user`, `superadmin`, `configurator`, `manage_template`, `manage_label`, `htmleditormode`, `templateeditormode`, `questionselectormode`, `one_time_pw`, `dateformat`) VALUES(1, 'admin', 0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438, 'Your Name', 0, 'en', 'your-email@example.net', 1, 1, 0, 1, 1, 1, 1, 1, 'default', 'default', 'default', NULL, 1); INSERT INTO `lime_users` (`uid`, `users_name`, `password`, `full_name`, `parent_id`, `lang`, `email`, `create_survey`, `create_user`, `participant_panel`, `delete_user`, `superadmin`, `configurator`, `manage_template`, `manage_label`, `htmleditormode`, `templateeditormode`, `questionselectormode`, `one_time_pw`, `dateformat`) VALUES(1, 'admin', 0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438, 'Your Name', 0, 'auto', 'your-email@example.net', 1, 1, 0, 1, 1, 1, 1, 1, 'default', 'default', 'default', NULL, 1);
-- -------------------------------------------------------- -- --------------------------------------------------------
@@ -1007,6 +1007,9 @@ CREATE TABLE `operator` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -------------------------------------------------------- -- --------------------------------------------------------
INSERT INTO `operator` (`operator_id`, `username`, `firstName`, `lastName`, `Time_zone_name`, `enabled`, `voip`, `next_case_id`, `chat_enable`, `chat_user`, `chat_password`) VALUES
(1, 'admin', 'CATI', 'Admin', 'Australia/Victoria', 1, 0, NULL, 0, '', '');
-- --
-- Table structure for table `operator_questionnaire` -- Table structure for table `operator_questionnaire`
@@ -1032,6 +1035,10 @@ CREATE TABLE `operator_skill` (
-- -------------------------------------------------------- -- --------------------------------------------------------
INSERT INTO `operator_skill` (`operator_id`, `outcome_type_id`) VALUES
(1, 1),
(1, 5);
-- --
-- Table structure for table `outcome` -- Table structure for table `outcome`
-- --
@@ -1511,24 +1518,6 @@ INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES(8, 'Email
-- -------------------------------------------------------- -- --------------------------------------------------------
--
-- Table structure for table `sessions2`
--
CREATE TABLE `sessions2` (
`sesskey` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`expiry` datetime NOT NULL,
`expireref` varchar(250) COLLATE utf8_unicode_ci DEFAULT '',
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
`sessdata` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`sesskey`),
KEY `sess2_expiry` (`expiry`),
KEY `sess2_expireref` (`expireref`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
-- --
-- Table structure for table `setting` -- Table structure for table `setting`
-- --

View File

@@ -75,7 +75,7 @@ if (DEBUG == true) $db->debug = true;
$db->Execute("set names 'utf8'"); $db->Execute("set names 'utf8'");
//store session in database (see sessions2 table) //store session in database (see sessions2 table)
ADOdb_Session::config(DB_TYPE, DB_HOST, DB_USER, DB_PASS, DB_NAME,$options=false); ADOdb_Session::config(DB_TYPE, DB_HOST, DB_USER, DB_PASS, DB_NAME, array('table' => LIME_PREFIX . 'sessions'));
/** /**

View File

@@ -1,149 +0,0 @@
<?php
/**
* Display a "full screen" view of outcomes for display on a large
* communal screen - will change views periodically
*
*
* 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 user
* @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
*
*
*/
/**
* Configuration file
*/
include ("../config.inc.php");
/**
* Database file
*/
include('../db.inc.php');
/**
* XHTML functions
*/
include ("../functions/functions.xhtml.php");
/**
* Display functions
*/
include ("../functions/functions.performance.php");
/**
* Input functions
*/
include("../functions/functions.input.php");
$shift_id = 0;
$questionnaire_id = 0;
$display_type = 0;
if (isset($_GET['shift_id'])) $shift_id = bigintval($_GET['shift_id']);
if (isset($_GET['questionnaire_id'])) $questionnaire_id = bigintval($_GET['questionnaire_id']);
if (isset($_GET['display_type'])) $display_type= bigintval($_GET['display_type']);
if ($display_type >= 6)
{
$sql = "SELECT shift_id,questionnaire_id
FROM shift
WHERE start <= CONVERT_TZ(NOW(),'System','UTC')
AND end >= CONVERT_TZ(NOW(),'System','UTC')
AND shift_id > '$shift_id'
ORDER BY shift_id ASC
LIMIT 1";
$s = $db->GetRow($sql);
$display_type = 0;
$shift_id = 0;
$questionnaire_id = 0;
if (!empty($s))
{
$shift_id = $s['shift_id'];
$questionnaire_id = $s['questionnaire_id'];
}
}
if ($shift_id == 0)
{
$sql = "SELECT shift_id,questionnaire_id
FROM shift
WHERE start <= CONVERT_TZ(NOW(),'System','UTC')
AND end >= CONVERT_TZ(NOW(),'System','UTC')
ORDER BY shift_id ASC
LIMIT 1";
$s = $db->GetRow($sql);
$display_type = 0;
if (!empty($s))
{
$shift_id = $s['shift_id'];
$questionnaire_id = $s['questionnaire_id'];
}
}
$dt1 = $display_type + 1;
xhtml_head(T_("Display"),true,array("../css/display.css"),false,false,"6;url=?shift_id=$shift_id&amp;questionnaire_id=$questionnaire_id&amp;display_type=$dt1");
if ($shift_id == 0 || $questionnaire_id == 0)
display_none();
else
{
$sql = "SELECT description
FROM questionnaire
WHERE questionnaire_id = '$questionnaire_id'";
$n = $db->GetRow($sql);
print "<h1>{$n['description']}</h1>\n";
switch($display_type)
{
case 0:
display_total_completions($questionnaire_id);
break;
case 1:
display_completions_this_shift($questionnaire_id,$shift_id);
break;
case 2:
display_completions_same_time_last_shift($questionnaire_id,$shift_id);
break;
case 3:
display_completions_last_shift($questionnaire_id,$shift_id);
break;
case 4:
display_top_cph_this_shift($questionnaire_id,$shift_id);
break;
case 5:
display_top_cph($questionnaire_id);
break;
}
}
xhtml_foot();
?>

View File

@@ -39,6 +39,12 @@ include ("config.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -36,6 +36,12 @@
*/ */
include_once("lang.inc.php"); include_once("lang.inc.php");
/**
* Authentication
*/
include_once("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
@@ -73,6 +79,7 @@ if (ALLOW_OPERATOR_EXTENSION_SELECT && VOIP_ENABLED)
} }
print "<p><a href='index.php'>" . T_("Go back to work") . "</a></p>"; print "<p><a href='index.php'>" . T_("Go back to work") . "</a></p>";
print "<p><a href='include/limesurvey/admin/admin.php?action=logout'>" . T_("Logout") . "</a></p>";
xhtml_foot(); xhtml_foot();

View File

@@ -41,7 +41,7 @@ include_once(dirname(__FILE__).'/../config.inc.php');
include_once(dirname(__FILE__).'/../db.inc.php'); include_once(dirname(__FILE__).'/../db.inc.php');
/** /**
* Return the current client id based on PHP_AUTH_USER * Return the current client id based on the SESSION loginID
* *
* @return bool|int False if none otherwise the client id * @return bool|int False if none otherwise the client id
* *
@@ -50,9 +50,12 @@ function get_client_id()
{ {
global $db; global $db;
if (!isset($_SESSION['user']))
return false;
$sql = "SELECT client_id $sql = "SELECT client_id
FROM client FROM client
WHERE username = '{$_SERVER['PHP_AUTH_USER']}'"; WHERE username = '{$_SESSION['user']}'";
$o = $db->GetRow($sql); $o = $db->GetRow($sql);

View File

@@ -960,24 +960,24 @@ function get_extension($operator_id)
/** /**
* Return the current operator id based on PHP_AUTH_USER * Return the current operator id based on SESSION loginID
* *
* @return bool|int False if none otherwise the operator id * @return bool|int False if none otherwise the operator id
* *
*/ */
function get_operator_id() function get_operator_id()
{ {
if (!isset($_SERVER['PHP_AUTH_USER'])) if (!isset($_SESSION['user']))
{ {
print "<p>" . T_("ERROR: You do not have server side authentication enabled therefore queXS cannot determine which user is accessing the system.") . "</p>"; print "<p>" . T_("ERROR: You are not logged in.") . "</p>";
return false; die();
} }
global $db; global $db;
$sql = "SELECT operator_id $sql = "SELECT operator_id
FROM operator FROM operator
WHERE username = " . $db->qstr($_SERVER['PHP_AUTH_USER']) . " WHERE username = " . $db->qstr($_SESSION['user']) . "
AND enabled = 1"; AND enabled = 1";
$o = $db->GetRow($sql); $o = $db->GetRow($sql);
@@ -2194,14 +2194,14 @@ function end_case($operator_id)
else if ($count >= 1) //one or more numbers to be tried again - see if max calls reached, then code as eligible if ever eligible... else if ($count >= 1) //one or more numbers to be tried again - see if max calls reached, then code as eligible if ever eligible...
{ {
$sql = "SELECT call_attempt_max,call_max $sql = "SELECT call_attempt_max,call_max
FROM questionnaire_sample as qs, `case` as c FROM questionnaire_sample as qs, `case` as c, sample as s
WHERE c.case_id = '$case_id' WHERE c.case_id = '$case_id'
AND qs.sample_id = c.sample_id AND c.sample_id = s.sample_id
AND qs.sample_import_id = s.import_id
AND qs.questionnaire_id = c.questionnaire_id"; AND qs.questionnaire_id = c.questionnaire_id";
$cm = $db->GetRow($sql); $cm = $db->GetRow($sql);
$sql = "SELECT COUNT(*) as c $sql = "SELECT COUNT(*) as c
FROM call_attempt FROM call_attempt
WHERE case_id = '$case_id'"; WHERE case_id = '$case_id'";

View File

@@ -114,7 +114,7 @@ function xhtml_foot($javascript = false){ //added javascript files array to the
*/ */
function xhtml_table($content,$fields,$head = false,$class = "tclass",$highlight=false,$total=false,$id=false,$name=false) function xhtml_table($content,$fields,$head = false,$class = "tclass",$highlight=false,$total=false,$id=false,$name=false)
{ {
$tot = array(); $tot = array(); $row = array();
if ($class == "tclass") $class = "table-hover table-bordered table-condensed tclass"; if ($class == "tclass") $class = "table-hover table-bordered table-condensed tclass";
print "<table class=\"$class\" id=\"$id\" name=\"$name\" data-toggle=\"table\" data-toolbar=\"filter-bar\" data-show-filter=\"true\" >"; print "<table class=\"$class\" id=\"$id\" name=\"$name\" data-toggle=\"table\" data-toolbar=\"filter-bar\" data-show-filter=\"true\" >";
if ($head) if ($head)

View File

@@ -1,4 +0,0 @@
AuthType None
Satisfy Any
Order Deny,Allow
Allow from All

View File

@@ -1,8 +0,0 @@
AuthType Basic
AuthName "queXS CATI: Authentication Required"
AuthUserFile /var/opt/quexs/htpasswd
AuthGroupFile /var/opt/quexs/htgroup
require group admin
Satisfy Any
Order Deny,Allow
Deny from all

View File

@@ -792,11 +792,35 @@ if(isset($_SESSION['loginID']))
else else
{ //not logged in { //not logged in
sendcacheheaders(); sendcacheheaders();
if (!isset($_SESSION['metaHeader'])) {$_SESSION['metaHeader']='';} $adminoutput = <<<EOD
$adminoutput = getAdminHeader($_SESSION['metaHeader']).$adminoutput.$loginsummary; // All future output is written into this and then outputted at the end of file <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<title>queXS Authentication</title>
<!-- Bootstrap core CSS -->
<link href="../../../include/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="../../../css/signin.css" rel="stylesheet">
</head>
<body>
<div class="container">
EOD;
$adminoutput .= $loginsummary;
$adminoutput .= "</div></body></html>";
unset($_SESSION['metaHeader']); unset($_SESSION['metaHeader']);
$adminoutput.= "</div>\n".getAdminFooter("http://docs.limesurvey.org", $clang->gT("LimeSurvey online manual"));
} }
if (($action=='showphpinfo') && ($_SESSION['USER_RIGHT_CONFIGURATOR'] == 1)) if (($action=='showphpinfo') && ($_SESSION['USER_RIGHT_CONFIGURATOR'] == 1))
{ {

View File

@@ -154,17 +154,14 @@ if(!isset($_SESSION['loginID']) && $action != "forgotpass" && ($action != "logou
{ {
$loginsummary = ' $loginsummary = '
<form class="form44" name="forgotpassword" id="forgotpassword" method="post" action="'.$homeurl.'/admin.php" > <form class="form-signin" name="forgotpassword" id="forgotpassword" method="post" action="'.$homeurl.'/admin.php" >
<p><strong>'.$clang->gT('You have to enter user name and email.').'</strong></p> <h2>'.$clang->gT('You have to enter user name and email.').'</h2><p><br /> <br />
<label for="user">'.$clang->gT('Username').'</label><input name="user" id="user" class="form-control" placeholder="User name" required autofocus type="text" size="60" maxlength="60" value="" />
<ul> <label for="email">'.$clang->gT('Email').'</label><input name="email" id="email" class="form-control" placeholder="Email" required type="text" size="60" maxlength="60" value="" /></p>
<li><label for="user">'.$clang->gT('Username').'</label><input name="user" id="user" type="text" size="60" maxlength="60" value="" /></li> <input type="hidden" name="action" value="forgotpass" />
<li><label for="email">'.$clang->gT('Email').'</label><input name="email" id="email" type="text" size="60" maxlength="60" value="" /></li> <p><button class="action btn btn-lg btn-primary btn-block" type="submit">'.$clang->gT('Check Data').'</button></p>
<p><input type="hidden" name="action" value="forgotpass" /> <p><a href="'.$scriptname.'">'.$clang->gT('Main Admin Screen').'</a></p>
<input class="action" type="submit" value="'.$clang->gT('Check Data').'" />
<p><a href="'.$scriptname.'">'.$clang->gT('Main Admin Screen').'</a>
</form> </form>
<p>&nbsp;</p>
'; ';
} }
elseif (!isset($loginsummary)) elseif (!isset($loginsummary))
@@ -211,21 +208,19 @@ if(!isset($_SESSION['loginID']) && $action != "forgotpass" && ($action != "logou
{ {
if (!isset($logoutsummary)) if (!isset($logoutsummary))
{ {
$loginsummary = "<form name='loginform' id='loginform' method='post' action='$homeurl/admin.php' ><p><strong>".$clang->gT("You have to login first.")."</strong><br /> <br />"; $loginsummary = "<form name='loginform' id='loginform' class='form-signin' method='post' action='$homeurl/admin.php' ><h2>".$clang->gT("You have to login first.")."</h2><p><br /> <br />";
} }
else else
{ {
$loginsummary = "<form name='loginform' id='loginform' method='post' action='$homeurl/admin.php' ><br /><strong>".$logoutsummary."</strong><br /> <br />"; $loginsummary = "<form name='loginform' id='loginform' class='form-signin' method='post' action='$homeurl/admin.php' ><br /><strong>".$logoutsummary."</strong><br /> <br />";
} }
$loginsummary .= " $loginsummary .= "<label for='user'>".$clang->gT("Username")."</label>
<ul> <input class='form-control' placeholder='User name' required autofocus name='user' id='user' type='text' size='40' maxlength='40' value='' />
<li><label for='user'>".$clang->gT("Username")."</label> <label for='password'>".$clang->gT("Password")."</label>
<input name='user' id='user' type='text' size='40' maxlength='40' value='' /></li> <input name='password' id='password' class='form-control' placeholder='Password' required type='password' size='40' maxlength='40' />
<li><label for='password'>".$clang->gT("Password")."</label> <label for='loginlang'>".$clang->gT("Language")."</label>
<input name='password' id='password' type='password' size='40' maxlength='40' /></li> <select id='loginlang' class='form-control' name='loginlang'>\n";
<li><label for='loginlang'>".$clang->gT("Language")."</label>
<select id='loginlang' name='loginlang' style='width:216px;'>\n";
$loginsummary .='<option value="default" selected="selected">'.$clang->gT('Default').'</option>'; $loginsummary .='<option value="default" selected="selected">'.$clang->gT('Default').'</option>';
$lan=array(); $lan=array();
foreach (getlanguagedata(true) as $langkey=>$languagekind) foreach (getlanguagedata(true) as $langkey=>$languagekind)
@@ -238,12 +233,10 @@ if(!isset($_SESSION['loginID']) && $action != "forgotpass" && ($action != "logou
//The following conditional statements select the browser language in the language drop down box and echoes the other options. //The following conditional statements select the browser language in the language drop down box and echoes the other options.
$loginsummary .= "\t\t\t\t<option value='$langkey'>".$languagekind['nativedescription']." - ".$languagekind['description']."</option>\n"; $loginsummary .= "\t\t\t\t<option value='$langkey'>".$languagekind['nativedescription']." - ".$languagekind['description']."</option>\n";
} }
$loginsummary .= "\t\t\t</select>\n" $loginsummary .= "\t\t\t</select>\n
. "</li>
</ul>
<p><input type='hidden' name='action' value='login' /> <p><input type='hidden' name='action' value='login' />
<input type='hidden' name='refererargs' value='".$refererargs."' /> <input type='hidden' name='refererargs' value='".$refererargs."' />
<input class='action' type='submit' value='".$clang->gT("Login")."' /><br />&nbsp;\n<br/>"; <button class='action btn btn-lg btn-primary btn-block' type='submit'>".$clang->gT("Login")."</button>";
} }
else{ else{
$loginsummary .= "<p>".sprintf($clang->gT("You have exceeded you maximum login attempts. Please wait %d minutes before trying again"),($timeOutTime/60))."<br /></p>"; $loginsummary .= "<p>".sprintf($clang->gT("You have exceeded you maximum login attempts. Please wait %d minutes before trying again"),($timeOutTime/60))."<br /></p>";

View File

@@ -31,7 +31,7 @@ else {session_name("LimeSurveyAdmin");}
if (session_id() == "") if (session_id() == "")
{ {
session_set_cookie_params(0,$relativeurl.'/'); session_set_cookie_params(0,QUEXS_PATH);
if ($debug==0) {@session_start();} if ($debug==0) {@session_start();}
else {session_start();} else {session_start();}
} }

View File

@@ -236,6 +236,19 @@ if (!isset($_SESSION['loginID']))
} }
$loginsummary .= "<br /><br />\n"; $loginsummary .= "<br /><br />\n";
GetSessionUserRights($_SESSION['loginID']); GetSessionUserRights($_SESSION['loginID']);
//go to queXS
$loc = "";
if ($_SESSION['USER_RIGHT_SUPERADMIN'] == 1)
$loc = "admin";
else
{
$utest = $connect->GetOne("SELECT username FROM client WHERE username = '" . $_SESSION['user'] . "'");
if (!empty($utest))
$loc = "client";
}
header('Location: ' . QUEXS_URL . $loc);
die();
} }
else else
{ {

View File

@@ -67,22 +67,26 @@ $debug = 0; // Set this to 1 if you are looking f
// LimeSurvey developers: Set this to 3 to circumvent the restriction to remove the installation directory and full access to standard templates // LimeSurvey developers: Set this to 3 to circumvent the restriction to remove the installation directory and full access to standard templates
// or to change the password. If you set it to 3 then PHP STRICT warnings will be shown additionally. // or to change the password. If you set it to 3 then PHP STRICT warnings will be shown additionally.
$defaultlang = DEFAULT_LOCALE; $defaultlang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
if (empty($defaultlang)) $defaultlang = DEFAULT_LOCALE;
$defaulttemplate = "quexs"; $defaulttemplate = "quexs";
$useWebserverAuth = true; $siteadminemail = "quexs@acspri.org.au";
$WebserverAuth_autocreateUser = true; //$useWebserverAuth = true;
$WebserverAuth_autouserprofile = Array( //$WebserverAuth_autocreateUser = true;
'full_name' => 'autouser', //$WebserverAuth_autouserprofile = Array(
'email' => $siteadminemail, // 'full_name' => 'autouser',
'htmledtirmode' => $defaulthtmleditormode, // 'email' => $siteadminemail,
'templatelist' => 'default,basic', // 'htmledtirmode' => $defaulthtmleditormode,
'create_survey' => 1, // 'templatelist' => 'default,basic',
'lang' => DEFAULT_LOCALE, // 'create_survey' => 1,
'create_user' => 1, // 'lang' => DEFAULT_LOCALE,
'delete_user' => 1, // 'create_user' => 1,
'superadmin' => 1, // 'delete_user' => 1,
'configurator' => 1, // 'superadmin' => 1,
'manage_template' => 1, // 'configurator' => 1,
'manage_label' => 1); // 'manage_template' => 1,
// 'manage_label' => 1);
//
$sessionhandler = 'db';

View File

@@ -35,6 +35,11 @@
*/ */
include ("config.inc.php"); include ("config.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
/** /**
* XHTML functions * XHTML functions
*/ */

View File

@@ -45,6 +45,12 @@ include ("functions/functions.xhtml.php");
*/ */
include("functions/functions.operator.php"); include("functions/functions.operator.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
$popupcall = false; $popupcall = false;

View File

@@ -49,6 +49,12 @@ include ("lang.inc.php");
*/ */
include ("db.inc.php"); include ("db.inc.php");
/**
* Authentication
*/
include ("auth-interviewer.php");
$js = false; $js = false;
if (AUTO_LOGOUT_MINUTES !== false) if (AUTO_LOGOUT_MINUTES !== false)
$js = array("include/jquery/jquery-1.4.2.min.js","js/childnap.js"); $js = array("include/jquery/jquery-1.4.2.min.js","js/childnap.js");

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: quexs\n" "Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2015-08-04 12:27+1000\n" "POT-Creation-Date: 2015-08-10 16:24+1000\n"
"PO-Revision-Date: 2013-09-02 11:31+0000\n" "PO-Revision-Date: 2013-09-02 11:31+0000\n"
"Last-Translator: Siddiq <sidik@sidiklepic.com>\n" "Last-Translator: Siddiq <sidik@sidiklepic.com>\n"
"Language-Team: Bosnian <bs@li.org>\n" "Language-Team: Bosnian <bs@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-08-04 03:56+0000\n" "X-Launchpad-Export-Date: 2015-08-31 02:56+0000\n"
"X-Generator: Launchpad (build 17656)\n" "X-Generator: Launchpad (build 17690)\n"
#: appointment.php:69 #: appointment.php:69
msgid "Appointment error" msgid "Appointment error"
@@ -148,32 +148,6 @@ msgstr ""
msgid "Show to operator?" msgid "Show to operator?"
msgstr "" msgstr ""
#: functions/functions.freepbx.php:138
#, php-format
msgid "Reload failed because retrieve_conf encountered an error: %s"
msgstr ""
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr ""
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
msgstr ""
#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 #: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning" msgid "morning"
msgstr "" msgstr ""
@@ -186,7 +160,7 @@ msgstr ""
msgid "evening" msgid "evening"
msgstr "" msgstr ""
#: functions/functions.operator.php:905 #: functions/functions.operator.php:972
msgid "" msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS " "ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system." "cannot determine which user is accessing the system."
@@ -509,7 +483,7 @@ msgstr ""
#: admin/operatorlist.php:184 admin/operatorlist.php:372 #: admin/operatorlist.php:184 admin/operatorlist.php:372
#: admin/casesbyoutcome.php:88 admin/supervisor.php:372 #: admin/casesbyoutcome.php:88 admin/supervisor.php:372
#: admin/supervisor.php:399 admin/supervisor.php:416 #: admin/supervisor.php:399 admin/supervisor.php:416
#: admin/operatorskill.php:244 admin/operatorperformance.php:81 #: admin/operatorskill.php:246 admin/operatorperformance.php:81
#: admin/operatorperformance.php:104 admin/shiftreport.php:104 #: admin/operatorperformance.php:104 admin/shiftreport.php:104
#: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242 #: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242
msgid "Operator" msgid "Operator"
@@ -538,12 +512,12 @@ msgid "Add note"
msgstr "" msgstr ""
#: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495 #: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495
#: admin/samplesearch.php:102 admin/questionnairelist.php:368 #: admin/samplesearch.php:102 admin/questionnairelist.php:370
#: admin/questionnairelist.php:503 admin/questionnairelist.php:525 #: admin/questionnairelist.php:508 admin/questionnairelist.php:530
#: admin/questionnairelist.php:533 admin/callhistory.php:137 #: admin/questionnairelist.php:538 admin/callhistory.php:137
#: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43 #: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43
#: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54 #: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54
#: admin/assignsample.php:150 admin/assignsample.php:203 #: admin/assignsample.php:201 admin/assignsample.php:254
#: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95 #: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95
#: contactdetails.php:92 #: contactdetails.php:92
msgid "Go back" msgid "Go back"
@@ -597,15 +571,16 @@ msgstr ""
#: waitnextcase_interface2.php:136 admin/operators.php:284 #: waitnextcase_interface2.php:136 admin/operators.php:284
#: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304 #: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304
#: admin/operators.php:308 admin/samplesearch.php:96 #: admin/operators.php:308 admin/samplesearch.php:96
#: admin/supervisorchat.php:74 admin/questionnairelist.php:380 #: admin/supervisorchat.php:74 admin/questionnairelist.php:385
#: admin/questionnairelist.php:383 admin/questionnairelist.php:387 #: admin/questionnairelist.php:388 admin/questionnairelist.php:392
#: admin/questionnairelist.php:391 admin/questionnairelist.php:395 #: admin/questionnairelist.php:396 admin/questionnairelist.php:400
#: admin/operatorlist.php:239 admin/operatorlist.php:251 #: admin/operatorlist.php:239 admin/operatorlist.php:251
#: admin/operatorlist.php:255 admin/assignsample.php:173 #: admin/operatorlist.php:255 admin/assignsample.php:224
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:268 admin/supervisor.php:185 admin/quotarow.php:392 #: admin/assignsample.php:319 admin/assignsample.php:325
#: admin/quotarow.php:596 admin/new.php:208 admin/new.php:215 #: admin/supervisor.php:185 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@@ -1081,14 +1056,14 @@ msgstr ""
#: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294 #: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294
#: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178 #: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178
#: admin/callhistory.php:124 admin/callhistory.php:149 #: admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:152 #: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:203
#: admin/assignsample.php:228 admin/supervisor.php:298 admin/quotarow.php:306 #: admin/assignsample.php:279 admin/supervisor.php:298 admin/quotarow.php:306
#: admin/casestatus.php:116 admin/casestatus.php:234 #: admin/casestatus.php:116 admin/casestatus.php:234
msgid "Sample" msgid "Sample"
msgstr "" msgstr ""
#: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149 #: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:151 #: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:202
#: admin/quotarow.php:288 admin/casestatus.php:231 #: admin/quotarow.php:288 admin/casestatus.php:231
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
#: admin/new.php:127 admin/new.php:135 shifts.php:103 #: admin/new.php:127 admin/new.php:135 shifts.php:103
@@ -1249,7 +1224,7 @@ msgstr ""
msgid "Delete ?" msgid "Delete ?"
msgstr "" msgstr ""
#: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:179 #: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:230
#: admin/quotarow.php:394 admin/extensionstatus.php:202 #: admin/quotarow.php:394 admin/extensionstatus.php:202
#: admin/displayappointments.php:231 #: admin/displayappointments.php:231
msgid "Save changes" msgid "Save changes"
@@ -1409,7 +1384,8 @@ msgid "Added operator :"
msgstr "" msgstr ""
#: admin/operators.php:150 #: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgid ""
"FreePBX needs to be reloaded for the new VoIP extension to take effect"
msgstr "" msgstr ""
#: admin/operators.php:172 #: admin/operators.php:172
@@ -1435,7 +1411,7 @@ msgstr ""
#: admin/operators.php:242 admin/clientquestionnaire.php:238 #: admin/operators.php:242 admin/clientquestionnaire.php:238
#: admin/operatorlist.php:200 admin/operatorlist.php:372 #: admin/operatorlist.php:200 admin/operatorlist.php:372
#: admin/operatorskill.php:244 admin/operatorquestionnaire.php:242 #: admin/operatorskill.php:246 admin/operatorquestionnaire.php:242
msgid "Username" msgid "Username"
msgstr "" msgstr ""
@@ -1457,8 +1433,8 @@ msgid "characters"
msgstr "" msgstr ""
#: admin/operators.php:267 admin/operators.php:276 #: admin/operators.php:267 admin/operators.php:276
#: admin/questionnairelist.php:375 admin/operatorlist.php:225 #: admin/questionnairelist.php:380 admin/operatorlist.php:225
#: admin/operatorlist.php:233 admin/assignsample.php:228 #: admin/operatorlist.php:233 admin/assignsample.php:279
#: admin/quotarow.php:582 admin/shiftreport.php:104 #: admin/quotarow.php:582 admin/shiftreport.php:104
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
msgid "Edit" msgid "Edit"
@@ -1479,15 +1455,16 @@ msgstr ""
#: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300 #: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300
#: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74 #: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74
#: admin/questionnairelist.php:380 admin/questionnairelist.php:383 #: admin/questionnairelist.php:385 admin/questionnairelist.php:388
#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 #: admin/questionnairelist.php:392 admin/questionnairelist.php:396
#: admin/questionnairelist.php:395 admin/operatorlist.php:239 #: admin/questionnairelist.php:400 admin/operatorlist.php:239
#: admin/operatorlist.php:251 admin/operatorlist.php:255 #: admin/operatorlist.php:251 admin/operatorlist.php:255
#: admin/assignsample.php:173 admin/assignsample.php:174 #: admin/assignsample.php:224 admin/assignsample.php:225
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:265 admin/assignsample.php:268 #: admin/assignsample.php:316 admin/assignsample.php:319
#: admin/quotarow.php:392 admin/quotarow.php:596 admin/new.php:208 #: admin/assignsample.php:325 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:215 admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "No" msgid "No"
msgstr "" msgstr ""
@@ -1521,7 +1498,7 @@ msgstr ""
#: admin/quotareport.php:111 admin/assigntimeslots.php:156 #: admin/quotareport.php:111 admin/assigntimeslots.php:156
#: admin/questionnaireprefill.php:100 admin/outcomes.php:68 #: admin/questionnaireprefill.php:100 admin/outcomes.php:68
#: admin/addshift.php:168 admin/assignsample.php:204 #: admin/addshift.php:168 admin/assignsample.php:255
msgid "Select a questionnaire" msgid "Select a questionnaire"
msgstr "" msgstr ""
@@ -2009,136 +1986,140 @@ msgstr ""
msgid "Update" msgid "Update"
msgstr "" msgstr ""
#: admin/questionnairelist.php:347 #: admin/questionnairelist.php:348
msgid "Modify Questionnaire " msgid "Modify Questionnaire "
msgstr "" msgstr ""
#: admin/questionnairelist.php:370 #: admin/questionnairelist.php:370
msgid "Assigned survey"
msgstr ""
#: admin/questionnairelist.php:374
msgid "Edit instrument in Limesurvey" msgid "Edit instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:375 admin/questionnairelist.php:376 #: admin/questionnairelist.php:380 admin/questionnairelist.php:381
#: admin/new.php:154 admin/new.php:156 #: admin/new.php:162 admin/new.php:164
msgid "Name for questionnaire:" msgid "Name for questionnaire:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:379 admin/new.php:206 #: admin/questionnairelist.php:384 admin/new.php:197
msgid "Restrict appointments to shifts?" msgid "Restrict appointments to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:382 admin/new.php:213 #: admin/questionnairelist.php:387 admin/new.php:204
msgid "Restrict work to shifts?" msgid "Restrict work to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:386 admin/new.php:220 #: admin/questionnairelist.php:391 admin/new.php:211
msgid "Questionnaire for testing only?" msgid "Questionnaire for testing only?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:390 admin/new.php:227 #: admin/questionnairelist.php:395 admin/new.php:218
msgid "Allow operators to generate referrals?" msgid "Allow operators to generate referrals?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:394 admin/new.php:234 #: admin/questionnairelist.php:399 admin/new.php:225
msgid "Allow for respondent self completion via email invitation?" msgid "Allow for respondent self completion via email invitation?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:399 admin/new.php:242 #: admin/questionnairelist.php:404 admin/new.php:233
msgid "Questionnaire display mode for respondent" msgid "Questionnaire display mode for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:402 admin/new.php:245 #: admin/questionnairelist.php:407 admin/new.php:236
msgid "All in one" msgid "All in one"
msgstr "" msgstr ""
#: admin/questionnairelist.php:403 admin/new.php:246 #: admin/questionnairelist.php:408 admin/new.php:237
msgid "Question by question" msgid "Question by question"
msgstr "" msgstr ""
#: admin/questionnairelist.php:404 admin/new.php:247 #: admin/questionnairelist.php:409 admin/new.php:238
msgid "Group at a time" msgid "Group at a time"
msgstr "" msgstr ""
#: admin/questionnairelist.php:409 admin/new.php:252 #: admin/questionnairelist.php:414 admin/new.php:243
msgid "Limesurvey template for respondent" msgid "Limesurvey template for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:428 admin/new.php:270 #: admin/questionnairelist.php:433 admin/new.php:261
msgid "URL to forward respondents on self completion (required)" msgid "URL to forward respondents on self completion (required)"
msgstr "" msgstr ""
#: admin/questionnairelist.php:439 admin/questionnairelist.php:449 #: admin/questionnairelist.php:444 admin/questionnairelist.php:454
#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 #: admin/questionnairelist.php:464 admin/questionnairelist.php:474
#: admin/questionnairelist.php:485 admin/questionnairelist.php:495 #: admin/questionnairelist.php:490 admin/questionnairelist.php:500
#: admin/new.php:306 admin/new.php:316 admin/new.php:326 admin/new.php:336 #: admin/new.php:297 admin/new.php:307 admin/new.php:317 admin/new.php:327
#: admin/new.php:348 admin/new.php:358 #: admin/new.php:339 admin/new.php:349
msgid "Expand/Collapse" msgid "Expand/Collapse"
msgstr "" msgstr ""
#: admin/questionnairelist.php:440 admin/new.php:307 #: admin/questionnairelist.php:445 admin/new.php:298
msgid "Respondent selection introduction:" msgid "Respondent selection introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:450 admin/new.php:317 #: admin/questionnairelist.php:455 admin/new.php:308
msgid "Respondent selection project introduction:" msgid "Respondent selection project introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:460 admin/new.php:327 #: admin/questionnairelist.php:465 admin/new.php:318
msgid "Respondent selection callback (already started questionnaire):" msgid "Respondent selection callback (already started questionnaire):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:470 admin/new.php:337 #: admin/questionnairelist.php:475 admin/new.php:328
msgid "Message to leave on an answering machine:" msgid "Message to leave on an answering machine:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:480 #: admin/questionnairelist.php:485
msgid "Edit respondent selection instrument in Limesurvey" msgid "Edit respondent selection instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:486 admin/new.php:349 #: admin/questionnairelist.php:491 admin/new.php:340
msgid "Project end text (thank you screen):" msgid "Project end text (thank you screen):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:496 admin/new.php:359 #: admin/questionnairelist.php:501 admin/new.php:350
msgid "Project information for interviewers/operators:" msgid "Project information for interviewers/operators:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:504 #: admin/questionnairelist.php:509
msgid "Update Questionnaire" msgid "Update Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:518 #: admin/questionnairelist.php:523
msgid "Delete Questionnaire" msgid "Delete Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:520 #: admin/questionnairelist.php:525
msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgid "Any collected data and the limesurvey instrument will NOT be deleted"
msgstr "" msgstr ""
#: admin/questionnairelist.php:521 #: admin/questionnairelist.php:526
msgid "" msgid ""
"The questionnaire will be deleted from queXS including call history, cases, " "The questionnaire will be deleted from queXS including call history, cases, "
"case notes, respondent details, appointments and the links between " "case notes, respondent details, appointments and the links between "
"operators, clients and the questionnaire" "operators, clients and the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:522 #: admin/questionnairelist.php:527
msgid "Please confirm you wish to delete the questionnaire" msgid "Please confirm you wish to delete the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:525 #: admin/questionnairelist.php:530
msgid "Delete this questionnaire" msgid "Delete this questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:531 admin/index.php:100 admin/new.php:136 #: admin/questionnairelist.php:536 admin/index.php:100 admin/new.php:136
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Questionnaire management" msgid "Questionnaire management"
msgstr "" msgstr ""
#: admin/questionnairelist.php:534 admin/index.php:99 admin/new.php:42 #: admin/questionnairelist.php:539 admin/index.php:99 admin/new.php:42
msgid "Create a new questionnaire" msgid "Create a new questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:552 #: admin/questionnairelist.php:557
msgid "Edit Lime survey" msgid "Edit Lime survey"
msgstr "" msgstr ""
@@ -2351,7 +2332,7 @@ msgstr ""
msgid "Select columns to import" msgid "Select columns to import"
msgstr "" msgstr ""
#: admin/import.php:97 admin/import.php:145 admin/assignsample.php:272 #: admin/import.php:97 admin/import.php:145 admin/assignsample.php:330
msgid "Add sample" msgid "Add sample"
msgstr "" msgstr ""
@@ -2372,7 +2353,7 @@ msgid "Enter new sample name..."
msgstr "" msgstr ""
#: admin/index.php:50 #: admin/index.php:50
msgid "Administrative Tools" msgid "queXS Administration"
msgstr "" msgstr ""
#: admin/index.php:67 #: admin/index.php:67
@@ -2403,11 +2384,11 @@ msgstr ""
msgid "Questionnairies" msgid "Questionnairies"
msgstr "" msgstr ""
#: admin/index.php:98 admin/new.php:177 admin/new.php:181 #: admin/index.php:98 admin/new.php:178 admin/new.php:372
msgid "Create an instrument in Limesurvey" msgid "Create an instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/index.php:101 #: admin/index.php:101 admin/new.php:374
msgid "Administer instruments with Limesurvey" msgid "Administer instruments with Limesurvey"
msgstr "" msgstr ""
@@ -2460,7 +2441,7 @@ msgstr ""
msgid "Assign operators to questionnaires" msgid "Assign operators to questionnaires"
msgstr "" msgstr ""
#: admin/index.php:134 admin/operatorskill.php:268 #: admin/index.php:134 admin/operatorskill.php:270
msgid "Modify operator skills" msgid "Modify operator skills"
msgstr "" msgstr ""
@@ -2681,82 +2662,89 @@ msgstr ""
msgid "Code value" msgid "Code value"
msgstr "" msgstr ""
#: admin/assignsample.php:131 #: admin/assignsample.php:182
msgid "Edit assignment parameters" msgid "Edit assignment parameters"
msgstr "" msgstr ""
#: admin/assignsample.php:132 admin/assignsample.php:201 #: admin/assignsample.php:183 admin/assignsample.php:252
msgid "Assign samples to questionnaire: " msgid "Assign samples to questionnaire: "
msgstr "" msgstr ""
#: admin/assignsample.php:163 admin/assignsample.php:228 #: admin/assignsample.php:214 admin/assignsample.php:279
#: admin/assignsample.php:251 #: admin/assignsample.php:302
msgid "Max calls" msgid "Max calls"
msgstr "" msgstr ""
#: admin/assignsample.php:165 admin/assignsample.php:168 #: admin/assignsample.php:216 admin/assignsample.php:219
#: admin/assignsample.php:253 admin/assignsample.php:257 #: admin/assignsample.php:304 admin/assignsample.php:308
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: admin/assignsample.php:166 admin/assignsample.php:228 #: admin/assignsample.php:217 admin/assignsample.php:279
#: admin/assignsample.php:255 #: admin/assignsample.php:306
msgid "Max call attempts" msgid "Max call attempts"
msgstr "" msgstr ""
#: admin/assignsample.php:169 admin/assignsample.php:259 #: admin/assignsample.php:220 admin/assignsample.php:310
msgid "Number of answering machine messages to leave per case" msgid "Number of answering machine messages to leave per case"
msgstr "" msgstr ""
#: admin/assignsample.php:171 admin/assignsample.php:261 #: admin/assignsample.php:222 admin/assignsample.php:312
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: admin/assignsample.php:172 admin/assignsample.php:263 #: admin/assignsample.php:223 admin/assignsample.php:314
msgid "Select from sample randomly?" msgid "Select from sample randomly?"
msgstr "" msgstr ""
#: admin/assignsample.php:174 admin/assignsample.php:265 #: admin/assignsample.php:225 admin/assignsample.php:316
msgid "Sequentially" msgid "Sequentially"
msgstr "" msgstr ""
#: admin/assignsample.php:175 admin/assignsample.php:228 #: admin/assignsample.php:226 admin/assignsample.php:279
#: admin/assignsample.php:267 #: admin/assignsample.php:318
msgid "Allow new numbers to be drawn?" msgid "Allow new numbers to be drawn?"
msgstr "" msgstr ""
#: admin/assignsample.php:200 #: admin/assignsample.php:251
msgid "List & Add Sample" msgid "List & Add Sample"
msgstr "" msgstr ""
#: admin/assignsample.php:211 #: admin/assignsample.php:262
msgid "Samples selected for this questionnaire" msgid "Samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Answering machine messages" msgid "Answering machine messages"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Selection type" msgid "Selection type"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Unassign sample" msgid "Unassign sample"
msgstr "" msgstr ""
#: admin/assignsample.php:230 #: admin/assignsample.php:281
msgid "No samples selected for this questionnaire" msgid "No samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:244 #: admin/assignsample.php:295
msgid "Add a sample to this questionnaire:" msgid "Add a sample to this questionnaire:"
msgstr "" msgstr ""
#: admin/assignsample.php:247 #: admin/assignsample.php:298
msgid "Select sample:" msgid "Select sample:"
msgstr "" msgstr ""
#: admin/assignsample.php:324
msgid ""
"Generate cases for all sample records and set outcome to 'Self completion "
"email invitation sent'? (Ideal if you intend to send an email invitation to "
"sample members before attempting to call using queXS)"
msgstr ""
#: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98 #: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98
msgid "Case id:" msgid "Case id:"
msgstr "" msgstr ""
@@ -2769,7 +2757,7 @@ msgstr ""
msgid "Select case" msgid "Select case"
msgstr "" msgstr ""
#: admin/supervisor.php:142 admin/new.php:180 #: admin/supervisor.php:142 admin/new.php:177 admin/new.php:373
msgid "or" msgid "or"
msgstr "" msgstr ""
@@ -2781,7 +2769,7 @@ msgstr ""
msgid "Set an outcome for this call" msgid "Set an outcome for this call"
msgstr "" msgstr ""
#: admin/supervisor.php:166 #: admin/supervisor.php:166 admin/new.php:359
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@@ -3346,11 +3334,11 @@ msgstr ""
msgid "No, Thank you, go to" msgid "No, Thank you, go to"
msgstr "" msgstr ""
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Go to" msgid "Go to"
msgstr "" msgstr ""
#: admin/new.php:156 #: admin/new.php:164
msgid "Enter New questionnaire name.." msgid "Enter New questionnaire name.."
msgstr "" msgstr ""
@@ -3358,26 +3346,30 @@ msgstr ""
msgid "Select limesurvey instrument:" msgid "Select limesurvey instrument:"
msgstr "" msgstr ""
#: admin/new.php:174 admin/new.php:199 #: admin/new.php:173 admin/new.php:190
msgid "Existing instrument:" msgid "Survey"
msgstr "" msgstr ""
#: admin/new.php:186 #: admin/new.php:183
msgid "Respondent selection type:" msgid "Respondent selection type:"
msgstr "" msgstr ""
#: admin/new.php:189 #: admin/new.php:186
msgid "No respondent selection (go straight to questionnaire)" msgid "No respondent selection (go straight to questionnaire)"
msgstr "" msgstr ""
#: admin/new.php:190 #: admin/new.php:187
msgid "Use basic respondent selection text (below)" msgid "Use basic respondent selection text (below)"
msgstr "" msgstr ""
#: admin/new.php:371 #: admin/new.php:362
msgid "Create Questionnaire" msgid "Create Questionnaire"
msgstr "" msgstr ""
#: admin/new.php:371
msgid "NO active Lime surveys available"
msgstr ""
#: admin/databasestrings.php:32 rs_intro_interface2.php:76 #: admin/databasestrings.php:32 rs_intro_interface2.php:76
msgid "Not attempted or worked" msgid "Not attempted or worked"
msgstr "" msgstr ""
@@ -3607,11 +3599,19 @@ msgid "Self completed online"
msgstr "" msgstr ""
#: admin/databasestrings.php:91 #: admin/databasestrings.php:91
msgid "Max call attempts reached" msgid "Max call attempts reached (Eligible)"
msgstr "" msgstr ""
#: admin/databasestrings.php:92 #: admin/databasestrings.php:92
msgid "Max calls reached" msgid "Max calls reached (Eligible)"
msgstr ""
#: admin/databasestrings.php:93
msgid "Max call attempts reached (Unknown eligibility)"
msgstr ""
#: admin/databasestrings.php:94
msgid "Max calls reached (Unknown eligibility)"
msgstr "" msgstr ""
#: call_interface2.php:116 #: call_interface2.php:116

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: quexs\n" "Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2015-08-04 12:27+1000\n" "POT-Creation-Date: 2015-08-10 16:24+1000\n"
"PO-Revision-Date: 2013-12-24 14:41+0000\n" "PO-Revision-Date: 2013-12-24 14:41+0000\n"
"Last-Translator: Zbyněk Schwarz <Unknown>\n" "Last-Translator: Zbyněk Schwarz <Unknown>\n"
"Language-Team: Czech <cs@li.org>\n" "Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-08-04 03:56+0000\n" "X-Launchpad-Export-Date: 2015-08-31 02:56+0000\n"
"X-Generator: Launchpad (build 17656)\n" "X-Generator: Launchpad (build 17690)\n"
#: appointment.php:69 #: appointment.php:69
msgid "Appointment error" msgid "Appointment error"
@@ -147,36 +147,6 @@ msgstr ""
msgid "Show to operator?" msgid "Show to operator?"
msgstr "" msgstr ""
#: functions/functions.freepbx.php:138
#, 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"
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr "retrieve_conf selhalo, nastavení není použito"
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
"Znovu načtení selhalo protože FreePBX se nemohlo připojit ke správcovskému "
"rozhraní asterisk."
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
"Nelze znovu načíst server panelu operátora FOP, pomocí skriptu bounce_op.sh. "
"ZMěny nastavení se nemusí na zobrazení panelu projevit."
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
msgstr "Kód ukončení byl %s a výstup byl: %s"
#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 #: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning" msgid "morning"
msgstr "ráno" msgstr "ráno"
@@ -189,7 +159,7 @@ msgstr "odpoledne"
msgid "evening" msgid "evening"
msgstr "večer" msgstr "večer"
#: functions/functions.operator.php:905 #: functions/functions.operator.php:972
msgid "" msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS " "ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system." "cannot determine which user is accessing the system."
@@ -514,7 +484,7 @@ msgstr "Tato směna"
#: admin/operatorlist.php:184 admin/operatorlist.php:372 #: admin/operatorlist.php:184 admin/operatorlist.php:372
#: admin/casesbyoutcome.php:88 admin/supervisor.php:372 #: admin/casesbyoutcome.php:88 admin/supervisor.php:372
#: admin/supervisor.php:399 admin/supervisor.php:416 #: admin/supervisor.php:399 admin/supervisor.php:416
#: admin/operatorskill.php:244 admin/operatorperformance.php:81 #: admin/operatorskill.php:246 admin/operatorperformance.php:81
#: admin/operatorperformance.php:104 admin/shiftreport.php:104 #: admin/operatorperformance.php:104 admin/shiftreport.php:104
#: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242 #: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242
msgid "Operator" msgid "Operator"
@@ -543,12 +513,12 @@ msgid "Add note"
msgstr "Přidat poznámku" msgstr "Přidat poznámku"
#: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495 #: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495
#: admin/samplesearch.php:102 admin/questionnairelist.php:368 #: admin/samplesearch.php:102 admin/questionnairelist.php:370
#: admin/questionnairelist.php:503 admin/questionnairelist.php:525 #: admin/questionnairelist.php:508 admin/questionnairelist.php:530
#: admin/questionnairelist.php:533 admin/callhistory.php:137 #: admin/questionnairelist.php:538 admin/callhistory.php:137
#: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43 #: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43
#: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54 #: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54
#: admin/assignsample.php:150 admin/assignsample.php:203 #: admin/assignsample.php:201 admin/assignsample.php:254
#: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95 #: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95
#: contactdetails.php:92 #: contactdetails.php:92
msgid "Go back" msgid "Go back"
@@ -602,15 +572,16 @@ msgstr "Současné dostupné směny:"
#: waitnextcase_interface2.php:136 admin/operators.php:284 #: waitnextcase_interface2.php:136 admin/operators.php:284
#: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304 #: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304
#: admin/operators.php:308 admin/samplesearch.php:96 #: admin/operators.php:308 admin/samplesearch.php:96
#: admin/supervisorchat.php:74 admin/questionnairelist.php:380 #: admin/supervisorchat.php:74 admin/questionnairelist.php:385
#: admin/questionnairelist.php:383 admin/questionnairelist.php:387 #: admin/questionnairelist.php:388 admin/questionnairelist.php:392
#: admin/questionnairelist.php:391 admin/questionnairelist.php:395 #: admin/questionnairelist.php:396 admin/questionnairelist.php:400
#: admin/operatorlist.php:239 admin/operatorlist.php:251 #: admin/operatorlist.php:239 admin/operatorlist.php:251
#: admin/operatorlist.php:255 admin/assignsample.php:173 #: admin/operatorlist.php:255 admin/assignsample.php:224
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:268 admin/supervisor.php:185 admin/quotarow.php:392 #: admin/assignsample.php:319 admin/assignsample.php:325
#: admin/quotarow.php:596 admin/new.php:208 admin/new.php:215 #: admin/supervisor.php:185 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@@ -1098,14 +1069,14 @@ msgstr "Povoleno"
#: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294 #: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294
#: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178 #: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178
#: admin/callhistory.php:124 admin/callhistory.php:149 #: admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:152 #: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:203
#: admin/assignsample.php:228 admin/supervisor.php:298 admin/quotarow.php:306 #: admin/assignsample.php:279 admin/supervisor.php:298 admin/quotarow.php:306
#: admin/casestatus.php:116 admin/casestatus.php:234 #: admin/casestatus.php:116 admin/casestatus.php:234
msgid "Sample" msgid "Sample"
msgstr "Vzorek" msgstr "Vzorek"
#: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149 #: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:151 #: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:202
#: admin/quotarow.php:288 admin/casestatus.php:231 #: admin/quotarow.php:288 admin/casestatus.php:231
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
#: admin/new.php:127 admin/new.php:135 shifts.php:103 #: admin/new.php:127 admin/new.php:135 shifts.php:103
@@ -1268,7 +1239,7 @@ msgstr "Příklad dat"
msgid "Delete ?" msgid "Delete ?"
msgstr "" msgstr ""
#: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:179 #: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:230
#: admin/quotarow.php:394 admin/extensionstatus.php:202 #: admin/quotarow.php:394 admin/extensionstatus.php:202
#: admin/displayappointments.php:231 #: admin/displayappointments.php:231
msgid "Save changes" msgid "Save changes"
@@ -1436,8 +1407,9 @@ msgid "Added operator :"
msgstr "" msgstr ""
#: admin/operators.php:150 #: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgid ""
msgstr "FreePBX byl znovu načten, aby nové rozšíření VoIP mohlo být použito" "FreePBX needs to be reloaded for the new VoIP extension to take effect"
msgstr ""
#: admin/operators.php:172 #: admin/operators.php:172
msgid "" msgid ""
@@ -1467,7 +1439,7 @@ msgstr ""
#: admin/operators.php:242 admin/clientquestionnaire.php:238 #: admin/operators.php:242 admin/clientquestionnaire.php:238
#: admin/operatorlist.php:200 admin/operatorlist.php:372 #: admin/operatorlist.php:200 admin/operatorlist.php:372
#: admin/operatorskill.php:244 admin/operatorquestionnaire.php:242 #: admin/operatorskill.php:246 admin/operatorquestionnaire.php:242
msgid "Username" msgid "Username"
msgstr "Uživatelské jméno" msgstr "Uživatelské jméno"
@@ -1489,8 +1461,8 @@ msgid "characters"
msgstr "" msgstr ""
#: admin/operators.php:267 admin/operators.php:276 #: admin/operators.php:267 admin/operators.php:276
#: admin/questionnairelist.php:375 admin/operatorlist.php:225 #: admin/questionnairelist.php:380 admin/operatorlist.php:225
#: admin/operatorlist.php:233 admin/assignsample.php:228 #: admin/operatorlist.php:233 admin/assignsample.php:279
#: admin/quotarow.php:582 admin/shiftreport.php:104 #: admin/quotarow.php:582 admin/shiftreport.php:104
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
msgid "Edit" msgid "Edit"
@@ -1511,15 +1483,16 @@ msgstr "Používá VoIP"
#: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300 #: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300
#: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74 #: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74
#: admin/questionnairelist.php:380 admin/questionnairelist.php:383 #: admin/questionnairelist.php:385 admin/questionnairelist.php:388
#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 #: admin/questionnairelist.php:392 admin/questionnairelist.php:396
#: admin/questionnairelist.php:395 admin/operatorlist.php:239 #: admin/questionnairelist.php:400 admin/operatorlist.php:239
#: admin/operatorlist.php:251 admin/operatorlist.php:255 #: admin/operatorlist.php:251 admin/operatorlist.php:255
#: admin/assignsample.php:173 admin/assignsample.php:174 #: admin/assignsample.php:224 admin/assignsample.php:225
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:265 admin/assignsample.php:268 #: admin/assignsample.php:316 admin/assignsample.php:319
#: admin/quotarow.php:392 admin/quotarow.php:596 admin/new.php:208 #: admin/assignsample.php:325 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:215 admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "No" msgid "No"
msgstr "" msgstr ""
@@ -1553,7 +1526,7 @@ msgstr "Hlášení kvóty"
#: admin/quotareport.php:111 admin/assigntimeslots.php:156 #: admin/quotareport.php:111 admin/assigntimeslots.php:156
#: admin/questionnaireprefill.php:100 admin/outcomes.php:68 #: admin/questionnaireprefill.php:100 admin/outcomes.php:68
#: admin/addshift.php:168 admin/assignsample.php:204 #: admin/addshift.php:168 admin/assignsample.php:255
msgid "Select a questionnaire" msgid "Select a questionnaire"
msgstr "" msgstr ""
@@ -2053,112 +2026,116 @@ msgstr "XMPP/Jabber ID vedoucího"
msgid "Update" msgid "Update"
msgstr "Aktualizovat" msgstr "Aktualizovat"
#: admin/questionnairelist.php:347 #: admin/questionnairelist.php:348
msgid "Modify Questionnaire " msgid "Modify Questionnaire "
msgstr "" msgstr ""
#: admin/questionnairelist.php:370 #: admin/questionnairelist.php:370
msgid "Assigned survey"
msgstr ""
#: admin/questionnairelist.php:374
msgid "Edit instrument in Limesurvey" msgid "Edit instrument in Limesurvey"
msgstr "Upravit nástroj v Limesurvey" msgstr "Upravit nástroj v Limesurvey"
#: admin/questionnairelist.php:375 admin/questionnairelist.php:376 #: admin/questionnairelist.php:380 admin/questionnairelist.php:381
#: admin/new.php:154 admin/new.php:156 #: admin/new.php:162 admin/new.php:164
msgid "Name for questionnaire:" msgid "Name for questionnaire:"
msgstr "Název dotazníku:" msgstr "Název dotazníku:"
#: admin/questionnairelist.php:379 admin/new.php:206 #: admin/questionnairelist.php:384 admin/new.php:197
msgid "Restrict appointments to shifts?" msgid "Restrict appointments to shifts?"
msgstr "Omezit schůzky na směny?" msgstr "Omezit schůzky na směny?"
#: admin/questionnairelist.php:382 admin/new.php:213 #: admin/questionnairelist.php:387 admin/new.php:204
msgid "Restrict work to shifts?" msgid "Restrict work to shifts?"
msgstr "Omezit práci na směny?" msgstr "Omezit práci na směny?"
#: admin/questionnairelist.php:386 admin/new.php:220 #: admin/questionnairelist.php:391 admin/new.php:211
msgid "Questionnaire for testing only?" msgid "Questionnaire for testing only?"
msgstr "Dotazník pouze pro zkoušku?" msgstr "Dotazník pouze pro zkoušku?"
#: admin/questionnairelist.php:390 admin/new.php:227 #: admin/questionnairelist.php:395 admin/new.php:218
msgid "Allow operators to generate referrals?" msgid "Allow operators to generate referrals?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:394 admin/new.php:234 #: admin/questionnairelist.php:399 admin/new.php:225
msgid "Allow for respondent self completion via email invitation?" msgid "Allow for respondent self completion via email invitation?"
msgstr "Umožnit respondentům dotazník vyplnit pomocí e-mailové pozvánky?" msgstr "Umožnit respondentům dotazník vyplnit pomocí e-mailové pozvánky?"
#: admin/questionnairelist.php:399 admin/new.php:242 #: admin/questionnairelist.php:404 admin/new.php:233
msgid "Questionnaire display mode for respondent" msgid "Questionnaire display mode for respondent"
msgstr "Režim zobrazení dotazníku pro respondenta" msgstr "Režim zobrazení dotazníku pro respondenta"
#: admin/questionnairelist.php:402 admin/new.php:245 #: admin/questionnairelist.php:407 admin/new.php:236
msgid "All in one" msgid "All in one"
msgstr "Vše v jednom" msgstr "Vše v jednom"
#: admin/questionnairelist.php:403 admin/new.php:246 #: admin/questionnairelist.php:408 admin/new.php:237
msgid "Question by question" msgid "Question by question"
msgstr "Otázka za otázkou" msgstr "Otázka za otázkou"
#: admin/questionnairelist.php:404 admin/new.php:247 #: admin/questionnairelist.php:409 admin/new.php:238
msgid "Group at a time" msgid "Group at a time"
msgstr "Skupina najednou" msgstr "Skupina najednou"
#: admin/questionnairelist.php:409 admin/new.php:252 #: admin/questionnairelist.php:414 admin/new.php:243
msgid "Limesurvey template for respondent" msgid "Limesurvey template for respondent"
msgstr "Šablona Limesurvey pro respondenta" msgstr "Šablona Limesurvey pro respondenta"
#: admin/questionnairelist.php:428 admin/new.php:270 #: admin/questionnairelist.php:433 admin/new.php:261
msgid "URL to forward respondents on self completion (required)" msgid "URL to forward respondents on self completion (required)"
msgstr "URL pro přesměrování respondentů při samo-dokončení (vyžadováno)" msgstr "URL pro přesměrování respondentů při samo-dokončení (vyžadováno)"
#: admin/questionnairelist.php:439 admin/questionnairelist.php:449 #: admin/questionnairelist.php:444 admin/questionnairelist.php:454
#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 #: admin/questionnairelist.php:464 admin/questionnairelist.php:474
#: admin/questionnairelist.php:485 admin/questionnairelist.php:495 #: admin/questionnairelist.php:490 admin/questionnairelist.php:500
#: admin/new.php:306 admin/new.php:316 admin/new.php:326 admin/new.php:336 #: admin/new.php:297 admin/new.php:307 admin/new.php:317 admin/new.php:327
#: admin/new.php:348 admin/new.php:358 #: admin/new.php:339 admin/new.php:349
msgid "Expand/Collapse" msgid "Expand/Collapse"
msgstr "" msgstr ""
#: admin/questionnairelist.php:440 admin/new.php:307 #: admin/questionnairelist.php:445 admin/new.php:298
msgid "Respondent selection introduction:" msgid "Respondent selection introduction:"
msgstr "Úvod výběru respondenta:" msgstr "Úvod výběru respondenta:"
#: admin/questionnairelist.php:450 admin/new.php:317 #: admin/questionnairelist.php:455 admin/new.php:308
msgid "Respondent selection project introduction:" msgid "Respondent selection project introduction:"
msgstr "Úvod projektu výběru respondenta:" msgstr "Úvod projektu výběru respondenta:"
#: admin/questionnairelist.php:460 admin/new.php:327 #: admin/questionnairelist.php:465 admin/new.php:318
msgid "Respondent selection callback (already started questionnaire):" msgid "Respondent selection callback (already started questionnaire):"
msgstr "Zpětné vrácení výběru respondenta (dotazník již zahájen):" msgstr "Zpětné vrácení výběru respondenta (dotazník již zahájen):"
#: admin/questionnairelist.php:470 admin/new.php:337 #: admin/questionnairelist.php:475 admin/new.php:328
msgid "Message to leave on an answering machine:" msgid "Message to leave on an answering machine:"
msgstr "Zprávu, kterou zanechat na záznamníku:" msgstr "Zprávu, kterou zanechat na záznamníku:"
#: admin/questionnairelist.php:480 #: admin/questionnairelist.php:485
msgid "Edit respondent selection instrument in Limesurvey" msgid "Edit respondent selection instrument in Limesurvey"
msgstr "Upravit nástroj výběru respondenta v Limesurvey" msgstr "Upravit nástroj výběru respondenta v Limesurvey"
#: admin/questionnairelist.php:486 admin/new.php:349 #: admin/questionnairelist.php:491 admin/new.php:340
msgid "Project end text (thank you screen):" msgid "Project end text (thank you screen):"
msgstr "Text na konci projektu (obrazovka poděkování):" msgstr "Text na konci projektu (obrazovka poděkování):"
#: admin/questionnairelist.php:496 admin/new.php:359 #: admin/questionnairelist.php:501 admin/new.php:350
msgid "Project information for interviewers/operators:" msgid "Project information for interviewers/operators:"
msgstr "Informace o projektu pro tazatele/operátory:" msgstr "Informace o projektu pro tazatele/operátory:"
#: admin/questionnairelist.php:504 #: admin/questionnairelist.php:509
msgid "Update Questionnaire" msgid "Update Questionnaire"
msgstr "Aktualizovat dotazník" msgstr "Aktualizovat dotazník"
#: admin/questionnairelist.php:518 #: admin/questionnairelist.php:523
msgid "Delete Questionnaire" msgid "Delete Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:520 #: admin/questionnairelist.php:525
msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgid "Any collected data and the limesurvey instrument will NOT be deleted"
msgstr "Veškerá nashromážděná data a nástroj limesurvey NEBUDOU smazány" msgstr "Veškerá nashromážděná data a nástroj limesurvey NEBUDOU smazány"
#: admin/questionnairelist.php:521 #: admin/questionnairelist.php:526
msgid "" msgid ""
"The questionnaire will be deleted from queXS including call history, cases, " "The questionnaire will be deleted from queXS including call history, cases, "
"case notes, respondent details, appointments and the links between " "case notes, respondent details, appointments and the links between "
@@ -2168,24 +2145,24 @@ msgstr ""
"údajů o respondentech, schůzkách a propojení mezi operátory, klienty a " "údajů o respondentech, schůzkách a propojení mezi operátory, klienty a "
"dotazníkem." "dotazníkem."
#: admin/questionnairelist.php:522 #: admin/questionnairelist.php:527
msgid "Please confirm you wish to delete the questionnaire" msgid "Please confirm you wish to delete the questionnaire"
msgstr "Prosím potvrďte smazání dotazníku." msgstr "Prosím potvrďte smazání dotazníku."
#: admin/questionnairelist.php:525 #: admin/questionnairelist.php:530
msgid "Delete this questionnaire" msgid "Delete this questionnaire"
msgstr "Smazat tento dotazník" msgstr "Smazat tento dotazník"
#: admin/questionnairelist.php:531 admin/index.php:100 admin/new.php:136 #: admin/questionnairelist.php:536 admin/index.php:100 admin/new.php:136
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Questionnaire management" msgid "Questionnaire management"
msgstr "Správa dotazníku" msgstr "Správa dotazníku"
#: admin/questionnairelist.php:534 admin/index.php:99 admin/new.php:42 #: admin/questionnairelist.php:539 admin/index.php:99 admin/new.php:42
msgid "Create a new questionnaire" msgid "Create a new questionnaire"
msgstr "Vytvořit nový dotazník" msgstr "Vytvořit nový dotazník"
#: admin/questionnairelist.php:552 #: admin/questionnairelist.php:557
msgid "Edit Lime survey" msgid "Edit Lime survey"
msgstr "" msgstr ""
@@ -2403,7 +2380,7 @@ msgstr ""
msgid "Select columns to import" msgid "Select columns to import"
msgstr "" msgstr ""
#: admin/import.php:97 admin/import.php:145 admin/assignsample.php:272 #: admin/import.php:97 admin/import.php:145 admin/assignsample.php:330
msgid "Add sample" msgid "Add sample"
msgstr "Přidat vzorek" msgstr "Přidat vzorek"
@@ -2424,8 +2401,8 @@ msgid "Enter new sample name..."
msgstr "" msgstr ""
#: admin/index.php:50 #: admin/index.php:50
msgid "Administrative Tools" msgid "queXS Administration"
msgstr "Nástroje správce" msgstr ""
#: admin/index.php:67 #: admin/index.php:67
msgid "Click to Collapse / Expand Sidebar MENU " msgid "Click to Collapse / Expand Sidebar MENU "
@@ -2455,11 +2432,11 @@ msgstr ""
msgid "Questionnairies" msgid "Questionnairies"
msgstr "" msgstr ""
#: admin/index.php:98 admin/new.php:177 admin/new.php:181 #: admin/index.php:98 admin/new.php:178 admin/new.php:372
msgid "Create an instrument in Limesurvey" msgid "Create an instrument in Limesurvey"
msgstr "Vytvořit nástroj v limesurvey:" msgstr "Vytvořit nástroj v limesurvey:"
#: admin/index.php:101 #: admin/index.php:101 admin/new.php:374
msgid "Administer instruments with Limesurvey" msgid "Administer instruments with Limesurvey"
msgstr "Správa nástrojů Limesurvey" msgstr "Správa nástrojů Limesurvey"
@@ -2512,7 +2489,7 @@ msgstr "Stav rozšíření"
msgid "Assign operators to questionnaires" msgid "Assign operators to questionnaires"
msgstr "Přidělit operátory k dotazníkům" msgstr "Přidělit operátory k dotazníkům"
#: admin/index.php:134 admin/operatorskill.php:268 #: admin/index.php:134 admin/operatorskill.php:270
msgid "Modify operator skills" msgid "Modify operator skills"
msgstr "Upravit schopnosti operátora" msgstr "Upravit schopnosti operátora"
@@ -2733,82 +2710,89 @@ msgstr "Neurčeny žádné štítky pro tuto otázku"
msgid "Code value" msgid "Code value"
msgstr "Hodnota kódu" msgstr "Hodnota kódu"
#: admin/assignsample.php:131 #: admin/assignsample.php:182
msgid "Edit assignment parameters" msgid "Edit assignment parameters"
msgstr "" msgstr ""
#: admin/assignsample.php:132 admin/assignsample.php:201 #: admin/assignsample.php:183 admin/assignsample.php:252
msgid "Assign samples to questionnaire: " msgid "Assign samples to questionnaire: "
msgstr "" msgstr ""
#: admin/assignsample.php:163 admin/assignsample.php:228 #: admin/assignsample.php:214 admin/assignsample.php:279
#: admin/assignsample.php:251 #: admin/assignsample.php:302
msgid "Max calls" msgid "Max calls"
msgstr "Max volání" msgstr "Max volání"
#: admin/assignsample.php:165 admin/assignsample.php:168 #: admin/assignsample.php:216 admin/assignsample.php:219
#: admin/assignsample.php:253 admin/assignsample.php:257 #: admin/assignsample.php:304 admin/assignsample.php:308
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: admin/assignsample.php:166 admin/assignsample.php:228 #: admin/assignsample.php:217 admin/assignsample.php:279
#: admin/assignsample.php:255 #: admin/assignsample.php:306
msgid "Max call attempts" msgid "Max call attempts"
msgstr "Max pokusů o volání" msgstr "Max pokusů o volání"
#: admin/assignsample.php:169 admin/assignsample.php:259 #: admin/assignsample.php:220 admin/assignsample.php:310
msgid "Number of answering machine messages to leave per case" msgid "Number of answering machine messages to leave per case"
msgstr "" msgstr ""
#: admin/assignsample.php:171 admin/assignsample.php:261 #: admin/assignsample.php:222 admin/assignsample.php:312
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: admin/assignsample.php:172 admin/assignsample.php:263 #: admin/assignsample.php:223 admin/assignsample.php:314
msgid "Select from sample randomly?" msgid "Select from sample randomly?"
msgstr "" msgstr ""
#: admin/assignsample.php:174 admin/assignsample.php:265 #: admin/assignsample.php:225 admin/assignsample.php:316
msgid "Sequentially" msgid "Sequentially"
msgstr "" msgstr ""
#: admin/assignsample.php:175 admin/assignsample.php:228 #: admin/assignsample.php:226 admin/assignsample.php:279
#: admin/assignsample.php:267 #: admin/assignsample.php:318
msgid "Allow new numbers to be drawn?" msgid "Allow new numbers to be drawn?"
msgstr "" msgstr ""
#: admin/assignsample.php:200 #: admin/assignsample.php:251
msgid "List & Add Sample" msgid "List & Add Sample"
msgstr "" msgstr ""
#: admin/assignsample.php:211 #: admin/assignsample.php:262
msgid "Samples selected for this questionnaire" msgid "Samples selected for this questionnaire"
msgstr "Vzorky vybrané pro tento dotazník" msgstr "Vzorky vybrané pro tento dotazník"
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Answering machine messages" msgid "Answering machine messages"
msgstr "Zprávy záznamníku" msgstr "Zprávy záznamníku"
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Selection type" msgid "Selection type"
msgstr "Typ výběru" msgstr "Typ výběru"
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Unassign sample" msgid "Unassign sample"
msgstr "Zrušit přiřazení vzorku" msgstr "Zrušit přiřazení vzorku"
#: admin/assignsample.php:230 #: admin/assignsample.php:281
msgid "No samples selected for this questionnaire" msgid "No samples selected for this questionnaire"
msgstr "Pro tento dotazník nejsou zvoleny žádné vzorky" msgstr "Pro tento dotazník nejsou zvoleny žádné vzorky"
#: admin/assignsample.php:244 #: admin/assignsample.php:295
msgid "Add a sample to this questionnaire:" msgid "Add a sample to this questionnaire:"
msgstr "Přidejte vzorek k tomuto dotazníku:" msgstr "Přidejte vzorek k tomuto dotazníku:"
#: admin/assignsample.php:247 #: admin/assignsample.php:298
msgid "Select sample:" msgid "Select sample:"
msgstr "Vyberte vzorek" msgstr "Vyberte vzorek"
#: admin/assignsample.php:324
msgid ""
"Generate cases for all sample records and set outcome to 'Self completion "
"email invitation sent'? (Ideal if you intend to send an email invitation to "
"sample members before attempting to call using queXS)"
msgstr ""
#: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98 #: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98
msgid "Case id:" msgid "Case id:"
msgstr "ID případu:" msgstr "ID případu:"
@@ -2821,7 +2805,7 @@ msgstr ""
msgid "Select case" msgid "Select case"
msgstr "Vybrat případ" msgstr "Vybrat případ"
#: admin/supervisor.php:142 admin/new.php:180 #: admin/supervisor.php:142 admin/new.php:177 admin/new.php:373
msgid "or" msgid "or"
msgstr "" msgstr ""
@@ -2833,7 +2817,7 @@ msgstr "Vyberte případ ze seznamu nebo případů uvedené dozorcem:"
msgid "Set an outcome for this call" msgid "Set an outcome for this call"
msgstr "Vyberte výsledek pro volání" msgstr "Vyberte výsledek pro volání"
#: admin/supervisor.php:166 #: admin/supervisor.php:166 admin/new.php:359
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@@ -3402,11 +3386,11 @@ msgstr ""
msgid "No, Thank you, go to" msgid "No, Thank you, go to"
msgstr "" msgstr ""
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Go to" msgid "Go to"
msgstr "" msgstr ""
#: admin/new.php:156 #: admin/new.php:164
msgid "Enter New questionnaire name.." msgid "Enter New questionnaire name.."
msgstr "" msgstr ""
@@ -3414,26 +3398,30 @@ msgstr ""
msgid "Select limesurvey instrument:" msgid "Select limesurvey instrument:"
msgstr "Výběr nástroje limesurvey:" msgstr "Výběr nástroje limesurvey:"
#: admin/new.php:174 admin/new.php:199 #: admin/new.php:173 admin/new.php:190
msgid "Existing instrument:" msgid "Survey"
msgstr "Existující nástroj:" msgstr ""
#: admin/new.php:186 #: admin/new.php:183
msgid "Respondent selection type:" msgid "Respondent selection type:"
msgstr "Typ výběru respondenta:" msgstr "Typ výběru respondenta:"
#: admin/new.php:189 #: admin/new.php:186
msgid "No respondent selection (go straight to questionnaire)" msgid "No respondent selection (go straight to questionnaire)"
msgstr "Žádný výběr respondenta (přejít přímo k dotazníku)" msgstr "Žádný výběr respondenta (přejít přímo k dotazníku)"
#: admin/new.php:190 #: admin/new.php:187
msgid "Use basic respondent selection text (below)" msgid "Use basic respondent selection text (below)"
msgstr "Použít základní text výběru respondenta (níže)" msgstr "Použít základní text výběru respondenta (níže)"
#: admin/new.php:371 #: admin/new.php:362
msgid "Create Questionnaire" msgid "Create Questionnaire"
msgstr "Vytvořit dotazník" msgstr "Vytvořit dotazník"
#: admin/new.php:371
msgid "NO active Lime surveys available"
msgstr ""
#: admin/databasestrings.php:32 rs_intro_interface2.php:76 #: admin/databasestrings.php:32 rs_intro_interface2.php:76
msgid "Not attempted or worked" msgid "Not attempted or worked"
msgstr "Žádný pokus nebo práce" msgstr "Žádný pokus nebo práce"
@@ -3663,11 +3651,19 @@ msgid "Self completed online"
msgstr "Samodokončeno online" msgstr "Samodokončeno online"
#: admin/databasestrings.php:91 #: admin/databasestrings.php:91
msgid "Max call attempts reached" msgid "Max call attempts reached (Eligible)"
msgstr "" msgstr ""
#: admin/databasestrings.php:92 #: admin/databasestrings.php:92
msgid "Max calls reached" msgid "Max calls reached (Eligible)"
msgstr ""
#: admin/databasestrings.php:93
msgid "Max call attempts reached (Unknown eligibility)"
msgstr ""
#: admin/databasestrings.php:94
msgid "Max calls reached (Unknown eligibility)"
msgstr "" msgstr ""
#: call_interface2.php:116 #: call_interface2.php:116
@@ -3984,6 +3980,31 @@ msgstr "Ukončit hovor s výsledkem: Kvóta naplněna"
#~ msgid "POSSIBLE ERROR: Row quota reached for this question" #~ msgid "POSSIBLE ERROR: Row quota reached for this question"
#~ msgstr "MOŽNÁ CHYBA: Dosažena kvóta řádku pro tuto otázku" #~ msgstr "MOŽNÁ CHYBA: Dosažena kvóta řádku pro tuto otázku"
#~ msgid ""
#~ "Could not reload the FOP operator panel server using the bounce_op.sh "
#~ "script. Configuration changes may not be reflected in the panel display."
#~ msgstr ""
#~ "Nelze znovu načíst server panelu operátora FOP, pomocí skriptu bounce_op.sh. "
#~ "ZMěny nastavení se nemusí na zobrazení panelu projevit."
#~ msgid ""
#~ "Reload failed because FreePBX could not connect to the asterisk manager "
#~ "interface."
#~ msgstr ""
#~ "Znovu načtení selhalo protože FreePBX se nemohlo připojit ke správcovskému "
#~ "rozhraní asterisk."
#~ 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"
#~ msgid "Duplicate name" #~ msgid "Duplicate name"
#~ msgstr "Duplicitní název" #~ msgstr "Duplicitní název"
@@ -4005,6 +4026,9 @@ msgstr "Ukončit hovor s výsledkem: Kvóta naplněna"
#~ msgid "Select a questionnaire from the list below" #~ msgid "Select a questionnaire from the list below"
#~ msgstr "Vyberte dotazník ze seznamu níže" #~ msgstr "Vyberte dotazník ze seznamu níže"
#~ msgid "FreePBX has been reloaded for the new VoIP extension to take effect"
#~ msgstr "FreePBX byl znovu načten, aby nové rozšíření VoIP mohlo být použito"
#~ msgid "Added:" #~ msgid "Added:"
#~ msgstr "Přidáno:" #~ msgstr "Přidáno:"
@@ -4317,6 +4341,9 @@ msgstr "Ukončit hovor s výsledkem: Kvóta naplněna"
#~ msgid "linked to" #~ msgid "linked to"
#~ msgstr "propojeno s" #~ msgstr "propojeno s"
#~ msgid "Existing instrument:"
#~ msgstr "Existující nástroj:"
#~ msgid "Submit changes" #~ msgid "Submit changes"
#~ msgstr "Odeslat změny" #~ msgstr "Odeslat změny"
@@ -4326,6 +4353,9 @@ msgstr "Ukončit hovor s výsledkem: Kvóta naplněna"
#~ msgid "Questionnaire creation and management" #~ msgid "Questionnaire creation and management"
#~ msgstr "Vytvoření dotazníku a správa" #~ msgstr "Vytvoření dotazníku a správa"
#~ msgid "Administrative Tools"
#~ msgstr "Nástroje správce"
#~ msgid "Import a sample file (in CSV form)" #~ msgid "Import a sample file (in CSV form)"
#~ msgstr "Importovat vzorkový soubor (ve formátu CSV)" #~ msgstr "Importovat vzorkový soubor (ve formátu CSV)"

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: quexs\n" "Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2015-08-04 12:27+1000\n" "POT-Creation-Date: 2015-08-10 16:24+1000\n"
"PO-Revision-Date: 2014-03-18 17:48+0000\n" "PO-Revision-Date: 2014-03-18 17:48+0000\n"
"Last-Translator: Daniel <weber@politik.uni-mainz.de>\n" "Last-Translator: Daniel <weber@politik.uni-mainz.de>\n"
"Language-Team: German <de@li.org>\n" "Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-08-04 03:56+0000\n" "X-Launchpad-Export-Date: 2015-08-31 02:56+0000\n"
"X-Generator: Launchpad (build 17656)\n" "X-Generator: Launchpad (build 17690)\n"
#: appointment.php:69 #: appointment.php:69
msgid "Appointment error" msgid "Appointment error"
@@ -147,32 +147,6 @@ msgstr ""
msgid "Show to operator?" msgid "Show to operator?"
msgstr "" msgstr ""
#: functions/functions.freepbx.php:138
#, php-format
msgid "Reload failed because retrieve_conf encountered an error: %s"
msgstr ""
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr ""
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
msgstr ""
#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 #: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning" msgid "morning"
msgstr "" msgstr ""
@@ -185,7 +159,7 @@ msgstr ""
msgid "evening" msgid "evening"
msgstr "" msgstr ""
#: functions/functions.operator.php:905 #: functions/functions.operator.php:972
msgid "" msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS " "ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system." "cannot determine which user is accessing the system."
@@ -508,7 +482,7 @@ msgstr ""
#: admin/operatorlist.php:184 admin/operatorlist.php:372 #: admin/operatorlist.php:184 admin/operatorlist.php:372
#: admin/casesbyoutcome.php:88 admin/supervisor.php:372 #: admin/casesbyoutcome.php:88 admin/supervisor.php:372
#: admin/supervisor.php:399 admin/supervisor.php:416 #: admin/supervisor.php:399 admin/supervisor.php:416
#: admin/operatorskill.php:244 admin/operatorperformance.php:81 #: admin/operatorskill.php:246 admin/operatorperformance.php:81
#: admin/operatorperformance.php:104 admin/shiftreport.php:104 #: admin/operatorperformance.php:104 admin/shiftreport.php:104
#: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242 #: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242
msgid "Operator" msgid "Operator"
@@ -537,12 +511,12 @@ msgid "Add note"
msgstr "Notiz hinzufügen" msgstr "Notiz hinzufügen"
#: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495 #: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495
#: admin/samplesearch.php:102 admin/questionnairelist.php:368 #: admin/samplesearch.php:102 admin/questionnairelist.php:370
#: admin/questionnairelist.php:503 admin/questionnairelist.php:525 #: admin/questionnairelist.php:508 admin/questionnairelist.php:530
#: admin/questionnairelist.php:533 admin/callhistory.php:137 #: admin/questionnairelist.php:538 admin/callhistory.php:137
#: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43 #: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43
#: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54 #: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54
#: admin/assignsample.php:150 admin/assignsample.php:203 #: admin/assignsample.php:201 admin/assignsample.php:254
#: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95 #: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95
#: contactdetails.php:92 #: contactdetails.php:92
msgid "Go back" msgid "Go back"
@@ -596,15 +570,16 @@ msgstr "Derzeit verfügbare Schichten:"
#: waitnextcase_interface2.php:136 admin/operators.php:284 #: waitnextcase_interface2.php:136 admin/operators.php:284
#: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304 #: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304
#: admin/operators.php:308 admin/samplesearch.php:96 #: admin/operators.php:308 admin/samplesearch.php:96
#: admin/supervisorchat.php:74 admin/questionnairelist.php:380 #: admin/supervisorchat.php:74 admin/questionnairelist.php:385
#: admin/questionnairelist.php:383 admin/questionnairelist.php:387 #: admin/questionnairelist.php:388 admin/questionnairelist.php:392
#: admin/questionnairelist.php:391 admin/questionnairelist.php:395 #: admin/questionnairelist.php:396 admin/questionnairelist.php:400
#: admin/operatorlist.php:239 admin/operatorlist.php:251 #: admin/operatorlist.php:239 admin/operatorlist.php:251
#: admin/operatorlist.php:255 admin/assignsample.php:173 #: admin/operatorlist.php:255 admin/assignsample.php:224
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:268 admin/supervisor.php:185 admin/quotarow.php:392 #: admin/assignsample.php:319 admin/assignsample.php:325
#: admin/quotarow.php:596 admin/new.php:208 admin/new.php:215 #: admin/supervisor.php:185 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@@ -1088,14 +1063,14 @@ msgstr "Aktiviert"
#: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294 #: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294
#: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178 #: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178
#: admin/callhistory.php:124 admin/callhistory.php:149 #: admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:152 #: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:203
#: admin/assignsample.php:228 admin/supervisor.php:298 admin/quotarow.php:306 #: admin/assignsample.php:279 admin/supervisor.php:298 admin/quotarow.php:306
#: admin/casestatus.php:116 admin/casestatus.php:234 #: admin/casestatus.php:116 admin/casestatus.php:234
msgid "Sample" msgid "Sample"
msgstr "Stichprobe" msgstr "Stichprobe"
#: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149 #: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:151 #: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:202
#: admin/quotarow.php:288 admin/casestatus.php:231 #: admin/quotarow.php:288 admin/casestatus.php:231
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
#: admin/new.php:127 admin/new.php:135 shifts.php:103 #: admin/new.php:127 admin/new.php:135 shifts.php:103
@@ -1258,7 +1233,7 @@ msgstr ""
msgid "Delete ?" msgid "Delete ?"
msgstr "" msgstr ""
#: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:179 #: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:230
#: admin/quotarow.php:394 admin/extensionstatus.php:202 #: admin/quotarow.php:394 admin/extensionstatus.php:202
#: admin/displayappointments.php:231 #: admin/displayappointments.php:231
msgid "Save changes" msgid "Save changes"
@@ -1418,7 +1393,8 @@ msgid "Added operator :"
msgstr "" msgstr ""
#: admin/operators.php:150 #: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgid ""
"FreePBX needs to be reloaded for the new VoIP extension to take effect"
msgstr "" msgstr ""
#: admin/operators.php:172 #: admin/operators.php:172
@@ -1444,7 +1420,7 @@ msgstr ""
#: admin/operators.php:242 admin/clientquestionnaire.php:238 #: admin/operators.php:242 admin/clientquestionnaire.php:238
#: admin/operatorlist.php:200 admin/operatorlist.php:372 #: admin/operatorlist.php:200 admin/operatorlist.php:372
#: admin/operatorskill.php:244 admin/operatorquestionnaire.php:242 #: admin/operatorskill.php:246 admin/operatorquestionnaire.php:242
msgid "Username" msgid "Username"
msgstr "" msgstr ""
@@ -1466,8 +1442,8 @@ msgid "characters"
msgstr "" msgstr ""
#: admin/operators.php:267 admin/operators.php:276 #: admin/operators.php:267 admin/operators.php:276
#: admin/questionnairelist.php:375 admin/operatorlist.php:225 #: admin/questionnairelist.php:380 admin/operatorlist.php:225
#: admin/operatorlist.php:233 admin/assignsample.php:228 #: admin/operatorlist.php:233 admin/assignsample.php:279
#: admin/quotarow.php:582 admin/shiftreport.php:104 #: admin/quotarow.php:582 admin/shiftreport.php:104
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
msgid "Edit" msgid "Edit"
@@ -1488,15 +1464,16 @@ msgstr ""
#: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300 #: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300
#: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74 #: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74
#: admin/questionnairelist.php:380 admin/questionnairelist.php:383 #: admin/questionnairelist.php:385 admin/questionnairelist.php:388
#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 #: admin/questionnairelist.php:392 admin/questionnairelist.php:396
#: admin/questionnairelist.php:395 admin/operatorlist.php:239 #: admin/questionnairelist.php:400 admin/operatorlist.php:239
#: admin/operatorlist.php:251 admin/operatorlist.php:255 #: admin/operatorlist.php:251 admin/operatorlist.php:255
#: admin/assignsample.php:173 admin/assignsample.php:174 #: admin/assignsample.php:224 admin/assignsample.php:225
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:265 admin/assignsample.php:268 #: admin/assignsample.php:316 admin/assignsample.php:319
#: admin/quotarow.php:392 admin/quotarow.php:596 admin/new.php:208 #: admin/assignsample.php:325 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:215 admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "No" msgid "No"
msgstr "" msgstr ""
@@ -1530,7 +1507,7 @@ msgstr ""
#: admin/quotareport.php:111 admin/assigntimeslots.php:156 #: admin/quotareport.php:111 admin/assigntimeslots.php:156
#: admin/questionnaireprefill.php:100 admin/outcomes.php:68 #: admin/questionnaireprefill.php:100 admin/outcomes.php:68
#: admin/addshift.php:168 admin/assignsample.php:204 #: admin/addshift.php:168 admin/assignsample.php:255
msgid "Select a questionnaire" msgid "Select a questionnaire"
msgstr "" msgstr ""
@@ -2018,136 +1995,140 @@ msgstr ""
msgid "Update" msgid "Update"
msgstr "" msgstr ""
#: admin/questionnairelist.php:347 #: admin/questionnairelist.php:348
msgid "Modify Questionnaire " msgid "Modify Questionnaire "
msgstr "" msgstr ""
#: admin/questionnairelist.php:370 #: admin/questionnairelist.php:370
msgid "Assigned survey"
msgstr ""
#: admin/questionnairelist.php:374
msgid "Edit instrument in Limesurvey" msgid "Edit instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:375 admin/questionnairelist.php:376 #: admin/questionnairelist.php:380 admin/questionnairelist.php:381
#: admin/new.php:154 admin/new.php:156 #: admin/new.php:162 admin/new.php:164
msgid "Name for questionnaire:" msgid "Name for questionnaire:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:379 admin/new.php:206 #: admin/questionnairelist.php:384 admin/new.php:197
msgid "Restrict appointments to shifts?" msgid "Restrict appointments to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:382 admin/new.php:213 #: admin/questionnairelist.php:387 admin/new.php:204
msgid "Restrict work to shifts?" msgid "Restrict work to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:386 admin/new.php:220 #: admin/questionnairelist.php:391 admin/new.php:211
msgid "Questionnaire for testing only?" msgid "Questionnaire for testing only?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:390 admin/new.php:227 #: admin/questionnairelist.php:395 admin/new.php:218
msgid "Allow operators to generate referrals?" msgid "Allow operators to generate referrals?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:394 admin/new.php:234 #: admin/questionnairelist.php:399 admin/new.php:225
msgid "Allow for respondent self completion via email invitation?" msgid "Allow for respondent self completion via email invitation?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:399 admin/new.php:242 #: admin/questionnairelist.php:404 admin/new.php:233
msgid "Questionnaire display mode for respondent" msgid "Questionnaire display mode for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:402 admin/new.php:245 #: admin/questionnairelist.php:407 admin/new.php:236
msgid "All in one" msgid "All in one"
msgstr "" msgstr ""
#: admin/questionnairelist.php:403 admin/new.php:246 #: admin/questionnairelist.php:408 admin/new.php:237
msgid "Question by question" msgid "Question by question"
msgstr "" msgstr ""
#: admin/questionnairelist.php:404 admin/new.php:247 #: admin/questionnairelist.php:409 admin/new.php:238
msgid "Group at a time" msgid "Group at a time"
msgstr "" msgstr ""
#: admin/questionnairelist.php:409 admin/new.php:252 #: admin/questionnairelist.php:414 admin/new.php:243
msgid "Limesurvey template for respondent" msgid "Limesurvey template for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:428 admin/new.php:270 #: admin/questionnairelist.php:433 admin/new.php:261
msgid "URL to forward respondents on self completion (required)" msgid "URL to forward respondents on self completion (required)"
msgstr "" msgstr ""
#: admin/questionnairelist.php:439 admin/questionnairelist.php:449 #: admin/questionnairelist.php:444 admin/questionnairelist.php:454
#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 #: admin/questionnairelist.php:464 admin/questionnairelist.php:474
#: admin/questionnairelist.php:485 admin/questionnairelist.php:495 #: admin/questionnairelist.php:490 admin/questionnairelist.php:500
#: admin/new.php:306 admin/new.php:316 admin/new.php:326 admin/new.php:336 #: admin/new.php:297 admin/new.php:307 admin/new.php:317 admin/new.php:327
#: admin/new.php:348 admin/new.php:358 #: admin/new.php:339 admin/new.php:349
msgid "Expand/Collapse" msgid "Expand/Collapse"
msgstr "" msgstr ""
#: admin/questionnairelist.php:440 admin/new.php:307 #: admin/questionnairelist.php:445 admin/new.php:298
msgid "Respondent selection introduction:" msgid "Respondent selection introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:450 admin/new.php:317 #: admin/questionnairelist.php:455 admin/new.php:308
msgid "Respondent selection project introduction:" msgid "Respondent selection project introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:460 admin/new.php:327 #: admin/questionnairelist.php:465 admin/new.php:318
msgid "Respondent selection callback (already started questionnaire):" msgid "Respondent selection callback (already started questionnaire):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:470 admin/new.php:337 #: admin/questionnairelist.php:475 admin/new.php:328
msgid "Message to leave on an answering machine:" msgid "Message to leave on an answering machine:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:480 #: admin/questionnairelist.php:485
msgid "Edit respondent selection instrument in Limesurvey" msgid "Edit respondent selection instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:486 admin/new.php:349 #: admin/questionnairelist.php:491 admin/new.php:340
msgid "Project end text (thank you screen):" msgid "Project end text (thank you screen):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:496 admin/new.php:359 #: admin/questionnairelist.php:501 admin/new.php:350
msgid "Project information for interviewers/operators:" msgid "Project information for interviewers/operators:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:504 #: admin/questionnairelist.php:509
msgid "Update Questionnaire" msgid "Update Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:518 #: admin/questionnairelist.php:523
msgid "Delete Questionnaire" msgid "Delete Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:520 #: admin/questionnairelist.php:525
msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgid "Any collected data and the limesurvey instrument will NOT be deleted"
msgstr "" msgstr ""
#: admin/questionnairelist.php:521 #: admin/questionnairelist.php:526
msgid "" msgid ""
"The questionnaire will be deleted from queXS including call history, cases, " "The questionnaire will be deleted from queXS including call history, cases, "
"case notes, respondent details, appointments and the links between " "case notes, respondent details, appointments and the links between "
"operators, clients and the questionnaire" "operators, clients and the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:522 #: admin/questionnairelist.php:527
msgid "Please confirm you wish to delete the questionnaire" msgid "Please confirm you wish to delete the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:525 #: admin/questionnairelist.php:530
msgid "Delete this questionnaire" msgid "Delete this questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:531 admin/index.php:100 admin/new.php:136 #: admin/questionnairelist.php:536 admin/index.php:100 admin/new.php:136
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Questionnaire management" msgid "Questionnaire management"
msgstr "" msgstr ""
#: admin/questionnairelist.php:534 admin/index.php:99 admin/new.php:42 #: admin/questionnairelist.php:539 admin/index.php:99 admin/new.php:42
msgid "Create a new questionnaire" msgid "Create a new questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:552 #: admin/questionnairelist.php:557
msgid "Edit Lime survey" msgid "Edit Lime survey"
msgstr "" msgstr ""
@@ -2360,7 +2341,7 @@ msgstr ""
msgid "Select columns to import" msgid "Select columns to import"
msgstr "" msgstr ""
#: admin/import.php:97 admin/import.php:145 admin/assignsample.php:272 #: admin/import.php:97 admin/import.php:145 admin/assignsample.php:330
msgid "Add sample" msgid "Add sample"
msgstr "" msgstr ""
@@ -2381,7 +2362,7 @@ msgid "Enter new sample name..."
msgstr "" msgstr ""
#: admin/index.php:50 #: admin/index.php:50
msgid "Administrative Tools" msgid "queXS Administration"
msgstr "" msgstr ""
#: admin/index.php:67 #: admin/index.php:67
@@ -2412,11 +2393,11 @@ msgstr ""
msgid "Questionnairies" msgid "Questionnairies"
msgstr "" msgstr ""
#: admin/index.php:98 admin/new.php:177 admin/new.php:181 #: admin/index.php:98 admin/new.php:178 admin/new.php:372
msgid "Create an instrument in Limesurvey" msgid "Create an instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/index.php:101 #: admin/index.php:101 admin/new.php:374
msgid "Administer instruments with Limesurvey" msgid "Administer instruments with Limesurvey"
msgstr "" msgstr ""
@@ -2469,7 +2450,7 @@ msgstr ""
msgid "Assign operators to questionnaires" msgid "Assign operators to questionnaires"
msgstr "" msgstr ""
#: admin/index.php:134 admin/operatorskill.php:268 #: admin/index.php:134 admin/operatorskill.php:270
msgid "Modify operator skills" msgid "Modify operator skills"
msgstr "" msgstr ""
@@ -2690,82 +2671,89 @@ msgstr ""
msgid "Code value" msgid "Code value"
msgstr "" msgstr ""
#: admin/assignsample.php:131 #: admin/assignsample.php:182
msgid "Edit assignment parameters" msgid "Edit assignment parameters"
msgstr "" msgstr ""
#: admin/assignsample.php:132 admin/assignsample.php:201 #: admin/assignsample.php:183 admin/assignsample.php:252
msgid "Assign samples to questionnaire: " msgid "Assign samples to questionnaire: "
msgstr "" msgstr ""
#: admin/assignsample.php:163 admin/assignsample.php:228 #: admin/assignsample.php:214 admin/assignsample.php:279
#: admin/assignsample.php:251 #: admin/assignsample.php:302
msgid "Max calls" msgid "Max calls"
msgstr "" msgstr ""
#: admin/assignsample.php:165 admin/assignsample.php:168 #: admin/assignsample.php:216 admin/assignsample.php:219
#: admin/assignsample.php:253 admin/assignsample.php:257 #: admin/assignsample.php:304 admin/assignsample.php:308
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: admin/assignsample.php:166 admin/assignsample.php:228 #: admin/assignsample.php:217 admin/assignsample.php:279
#: admin/assignsample.php:255 #: admin/assignsample.php:306
msgid "Max call attempts" msgid "Max call attempts"
msgstr "" msgstr ""
#: admin/assignsample.php:169 admin/assignsample.php:259 #: admin/assignsample.php:220 admin/assignsample.php:310
msgid "Number of answering machine messages to leave per case" msgid "Number of answering machine messages to leave per case"
msgstr "" msgstr ""
#: admin/assignsample.php:171 admin/assignsample.php:261 #: admin/assignsample.php:222 admin/assignsample.php:312
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: admin/assignsample.php:172 admin/assignsample.php:263 #: admin/assignsample.php:223 admin/assignsample.php:314
msgid "Select from sample randomly?" msgid "Select from sample randomly?"
msgstr "" msgstr ""
#: admin/assignsample.php:174 admin/assignsample.php:265 #: admin/assignsample.php:225 admin/assignsample.php:316
msgid "Sequentially" msgid "Sequentially"
msgstr "" msgstr ""
#: admin/assignsample.php:175 admin/assignsample.php:228 #: admin/assignsample.php:226 admin/assignsample.php:279
#: admin/assignsample.php:267 #: admin/assignsample.php:318
msgid "Allow new numbers to be drawn?" msgid "Allow new numbers to be drawn?"
msgstr "" msgstr ""
#: admin/assignsample.php:200 #: admin/assignsample.php:251
msgid "List & Add Sample" msgid "List & Add Sample"
msgstr "" msgstr ""
#: admin/assignsample.php:211 #: admin/assignsample.php:262
msgid "Samples selected for this questionnaire" msgid "Samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Answering machine messages" msgid "Answering machine messages"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Selection type" msgid "Selection type"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Unassign sample" msgid "Unassign sample"
msgstr "" msgstr ""
#: admin/assignsample.php:230 #: admin/assignsample.php:281
msgid "No samples selected for this questionnaire" msgid "No samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:244 #: admin/assignsample.php:295
msgid "Add a sample to this questionnaire:" msgid "Add a sample to this questionnaire:"
msgstr "" msgstr ""
#: admin/assignsample.php:247 #: admin/assignsample.php:298
msgid "Select sample:" msgid "Select sample:"
msgstr "" msgstr ""
#: admin/assignsample.php:324
msgid ""
"Generate cases for all sample records and set outcome to 'Self completion "
"email invitation sent'? (Ideal if you intend to send an email invitation to "
"sample members before attempting to call using queXS)"
msgstr ""
#: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98 #: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98
msgid "Case id:" msgid "Case id:"
msgstr "Fall ID:" msgstr "Fall ID:"
@@ -2778,7 +2766,7 @@ msgstr ""
msgid "Select case" msgid "Select case"
msgstr "" msgstr ""
#: admin/supervisor.php:142 admin/new.php:180 #: admin/supervisor.php:142 admin/new.php:177 admin/new.php:373
msgid "or" msgid "or"
msgstr "" msgstr ""
@@ -2790,7 +2778,7 @@ msgstr ""
msgid "Set an outcome for this call" msgid "Set an outcome for this call"
msgstr "" msgstr ""
#: admin/supervisor.php:166 #: admin/supervisor.php:166 admin/new.php:359
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@@ -3355,11 +3343,11 @@ msgstr ""
msgid "No, Thank you, go to" msgid "No, Thank you, go to"
msgstr "" msgstr ""
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Go to" msgid "Go to"
msgstr "" msgstr ""
#: admin/new.php:156 #: admin/new.php:164
msgid "Enter New questionnaire name.." msgid "Enter New questionnaire name.."
msgstr "" msgstr ""
@@ -3367,26 +3355,30 @@ msgstr ""
msgid "Select limesurvey instrument:" msgid "Select limesurvey instrument:"
msgstr "" msgstr ""
#: admin/new.php:174 admin/new.php:199 #: admin/new.php:173 admin/new.php:190
msgid "Existing instrument:" msgid "Survey"
msgstr "" msgstr ""
#: admin/new.php:186 #: admin/new.php:183
msgid "Respondent selection type:" msgid "Respondent selection type:"
msgstr "" msgstr ""
#: admin/new.php:189 #: admin/new.php:186
msgid "No respondent selection (go straight to questionnaire)" msgid "No respondent selection (go straight to questionnaire)"
msgstr "" msgstr ""
#: admin/new.php:190 #: admin/new.php:187
msgid "Use basic respondent selection text (below)" msgid "Use basic respondent selection text (below)"
msgstr "" msgstr ""
#: admin/new.php:371 #: admin/new.php:362
msgid "Create Questionnaire" msgid "Create Questionnaire"
msgstr "" msgstr ""
#: admin/new.php:371
msgid "NO active Lime surveys available"
msgstr ""
#: admin/databasestrings.php:32 rs_intro_interface2.php:76 #: admin/databasestrings.php:32 rs_intro_interface2.php:76
msgid "Not attempted or worked" msgid "Not attempted or worked"
msgstr "Nummer nicht gewählt" msgstr "Nummer nicht gewählt"
@@ -3616,11 +3608,19 @@ msgid "Self completed online"
msgstr "" msgstr ""
#: admin/databasestrings.php:91 #: admin/databasestrings.php:91
msgid "Max call attempts reached" msgid "Max call attempts reached (Eligible)"
msgstr "" msgstr ""
#: admin/databasestrings.php:92 #: admin/databasestrings.php:92
msgid "Max calls reached" msgid "Max calls reached (Eligible)"
msgstr ""
#: admin/databasestrings.php:93
msgid "Max call attempts reached (Unknown eligibility)"
msgstr ""
#: admin/databasestrings.php:94
msgid "Max calls reached (Unknown eligibility)"
msgstr "" msgstr ""
#: call_interface2.php:116 #: call_interface2.php:116

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: quexs\n" "Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2015-08-04 12:27+1000\n" "POT-Creation-Date: 2015-08-10 16:24+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Greek <el@li.org>\n" "Language-Team: Greek <el@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-08-04 03:56+0000\n" "X-Launchpad-Export-Date: 2015-08-31 02:56+0000\n"
"X-Generator: Launchpad (build 17656)\n" "X-Generator: Launchpad (build 17690)\n"
#: appointment.php:69 #: appointment.php:69
msgid "Appointment error" msgid "Appointment error"
@@ -150,32 +150,6 @@ msgstr ""
msgid "Show to operator?" msgid "Show to operator?"
msgstr "" msgstr ""
#: functions/functions.freepbx.php:138
#, php-format
msgid "Reload failed because retrieve_conf encountered an error: %s"
msgstr ""
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr ""
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
msgstr ""
#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 #: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning" msgid "morning"
msgstr "" msgstr ""
@@ -188,7 +162,7 @@ msgstr ""
msgid "evening" msgid "evening"
msgstr "" msgstr ""
#: functions/functions.operator.php:905 #: functions/functions.operator.php:972
msgid "" msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS " "ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system." "cannot determine which user is accessing the system."
@@ -511,7 +485,7 @@ msgstr ""
#: admin/operatorlist.php:184 admin/operatorlist.php:372 #: admin/operatorlist.php:184 admin/operatorlist.php:372
#: admin/casesbyoutcome.php:88 admin/supervisor.php:372 #: admin/casesbyoutcome.php:88 admin/supervisor.php:372
#: admin/supervisor.php:399 admin/supervisor.php:416 #: admin/supervisor.php:399 admin/supervisor.php:416
#: admin/operatorskill.php:244 admin/operatorperformance.php:81 #: admin/operatorskill.php:246 admin/operatorperformance.php:81
#: admin/operatorperformance.php:104 admin/shiftreport.php:104 #: admin/operatorperformance.php:104 admin/shiftreport.php:104
#: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242 #: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242
msgid "Operator" msgid "Operator"
@@ -540,12 +514,12 @@ msgid "Add note"
msgstr "" msgstr ""
#: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495 #: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495
#: admin/samplesearch.php:102 admin/questionnairelist.php:368 #: admin/samplesearch.php:102 admin/questionnairelist.php:370
#: admin/questionnairelist.php:503 admin/questionnairelist.php:525 #: admin/questionnairelist.php:508 admin/questionnairelist.php:530
#: admin/questionnairelist.php:533 admin/callhistory.php:137 #: admin/questionnairelist.php:538 admin/callhistory.php:137
#: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43 #: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43
#: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54 #: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54
#: admin/assignsample.php:150 admin/assignsample.php:203 #: admin/assignsample.php:201 admin/assignsample.php:254
#: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95 #: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95
#: contactdetails.php:92 #: contactdetails.php:92
msgid "Go back" msgid "Go back"
@@ -599,15 +573,16 @@ msgstr ""
#: waitnextcase_interface2.php:136 admin/operators.php:284 #: waitnextcase_interface2.php:136 admin/operators.php:284
#: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304 #: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304
#: admin/operators.php:308 admin/samplesearch.php:96 #: admin/operators.php:308 admin/samplesearch.php:96
#: admin/supervisorchat.php:74 admin/questionnairelist.php:380 #: admin/supervisorchat.php:74 admin/questionnairelist.php:385
#: admin/questionnairelist.php:383 admin/questionnairelist.php:387 #: admin/questionnairelist.php:388 admin/questionnairelist.php:392
#: admin/questionnairelist.php:391 admin/questionnairelist.php:395 #: admin/questionnairelist.php:396 admin/questionnairelist.php:400
#: admin/operatorlist.php:239 admin/operatorlist.php:251 #: admin/operatorlist.php:239 admin/operatorlist.php:251
#: admin/operatorlist.php:255 admin/assignsample.php:173 #: admin/operatorlist.php:255 admin/assignsample.php:224
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:268 admin/supervisor.php:185 admin/quotarow.php:392 #: admin/assignsample.php:319 admin/assignsample.php:325
#: admin/quotarow.php:596 admin/new.php:208 admin/new.php:215 #: admin/supervisor.php:185 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@@ -1086,14 +1061,14 @@ msgstr ""
#: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294 #: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294
#: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178 #: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178
#: admin/callhistory.php:124 admin/callhistory.php:149 #: admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:152 #: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:203
#: admin/assignsample.php:228 admin/supervisor.php:298 admin/quotarow.php:306 #: admin/assignsample.php:279 admin/supervisor.php:298 admin/quotarow.php:306
#: admin/casestatus.php:116 admin/casestatus.php:234 #: admin/casestatus.php:116 admin/casestatus.php:234
msgid "Sample" msgid "Sample"
msgstr "" msgstr ""
#: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149 #: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:151 #: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:202
#: admin/quotarow.php:288 admin/casestatus.php:231 #: admin/quotarow.php:288 admin/casestatus.php:231
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
#: admin/new.php:127 admin/new.php:135 shifts.php:103 #: admin/new.php:127 admin/new.php:135 shifts.php:103
@@ -1254,7 +1229,7 @@ msgstr ""
msgid "Delete ?" msgid "Delete ?"
msgstr "" msgstr ""
#: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:179 #: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:230
#: admin/quotarow.php:394 admin/extensionstatus.php:202 #: admin/quotarow.php:394 admin/extensionstatus.php:202
#: admin/displayappointments.php:231 #: admin/displayappointments.php:231
msgid "Save changes" msgid "Save changes"
@@ -1414,7 +1389,8 @@ msgid "Added operator :"
msgstr "" msgstr ""
#: admin/operators.php:150 #: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgid ""
"FreePBX needs to be reloaded for the new VoIP extension to take effect"
msgstr "" msgstr ""
#: admin/operators.php:172 #: admin/operators.php:172
@@ -1440,7 +1416,7 @@ msgstr ""
#: admin/operators.php:242 admin/clientquestionnaire.php:238 #: admin/operators.php:242 admin/clientquestionnaire.php:238
#: admin/operatorlist.php:200 admin/operatorlist.php:372 #: admin/operatorlist.php:200 admin/operatorlist.php:372
#: admin/operatorskill.php:244 admin/operatorquestionnaire.php:242 #: admin/operatorskill.php:246 admin/operatorquestionnaire.php:242
msgid "Username" msgid "Username"
msgstr "" msgstr ""
@@ -1462,8 +1438,8 @@ msgid "characters"
msgstr "" msgstr ""
#: admin/operators.php:267 admin/operators.php:276 #: admin/operators.php:267 admin/operators.php:276
#: admin/questionnairelist.php:375 admin/operatorlist.php:225 #: admin/questionnairelist.php:380 admin/operatorlist.php:225
#: admin/operatorlist.php:233 admin/assignsample.php:228 #: admin/operatorlist.php:233 admin/assignsample.php:279
#: admin/quotarow.php:582 admin/shiftreport.php:104 #: admin/quotarow.php:582 admin/shiftreport.php:104
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
msgid "Edit" msgid "Edit"
@@ -1484,15 +1460,16 @@ msgstr ""
#: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300 #: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300
#: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74 #: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74
#: admin/questionnairelist.php:380 admin/questionnairelist.php:383 #: admin/questionnairelist.php:385 admin/questionnairelist.php:388
#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 #: admin/questionnairelist.php:392 admin/questionnairelist.php:396
#: admin/questionnairelist.php:395 admin/operatorlist.php:239 #: admin/questionnairelist.php:400 admin/operatorlist.php:239
#: admin/operatorlist.php:251 admin/operatorlist.php:255 #: admin/operatorlist.php:251 admin/operatorlist.php:255
#: admin/assignsample.php:173 admin/assignsample.php:174 #: admin/assignsample.php:224 admin/assignsample.php:225
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:265 admin/assignsample.php:268 #: admin/assignsample.php:316 admin/assignsample.php:319
#: admin/quotarow.php:392 admin/quotarow.php:596 admin/new.php:208 #: admin/assignsample.php:325 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:215 admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "No" msgid "No"
msgstr "" msgstr ""
@@ -1526,7 +1503,7 @@ msgstr ""
#: admin/quotareport.php:111 admin/assigntimeslots.php:156 #: admin/quotareport.php:111 admin/assigntimeslots.php:156
#: admin/questionnaireprefill.php:100 admin/outcomes.php:68 #: admin/questionnaireprefill.php:100 admin/outcomes.php:68
#: admin/addshift.php:168 admin/assignsample.php:204 #: admin/addshift.php:168 admin/assignsample.php:255
msgid "Select a questionnaire" msgid "Select a questionnaire"
msgstr "" msgstr ""
@@ -2014,136 +1991,140 @@ msgstr ""
msgid "Update" msgid "Update"
msgstr "" msgstr ""
#: admin/questionnairelist.php:347 #: admin/questionnairelist.php:348
msgid "Modify Questionnaire " msgid "Modify Questionnaire "
msgstr "" msgstr ""
#: admin/questionnairelist.php:370 #: admin/questionnairelist.php:370
msgid "Assigned survey"
msgstr ""
#: admin/questionnairelist.php:374
msgid "Edit instrument in Limesurvey" msgid "Edit instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:375 admin/questionnairelist.php:376 #: admin/questionnairelist.php:380 admin/questionnairelist.php:381
#: admin/new.php:154 admin/new.php:156 #: admin/new.php:162 admin/new.php:164
msgid "Name for questionnaire:" msgid "Name for questionnaire:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:379 admin/new.php:206 #: admin/questionnairelist.php:384 admin/new.php:197
msgid "Restrict appointments to shifts?" msgid "Restrict appointments to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:382 admin/new.php:213 #: admin/questionnairelist.php:387 admin/new.php:204
msgid "Restrict work to shifts?" msgid "Restrict work to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:386 admin/new.php:220 #: admin/questionnairelist.php:391 admin/new.php:211
msgid "Questionnaire for testing only?" msgid "Questionnaire for testing only?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:390 admin/new.php:227 #: admin/questionnairelist.php:395 admin/new.php:218
msgid "Allow operators to generate referrals?" msgid "Allow operators to generate referrals?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:394 admin/new.php:234 #: admin/questionnairelist.php:399 admin/new.php:225
msgid "Allow for respondent self completion via email invitation?" msgid "Allow for respondent self completion via email invitation?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:399 admin/new.php:242 #: admin/questionnairelist.php:404 admin/new.php:233
msgid "Questionnaire display mode for respondent" msgid "Questionnaire display mode for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:402 admin/new.php:245 #: admin/questionnairelist.php:407 admin/new.php:236
msgid "All in one" msgid "All in one"
msgstr "" msgstr ""
#: admin/questionnairelist.php:403 admin/new.php:246 #: admin/questionnairelist.php:408 admin/new.php:237
msgid "Question by question" msgid "Question by question"
msgstr "" msgstr ""
#: admin/questionnairelist.php:404 admin/new.php:247 #: admin/questionnairelist.php:409 admin/new.php:238
msgid "Group at a time" msgid "Group at a time"
msgstr "" msgstr ""
#: admin/questionnairelist.php:409 admin/new.php:252 #: admin/questionnairelist.php:414 admin/new.php:243
msgid "Limesurvey template for respondent" msgid "Limesurvey template for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:428 admin/new.php:270 #: admin/questionnairelist.php:433 admin/new.php:261
msgid "URL to forward respondents on self completion (required)" msgid "URL to forward respondents on self completion (required)"
msgstr "" msgstr ""
#: admin/questionnairelist.php:439 admin/questionnairelist.php:449 #: admin/questionnairelist.php:444 admin/questionnairelist.php:454
#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 #: admin/questionnairelist.php:464 admin/questionnairelist.php:474
#: admin/questionnairelist.php:485 admin/questionnairelist.php:495 #: admin/questionnairelist.php:490 admin/questionnairelist.php:500
#: admin/new.php:306 admin/new.php:316 admin/new.php:326 admin/new.php:336 #: admin/new.php:297 admin/new.php:307 admin/new.php:317 admin/new.php:327
#: admin/new.php:348 admin/new.php:358 #: admin/new.php:339 admin/new.php:349
msgid "Expand/Collapse" msgid "Expand/Collapse"
msgstr "" msgstr ""
#: admin/questionnairelist.php:440 admin/new.php:307 #: admin/questionnairelist.php:445 admin/new.php:298
msgid "Respondent selection introduction:" msgid "Respondent selection introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:450 admin/new.php:317 #: admin/questionnairelist.php:455 admin/new.php:308
msgid "Respondent selection project introduction:" msgid "Respondent selection project introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:460 admin/new.php:327 #: admin/questionnairelist.php:465 admin/new.php:318
msgid "Respondent selection callback (already started questionnaire):" msgid "Respondent selection callback (already started questionnaire):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:470 admin/new.php:337 #: admin/questionnairelist.php:475 admin/new.php:328
msgid "Message to leave on an answering machine:" msgid "Message to leave on an answering machine:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:480 #: admin/questionnairelist.php:485
msgid "Edit respondent selection instrument in Limesurvey" msgid "Edit respondent selection instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:486 admin/new.php:349 #: admin/questionnairelist.php:491 admin/new.php:340
msgid "Project end text (thank you screen):" msgid "Project end text (thank you screen):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:496 admin/new.php:359 #: admin/questionnairelist.php:501 admin/new.php:350
msgid "Project information for interviewers/operators:" msgid "Project information for interviewers/operators:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:504 #: admin/questionnairelist.php:509
msgid "Update Questionnaire" msgid "Update Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:518 #: admin/questionnairelist.php:523
msgid "Delete Questionnaire" msgid "Delete Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:520 #: admin/questionnairelist.php:525
msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgid "Any collected data and the limesurvey instrument will NOT be deleted"
msgstr "" msgstr ""
#: admin/questionnairelist.php:521 #: admin/questionnairelist.php:526
msgid "" msgid ""
"The questionnaire will be deleted from queXS including call history, cases, " "The questionnaire will be deleted from queXS including call history, cases, "
"case notes, respondent details, appointments and the links between " "case notes, respondent details, appointments and the links between "
"operators, clients and the questionnaire" "operators, clients and the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:522 #: admin/questionnairelist.php:527
msgid "Please confirm you wish to delete the questionnaire" msgid "Please confirm you wish to delete the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:525 #: admin/questionnairelist.php:530
msgid "Delete this questionnaire" msgid "Delete this questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:531 admin/index.php:100 admin/new.php:136 #: admin/questionnairelist.php:536 admin/index.php:100 admin/new.php:136
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Questionnaire management" msgid "Questionnaire management"
msgstr "" msgstr ""
#: admin/questionnairelist.php:534 admin/index.php:99 admin/new.php:42 #: admin/questionnairelist.php:539 admin/index.php:99 admin/new.php:42
msgid "Create a new questionnaire" msgid "Create a new questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:552 #: admin/questionnairelist.php:557
msgid "Edit Lime survey" msgid "Edit Lime survey"
msgstr "" msgstr ""
@@ -2356,7 +2337,7 @@ msgstr ""
msgid "Select columns to import" msgid "Select columns to import"
msgstr "" msgstr ""
#: admin/import.php:97 admin/import.php:145 admin/assignsample.php:272 #: admin/import.php:97 admin/import.php:145 admin/assignsample.php:330
msgid "Add sample" msgid "Add sample"
msgstr "" msgstr ""
@@ -2377,7 +2358,7 @@ msgid "Enter new sample name..."
msgstr "" msgstr ""
#: admin/index.php:50 #: admin/index.php:50
msgid "Administrative Tools" msgid "queXS Administration"
msgstr "" msgstr ""
#: admin/index.php:67 #: admin/index.php:67
@@ -2408,11 +2389,11 @@ msgstr ""
msgid "Questionnairies" msgid "Questionnairies"
msgstr "" msgstr ""
#: admin/index.php:98 admin/new.php:177 admin/new.php:181 #: admin/index.php:98 admin/new.php:178 admin/new.php:372
msgid "Create an instrument in Limesurvey" msgid "Create an instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/index.php:101 #: admin/index.php:101 admin/new.php:374
msgid "Administer instruments with Limesurvey" msgid "Administer instruments with Limesurvey"
msgstr "" msgstr ""
@@ -2465,7 +2446,7 @@ msgstr ""
msgid "Assign operators to questionnaires" msgid "Assign operators to questionnaires"
msgstr "" msgstr ""
#: admin/index.php:134 admin/operatorskill.php:268 #: admin/index.php:134 admin/operatorskill.php:270
msgid "Modify operator skills" msgid "Modify operator skills"
msgstr "" msgstr ""
@@ -2686,82 +2667,89 @@ msgstr ""
msgid "Code value" msgid "Code value"
msgstr "" msgstr ""
#: admin/assignsample.php:131 #: admin/assignsample.php:182
msgid "Edit assignment parameters" msgid "Edit assignment parameters"
msgstr "" msgstr ""
#: admin/assignsample.php:132 admin/assignsample.php:201 #: admin/assignsample.php:183 admin/assignsample.php:252
msgid "Assign samples to questionnaire: " msgid "Assign samples to questionnaire: "
msgstr "" msgstr ""
#: admin/assignsample.php:163 admin/assignsample.php:228 #: admin/assignsample.php:214 admin/assignsample.php:279
#: admin/assignsample.php:251 #: admin/assignsample.php:302
msgid "Max calls" msgid "Max calls"
msgstr "" msgstr ""
#: admin/assignsample.php:165 admin/assignsample.php:168 #: admin/assignsample.php:216 admin/assignsample.php:219
#: admin/assignsample.php:253 admin/assignsample.php:257 #: admin/assignsample.php:304 admin/assignsample.php:308
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: admin/assignsample.php:166 admin/assignsample.php:228 #: admin/assignsample.php:217 admin/assignsample.php:279
#: admin/assignsample.php:255 #: admin/assignsample.php:306
msgid "Max call attempts" msgid "Max call attempts"
msgstr "" msgstr ""
#: admin/assignsample.php:169 admin/assignsample.php:259 #: admin/assignsample.php:220 admin/assignsample.php:310
msgid "Number of answering machine messages to leave per case" msgid "Number of answering machine messages to leave per case"
msgstr "" msgstr ""
#: admin/assignsample.php:171 admin/assignsample.php:261 #: admin/assignsample.php:222 admin/assignsample.php:312
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: admin/assignsample.php:172 admin/assignsample.php:263 #: admin/assignsample.php:223 admin/assignsample.php:314
msgid "Select from sample randomly?" msgid "Select from sample randomly?"
msgstr "" msgstr ""
#: admin/assignsample.php:174 admin/assignsample.php:265 #: admin/assignsample.php:225 admin/assignsample.php:316
msgid "Sequentially" msgid "Sequentially"
msgstr "" msgstr ""
#: admin/assignsample.php:175 admin/assignsample.php:228 #: admin/assignsample.php:226 admin/assignsample.php:279
#: admin/assignsample.php:267 #: admin/assignsample.php:318
msgid "Allow new numbers to be drawn?" msgid "Allow new numbers to be drawn?"
msgstr "" msgstr ""
#: admin/assignsample.php:200 #: admin/assignsample.php:251
msgid "List & Add Sample" msgid "List & Add Sample"
msgstr "" msgstr ""
#: admin/assignsample.php:211 #: admin/assignsample.php:262
msgid "Samples selected for this questionnaire" msgid "Samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Answering machine messages" msgid "Answering machine messages"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Selection type" msgid "Selection type"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Unassign sample" msgid "Unassign sample"
msgstr "" msgstr ""
#: admin/assignsample.php:230 #: admin/assignsample.php:281
msgid "No samples selected for this questionnaire" msgid "No samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:244 #: admin/assignsample.php:295
msgid "Add a sample to this questionnaire:" msgid "Add a sample to this questionnaire:"
msgstr "" msgstr ""
#: admin/assignsample.php:247 #: admin/assignsample.php:298
msgid "Select sample:" msgid "Select sample:"
msgstr "" msgstr ""
#: admin/assignsample.php:324
msgid ""
"Generate cases for all sample records and set outcome to 'Self completion "
"email invitation sent'? (Ideal if you intend to send an email invitation to "
"sample members before attempting to call using queXS)"
msgstr ""
#: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98 #: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98
msgid "Case id:" msgid "Case id:"
msgstr "" msgstr ""
@@ -2774,7 +2762,7 @@ msgstr ""
msgid "Select case" msgid "Select case"
msgstr "" msgstr ""
#: admin/supervisor.php:142 admin/new.php:180 #: admin/supervisor.php:142 admin/new.php:177 admin/new.php:373
msgid "or" msgid "or"
msgstr "" msgstr ""
@@ -2786,7 +2774,7 @@ msgstr ""
msgid "Set an outcome for this call" msgid "Set an outcome for this call"
msgstr "" msgstr ""
#: admin/supervisor.php:166 #: admin/supervisor.php:166 admin/new.php:359
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@@ -3351,11 +3339,11 @@ msgstr ""
msgid "No, Thank you, go to" msgid "No, Thank you, go to"
msgstr "" msgstr ""
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Go to" msgid "Go to"
msgstr "" msgstr ""
#: admin/new.php:156 #: admin/new.php:164
msgid "Enter New questionnaire name.." msgid "Enter New questionnaire name.."
msgstr "" msgstr ""
@@ -3363,26 +3351,30 @@ msgstr ""
msgid "Select limesurvey instrument:" msgid "Select limesurvey instrument:"
msgstr "" msgstr ""
#: admin/new.php:174 admin/new.php:199 #: admin/new.php:173 admin/new.php:190
msgid "Existing instrument:" msgid "Survey"
msgstr "" msgstr ""
#: admin/new.php:186 #: admin/new.php:183
msgid "Respondent selection type:" msgid "Respondent selection type:"
msgstr "" msgstr ""
#: admin/new.php:189 #: admin/new.php:186
msgid "No respondent selection (go straight to questionnaire)" msgid "No respondent selection (go straight to questionnaire)"
msgstr "" msgstr ""
#: admin/new.php:190 #: admin/new.php:187
msgid "Use basic respondent selection text (below)" msgid "Use basic respondent selection text (below)"
msgstr "" msgstr ""
#: admin/new.php:371 #: admin/new.php:362
msgid "Create Questionnaire" msgid "Create Questionnaire"
msgstr "" msgstr ""
#: admin/new.php:371
msgid "NO active Lime surveys available"
msgstr ""
#: admin/databasestrings.php:32 rs_intro_interface2.php:76 #: admin/databasestrings.php:32 rs_intro_interface2.php:76
msgid "Not attempted or worked" msgid "Not attempted or worked"
msgstr "" msgstr ""
@@ -3612,11 +3604,19 @@ msgid "Self completed online"
msgstr "" msgstr ""
#: admin/databasestrings.php:91 #: admin/databasestrings.php:91
msgid "Max call attempts reached" msgid "Max call attempts reached (Eligible)"
msgstr "" msgstr ""
#: admin/databasestrings.php:92 #: admin/databasestrings.php:92
msgid "Max calls reached" msgid "Max calls reached (Eligible)"
msgstr ""
#: admin/databasestrings.php:93
msgid "Max call attempts reached (Unknown eligibility)"
msgstr ""
#: admin/databasestrings.php:94
msgid "Max calls reached (Unknown eligibility)"
msgstr "" msgstr ""
#: call_interface2.php:116 #: call_interface2.php:116

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: quexs\n" "Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2015-08-04 12:27+1000\n" "POT-Creation-Date: 2015-08-10 16:24+1000\n"
"PO-Revision-Date: 2015-01-08 00:44+0000\n" "PO-Revision-Date: 2015-01-08 00:44+0000\n"
"Last-Translator: Adolfo Jayme <fitoschido@gmail.com>\n" "Last-Translator: Adolfo Jayme <fitoschido@gmail.com>\n"
"Language-Team: Spanish <es@li.org>\n" "Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-08-04 03:56+0000\n" "X-Launchpad-Export-Date: 2015-08-31 02:56+0000\n"
"X-Generator: Launchpad (build 17656)\n" "X-Generator: Launchpad (build 17690)\n"
#: appointment.php:69 #: appointment.php:69
msgid "Appointment error" msgid "Appointment error"
@@ -147,32 +147,6 @@ msgstr ""
msgid "Show to operator?" msgid "Show to operator?"
msgstr "" msgstr ""
#: functions/functions.freepbx.php:138
#, php-format
msgid "Reload failed because retrieve_conf encountered an error: %s"
msgstr ""
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr ""
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
msgstr ""
#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 #: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning" msgid "morning"
msgstr "mañana" msgstr "mañana"
@@ -185,7 +159,7 @@ msgstr "tarde"
msgid "evening" msgid "evening"
msgstr "noche" msgstr "noche"
#: functions/functions.operator.php:905 #: functions/functions.operator.php:972
msgid "" msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS " "ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system." "cannot determine which user is accessing the system."
@@ -508,7 +482,7 @@ msgstr "Este turno"
#: admin/operatorlist.php:184 admin/operatorlist.php:372 #: admin/operatorlist.php:184 admin/operatorlist.php:372
#: admin/casesbyoutcome.php:88 admin/supervisor.php:372 #: admin/casesbyoutcome.php:88 admin/supervisor.php:372
#: admin/supervisor.php:399 admin/supervisor.php:416 #: admin/supervisor.php:399 admin/supervisor.php:416
#: admin/operatorskill.php:244 admin/operatorperformance.php:81 #: admin/operatorskill.php:246 admin/operatorperformance.php:81
#: admin/operatorperformance.php:104 admin/shiftreport.php:104 #: admin/operatorperformance.php:104 admin/shiftreport.php:104
#: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242 #: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242
msgid "Operator" msgid "Operator"
@@ -537,12 +511,12 @@ msgid "Add note"
msgstr "Añadir nota" msgstr "Añadir nota"
#: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495 #: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495
#: admin/samplesearch.php:102 admin/questionnairelist.php:368 #: admin/samplesearch.php:102 admin/questionnairelist.php:370
#: admin/questionnairelist.php:503 admin/questionnairelist.php:525 #: admin/questionnairelist.php:508 admin/questionnairelist.php:530
#: admin/questionnairelist.php:533 admin/callhistory.php:137 #: admin/questionnairelist.php:538 admin/callhistory.php:137
#: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43 #: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43
#: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54 #: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54
#: admin/assignsample.php:150 admin/assignsample.php:203 #: admin/assignsample.php:201 admin/assignsample.php:254
#: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95 #: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95
#: contactdetails.php:92 #: contactdetails.php:92
msgid "Go back" msgid "Go back"
@@ -596,15 +570,16 @@ msgstr "Turnos disponibles:"
#: waitnextcase_interface2.php:136 admin/operators.php:284 #: waitnextcase_interface2.php:136 admin/operators.php:284
#: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304 #: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304
#: admin/operators.php:308 admin/samplesearch.php:96 #: admin/operators.php:308 admin/samplesearch.php:96
#: admin/supervisorchat.php:74 admin/questionnairelist.php:380 #: admin/supervisorchat.php:74 admin/questionnairelist.php:385
#: admin/questionnairelist.php:383 admin/questionnairelist.php:387 #: admin/questionnairelist.php:388 admin/questionnairelist.php:392
#: admin/questionnairelist.php:391 admin/questionnairelist.php:395 #: admin/questionnairelist.php:396 admin/questionnairelist.php:400
#: admin/operatorlist.php:239 admin/operatorlist.php:251 #: admin/operatorlist.php:239 admin/operatorlist.php:251
#: admin/operatorlist.php:255 admin/assignsample.php:173 #: admin/operatorlist.php:255 admin/assignsample.php:224
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:268 admin/supervisor.php:185 admin/quotarow.php:392 #: admin/assignsample.php:319 admin/assignsample.php:325
#: admin/quotarow.php:596 admin/new.php:208 admin/new.php:215 #: admin/supervisor.php:185 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@@ -1092,14 +1067,14 @@ msgstr ""
#: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294 #: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294
#: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178 #: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178
#: admin/callhistory.php:124 admin/callhistory.php:149 #: admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:152 #: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:203
#: admin/assignsample.php:228 admin/supervisor.php:298 admin/quotarow.php:306 #: admin/assignsample.php:279 admin/supervisor.php:298 admin/quotarow.php:306
#: admin/casestatus.php:116 admin/casestatus.php:234 #: admin/casestatus.php:116 admin/casestatus.php:234
msgid "Sample" msgid "Sample"
msgstr "Muestra" msgstr "Muestra"
#: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149 #: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:151 #: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:202
#: admin/quotarow.php:288 admin/casestatus.php:231 #: admin/quotarow.php:288 admin/casestatus.php:231
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
#: admin/new.php:127 admin/new.php:135 shifts.php:103 #: admin/new.php:127 admin/new.php:135 shifts.php:103
@@ -1266,7 +1241,7 @@ msgstr ""
msgid "Delete ?" msgid "Delete ?"
msgstr "" msgstr ""
#: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:179 #: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:230
#: admin/quotarow.php:394 admin/extensionstatus.php:202 #: admin/quotarow.php:394 admin/extensionstatus.php:202
#: admin/displayappointments.php:231 #: admin/displayappointments.php:231
msgid "Save changes" msgid "Save changes"
@@ -1428,7 +1403,8 @@ msgid "Added operator :"
msgstr "" msgstr ""
#: admin/operators.php:150 #: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgid ""
"FreePBX needs to be reloaded for the new VoIP extension to take effect"
msgstr "" msgstr ""
#: admin/operators.php:172 #: admin/operators.php:172
@@ -1454,7 +1430,7 @@ msgstr ""
#: admin/operators.php:242 admin/clientquestionnaire.php:238 #: admin/operators.php:242 admin/clientquestionnaire.php:238
#: admin/operatorlist.php:200 admin/operatorlist.php:372 #: admin/operatorlist.php:200 admin/operatorlist.php:372
#: admin/operatorskill.php:244 admin/operatorquestionnaire.php:242 #: admin/operatorskill.php:246 admin/operatorquestionnaire.php:242
msgid "Username" msgid "Username"
msgstr "Nombre de usuario" msgstr "Nombre de usuario"
@@ -1476,8 +1452,8 @@ msgid "characters"
msgstr "" msgstr ""
#: admin/operators.php:267 admin/operators.php:276 #: admin/operators.php:267 admin/operators.php:276
#: admin/questionnairelist.php:375 admin/operatorlist.php:225 #: admin/questionnairelist.php:380 admin/operatorlist.php:225
#: admin/operatorlist.php:233 admin/assignsample.php:228 #: admin/operatorlist.php:233 admin/assignsample.php:279
#: admin/quotarow.php:582 admin/shiftreport.php:104 #: admin/quotarow.php:582 admin/shiftreport.php:104
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
msgid "Edit" msgid "Edit"
@@ -1498,15 +1474,16 @@ msgstr ""
#: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300 #: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300
#: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74 #: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74
#: admin/questionnairelist.php:380 admin/questionnairelist.php:383 #: admin/questionnairelist.php:385 admin/questionnairelist.php:388
#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 #: admin/questionnairelist.php:392 admin/questionnairelist.php:396
#: admin/questionnairelist.php:395 admin/operatorlist.php:239 #: admin/questionnairelist.php:400 admin/operatorlist.php:239
#: admin/operatorlist.php:251 admin/operatorlist.php:255 #: admin/operatorlist.php:251 admin/operatorlist.php:255
#: admin/assignsample.php:173 admin/assignsample.php:174 #: admin/assignsample.php:224 admin/assignsample.php:225
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:265 admin/assignsample.php:268 #: admin/assignsample.php:316 admin/assignsample.php:319
#: admin/quotarow.php:392 admin/quotarow.php:596 admin/new.php:208 #: admin/assignsample.php:325 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:215 admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "No" msgid "No"
msgstr "" msgstr ""
@@ -1540,7 +1517,7 @@ msgstr "Informe de cuota"
#: admin/quotareport.php:111 admin/assigntimeslots.php:156 #: admin/quotareport.php:111 admin/assigntimeslots.php:156
#: admin/questionnaireprefill.php:100 admin/outcomes.php:68 #: admin/questionnaireprefill.php:100 admin/outcomes.php:68
#: admin/addshift.php:168 admin/assignsample.php:204 #: admin/addshift.php:168 admin/assignsample.php:255
msgid "Select a questionnaire" msgid "Select a questionnaire"
msgstr "" msgstr ""
@@ -2029,136 +2006,140 @@ msgstr ""
msgid "Update" msgid "Update"
msgstr "" msgstr ""
#: admin/questionnairelist.php:347 #: admin/questionnairelist.php:348
msgid "Modify Questionnaire " msgid "Modify Questionnaire "
msgstr "" msgstr ""
#: admin/questionnairelist.php:370 #: admin/questionnairelist.php:370
msgid "Assigned survey"
msgstr ""
#: admin/questionnairelist.php:374
msgid "Edit instrument in Limesurvey" msgid "Edit instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:375 admin/questionnairelist.php:376 #: admin/questionnairelist.php:380 admin/questionnairelist.php:381
#: admin/new.php:154 admin/new.php:156 #: admin/new.php:162 admin/new.php:164
msgid "Name for questionnaire:" msgid "Name for questionnaire:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:379 admin/new.php:206 #: admin/questionnairelist.php:384 admin/new.php:197
msgid "Restrict appointments to shifts?" msgid "Restrict appointments to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:382 admin/new.php:213 #: admin/questionnairelist.php:387 admin/new.php:204
msgid "Restrict work to shifts?" msgid "Restrict work to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:386 admin/new.php:220 #: admin/questionnairelist.php:391 admin/new.php:211
msgid "Questionnaire for testing only?" msgid "Questionnaire for testing only?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:390 admin/new.php:227 #: admin/questionnairelist.php:395 admin/new.php:218
msgid "Allow operators to generate referrals?" msgid "Allow operators to generate referrals?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:394 admin/new.php:234 #: admin/questionnairelist.php:399 admin/new.php:225
msgid "Allow for respondent self completion via email invitation?" msgid "Allow for respondent self completion via email invitation?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:399 admin/new.php:242 #: admin/questionnairelist.php:404 admin/new.php:233
msgid "Questionnaire display mode for respondent" msgid "Questionnaire display mode for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:402 admin/new.php:245 #: admin/questionnairelist.php:407 admin/new.php:236
msgid "All in one" msgid "All in one"
msgstr "" msgstr ""
#: admin/questionnairelist.php:403 admin/new.php:246 #: admin/questionnairelist.php:408 admin/new.php:237
msgid "Question by question" msgid "Question by question"
msgstr "" msgstr ""
#: admin/questionnairelist.php:404 admin/new.php:247 #: admin/questionnairelist.php:409 admin/new.php:238
msgid "Group at a time" msgid "Group at a time"
msgstr "" msgstr ""
#: admin/questionnairelist.php:409 admin/new.php:252 #: admin/questionnairelist.php:414 admin/new.php:243
msgid "Limesurvey template for respondent" msgid "Limesurvey template for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:428 admin/new.php:270 #: admin/questionnairelist.php:433 admin/new.php:261
msgid "URL to forward respondents on self completion (required)" msgid "URL to forward respondents on self completion (required)"
msgstr "" msgstr ""
#: admin/questionnairelist.php:439 admin/questionnairelist.php:449 #: admin/questionnairelist.php:444 admin/questionnairelist.php:454
#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 #: admin/questionnairelist.php:464 admin/questionnairelist.php:474
#: admin/questionnairelist.php:485 admin/questionnairelist.php:495 #: admin/questionnairelist.php:490 admin/questionnairelist.php:500
#: admin/new.php:306 admin/new.php:316 admin/new.php:326 admin/new.php:336 #: admin/new.php:297 admin/new.php:307 admin/new.php:317 admin/new.php:327
#: admin/new.php:348 admin/new.php:358 #: admin/new.php:339 admin/new.php:349
msgid "Expand/Collapse" msgid "Expand/Collapse"
msgstr "" msgstr ""
#: admin/questionnairelist.php:440 admin/new.php:307 #: admin/questionnairelist.php:445 admin/new.php:298
msgid "Respondent selection introduction:" msgid "Respondent selection introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:450 admin/new.php:317 #: admin/questionnairelist.php:455 admin/new.php:308
msgid "Respondent selection project introduction:" msgid "Respondent selection project introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:460 admin/new.php:327 #: admin/questionnairelist.php:465 admin/new.php:318
msgid "Respondent selection callback (already started questionnaire):" msgid "Respondent selection callback (already started questionnaire):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:470 admin/new.php:337 #: admin/questionnairelist.php:475 admin/new.php:328
msgid "Message to leave on an answering machine:" msgid "Message to leave on an answering machine:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:480 #: admin/questionnairelist.php:485
msgid "Edit respondent selection instrument in Limesurvey" msgid "Edit respondent selection instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:486 admin/new.php:349 #: admin/questionnairelist.php:491 admin/new.php:340
msgid "Project end text (thank you screen):" msgid "Project end text (thank you screen):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:496 admin/new.php:359 #: admin/questionnairelist.php:501 admin/new.php:350
msgid "Project information for interviewers/operators:" msgid "Project information for interviewers/operators:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:504 #: admin/questionnairelist.php:509
msgid "Update Questionnaire" msgid "Update Questionnaire"
msgstr "Actualizar cuestionario" msgstr "Actualizar cuestionario"
#: admin/questionnairelist.php:518 #: admin/questionnairelist.php:523
msgid "Delete Questionnaire" msgid "Delete Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:520 #: admin/questionnairelist.php:525
msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgid "Any collected data and the limesurvey instrument will NOT be deleted"
msgstr "" msgstr ""
#: admin/questionnairelist.php:521 #: admin/questionnairelist.php:526
msgid "" msgid ""
"The questionnaire will be deleted from queXS including call history, cases, " "The questionnaire will be deleted from queXS including call history, cases, "
"case notes, respondent details, appointments and the links between " "case notes, respondent details, appointments and the links between "
"operators, clients and the questionnaire" "operators, clients and the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:522 #: admin/questionnairelist.php:527
msgid "Please confirm you wish to delete the questionnaire" msgid "Please confirm you wish to delete the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:525 #: admin/questionnairelist.php:530
msgid "Delete this questionnaire" msgid "Delete this questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:531 admin/index.php:100 admin/new.php:136 #: admin/questionnairelist.php:536 admin/index.php:100 admin/new.php:136
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Questionnaire management" msgid "Questionnaire management"
msgstr "Gestión de cuestionario" msgstr "Gestión de cuestionario"
#: admin/questionnairelist.php:534 admin/index.php:99 admin/new.php:42 #: admin/questionnairelist.php:539 admin/index.php:99 admin/new.php:42
msgid "Create a new questionnaire" msgid "Create a new questionnaire"
msgstr "Crear un cuestionario nuevo" msgstr "Crear un cuestionario nuevo"
#: admin/questionnairelist.php:552 #: admin/questionnairelist.php:557
msgid "Edit Lime survey" msgid "Edit Lime survey"
msgstr "" msgstr ""
@@ -2374,7 +2355,7 @@ msgstr ""
msgid "Select columns to import" msgid "Select columns to import"
msgstr "" msgstr ""
#: admin/import.php:97 admin/import.php:145 admin/assignsample.php:272 #: admin/import.php:97 admin/import.php:145 admin/assignsample.php:330
msgid "Add sample" msgid "Add sample"
msgstr "Añadir muestra" msgstr "Añadir muestra"
@@ -2395,8 +2376,8 @@ msgid "Enter new sample name..."
msgstr "" msgstr ""
#: admin/index.php:50 #: admin/index.php:50
msgid "Administrative Tools" msgid "queXS Administration"
msgstr "Herramientas administrativas" msgstr ""
#: admin/index.php:67 #: admin/index.php:67
msgid "Click to Collapse / Expand Sidebar MENU " msgid "Click to Collapse / Expand Sidebar MENU "
@@ -2426,11 +2407,11 @@ msgstr ""
msgid "Questionnairies" msgid "Questionnairies"
msgstr "" msgstr ""
#: admin/index.php:98 admin/new.php:177 admin/new.php:181 #: admin/index.php:98 admin/new.php:178 admin/new.php:372
msgid "Create an instrument in Limesurvey" msgid "Create an instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/index.php:101 #: admin/index.php:101 admin/new.php:374
msgid "Administer instruments with Limesurvey" msgid "Administer instruments with Limesurvey"
msgstr "" msgstr ""
@@ -2483,7 +2464,7 @@ msgstr "Estado de extensión"
msgid "Assign operators to questionnaires" msgid "Assign operators to questionnaires"
msgstr "Asignar operadores a cuestionarios" msgstr "Asignar operadores a cuestionarios"
#: admin/index.php:134 admin/operatorskill.php:268 #: admin/index.php:134 admin/operatorskill.php:270
msgid "Modify operator skills" msgid "Modify operator skills"
msgstr "" msgstr ""
@@ -2704,82 +2685,89 @@ msgstr "No hay etiquetas definidas para esta pregunta"
msgid "Code value" msgid "Code value"
msgstr "Valor del código" msgstr "Valor del código"
#: admin/assignsample.php:131 #: admin/assignsample.php:182
msgid "Edit assignment parameters" msgid "Edit assignment parameters"
msgstr "" msgstr ""
#: admin/assignsample.php:132 admin/assignsample.php:201 #: admin/assignsample.php:183 admin/assignsample.php:252
msgid "Assign samples to questionnaire: " msgid "Assign samples to questionnaire: "
msgstr "" msgstr ""
#: admin/assignsample.php:163 admin/assignsample.php:228 #: admin/assignsample.php:214 admin/assignsample.php:279
#: admin/assignsample.php:251 #: admin/assignsample.php:302
msgid "Max calls" msgid "Max calls"
msgstr "" msgstr ""
#: admin/assignsample.php:165 admin/assignsample.php:168 #: admin/assignsample.php:216 admin/assignsample.php:219
#: admin/assignsample.php:253 admin/assignsample.php:257 #: admin/assignsample.php:304 admin/assignsample.php:308
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: admin/assignsample.php:166 admin/assignsample.php:228 #: admin/assignsample.php:217 admin/assignsample.php:279
#: admin/assignsample.php:255 #: admin/assignsample.php:306
msgid "Max call attempts" msgid "Max call attempts"
msgstr "" msgstr ""
#: admin/assignsample.php:169 admin/assignsample.php:259 #: admin/assignsample.php:220 admin/assignsample.php:310
msgid "Number of answering machine messages to leave per case" msgid "Number of answering machine messages to leave per case"
msgstr "" msgstr ""
#: admin/assignsample.php:171 admin/assignsample.php:261 #: admin/assignsample.php:222 admin/assignsample.php:312
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: admin/assignsample.php:172 admin/assignsample.php:263 #: admin/assignsample.php:223 admin/assignsample.php:314
msgid "Select from sample randomly?" msgid "Select from sample randomly?"
msgstr "" msgstr ""
#: admin/assignsample.php:174 admin/assignsample.php:265 #: admin/assignsample.php:225 admin/assignsample.php:316
msgid "Sequentially" msgid "Sequentially"
msgstr "" msgstr ""
#: admin/assignsample.php:175 admin/assignsample.php:228 #: admin/assignsample.php:226 admin/assignsample.php:279
#: admin/assignsample.php:267 #: admin/assignsample.php:318
msgid "Allow new numbers to be drawn?" msgid "Allow new numbers to be drawn?"
msgstr "" msgstr ""
#: admin/assignsample.php:200 #: admin/assignsample.php:251
msgid "List & Add Sample" msgid "List & Add Sample"
msgstr "" msgstr ""
#: admin/assignsample.php:211 #: admin/assignsample.php:262
msgid "Samples selected for this questionnaire" msgid "Samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Answering machine messages" msgid "Answering machine messages"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Selection type" msgid "Selection type"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Unassign sample" msgid "Unassign sample"
msgstr "" msgstr ""
#: admin/assignsample.php:230 #: admin/assignsample.php:281
msgid "No samples selected for this questionnaire" msgid "No samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:244 #: admin/assignsample.php:295
msgid "Add a sample to this questionnaire:" msgid "Add a sample to this questionnaire:"
msgstr "" msgstr ""
#: admin/assignsample.php:247 #: admin/assignsample.php:298
msgid "Select sample:" msgid "Select sample:"
msgstr "Seleccionar muestra" msgstr "Seleccionar muestra"
#: admin/assignsample.php:324
msgid ""
"Generate cases for all sample records and set outcome to 'Self completion "
"email invitation sent'? (Ideal if you intend to send an email invitation to "
"sample members before attempting to call using queXS)"
msgstr ""
#: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98 #: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98
msgid "Case id:" msgid "Case id:"
msgstr "ID del caso:" msgstr "ID del caso:"
@@ -2792,7 +2780,7 @@ msgstr ""
msgid "Select case" msgid "Select case"
msgstr "" msgstr ""
#: admin/supervisor.php:142 admin/new.php:180 #: admin/supervisor.php:142 admin/new.php:177 admin/new.php:373
msgid "or" msgid "or"
msgstr "" msgstr ""
@@ -2804,7 +2792,7 @@ msgstr ""
msgid "Set an outcome for this call" msgid "Set an outcome for this call"
msgstr "" msgstr ""
#: admin/supervisor.php:166 #: admin/supervisor.php:166 admin/new.php:359
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@@ -3369,11 +3357,11 @@ msgstr ""
msgid "No, Thank you, go to" msgid "No, Thank you, go to"
msgstr "" msgstr ""
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Go to" msgid "Go to"
msgstr "" msgstr ""
#: admin/new.php:156 #: admin/new.php:164
msgid "Enter New questionnaire name.." msgid "Enter New questionnaire name.."
msgstr "" msgstr ""
@@ -3381,26 +3369,30 @@ msgstr ""
msgid "Select limesurvey instrument:" msgid "Select limesurvey instrument:"
msgstr "" msgstr ""
#: admin/new.php:174 admin/new.php:199 #: admin/new.php:173 admin/new.php:190
msgid "Existing instrument:" msgid "Survey"
msgstr "" msgstr ""
#: admin/new.php:186 #: admin/new.php:183
msgid "Respondent selection type:" msgid "Respondent selection type:"
msgstr "" msgstr ""
#: admin/new.php:189 #: admin/new.php:186
msgid "No respondent selection (go straight to questionnaire)" msgid "No respondent selection (go straight to questionnaire)"
msgstr "" msgstr ""
#: admin/new.php:190 #: admin/new.php:187
msgid "Use basic respondent selection text (below)" msgid "Use basic respondent selection text (below)"
msgstr "" msgstr ""
#: admin/new.php:371 #: admin/new.php:362
msgid "Create Questionnaire" msgid "Create Questionnaire"
msgstr "Crear cuestionario" msgstr "Crear cuestionario"
#: admin/new.php:371
msgid "NO active Lime surveys available"
msgstr ""
#: admin/databasestrings.php:32 rs_intro_interface2.php:76 #: admin/databasestrings.php:32 rs_intro_interface2.php:76
msgid "Not attempted or worked" msgid "Not attempted or worked"
msgstr "" msgstr ""
@@ -3630,11 +3622,19 @@ msgid "Self completed online"
msgstr "" msgstr ""
#: admin/databasestrings.php:91 #: admin/databasestrings.php:91
msgid "Max call attempts reached" msgid "Max call attempts reached (Eligible)"
msgstr "" msgstr ""
#: admin/databasestrings.php:92 #: admin/databasestrings.php:92
msgid "Max calls reached" msgid "Max calls reached (Eligible)"
msgstr ""
#: admin/databasestrings.php:93
msgid "Max call attempts reached (Unknown eligibility)"
msgstr ""
#: admin/databasestrings.php:94
msgid "Max calls reached (Unknown eligibility)"
msgstr "" msgstr ""
#: call_interface2.php:116 #: call_interface2.php:116
@@ -4011,6 +4011,9 @@ msgstr "Terminar llamada con resultado: Cuota llena"
#~ msgid "Surname" #~ msgid "Surname"
#~ msgstr "Apellido" #~ msgstr "Apellido"
#~ msgid "Administrative Tools"
#~ msgstr "Herramientas administrativas"
#~ msgid "Client management" #~ msgid "Client management"
#~ msgstr "Gestión de clientes" #~ msgstr "Gestión de clientes"

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: quexs\n" "Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2015-08-04 12:27+1000\n" "POT-Creation-Date: 2015-08-10 16:24+1000\n"
"PO-Revision-Date: 2013-05-09 18:23+0000\n" "PO-Revision-Date: 2013-05-09 18:23+0000\n"
"Last-Translator: A J <jazayeri@gmail.com>\n" "Last-Translator: A J <jazayeri@gmail.com>\n"
"Language-Team: Persian <fa@li.org>\n" "Language-Team: Persian <fa@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-08-04 03:56+0000\n" "X-Launchpad-Export-Date: 2015-08-31 02:56+0000\n"
"X-Generator: Launchpad (build 17656)\n" "X-Generator: Launchpad (build 17690)\n"
#: appointment.php:69 #: appointment.php:69
msgid "Appointment error" msgid "Appointment error"
@@ -147,32 +147,6 @@ msgstr ""
msgid "Show to operator?" msgid "Show to operator?"
msgstr "" msgstr ""
#: functions/functions.freepbx.php:138
#, php-format
msgid "Reload failed because retrieve_conf encountered an error: %s"
msgstr ""
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr ""
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
msgstr ""
#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 #: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning" msgid "morning"
msgstr "" msgstr ""
@@ -185,7 +159,7 @@ msgstr ""
msgid "evening" msgid "evening"
msgstr "" msgstr ""
#: functions/functions.operator.php:905 #: functions/functions.operator.php:972
msgid "" msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS " "ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system." "cannot determine which user is accessing the system."
@@ -508,7 +482,7 @@ msgstr "این شیفت"
#: admin/operatorlist.php:184 admin/operatorlist.php:372 #: admin/operatorlist.php:184 admin/operatorlist.php:372
#: admin/casesbyoutcome.php:88 admin/supervisor.php:372 #: admin/casesbyoutcome.php:88 admin/supervisor.php:372
#: admin/supervisor.php:399 admin/supervisor.php:416 #: admin/supervisor.php:399 admin/supervisor.php:416
#: admin/operatorskill.php:244 admin/operatorperformance.php:81 #: admin/operatorskill.php:246 admin/operatorperformance.php:81
#: admin/operatorperformance.php:104 admin/shiftreport.php:104 #: admin/operatorperformance.php:104 admin/shiftreport.php:104
#: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242 #: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242
msgid "Operator" msgid "Operator"
@@ -537,12 +511,12 @@ msgid "Add note"
msgstr "" msgstr ""
#: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495 #: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495
#: admin/samplesearch.php:102 admin/questionnairelist.php:368 #: admin/samplesearch.php:102 admin/questionnairelist.php:370
#: admin/questionnairelist.php:503 admin/questionnairelist.php:525 #: admin/questionnairelist.php:508 admin/questionnairelist.php:530
#: admin/questionnairelist.php:533 admin/callhistory.php:137 #: admin/questionnairelist.php:538 admin/callhistory.php:137
#: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43 #: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43
#: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54 #: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54
#: admin/assignsample.php:150 admin/assignsample.php:203 #: admin/assignsample.php:201 admin/assignsample.php:254
#: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95 #: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95
#: contactdetails.php:92 #: contactdetails.php:92
msgid "Go back" msgid "Go back"
@@ -596,15 +570,16 @@ msgstr ""
#: waitnextcase_interface2.php:136 admin/operators.php:284 #: waitnextcase_interface2.php:136 admin/operators.php:284
#: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304 #: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304
#: admin/operators.php:308 admin/samplesearch.php:96 #: admin/operators.php:308 admin/samplesearch.php:96
#: admin/supervisorchat.php:74 admin/questionnairelist.php:380 #: admin/supervisorchat.php:74 admin/questionnairelist.php:385
#: admin/questionnairelist.php:383 admin/questionnairelist.php:387 #: admin/questionnairelist.php:388 admin/questionnairelist.php:392
#: admin/questionnairelist.php:391 admin/questionnairelist.php:395 #: admin/questionnairelist.php:396 admin/questionnairelist.php:400
#: admin/operatorlist.php:239 admin/operatorlist.php:251 #: admin/operatorlist.php:239 admin/operatorlist.php:251
#: admin/operatorlist.php:255 admin/assignsample.php:173 #: admin/operatorlist.php:255 admin/assignsample.php:224
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:268 admin/supervisor.php:185 admin/quotarow.php:392 #: admin/assignsample.php:319 admin/assignsample.php:325
#: admin/quotarow.php:596 admin/new.php:208 admin/new.php:215 #: admin/supervisor.php:185 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@@ -1088,14 +1063,14 @@ msgstr ""
#: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294 #: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294
#: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178 #: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178
#: admin/callhistory.php:124 admin/callhistory.php:149 #: admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:152 #: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:203
#: admin/assignsample.php:228 admin/supervisor.php:298 admin/quotarow.php:306 #: admin/assignsample.php:279 admin/supervisor.php:298 admin/quotarow.php:306
#: admin/casestatus.php:116 admin/casestatus.php:234 #: admin/casestatus.php:116 admin/casestatus.php:234
msgid "Sample" msgid "Sample"
msgstr "" msgstr ""
#: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149 #: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:151 #: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:202
#: admin/quotarow.php:288 admin/casestatus.php:231 #: admin/quotarow.php:288 admin/casestatus.php:231
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
#: admin/new.php:127 admin/new.php:135 shifts.php:103 #: admin/new.php:127 admin/new.php:135 shifts.php:103
@@ -1256,7 +1231,7 @@ msgstr ""
msgid "Delete ?" msgid "Delete ?"
msgstr "" msgstr ""
#: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:179 #: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:230
#: admin/quotarow.php:394 admin/extensionstatus.php:202 #: admin/quotarow.php:394 admin/extensionstatus.php:202
#: admin/displayappointments.php:231 #: admin/displayappointments.php:231
msgid "Save changes" msgid "Save changes"
@@ -1416,7 +1391,8 @@ msgid "Added operator :"
msgstr "" msgstr ""
#: admin/operators.php:150 #: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgid ""
"FreePBX needs to be reloaded for the new VoIP extension to take effect"
msgstr "" msgstr ""
#: admin/operators.php:172 #: admin/operators.php:172
@@ -1442,7 +1418,7 @@ msgstr ""
#: admin/operators.php:242 admin/clientquestionnaire.php:238 #: admin/operators.php:242 admin/clientquestionnaire.php:238
#: admin/operatorlist.php:200 admin/operatorlist.php:372 #: admin/operatorlist.php:200 admin/operatorlist.php:372
#: admin/operatorskill.php:244 admin/operatorquestionnaire.php:242 #: admin/operatorskill.php:246 admin/operatorquestionnaire.php:242
msgid "Username" msgid "Username"
msgstr "" msgstr ""
@@ -1464,8 +1440,8 @@ msgid "characters"
msgstr "" msgstr ""
#: admin/operators.php:267 admin/operators.php:276 #: admin/operators.php:267 admin/operators.php:276
#: admin/questionnairelist.php:375 admin/operatorlist.php:225 #: admin/questionnairelist.php:380 admin/operatorlist.php:225
#: admin/operatorlist.php:233 admin/assignsample.php:228 #: admin/operatorlist.php:233 admin/assignsample.php:279
#: admin/quotarow.php:582 admin/shiftreport.php:104 #: admin/quotarow.php:582 admin/shiftreport.php:104
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
msgid "Edit" msgid "Edit"
@@ -1486,15 +1462,16 @@ msgstr ""
#: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300 #: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300
#: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74 #: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74
#: admin/questionnairelist.php:380 admin/questionnairelist.php:383 #: admin/questionnairelist.php:385 admin/questionnairelist.php:388
#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 #: admin/questionnairelist.php:392 admin/questionnairelist.php:396
#: admin/questionnairelist.php:395 admin/operatorlist.php:239 #: admin/questionnairelist.php:400 admin/operatorlist.php:239
#: admin/operatorlist.php:251 admin/operatorlist.php:255 #: admin/operatorlist.php:251 admin/operatorlist.php:255
#: admin/assignsample.php:173 admin/assignsample.php:174 #: admin/assignsample.php:224 admin/assignsample.php:225
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:265 admin/assignsample.php:268 #: admin/assignsample.php:316 admin/assignsample.php:319
#: admin/quotarow.php:392 admin/quotarow.php:596 admin/new.php:208 #: admin/assignsample.php:325 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:215 admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "No" msgid "No"
msgstr "" msgstr ""
@@ -1528,7 +1505,7 @@ msgstr ""
#: admin/quotareport.php:111 admin/assigntimeslots.php:156 #: admin/quotareport.php:111 admin/assigntimeslots.php:156
#: admin/questionnaireprefill.php:100 admin/outcomes.php:68 #: admin/questionnaireprefill.php:100 admin/outcomes.php:68
#: admin/addshift.php:168 admin/assignsample.php:204 #: admin/addshift.php:168 admin/assignsample.php:255
msgid "Select a questionnaire" msgid "Select a questionnaire"
msgstr "" msgstr ""
@@ -2016,136 +1993,140 @@ msgstr ""
msgid "Update" msgid "Update"
msgstr "" msgstr ""
#: admin/questionnairelist.php:347 #: admin/questionnairelist.php:348
msgid "Modify Questionnaire " msgid "Modify Questionnaire "
msgstr "" msgstr ""
#: admin/questionnairelist.php:370 #: admin/questionnairelist.php:370
msgid "Assigned survey"
msgstr ""
#: admin/questionnairelist.php:374
msgid "Edit instrument in Limesurvey" msgid "Edit instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:375 admin/questionnairelist.php:376 #: admin/questionnairelist.php:380 admin/questionnairelist.php:381
#: admin/new.php:154 admin/new.php:156 #: admin/new.php:162 admin/new.php:164
msgid "Name for questionnaire:" msgid "Name for questionnaire:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:379 admin/new.php:206 #: admin/questionnairelist.php:384 admin/new.php:197
msgid "Restrict appointments to shifts?" msgid "Restrict appointments to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:382 admin/new.php:213 #: admin/questionnairelist.php:387 admin/new.php:204
msgid "Restrict work to shifts?" msgid "Restrict work to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:386 admin/new.php:220 #: admin/questionnairelist.php:391 admin/new.php:211
msgid "Questionnaire for testing only?" msgid "Questionnaire for testing only?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:390 admin/new.php:227 #: admin/questionnairelist.php:395 admin/new.php:218
msgid "Allow operators to generate referrals?" msgid "Allow operators to generate referrals?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:394 admin/new.php:234 #: admin/questionnairelist.php:399 admin/new.php:225
msgid "Allow for respondent self completion via email invitation?" msgid "Allow for respondent self completion via email invitation?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:399 admin/new.php:242 #: admin/questionnairelist.php:404 admin/new.php:233
msgid "Questionnaire display mode for respondent" msgid "Questionnaire display mode for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:402 admin/new.php:245 #: admin/questionnairelist.php:407 admin/new.php:236
msgid "All in one" msgid "All in one"
msgstr "" msgstr ""
#: admin/questionnairelist.php:403 admin/new.php:246 #: admin/questionnairelist.php:408 admin/new.php:237
msgid "Question by question" msgid "Question by question"
msgstr "" msgstr ""
#: admin/questionnairelist.php:404 admin/new.php:247 #: admin/questionnairelist.php:409 admin/new.php:238
msgid "Group at a time" msgid "Group at a time"
msgstr "" msgstr ""
#: admin/questionnairelist.php:409 admin/new.php:252 #: admin/questionnairelist.php:414 admin/new.php:243
msgid "Limesurvey template for respondent" msgid "Limesurvey template for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:428 admin/new.php:270 #: admin/questionnairelist.php:433 admin/new.php:261
msgid "URL to forward respondents on self completion (required)" msgid "URL to forward respondents on self completion (required)"
msgstr "" msgstr ""
#: admin/questionnairelist.php:439 admin/questionnairelist.php:449 #: admin/questionnairelist.php:444 admin/questionnairelist.php:454
#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 #: admin/questionnairelist.php:464 admin/questionnairelist.php:474
#: admin/questionnairelist.php:485 admin/questionnairelist.php:495 #: admin/questionnairelist.php:490 admin/questionnairelist.php:500
#: admin/new.php:306 admin/new.php:316 admin/new.php:326 admin/new.php:336 #: admin/new.php:297 admin/new.php:307 admin/new.php:317 admin/new.php:327
#: admin/new.php:348 admin/new.php:358 #: admin/new.php:339 admin/new.php:349
msgid "Expand/Collapse" msgid "Expand/Collapse"
msgstr "" msgstr ""
#: admin/questionnairelist.php:440 admin/new.php:307 #: admin/questionnairelist.php:445 admin/new.php:298
msgid "Respondent selection introduction:" msgid "Respondent selection introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:450 admin/new.php:317 #: admin/questionnairelist.php:455 admin/new.php:308
msgid "Respondent selection project introduction:" msgid "Respondent selection project introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:460 admin/new.php:327 #: admin/questionnairelist.php:465 admin/new.php:318
msgid "Respondent selection callback (already started questionnaire):" msgid "Respondent selection callback (already started questionnaire):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:470 admin/new.php:337 #: admin/questionnairelist.php:475 admin/new.php:328
msgid "Message to leave on an answering machine:" msgid "Message to leave on an answering machine:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:480 #: admin/questionnairelist.php:485
msgid "Edit respondent selection instrument in Limesurvey" msgid "Edit respondent selection instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:486 admin/new.php:349 #: admin/questionnairelist.php:491 admin/new.php:340
msgid "Project end text (thank you screen):" msgid "Project end text (thank you screen):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:496 admin/new.php:359 #: admin/questionnairelist.php:501 admin/new.php:350
msgid "Project information for interviewers/operators:" msgid "Project information for interviewers/operators:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:504 #: admin/questionnairelist.php:509
msgid "Update Questionnaire" msgid "Update Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:518 #: admin/questionnairelist.php:523
msgid "Delete Questionnaire" msgid "Delete Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:520 #: admin/questionnairelist.php:525
msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgid "Any collected data and the limesurvey instrument will NOT be deleted"
msgstr "" msgstr ""
#: admin/questionnairelist.php:521 #: admin/questionnairelist.php:526
msgid "" msgid ""
"The questionnaire will be deleted from queXS including call history, cases, " "The questionnaire will be deleted from queXS including call history, cases, "
"case notes, respondent details, appointments and the links between " "case notes, respondent details, appointments and the links between "
"operators, clients and the questionnaire" "operators, clients and the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:522 #: admin/questionnairelist.php:527
msgid "Please confirm you wish to delete the questionnaire" msgid "Please confirm you wish to delete the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:525 #: admin/questionnairelist.php:530
msgid "Delete this questionnaire" msgid "Delete this questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:531 admin/index.php:100 admin/new.php:136 #: admin/questionnairelist.php:536 admin/index.php:100 admin/new.php:136
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Questionnaire management" msgid "Questionnaire management"
msgstr "" msgstr ""
#: admin/questionnairelist.php:534 admin/index.php:99 admin/new.php:42 #: admin/questionnairelist.php:539 admin/index.php:99 admin/new.php:42
msgid "Create a new questionnaire" msgid "Create a new questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:552 #: admin/questionnairelist.php:557
msgid "Edit Lime survey" msgid "Edit Lime survey"
msgstr "" msgstr ""
@@ -2358,7 +2339,7 @@ msgstr ""
msgid "Select columns to import" msgid "Select columns to import"
msgstr "" msgstr ""
#: admin/import.php:97 admin/import.php:145 admin/assignsample.php:272 #: admin/import.php:97 admin/import.php:145 admin/assignsample.php:330
msgid "Add sample" msgid "Add sample"
msgstr "" msgstr ""
@@ -2379,7 +2360,7 @@ msgid "Enter new sample name..."
msgstr "" msgstr ""
#: admin/index.php:50 #: admin/index.php:50
msgid "Administrative Tools" msgid "queXS Administration"
msgstr "" msgstr ""
#: admin/index.php:67 #: admin/index.php:67
@@ -2410,11 +2391,11 @@ msgstr ""
msgid "Questionnairies" msgid "Questionnairies"
msgstr "" msgstr ""
#: admin/index.php:98 admin/new.php:177 admin/new.php:181 #: admin/index.php:98 admin/new.php:178 admin/new.php:372
msgid "Create an instrument in Limesurvey" msgid "Create an instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/index.php:101 #: admin/index.php:101 admin/new.php:374
msgid "Administer instruments with Limesurvey" msgid "Administer instruments with Limesurvey"
msgstr "" msgstr ""
@@ -2467,7 +2448,7 @@ msgstr ""
msgid "Assign operators to questionnaires" msgid "Assign operators to questionnaires"
msgstr "" msgstr ""
#: admin/index.php:134 admin/operatorskill.php:268 #: admin/index.php:134 admin/operatorskill.php:270
msgid "Modify operator skills" msgid "Modify operator skills"
msgstr "" msgstr ""
@@ -2688,82 +2669,89 @@ msgstr ""
msgid "Code value" msgid "Code value"
msgstr "" msgstr ""
#: admin/assignsample.php:131 #: admin/assignsample.php:182
msgid "Edit assignment parameters" msgid "Edit assignment parameters"
msgstr "" msgstr ""
#: admin/assignsample.php:132 admin/assignsample.php:201 #: admin/assignsample.php:183 admin/assignsample.php:252
msgid "Assign samples to questionnaire: " msgid "Assign samples to questionnaire: "
msgstr "" msgstr ""
#: admin/assignsample.php:163 admin/assignsample.php:228 #: admin/assignsample.php:214 admin/assignsample.php:279
#: admin/assignsample.php:251 #: admin/assignsample.php:302
msgid "Max calls" msgid "Max calls"
msgstr "" msgstr ""
#: admin/assignsample.php:165 admin/assignsample.php:168 #: admin/assignsample.php:216 admin/assignsample.php:219
#: admin/assignsample.php:253 admin/assignsample.php:257 #: admin/assignsample.php:304 admin/assignsample.php:308
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: admin/assignsample.php:166 admin/assignsample.php:228 #: admin/assignsample.php:217 admin/assignsample.php:279
#: admin/assignsample.php:255 #: admin/assignsample.php:306
msgid "Max call attempts" msgid "Max call attempts"
msgstr "" msgstr ""
#: admin/assignsample.php:169 admin/assignsample.php:259 #: admin/assignsample.php:220 admin/assignsample.php:310
msgid "Number of answering machine messages to leave per case" msgid "Number of answering machine messages to leave per case"
msgstr "" msgstr ""
#: admin/assignsample.php:171 admin/assignsample.php:261 #: admin/assignsample.php:222 admin/assignsample.php:312
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: admin/assignsample.php:172 admin/assignsample.php:263 #: admin/assignsample.php:223 admin/assignsample.php:314
msgid "Select from sample randomly?" msgid "Select from sample randomly?"
msgstr "" msgstr ""
#: admin/assignsample.php:174 admin/assignsample.php:265 #: admin/assignsample.php:225 admin/assignsample.php:316
msgid "Sequentially" msgid "Sequentially"
msgstr "" msgstr ""
#: admin/assignsample.php:175 admin/assignsample.php:228 #: admin/assignsample.php:226 admin/assignsample.php:279
#: admin/assignsample.php:267 #: admin/assignsample.php:318
msgid "Allow new numbers to be drawn?" msgid "Allow new numbers to be drawn?"
msgstr "" msgstr ""
#: admin/assignsample.php:200 #: admin/assignsample.php:251
msgid "List & Add Sample" msgid "List & Add Sample"
msgstr "" msgstr ""
#: admin/assignsample.php:211 #: admin/assignsample.php:262
msgid "Samples selected for this questionnaire" msgid "Samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Answering machine messages" msgid "Answering machine messages"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Selection type" msgid "Selection type"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Unassign sample" msgid "Unassign sample"
msgstr "" msgstr ""
#: admin/assignsample.php:230 #: admin/assignsample.php:281
msgid "No samples selected for this questionnaire" msgid "No samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:244 #: admin/assignsample.php:295
msgid "Add a sample to this questionnaire:" msgid "Add a sample to this questionnaire:"
msgstr "" msgstr ""
#: admin/assignsample.php:247 #: admin/assignsample.php:298
msgid "Select sample:" msgid "Select sample:"
msgstr "" msgstr ""
#: admin/assignsample.php:324
msgid ""
"Generate cases for all sample records and set outcome to 'Self completion "
"email invitation sent'? (Ideal if you intend to send an email invitation to "
"sample members before attempting to call using queXS)"
msgstr ""
#: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98 #: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98
msgid "Case id:" msgid "Case id:"
msgstr "شماره کیس:" msgstr "شماره کیس:"
@@ -2776,7 +2764,7 @@ msgstr ""
msgid "Select case" msgid "Select case"
msgstr "" msgstr ""
#: admin/supervisor.php:142 admin/new.php:180 #: admin/supervisor.php:142 admin/new.php:177 admin/new.php:373
msgid "or" msgid "or"
msgstr "" msgstr ""
@@ -2788,7 +2776,7 @@ msgstr ""
msgid "Set an outcome for this call" msgid "Set an outcome for this call"
msgstr "" msgstr ""
#: admin/supervisor.php:166 #: admin/supervisor.php:166 admin/new.php:359
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@@ -3353,11 +3341,11 @@ msgstr ""
msgid "No, Thank you, go to" msgid "No, Thank you, go to"
msgstr "" msgstr ""
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Go to" msgid "Go to"
msgstr "" msgstr ""
#: admin/new.php:156 #: admin/new.php:164
msgid "Enter New questionnaire name.." msgid "Enter New questionnaire name.."
msgstr "" msgstr ""
@@ -3365,26 +3353,30 @@ msgstr ""
msgid "Select limesurvey instrument:" msgid "Select limesurvey instrument:"
msgstr "" msgstr ""
#: admin/new.php:174 admin/new.php:199 #: admin/new.php:173 admin/new.php:190
msgid "Existing instrument:" msgid "Survey"
msgstr "" msgstr ""
#: admin/new.php:186 #: admin/new.php:183
msgid "Respondent selection type:" msgid "Respondent selection type:"
msgstr "" msgstr ""
#: admin/new.php:189 #: admin/new.php:186
msgid "No respondent selection (go straight to questionnaire)" msgid "No respondent selection (go straight to questionnaire)"
msgstr "" msgstr ""
#: admin/new.php:190 #: admin/new.php:187
msgid "Use basic respondent selection text (below)" msgid "Use basic respondent selection text (below)"
msgstr "" msgstr ""
#: admin/new.php:371 #: admin/new.php:362
msgid "Create Questionnaire" msgid "Create Questionnaire"
msgstr "" msgstr ""
#: admin/new.php:371
msgid "NO active Lime surveys available"
msgstr ""
#: admin/databasestrings.php:32 rs_intro_interface2.php:76 #: admin/databasestrings.php:32 rs_intro_interface2.php:76
msgid "Not attempted or worked" msgid "Not attempted or worked"
msgstr "" msgstr ""
@@ -3614,11 +3606,19 @@ msgid "Self completed online"
msgstr "" msgstr ""
#: admin/databasestrings.php:91 #: admin/databasestrings.php:91
msgid "Max call attempts reached" msgid "Max call attempts reached (Eligible)"
msgstr "" msgstr ""
#: admin/databasestrings.php:92 #: admin/databasestrings.php:92
msgid "Max calls reached" msgid "Max calls reached (Eligible)"
msgstr ""
#: admin/databasestrings.php:93
msgid "Max call attempts reached (Unknown eligibility)"
msgstr ""
#: admin/databasestrings.php:94
msgid "Max calls reached (Unknown eligibility)"
msgstr "" msgstr ""
#: call_interface2.php:116 #: call_interface2.php:116

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: quexs\n" "Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2015-08-04 12:27+1000\n" "POT-Creation-Date: 2015-08-10 16:24+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: French <fr@li.org>\n" "Language-Team: French <fr@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-08-04 03:56+0000\n" "X-Launchpad-Export-Date: 2015-08-31 02:56+0000\n"
"X-Generator: Launchpad (build 17656)\n" "X-Generator: Launchpad (build 17690)\n"
#: appointment.php:69 #: appointment.php:69
msgid "Appointment error" msgid "Appointment error"
@@ -149,32 +149,6 @@ msgstr ""
msgid "Show to operator?" msgid "Show to operator?"
msgstr "" msgstr ""
#: functions/functions.freepbx.php:138
#, php-format
msgid "Reload failed because retrieve_conf encountered an error: %s"
msgstr ""
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr ""
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
msgstr ""
#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 #: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning" msgid "morning"
msgstr "" msgstr ""
@@ -187,7 +161,7 @@ msgstr ""
msgid "evening" msgid "evening"
msgstr "" msgstr ""
#: functions/functions.operator.php:905 #: functions/functions.operator.php:972
msgid "" msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS " "ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system." "cannot determine which user is accessing the system."
@@ -510,7 +484,7 @@ msgstr ""
#: admin/operatorlist.php:184 admin/operatorlist.php:372 #: admin/operatorlist.php:184 admin/operatorlist.php:372
#: admin/casesbyoutcome.php:88 admin/supervisor.php:372 #: admin/casesbyoutcome.php:88 admin/supervisor.php:372
#: admin/supervisor.php:399 admin/supervisor.php:416 #: admin/supervisor.php:399 admin/supervisor.php:416
#: admin/operatorskill.php:244 admin/operatorperformance.php:81 #: admin/operatorskill.php:246 admin/operatorperformance.php:81
#: admin/operatorperformance.php:104 admin/shiftreport.php:104 #: admin/operatorperformance.php:104 admin/shiftreport.php:104
#: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242 #: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242
msgid "Operator" msgid "Operator"
@@ -539,12 +513,12 @@ msgid "Add note"
msgstr "Ajouter une note" msgstr "Ajouter une note"
#: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495 #: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495
#: admin/samplesearch.php:102 admin/questionnairelist.php:368 #: admin/samplesearch.php:102 admin/questionnairelist.php:370
#: admin/questionnairelist.php:503 admin/questionnairelist.php:525 #: admin/questionnairelist.php:508 admin/questionnairelist.php:530
#: admin/questionnairelist.php:533 admin/callhistory.php:137 #: admin/questionnairelist.php:538 admin/callhistory.php:137
#: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43 #: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43
#: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54 #: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54
#: admin/assignsample.php:150 admin/assignsample.php:203 #: admin/assignsample.php:201 admin/assignsample.php:254
#: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95 #: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95
#: contactdetails.php:92 #: contactdetails.php:92
msgid "Go back" msgid "Go back"
@@ -598,15 +572,16 @@ msgstr ""
#: waitnextcase_interface2.php:136 admin/operators.php:284 #: waitnextcase_interface2.php:136 admin/operators.php:284
#: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304 #: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304
#: admin/operators.php:308 admin/samplesearch.php:96 #: admin/operators.php:308 admin/samplesearch.php:96
#: admin/supervisorchat.php:74 admin/questionnairelist.php:380 #: admin/supervisorchat.php:74 admin/questionnairelist.php:385
#: admin/questionnairelist.php:383 admin/questionnairelist.php:387 #: admin/questionnairelist.php:388 admin/questionnairelist.php:392
#: admin/questionnairelist.php:391 admin/questionnairelist.php:395 #: admin/questionnairelist.php:396 admin/questionnairelist.php:400
#: admin/operatorlist.php:239 admin/operatorlist.php:251 #: admin/operatorlist.php:239 admin/operatorlist.php:251
#: admin/operatorlist.php:255 admin/assignsample.php:173 #: admin/operatorlist.php:255 admin/assignsample.php:224
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:268 admin/supervisor.php:185 admin/quotarow.php:392 #: admin/assignsample.php:319 admin/assignsample.php:325
#: admin/quotarow.php:596 admin/new.php:208 admin/new.php:215 #: admin/supervisor.php:185 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@@ -1084,14 +1059,14 @@ msgstr ""
#: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294 #: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294
#: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178 #: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178
#: admin/callhistory.php:124 admin/callhistory.php:149 #: admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:152 #: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:203
#: admin/assignsample.php:228 admin/supervisor.php:298 admin/quotarow.php:306 #: admin/assignsample.php:279 admin/supervisor.php:298 admin/quotarow.php:306
#: admin/casestatus.php:116 admin/casestatus.php:234 #: admin/casestatus.php:116 admin/casestatus.php:234
msgid "Sample" msgid "Sample"
msgstr "Échantillon" msgstr "Échantillon"
#: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149 #: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:151 #: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:202
#: admin/quotarow.php:288 admin/casestatus.php:231 #: admin/quotarow.php:288 admin/casestatus.php:231
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
#: admin/new.php:127 admin/new.php:135 shifts.php:103 #: admin/new.php:127 admin/new.php:135 shifts.php:103
@@ -1252,7 +1227,7 @@ msgstr ""
msgid "Delete ?" msgid "Delete ?"
msgstr "" msgstr ""
#: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:179 #: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:230
#: admin/quotarow.php:394 admin/extensionstatus.php:202 #: admin/quotarow.php:394 admin/extensionstatus.php:202
#: admin/displayappointments.php:231 #: admin/displayappointments.php:231
msgid "Save changes" msgid "Save changes"
@@ -1412,7 +1387,8 @@ msgid "Added operator :"
msgstr "" msgstr ""
#: admin/operators.php:150 #: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgid ""
"FreePBX needs to be reloaded for the new VoIP extension to take effect"
msgstr "" msgstr ""
#: admin/operators.php:172 #: admin/operators.php:172
@@ -1438,7 +1414,7 @@ msgstr ""
#: admin/operators.php:242 admin/clientquestionnaire.php:238 #: admin/operators.php:242 admin/clientquestionnaire.php:238
#: admin/operatorlist.php:200 admin/operatorlist.php:372 #: admin/operatorlist.php:200 admin/operatorlist.php:372
#: admin/operatorskill.php:244 admin/operatorquestionnaire.php:242 #: admin/operatorskill.php:246 admin/operatorquestionnaire.php:242
msgid "Username" msgid "Username"
msgstr "" msgstr ""
@@ -1460,8 +1436,8 @@ msgid "characters"
msgstr "" msgstr ""
#: admin/operators.php:267 admin/operators.php:276 #: admin/operators.php:267 admin/operators.php:276
#: admin/questionnairelist.php:375 admin/operatorlist.php:225 #: admin/questionnairelist.php:380 admin/operatorlist.php:225
#: admin/operatorlist.php:233 admin/assignsample.php:228 #: admin/operatorlist.php:233 admin/assignsample.php:279
#: admin/quotarow.php:582 admin/shiftreport.php:104 #: admin/quotarow.php:582 admin/shiftreport.php:104
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
msgid "Edit" msgid "Edit"
@@ -1482,15 +1458,16 @@ msgstr ""
#: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300 #: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300
#: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74 #: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74
#: admin/questionnairelist.php:380 admin/questionnairelist.php:383 #: admin/questionnairelist.php:385 admin/questionnairelist.php:388
#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 #: admin/questionnairelist.php:392 admin/questionnairelist.php:396
#: admin/questionnairelist.php:395 admin/operatorlist.php:239 #: admin/questionnairelist.php:400 admin/operatorlist.php:239
#: admin/operatorlist.php:251 admin/operatorlist.php:255 #: admin/operatorlist.php:251 admin/operatorlist.php:255
#: admin/assignsample.php:173 admin/assignsample.php:174 #: admin/assignsample.php:224 admin/assignsample.php:225
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:265 admin/assignsample.php:268 #: admin/assignsample.php:316 admin/assignsample.php:319
#: admin/quotarow.php:392 admin/quotarow.php:596 admin/new.php:208 #: admin/assignsample.php:325 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:215 admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "No" msgid "No"
msgstr "" msgstr ""
@@ -1524,7 +1501,7 @@ msgstr ""
#: admin/quotareport.php:111 admin/assigntimeslots.php:156 #: admin/quotareport.php:111 admin/assigntimeslots.php:156
#: admin/questionnaireprefill.php:100 admin/outcomes.php:68 #: admin/questionnaireprefill.php:100 admin/outcomes.php:68
#: admin/addshift.php:168 admin/assignsample.php:204 #: admin/addshift.php:168 admin/assignsample.php:255
msgid "Select a questionnaire" msgid "Select a questionnaire"
msgstr "" msgstr ""
@@ -2012,136 +1989,140 @@ msgstr ""
msgid "Update" msgid "Update"
msgstr "" msgstr ""
#: admin/questionnairelist.php:347 #: admin/questionnairelist.php:348
msgid "Modify Questionnaire " msgid "Modify Questionnaire "
msgstr "" msgstr ""
#: admin/questionnairelist.php:370 #: admin/questionnairelist.php:370
msgid "Assigned survey"
msgstr ""
#: admin/questionnairelist.php:374
msgid "Edit instrument in Limesurvey" msgid "Edit instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:375 admin/questionnairelist.php:376 #: admin/questionnairelist.php:380 admin/questionnairelist.php:381
#: admin/new.php:154 admin/new.php:156 #: admin/new.php:162 admin/new.php:164
msgid "Name for questionnaire:" msgid "Name for questionnaire:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:379 admin/new.php:206 #: admin/questionnairelist.php:384 admin/new.php:197
msgid "Restrict appointments to shifts?" msgid "Restrict appointments to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:382 admin/new.php:213 #: admin/questionnairelist.php:387 admin/new.php:204
msgid "Restrict work to shifts?" msgid "Restrict work to shifts?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:386 admin/new.php:220 #: admin/questionnairelist.php:391 admin/new.php:211
msgid "Questionnaire for testing only?" msgid "Questionnaire for testing only?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:390 admin/new.php:227 #: admin/questionnairelist.php:395 admin/new.php:218
msgid "Allow operators to generate referrals?" msgid "Allow operators to generate referrals?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:394 admin/new.php:234 #: admin/questionnairelist.php:399 admin/new.php:225
msgid "Allow for respondent self completion via email invitation?" msgid "Allow for respondent self completion via email invitation?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:399 admin/new.php:242 #: admin/questionnairelist.php:404 admin/new.php:233
msgid "Questionnaire display mode for respondent" msgid "Questionnaire display mode for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:402 admin/new.php:245 #: admin/questionnairelist.php:407 admin/new.php:236
msgid "All in one" msgid "All in one"
msgstr "" msgstr ""
#: admin/questionnairelist.php:403 admin/new.php:246 #: admin/questionnairelist.php:408 admin/new.php:237
msgid "Question by question" msgid "Question by question"
msgstr "" msgstr ""
#: admin/questionnairelist.php:404 admin/new.php:247 #: admin/questionnairelist.php:409 admin/new.php:238
msgid "Group at a time" msgid "Group at a time"
msgstr "" msgstr ""
#: admin/questionnairelist.php:409 admin/new.php:252 #: admin/questionnairelist.php:414 admin/new.php:243
msgid "Limesurvey template for respondent" msgid "Limesurvey template for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:428 admin/new.php:270 #: admin/questionnairelist.php:433 admin/new.php:261
msgid "URL to forward respondents on self completion (required)" msgid "URL to forward respondents on self completion (required)"
msgstr "" msgstr ""
#: admin/questionnairelist.php:439 admin/questionnairelist.php:449 #: admin/questionnairelist.php:444 admin/questionnairelist.php:454
#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 #: admin/questionnairelist.php:464 admin/questionnairelist.php:474
#: admin/questionnairelist.php:485 admin/questionnairelist.php:495 #: admin/questionnairelist.php:490 admin/questionnairelist.php:500
#: admin/new.php:306 admin/new.php:316 admin/new.php:326 admin/new.php:336 #: admin/new.php:297 admin/new.php:307 admin/new.php:317 admin/new.php:327
#: admin/new.php:348 admin/new.php:358 #: admin/new.php:339 admin/new.php:349
msgid "Expand/Collapse" msgid "Expand/Collapse"
msgstr "" msgstr ""
#: admin/questionnairelist.php:440 admin/new.php:307 #: admin/questionnairelist.php:445 admin/new.php:298
msgid "Respondent selection introduction:" msgid "Respondent selection introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:450 admin/new.php:317 #: admin/questionnairelist.php:455 admin/new.php:308
msgid "Respondent selection project introduction:" msgid "Respondent selection project introduction:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:460 admin/new.php:327 #: admin/questionnairelist.php:465 admin/new.php:318
msgid "Respondent selection callback (already started questionnaire):" msgid "Respondent selection callback (already started questionnaire):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:470 admin/new.php:337 #: admin/questionnairelist.php:475 admin/new.php:328
msgid "Message to leave on an answering machine:" msgid "Message to leave on an answering machine:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:480 #: admin/questionnairelist.php:485
msgid "Edit respondent selection instrument in Limesurvey" msgid "Edit respondent selection instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:486 admin/new.php:349 #: admin/questionnairelist.php:491 admin/new.php:340
msgid "Project end text (thank you screen):" msgid "Project end text (thank you screen):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:496 admin/new.php:359 #: admin/questionnairelist.php:501 admin/new.php:350
msgid "Project information for interviewers/operators:" msgid "Project information for interviewers/operators:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:504 #: admin/questionnairelist.php:509
msgid "Update Questionnaire" msgid "Update Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:518 #: admin/questionnairelist.php:523
msgid "Delete Questionnaire" msgid "Delete Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:520 #: admin/questionnairelist.php:525
msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgid "Any collected data and the limesurvey instrument will NOT be deleted"
msgstr "" msgstr ""
#: admin/questionnairelist.php:521 #: admin/questionnairelist.php:526
msgid "" msgid ""
"The questionnaire will be deleted from queXS including call history, cases, " "The questionnaire will be deleted from queXS including call history, cases, "
"case notes, respondent details, appointments and the links between " "case notes, respondent details, appointments and the links between "
"operators, clients and the questionnaire" "operators, clients and the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:522 #: admin/questionnairelist.php:527
msgid "Please confirm you wish to delete the questionnaire" msgid "Please confirm you wish to delete the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:525 #: admin/questionnairelist.php:530
msgid "Delete this questionnaire" msgid "Delete this questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:531 admin/index.php:100 admin/new.php:136 #: admin/questionnairelist.php:536 admin/index.php:100 admin/new.php:136
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Questionnaire management" msgid "Questionnaire management"
msgstr "" msgstr ""
#: admin/questionnairelist.php:534 admin/index.php:99 admin/new.php:42 #: admin/questionnairelist.php:539 admin/index.php:99 admin/new.php:42
msgid "Create a new questionnaire" msgid "Create a new questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:552 #: admin/questionnairelist.php:557
msgid "Edit Lime survey" msgid "Edit Lime survey"
msgstr "" msgstr ""
@@ -2354,7 +2335,7 @@ msgstr ""
msgid "Select columns to import" msgid "Select columns to import"
msgstr "" msgstr ""
#: admin/import.php:97 admin/import.php:145 admin/assignsample.php:272 #: admin/import.php:97 admin/import.php:145 admin/assignsample.php:330
msgid "Add sample" msgid "Add sample"
msgstr "" msgstr ""
@@ -2375,7 +2356,7 @@ msgid "Enter new sample name..."
msgstr "" msgstr ""
#: admin/index.php:50 #: admin/index.php:50
msgid "Administrative Tools" msgid "queXS Administration"
msgstr "" msgstr ""
#: admin/index.php:67 #: admin/index.php:67
@@ -2406,11 +2387,11 @@ msgstr ""
msgid "Questionnairies" msgid "Questionnairies"
msgstr "" msgstr ""
#: admin/index.php:98 admin/new.php:177 admin/new.php:181 #: admin/index.php:98 admin/new.php:178 admin/new.php:372
msgid "Create an instrument in Limesurvey" msgid "Create an instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/index.php:101 #: admin/index.php:101 admin/new.php:374
msgid "Administer instruments with Limesurvey" msgid "Administer instruments with Limesurvey"
msgstr "" msgstr ""
@@ -2463,7 +2444,7 @@ msgstr ""
msgid "Assign operators to questionnaires" msgid "Assign operators to questionnaires"
msgstr "" msgstr ""
#: admin/index.php:134 admin/operatorskill.php:268 #: admin/index.php:134 admin/operatorskill.php:270
msgid "Modify operator skills" msgid "Modify operator skills"
msgstr "" msgstr ""
@@ -2684,82 +2665,89 @@ msgstr ""
msgid "Code value" msgid "Code value"
msgstr "" msgstr ""
#: admin/assignsample.php:131 #: admin/assignsample.php:182
msgid "Edit assignment parameters" msgid "Edit assignment parameters"
msgstr "" msgstr ""
#: admin/assignsample.php:132 admin/assignsample.php:201 #: admin/assignsample.php:183 admin/assignsample.php:252
msgid "Assign samples to questionnaire: " msgid "Assign samples to questionnaire: "
msgstr "" msgstr ""
#: admin/assignsample.php:163 admin/assignsample.php:228 #: admin/assignsample.php:214 admin/assignsample.php:279
#: admin/assignsample.php:251 #: admin/assignsample.php:302
msgid "Max calls" msgid "Max calls"
msgstr "" msgstr ""
#: admin/assignsample.php:165 admin/assignsample.php:168 #: admin/assignsample.php:216 admin/assignsample.php:219
#: admin/assignsample.php:253 admin/assignsample.php:257 #: admin/assignsample.php:304 admin/assignsample.php:308
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: admin/assignsample.php:166 admin/assignsample.php:228 #: admin/assignsample.php:217 admin/assignsample.php:279
#: admin/assignsample.php:255 #: admin/assignsample.php:306
msgid "Max call attempts" msgid "Max call attempts"
msgstr "" msgstr ""
#: admin/assignsample.php:169 admin/assignsample.php:259 #: admin/assignsample.php:220 admin/assignsample.php:310
msgid "Number of answering machine messages to leave per case" msgid "Number of answering machine messages to leave per case"
msgstr "" msgstr ""
#: admin/assignsample.php:171 admin/assignsample.php:261 #: admin/assignsample.php:222 admin/assignsample.php:312
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: admin/assignsample.php:172 admin/assignsample.php:263 #: admin/assignsample.php:223 admin/assignsample.php:314
msgid "Select from sample randomly?" msgid "Select from sample randomly?"
msgstr "" msgstr ""
#: admin/assignsample.php:174 admin/assignsample.php:265 #: admin/assignsample.php:225 admin/assignsample.php:316
msgid "Sequentially" msgid "Sequentially"
msgstr "" msgstr ""
#: admin/assignsample.php:175 admin/assignsample.php:228 #: admin/assignsample.php:226 admin/assignsample.php:279
#: admin/assignsample.php:267 #: admin/assignsample.php:318
msgid "Allow new numbers to be drawn?" msgid "Allow new numbers to be drawn?"
msgstr "" msgstr ""
#: admin/assignsample.php:200 #: admin/assignsample.php:251
msgid "List & Add Sample" msgid "List & Add Sample"
msgstr "" msgstr ""
#: admin/assignsample.php:211 #: admin/assignsample.php:262
msgid "Samples selected for this questionnaire" msgid "Samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Answering machine messages" msgid "Answering machine messages"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Selection type" msgid "Selection type"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Unassign sample" msgid "Unassign sample"
msgstr "" msgstr ""
#: admin/assignsample.php:230 #: admin/assignsample.php:281
msgid "No samples selected for this questionnaire" msgid "No samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:244 #: admin/assignsample.php:295
msgid "Add a sample to this questionnaire:" msgid "Add a sample to this questionnaire:"
msgstr "" msgstr ""
#: admin/assignsample.php:247 #: admin/assignsample.php:298
msgid "Select sample:" msgid "Select sample:"
msgstr "" msgstr ""
#: admin/assignsample.php:324
msgid ""
"Generate cases for all sample records and set outcome to 'Self completion "
"email invitation sent'? (Ideal if you intend to send an email invitation to "
"sample members before attempting to call using queXS)"
msgstr ""
#: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98 #: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98
msgid "Case id:" msgid "Case id:"
msgstr "" msgstr ""
@@ -2772,7 +2760,7 @@ msgstr ""
msgid "Select case" msgid "Select case"
msgstr "" msgstr ""
#: admin/supervisor.php:142 admin/new.php:180 #: admin/supervisor.php:142 admin/new.php:177 admin/new.php:373
msgid "or" msgid "or"
msgstr "" msgstr ""
@@ -2784,7 +2772,7 @@ msgstr ""
msgid "Set an outcome for this call" msgid "Set an outcome for this call"
msgstr "" msgstr ""
#: admin/supervisor.php:166 #: admin/supervisor.php:166 admin/new.php:359
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@@ -3349,11 +3337,11 @@ msgstr ""
msgid "No, Thank you, go to" msgid "No, Thank you, go to"
msgstr "" msgstr ""
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Go to" msgid "Go to"
msgstr "" msgstr ""
#: admin/new.php:156 #: admin/new.php:164
msgid "Enter New questionnaire name.." msgid "Enter New questionnaire name.."
msgstr "" msgstr ""
@@ -3361,26 +3349,30 @@ msgstr ""
msgid "Select limesurvey instrument:" msgid "Select limesurvey instrument:"
msgstr "" msgstr ""
#: admin/new.php:174 admin/new.php:199 #: admin/new.php:173 admin/new.php:190
msgid "Existing instrument:" msgid "Survey"
msgstr "" msgstr ""
#: admin/new.php:186 #: admin/new.php:183
msgid "Respondent selection type:" msgid "Respondent selection type:"
msgstr "" msgstr ""
#: admin/new.php:189 #: admin/new.php:186
msgid "No respondent selection (go straight to questionnaire)" msgid "No respondent selection (go straight to questionnaire)"
msgstr "" msgstr ""
#: admin/new.php:190 #: admin/new.php:187
msgid "Use basic respondent selection text (below)" msgid "Use basic respondent selection text (below)"
msgstr "" msgstr ""
#: admin/new.php:371 #: admin/new.php:362
msgid "Create Questionnaire" msgid "Create Questionnaire"
msgstr "" msgstr ""
#: admin/new.php:371
msgid "NO active Lime surveys available"
msgstr ""
#: admin/databasestrings.php:32 rs_intro_interface2.php:76 #: admin/databasestrings.php:32 rs_intro_interface2.php:76
msgid "Not attempted or worked" msgid "Not attempted or worked"
msgstr "" msgstr ""
@@ -3610,11 +3602,19 @@ msgid "Self completed online"
msgstr "" msgstr ""
#: admin/databasestrings.php:91 #: admin/databasestrings.php:91
msgid "Max call attempts reached" msgid "Max call attempts reached (Eligible)"
msgstr "" msgstr ""
#: admin/databasestrings.php:92 #: admin/databasestrings.php:92
msgid "Max calls reached" msgid "Max calls reached (Eligible)"
msgstr ""
#: admin/databasestrings.php:93
msgid "Max call attempts reached (Unknown eligibility)"
msgstr ""
#: admin/databasestrings.php:94
msgid "Max calls reached (Unknown eligibility)"
msgstr "" msgstr ""
#: call_interface2.php:116 #: call_interface2.php:116

Binary file not shown.

View File

@@ -7,15 +7,15 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: quexs\n" "Project-Id-Version: quexs\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2015-08-04 12:27+1000\n" "POT-Creation-Date: 2015-08-10 16:24+1000\n"
"PO-Revision-Date: 2013-03-08 01:20+0000\n" "PO-Revision-Date: 2013-03-08 01:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Galician <gl@li.org>\n" "Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-08-04 03:56+0000\n" "X-Launchpad-Export-Date: 2015-08-31 02:56+0000\n"
"X-Generator: Launchpad (build 17656)\n" "X-Generator: Launchpad (build 17690)\n"
#: appointment.php:69 #: appointment.php:69
msgid "Appointment error" msgid "Appointment error"
@@ -147,32 +147,6 @@ msgstr ""
msgid "Show to operator?" msgid "Show to operator?"
msgstr "" msgstr ""
#: functions/functions.freepbx.php:138
#, php-format
msgid "Reload failed because retrieve_conf encountered an error: %s"
msgstr ""
#: functions/functions.freepbx.php:140
msgid "retrieve_conf failed, config not applied"
msgstr ""
#: functions/functions.freepbx.php:146
msgid ""
"Reload failed because FreePBX could not connect to the asterisk manager "
"interface."
msgstr ""
#: functions/functions.freepbx.php:165
msgid ""
"Could not reload the FOP operator panel server using the bounce_op.sh "
"script. Configuration changes may not be reflected in the panel display."
msgstr ""
#: functions/functions.freepbx.php:174
#, php-format
msgid "Exit code was %s and output was: %s"
msgstr ""
#: functions/functions.operator.php:167 include/limesurvey/quexs.php:362 #: functions/functions.operator.php:167 include/limesurvey/quexs.php:362
msgid "morning" msgid "morning"
msgstr "mañá" msgstr "mañá"
@@ -185,7 +159,7 @@ msgstr "tarde"
msgid "evening" msgid "evening"
msgstr "noite" msgstr "noite"
#: functions/functions.operator.php:905 #: functions/functions.operator.php:972
msgid "" msgid ""
"ERROR: You do not have server side authentication enabled therefore queXS " "ERROR: You do not have server side authentication enabled therefore queXS "
"cannot determine which user is accessing the system." "cannot determine which user is accessing the system."
@@ -510,7 +484,7 @@ msgstr "Esta quenda"
#: admin/operatorlist.php:184 admin/operatorlist.php:372 #: admin/operatorlist.php:184 admin/operatorlist.php:372
#: admin/casesbyoutcome.php:88 admin/supervisor.php:372 #: admin/casesbyoutcome.php:88 admin/supervisor.php:372
#: admin/supervisor.php:399 admin/supervisor.php:416 #: admin/supervisor.php:399 admin/supervisor.php:416
#: admin/operatorskill.php:244 admin/operatorperformance.php:81 #: admin/operatorskill.php:246 admin/operatorperformance.php:81
#: admin/operatorperformance.php:104 admin/shiftreport.php:104 #: admin/operatorperformance.php:104 admin/shiftreport.php:104
#: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242 #: admin/extensionstatus.php:257 admin/operatorquestionnaire.php:242
msgid "Operator" msgid "Operator"
@@ -539,12 +513,12 @@ msgid "Add note"
msgstr "Engadir unha nota" msgstr "Engadir unha nota"
#: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495 #: casenote.php:69 admin/samplelist.php:284 admin/samplelist.php:495
#: admin/samplesearch.php:102 admin/questionnairelist.php:368 #: admin/samplesearch.php:102 admin/questionnairelist.php:370
#: admin/questionnairelist.php:503 admin/questionnairelist.php:525 #: admin/questionnairelist.php:508 admin/questionnairelist.php:530
#: admin/questionnairelist.php:533 admin/callhistory.php:137 #: admin/questionnairelist.php:538 admin/callhistory.php:137
#: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43 #: admin/availability.php:121 admin/operatorlist.php:182 admin/import.php:43
#: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54 #: admin/import.php:81 admin/import.php:112 admin/casesbyoutcome.php:54
#: admin/assignsample.php:150 admin/assignsample.php:203 #: admin/assignsample.php:201 admin/assignsample.php:254
#: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95 #: admin/casestatus.php:205 admin/extensionstatus.php:185 respondent.php:95
#: contactdetails.php:92 #: contactdetails.php:92
msgid "Go back" msgid "Go back"
@@ -598,15 +572,16 @@ msgstr "Quendas actuais dispoñíbeis:"
#: waitnextcase_interface2.php:136 admin/operators.php:284 #: waitnextcase_interface2.php:136 admin/operators.php:284
#: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304 #: admin/operators.php:296 admin/operators.php:300 admin/operators.php:304
#: admin/operators.php:308 admin/samplesearch.php:96 #: admin/operators.php:308 admin/samplesearch.php:96
#: admin/supervisorchat.php:74 admin/questionnairelist.php:380 #: admin/supervisorchat.php:74 admin/questionnairelist.php:385
#: admin/questionnairelist.php:383 admin/questionnairelist.php:387 #: admin/questionnairelist.php:388 admin/questionnairelist.php:392
#: admin/questionnairelist.php:391 admin/questionnairelist.php:395 #: admin/questionnairelist.php:396 admin/questionnairelist.php:400
#: admin/operatorlist.php:239 admin/operatorlist.php:251 #: admin/operatorlist.php:239 admin/operatorlist.php:251
#: admin/operatorlist.php:255 admin/assignsample.php:173 #: admin/operatorlist.php:255 admin/assignsample.php:224
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:268 admin/supervisor.php:185 admin/quotarow.php:392 #: admin/assignsample.php:319 admin/assignsample.php:325
#: admin/quotarow.php:596 admin/new.php:208 admin/new.php:215 #: admin/supervisor.php:185 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
@@ -1093,14 +1068,14 @@ msgstr ""
#: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294 #: nocaseavailable.php:116 admin/samplelist.php:320 admin/quotareport.php:294
#: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178 #: admin/assigntimeslots.php:260 admin/outcomes.php:122 admin/outcomes.php:178
#: admin/callhistory.php:124 admin/callhistory.php:149 #: admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:152 #: admin/callhistory.php:160 admin/quota.php:131 admin/assignsample.php:203
#: admin/assignsample.php:228 admin/supervisor.php:298 admin/quotarow.php:306 #: admin/assignsample.php:279 admin/supervisor.php:298 admin/quotarow.php:306
#: admin/casestatus.php:116 admin/casestatus.php:234 #: admin/casestatus.php:116 admin/casestatus.php:234
msgid "Sample" msgid "Sample"
msgstr "Mostra" msgstr "Mostra"
#: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149 #: nocaseavailable.php:141 admin/callhistory.php:124 admin/callhistory.php:149
#: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:151 #: admin/callhistory.php:154 admin/quota.php:110 admin/assignsample.php:202
#: admin/quotarow.php:288 admin/casestatus.php:231 #: admin/quotarow.php:288 admin/casestatus.php:231
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
#: admin/new.php:127 admin/new.php:135 shifts.php:103 #: admin/new.php:127 admin/new.php:135 shifts.php:103
@@ -1266,7 +1241,7 @@ msgstr ""
msgid "Delete ?" msgid "Delete ?"
msgstr "" msgstr ""
#: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:179 #: admin/samplelist.php:346 admin/addshift.php:263 admin/assignsample.php:230
#: admin/quotarow.php:394 admin/extensionstatus.php:202 #: admin/quotarow.php:394 admin/extensionstatus.php:202
#: admin/displayappointments.php:231 #: admin/displayappointments.php:231
msgid "Save changes" msgid "Save changes"
@@ -1428,7 +1403,8 @@ msgid "Added operator :"
msgstr "" msgstr ""
#: admin/operators.php:150 #: admin/operators.php:150
msgid "FreePBX has been reloaded for the new VoIP extension to take effect" msgid ""
"FreePBX needs to be reloaded for the new VoIP extension to take effect"
msgstr "" msgstr ""
#: admin/operators.php:172 #: admin/operators.php:172
@@ -1458,7 +1434,7 @@ msgstr ""
#: admin/operators.php:242 admin/clientquestionnaire.php:238 #: admin/operators.php:242 admin/clientquestionnaire.php:238
#: admin/operatorlist.php:200 admin/operatorlist.php:372 #: admin/operatorlist.php:200 admin/operatorlist.php:372
#: admin/operatorskill.php:244 admin/operatorquestionnaire.php:242 #: admin/operatorskill.php:246 admin/operatorquestionnaire.php:242
msgid "Username" msgid "Username"
msgstr "" msgstr ""
@@ -1480,8 +1456,8 @@ msgid "characters"
msgstr "" msgstr ""
#: admin/operators.php:267 admin/operators.php:276 #: admin/operators.php:267 admin/operators.php:276
#: admin/questionnairelist.php:375 admin/operatorlist.php:225 #: admin/questionnairelist.php:380 admin/operatorlist.php:225
#: admin/operatorlist.php:233 admin/assignsample.php:228 #: admin/operatorlist.php:233 admin/assignsample.php:279
#: admin/quotarow.php:582 admin/shiftreport.php:104 #: admin/quotarow.php:582 admin/shiftreport.php:104
#: admin/displayappointments.php:258 admin/displayappointments.php:277 #: admin/displayappointments.php:258 admin/displayappointments.php:277
msgid "Edit" msgid "Edit"
@@ -1502,15 +1478,16 @@ msgstr ""
#: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300 #: admin/operators.php:284 admin/operators.php:296 admin/operators.php:300
#: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74 #: admin/operators.php:304 admin/operators.php:308 admin/supervisorchat.php:74
#: admin/questionnairelist.php:380 admin/questionnairelist.php:383 #: admin/questionnairelist.php:385 admin/questionnairelist.php:388
#: admin/questionnairelist.php:387 admin/questionnairelist.php:391 #: admin/questionnairelist.php:392 admin/questionnairelist.php:396
#: admin/questionnairelist.php:395 admin/operatorlist.php:239 #: admin/questionnairelist.php:400 admin/operatorlist.php:239
#: admin/operatorlist.php:251 admin/operatorlist.php:255 #: admin/operatorlist.php:251 admin/operatorlist.php:255
#: admin/assignsample.php:173 admin/assignsample.php:174 #: admin/assignsample.php:224 admin/assignsample.php:225
#: admin/assignsample.php:176 admin/assignsample.php:264 #: admin/assignsample.php:227 admin/assignsample.php:315
#: admin/assignsample.php:265 admin/assignsample.php:268 #: admin/assignsample.php:316 admin/assignsample.php:319
#: admin/quotarow.php:392 admin/quotarow.php:596 admin/new.php:208 #: admin/assignsample.php:325 admin/quotarow.php:392 admin/quotarow.php:596
#: admin/new.php:215 admin/new.php:222 admin/new.php:229 admin/new.php:236 #: admin/new.php:199 admin/new.php:206 admin/new.php:213 admin/new.php:220
#: admin/new.php:227
msgid "No" msgid "No"
msgstr "" msgstr ""
@@ -1544,7 +1521,7 @@ msgstr "Informe de cotas"
#: admin/quotareport.php:111 admin/assigntimeslots.php:156 #: admin/quotareport.php:111 admin/assigntimeslots.php:156
#: admin/questionnaireprefill.php:100 admin/outcomes.php:68 #: admin/questionnaireprefill.php:100 admin/outcomes.php:68
#: admin/addshift.php:168 admin/assignsample.php:204 #: admin/addshift.php:168 admin/assignsample.php:255
msgid "Select a questionnaire" msgid "Select a questionnaire"
msgstr "" msgstr ""
@@ -2035,137 +2012,141 @@ msgstr ""
msgid "Update" msgid "Update"
msgstr "" msgstr ""
#: admin/questionnairelist.php:347 #: admin/questionnairelist.php:348
msgid "Modify Questionnaire " msgid "Modify Questionnaire "
msgstr "" msgstr ""
#: admin/questionnairelist.php:370 #: admin/questionnairelist.php:370
msgid "Assigned survey"
msgstr ""
#: admin/questionnairelist.php:374
msgid "Edit instrument in Limesurvey" msgid "Edit instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:375 admin/questionnairelist.php:376 #: admin/questionnairelist.php:380 admin/questionnairelist.php:381
#: admin/new.php:154 admin/new.php:156 #: admin/new.php:162 admin/new.php:164
msgid "Name for questionnaire:" msgid "Name for questionnaire:"
msgstr "Nome para o cuestionario:" msgstr "Nome para o cuestionario:"
#: admin/questionnairelist.php:379 admin/new.php:206 #: admin/questionnairelist.php:384 admin/new.php:197
msgid "Restrict appointments to shifts?" msgid "Restrict appointments to shifts?"
msgstr "Restrinxir as rechamadas ás quendas?" msgstr "Restrinxir as rechamadas ás quendas?"
#: admin/questionnairelist.php:382 admin/new.php:213 #: admin/questionnairelist.php:387 admin/new.php:204
msgid "Restrict work to shifts?" msgid "Restrict work to shifts?"
msgstr "Restrinxir o traballo ás quendas?" msgstr "Restrinxir o traballo ás quendas?"
#: admin/questionnairelist.php:386 admin/new.php:220 #: admin/questionnairelist.php:391 admin/new.php:211
msgid "Questionnaire for testing only?" msgid "Questionnaire for testing only?"
msgstr "Cuestionario só para probas?" msgstr "Cuestionario só para probas?"
#: admin/questionnairelist.php:390 admin/new.php:227 #: admin/questionnairelist.php:395 admin/new.php:218
msgid "Allow operators to generate referrals?" msgid "Allow operators to generate referrals?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:394 admin/new.php:234 #: admin/questionnairelist.php:399 admin/new.php:225
msgid "Allow for respondent self completion via email invitation?" msgid "Allow for respondent self completion via email invitation?"
msgstr "" msgstr ""
#: admin/questionnairelist.php:399 admin/new.php:242 #: admin/questionnairelist.php:404 admin/new.php:233
msgid "Questionnaire display mode for respondent" msgid "Questionnaire display mode for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:402 admin/new.php:245 #: admin/questionnairelist.php:407 admin/new.php:236
msgid "All in one" msgid "All in one"
msgstr "" msgstr ""
#: admin/questionnairelist.php:403 admin/new.php:246 #: admin/questionnairelist.php:408 admin/new.php:237
msgid "Question by question" msgid "Question by question"
msgstr "" msgstr ""
#: admin/questionnairelist.php:404 admin/new.php:247 #: admin/questionnairelist.php:409 admin/new.php:238
msgid "Group at a time" msgid "Group at a time"
msgstr "" msgstr ""
#: admin/questionnairelist.php:409 admin/new.php:252 #: admin/questionnairelist.php:414 admin/new.php:243
msgid "Limesurvey template for respondent" msgid "Limesurvey template for respondent"
msgstr "" msgstr ""
#: admin/questionnairelist.php:428 admin/new.php:270 #: admin/questionnairelist.php:433 admin/new.php:261
msgid "URL to forward respondents on self completion (required)" msgid "URL to forward respondents on self completion (required)"
msgstr "" msgstr ""
#: admin/questionnairelist.php:439 admin/questionnairelist.php:449 #: admin/questionnairelist.php:444 admin/questionnairelist.php:454
#: admin/questionnairelist.php:459 admin/questionnairelist.php:469 #: admin/questionnairelist.php:464 admin/questionnairelist.php:474
#: admin/questionnairelist.php:485 admin/questionnairelist.php:495 #: admin/questionnairelist.php:490 admin/questionnairelist.php:500
#: admin/new.php:306 admin/new.php:316 admin/new.php:326 admin/new.php:336 #: admin/new.php:297 admin/new.php:307 admin/new.php:317 admin/new.php:327
#: admin/new.php:348 admin/new.php:358 #: admin/new.php:339 admin/new.php:349
msgid "Expand/Collapse" msgid "Expand/Collapse"
msgstr "" msgstr ""
#: admin/questionnairelist.php:440 admin/new.php:307 #: admin/questionnairelist.php:445 admin/new.php:298
msgid "Respondent selection introduction:" msgid "Respondent selection introduction:"
msgstr "Introdución da selección do/a entrevistado/a:" msgstr "Introdución da selección do/a entrevistado/a:"
#: admin/questionnairelist.php:450 admin/new.php:317 #: admin/questionnairelist.php:455 admin/new.php:308
msgid "Respondent selection project introduction:" msgid "Respondent selection project introduction:"
msgstr "Introdución do proxecto de selección do/a entrevistado/a:" msgstr "Introdución do proxecto de selección do/a entrevistado/a:"
#: admin/questionnairelist.php:460 admin/new.php:327 #: admin/questionnairelist.php:465 admin/new.php:318
msgid "Respondent selection callback (already started questionnaire):" msgid "Respondent selection callback (already started questionnaire):"
msgstr "" msgstr ""
"Rechamada de selección do/a entrevistado/a (cuestionario xa comezado)" "Rechamada de selección do/a entrevistado/a (cuestionario xa comezado)"
#: admin/questionnairelist.php:470 admin/new.php:337 #: admin/questionnairelist.php:475 admin/new.php:328
msgid "Message to leave on an answering machine:" msgid "Message to leave on an answering machine:"
msgstr "Mensaxe a deixar no contestador automático:" msgstr "Mensaxe a deixar no contestador automático:"
#: admin/questionnairelist.php:480 #: admin/questionnairelist.php:485
msgid "Edit respondent selection instrument in Limesurvey" msgid "Edit respondent selection instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/questionnairelist.php:486 admin/new.php:349 #: admin/questionnairelist.php:491 admin/new.php:340
msgid "Project end text (thank you screen):" msgid "Project end text (thank you screen):"
msgstr "" msgstr ""
#: admin/questionnairelist.php:496 admin/new.php:359 #: admin/questionnairelist.php:501 admin/new.php:350
msgid "Project information for interviewers/operators:" msgid "Project information for interviewers/operators:"
msgstr "" msgstr ""
#: admin/questionnairelist.php:504 #: admin/questionnairelist.php:509
msgid "Update Questionnaire" msgid "Update Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:518 #: admin/questionnairelist.php:523
msgid "Delete Questionnaire" msgid "Delete Questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:520 #: admin/questionnairelist.php:525
msgid "Any collected data and the limesurvey instrument will NOT be deleted" msgid "Any collected data and the limesurvey instrument will NOT be deleted"
msgstr "" msgstr ""
#: admin/questionnairelist.php:521 #: admin/questionnairelist.php:526
msgid "" msgid ""
"The questionnaire will be deleted from queXS including call history, cases, " "The questionnaire will be deleted from queXS including call history, cases, "
"case notes, respondent details, appointments and the links between " "case notes, respondent details, appointments and the links between "
"operators, clients and the questionnaire" "operators, clients and the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:522 #: admin/questionnairelist.php:527
msgid "Please confirm you wish to delete the questionnaire" msgid "Please confirm you wish to delete the questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:525 #: admin/questionnairelist.php:530
msgid "Delete this questionnaire" msgid "Delete this questionnaire"
msgstr "" msgstr ""
#: admin/questionnairelist.php:531 admin/index.php:100 admin/new.php:136 #: admin/questionnairelist.php:536 admin/index.php:100 admin/new.php:136
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Questionnaire management" msgid "Questionnaire management"
msgstr "" msgstr ""
#: admin/questionnairelist.php:534 admin/index.php:99 admin/new.php:42 #: admin/questionnairelist.php:539 admin/index.php:99 admin/new.php:42
msgid "Create a new questionnaire" msgid "Create a new questionnaire"
msgstr "Crear un cuestionario novo" msgstr "Crear un cuestionario novo"
#: admin/questionnairelist.php:552 #: admin/questionnairelist.php:557
msgid "Edit Lime survey" msgid "Edit Lime survey"
msgstr "" msgstr ""
@@ -2381,7 +2362,7 @@ msgstr ""
msgid "Select columns to import" msgid "Select columns to import"
msgstr "" msgstr ""
#: admin/import.php:97 admin/import.php:145 admin/assignsample.php:272 #: admin/import.php:97 admin/import.php:145 admin/assignsample.php:330
msgid "Add sample" msgid "Add sample"
msgstr "Engadir unha mostra" msgstr "Engadir unha mostra"
@@ -2402,8 +2383,8 @@ msgid "Enter new sample name..."
msgstr "" msgstr ""
#: admin/index.php:50 #: admin/index.php:50
msgid "Administrative Tools" msgid "queXS Administration"
msgstr "Ferramentas Administrativas" msgstr ""
#: admin/index.php:67 #: admin/index.php:67
msgid "Click to Collapse / Expand Sidebar MENU " msgid "Click to Collapse / Expand Sidebar MENU "
@@ -2433,11 +2414,11 @@ msgstr ""
msgid "Questionnairies" msgid "Questionnairies"
msgstr "" msgstr ""
#: admin/index.php:98 admin/new.php:177 admin/new.php:181 #: admin/index.php:98 admin/new.php:178 admin/new.php:372
msgid "Create an instrument in Limesurvey" msgid "Create an instrument in Limesurvey"
msgstr "" msgstr ""
#: admin/index.php:101 #: admin/index.php:101 admin/new.php:374
msgid "Administer instruments with Limesurvey" msgid "Administer instruments with Limesurvey"
msgstr "" msgstr ""
@@ -2490,7 +2471,7 @@ msgstr ""
msgid "Assign operators to questionnaires" msgid "Assign operators to questionnaires"
msgstr "Asignar operadores/as aos cuestionarios" msgstr "Asignar operadores/as aos cuestionarios"
#: admin/index.php:134 admin/operatorskill.php:268 #: admin/index.php:134 admin/operatorskill.php:270
msgid "Modify operator skills" msgid "Modify operator skills"
msgstr "Modificar o nivel dos/das operadores/as" msgstr "Modificar o nivel dos/das operadores/as"
@@ -2711,82 +2692,89 @@ msgstr "Non se definiron etiquetas para este cuestionario"
msgid "Code value" msgid "Code value"
msgstr "Valor de código" msgstr "Valor de código"
#: admin/assignsample.php:131 #: admin/assignsample.php:182
msgid "Edit assignment parameters" msgid "Edit assignment parameters"
msgstr "" msgstr ""
#: admin/assignsample.php:132 admin/assignsample.php:201 #: admin/assignsample.php:183 admin/assignsample.php:252
msgid "Assign samples to questionnaire: " msgid "Assign samples to questionnaire: "
msgstr "" msgstr ""
#: admin/assignsample.php:163 admin/assignsample.php:228 #: admin/assignsample.php:214 admin/assignsample.php:279
#: admin/assignsample.php:251 #: admin/assignsample.php:302
msgid "Max calls" msgid "Max calls"
msgstr "" msgstr ""
#: admin/assignsample.php:165 admin/assignsample.php:168 #: admin/assignsample.php:216 admin/assignsample.php:219
#: admin/assignsample.php:253 admin/assignsample.php:257 #: admin/assignsample.php:304 admin/assignsample.php:308
msgid "Unlimited" msgid "Unlimited"
msgstr "" msgstr ""
#: admin/assignsample.php:166 admin/assignsample.php:228 #: admin/assignsample.php:217 admin/assignsample.php:279
#: admin/assignsample.php:255 #: admin/assignsample.php:306
msgid "Max call attempts" msgid "Max call attempts"
msgstr "" msgstr ""
#: admin/assignsample.php:169 admin/assignsample.php:259 #: admin/assignsample.php:220 admin/assignsample.php:310
msgid "Number of answering machine messages to leave per case" msgid "Number of answering machine messages to leave per case"
msgstr "" msgstr ""
#: admin/assignsample.php:171 admin/assignsample.php:261 #: admin/assignsample.php:222 admin/assignsample.php:312
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: admin/assignsample.php:172 admin/assignsample.php:263 #: admin/assignsample.php:223 admin/assignsample.php:314
msgid "Select from sample randomly?" msgid "Select from sample randomly?"
msgstr "" msgstr ""
#: admin/assignsample.php:174 admin/assignsample.php:265 #: admin/assignsample.php:225 admin/assignsample.php:316
msgid "Sequentially" msgid "Sequentially"
msgstr "" msgstr ""
#: admin/assignsample.php:175 admin/assignsample.php:228 #: admin/assignsample.php:226 admin/assignsample.php:279
#: admin/assignsample.php:267 #: admin/assignsample.php:318
msgid "Allow new numbers to be drawn?" msgid "Allow new numbers to be drawn?"
msgstr "" msgstr ""
#: admin/assignsample.php:200 #: admin/assignsample.php:251
msgid "List & Add Sample" msgid "List & Add Sample"
msgstr "" msgstr ""
#: admin/assignsample.php:211 #: admin/assignsample.php:262
msgid "Samples selected for this questionnaire" msgid "Samples selected for this questionnaire"
msgstr "Mostras seleccionadas para este cuestionario" msgstr "Mostras seleccionadas para este cuestionario"
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Answering machine messages" msgid "Answering machine messages"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Selection type" msgid "Selection type"
msgstr "" msgstr ""
#: admin/assignsample.php:228 #: admin/assignsample.php:279
msgid "Unassign sample" msgid "Unassign sample"
msgstr "" msgstr ""
#: admin/assignsample.php:230 #: admin/assignsample.php:281
msgid "No samples selected for this questionnaire" msgid "No samples selected for this questionnaire"
msgstr "" msgstr ""
#: admin/assignsample.php:244 #: admin/assignsample.php:295
msgid "Add a sample to this questionnaire:" msgid "Add a sample to this questionnaire:"
msgstr "Escolla a mostra para este cuestionario:" msgstr "Escolla a mostra para este cuestionario:"
#: admin/assignsample.php:247 #: admin/assignsample.php:298
msgid "Select sample:" msgid "Select sample:"
msgstr "Escolla a mostra:" msgstr "Escolla a mostra:"
#: admin/assignsample.php:324
msgid ""
"Generate cases for all sample records and set outcome to 'Self completion "
"email invitation sent'? (Ideal if you intend to send an email invitation to "
"sample members before attempting to call using queXS)"
msgstr ""
#: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98 #: admin/supervisor.php:126 respondent.php:101 contactdetails.php:98
msgid "Case id:" msgid "Case id:"
msgstr "ID de caso:" msgstr "ID de caso:"
@@ -2799,7 +2787,7 @@ msgstr ""
msgid "Select case" msgid "Select case"
msgstr "Escoller o caso" msgstr "Escoller o caso"
#: admin/supervisor.php:142 admin/new.php:180 #: admin/supervisor.php:142 admin/new.php:177 admin/new.php:373
msgid "or" msgid "or"
msgstr "" msgstr ""
@@ -2811,7 +2799,7 @@ msgstr "Escolla un caso da listaxe de casos desviados ao/á supervidor/a"
msgid "Set an outcome for this call" msgid "Set an outcome for this call"
msgstr "Establecer o estado para esta chamada" msgstr "Establecer o estado para esta chamada"
#: admin/supervisor.php:166 #: admin/supervisor.php:166 admin/new.php:359
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@@ -3378,11 +3366,11 @@ msgstr ""
msgid "No, Thank you, go to" msgid "No, Thank you, go to"
msgstr "" msgstr ""
#: admin/new.php:146 admin/new.php:368 #: admin/new.php:146
msgid "Go to" msgid "Go to"
msgstr "" msgstr ""
#: admin/new.php:156 #: admin/new.php:164
msgid "Enter New questionnaire name.." msgid "Enter New questionnaire name.."
msgstr "" msgstr ""
@@ -3390,26 +3378,30 @@ msgstr ""
msgid "Select limesurvey instrument:" msgid "Select limesurvey instrument:"
msgstr "" msgstr ""
#: admin/new.php:174 admin/new.php:199 #: admin/new.php:173 admin/new.php:190
msgid "Existing instrument:" msgid "Survey"
msgstr "" msgstr ""
#: admin/new.php:186 #: admin/new.php:183
msgid "Respondent selection type:" msgid "Respondent selection type:"
msgstr "" msgstr ""
#: admin/new.php:189 #: admin/new.php:186
msgid "No respondent selection (go straight to questionnaire)" msgid "No respondent selection (go straight to questionnaire)"
msgstr "" msgstr ""
#: admin/new.php:190 #: admin/new.php:187
msgid "Use basic respondent selection text (below)" msgid "Use basic respondent selection text (below)"
msgstr "" msgstr ""
#: admin/new.php:371 #: admin/new.php:362
msgid "Create Questionnaire" msgid "Create Questionnaire"
msgstr "Crear un Cuestionario" msgstr "Crear un Cuestionario"
#: admin/new.php:371
msgid "NO active Lime surveys available"
msgstr ""
#: admin/databasestrings.php:32 rs_intro_interface2.php:76 #: admin/databasestrings.php:32 rs_intro_interface2.php:76
msgid "Not attempted or worked" msgid "Not attempted or worked"
msgstr "Non probado / Non funciona" msgstr "Non probado / Non funciona"
@@ -3639,11 +3631,19 @@ msgid "Self completed online"
msgstr "" msgstr ""
#: admin/databasestrings.php:91 #: admin/databasestrings.php:91
msgid "Max call attempts reached" msgid "Max call attempts reached (Eligible)"
msgstr "" msgstr ""
#: admin/databasestrings.php:92 #: admin/databasestrings.php:92
msgid "Max calls reached" msgid "Max calls reached (Eligible)"
msgstr ""
#: admin/databasestrings.php:93
msgid "Max call attempts reached (Unknown eligibility)"
msgstr ""
#: admin/databasestrings.php:94
msgid "Max calls reached (Unknown eligibility)"
msgstr "" msgstr ""
#: call_interface2.php:116 #: call_interface2.php:116
@@ -4070,6 +4070,9 @@ msgstr "Finallizar a chamada co estado: Cota completa"
#~ msgid "Add user" #~ msgid "Add user"
#~ msgstr "Engadir un/unha usuario/a" #~ msgstr "Engadir un/unha usuario/a"
#~ msgid "Administrative Tools"
#~ msgstr "Ferramentas Administrativas"
#~ msgid "Questionnaire creation and management" #~ msgid "Questionnaire creation and management"
#~ msgstr "Xestión e creación de cuestionarios" #~ msgstr "Xestión e creación de cuestionarios"

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More