|
From: <gem...@li...> - 2012-09-24 10:00:32
|
Revision: 953
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=953&view=rev
Author: matijsdejong
Date: 2012-09-24 10:00:20 +0000 (Mon, 24 Sep 2012)
Log Message:
-----------
Updated translations
Extended TrackData functionality
Improved file names of sql creation files (to improve the order of creation)
Modified Paths:
--------------
trunk/library/classes/Gems/Tracker/Engine/StepEngineAbstract.php
trunk/library/classes/Gems/Util/TrackData.php
trunk/library/languages/default-en.mo
trunk/library/languages/default-en.po
trunk/library/languages/default-nl.mo
trunk/library/languages/default-nl.po
Added Paths:
-----------
trunk/library/configs/db/tables/gems__respondent2track2field.50.sql
trunk/library/configs/db/tables/gems__track_fields.40.sql
Removed Paths:
-------------
trunk/library/configs/db/tables/gems__respondent2track2field.20.sql
trunk/library/configs/db/tables/gems__track_fields.20.sql
Modified: trunk/library/classes/Gems/Tracker/Engine/StepEngineAbstract.php
===================================================================
--- trunk/library/classes/Gems/Tracker/Engine/StepEngineAbstract.php 2012-09-21 16:42:22 UTC (rev 952)
+++ trunk/library/classes/Gems/Tracker/Engine/StepEngineAbstract.php 2012-09-24 10:00:20 UTC (rev 953)
@@ -79,7 +79,7 @@
$model->set($fieldName, 'multiOptions', $options);
if (! array_key_exists($itemData[$fieldName], $options)) {
- // The value is always the only possible value
+ // Set the value to the first possible value
reset($options);
$itemData[$fieldName] = key($options);
@@ -399,15 +399,7 @@
*/
protected function getDateUnitsList($validAfter)
{
- return array(
- 'N' => $this->_('Minutes'),
- 'H' => $this->_('Hours'),
- 'D' => $this->_('Days'),
- 'W' => $this->_('Weeks'),
- 'M' => $this->_('Months'),
- 'Q' => $this->_('Quarters'),
- 'Y' => $this->_('Years')
- );
+ return $this->util->getTrackData()->getDateUnitsList($validAfter);
}
/**
Modified: trunk/library/classes/Gems/Util/TrackData.php
===================================================================
--- trunk/library/classes/Gems/Util/TrackData.php 2012-09-21 16:42:22 UTC (rev 952)
+++ trunk/library/classes/Gems/Util/TrackData.php 2012-09-24 10:00:20 UTC (rev 953)
@@ -168,6 +168,25 @@
}
/**
+ * Get an array of translated labels for the date units used by this engine
+ *
+ * @param boolean $validAfter True if it concenrs _valid_after_ dates
+ * @return array date_unit => label
+ */
+ public function getDateUnitsList($validAfter)
+ {
+ return array(
+ 'N' => $this->translate->_('Minutes'),
+ 'H' => $this->translate->_('Hours'),
+ 'D' => $this->translate->_('Days'),
+ 'W' => $this->translate->_('Weeks'),
+ 'M' => $this->translate->_('Months'),
+ 'Q' => $this->translate->_('Quarters'),
+ 'Y' => $this->translate->_('Years')
+ );
+ }
+
+ /**
* Returns array (id => name) of all ronds in a track, sorted by order
*
* @param int $trackId
@@ -192,4 +211,42 @@
return $tracks;
}
+
+
+ /**
+ * Returns array (id => name) of the track date fields for this track, sorted by order
+ *
+ * @param int $trackId
+ * @return array
+ */
+ public function getTrackDateFields($trackId)
+ {
+ $dateFields = $this->db->fetchPairs("SELECT gtf_id_field, gtf_field_name FROM gems__track_fields WHERE gtf_id_track = ? AND gtf_field_type = 'date' ORDER BY gtf_id_order", $trackId);
+
+ if (! $dateFields) {
+ $dateFields = array();
+ }
+
+ return $dateFields;
+ }
+
+ /**
+ * Returns array (id => name) of all track date fields, sorted alphabetically
+ *
+ * @return array
+ */
+ public function getTracksDateFields()
+ {
+ static $dateFields;
+
+ if (! is_array($dateFields)) {
+ $dateFields = $this->db->fetchPairs("SELECT gtf_id_field, gtf_field_name FROM gems__track_fields WHERE gtf_field_type = 'date' ORDER BY gtf_field_name");
+
+ if (! $dateFields) {
+ $dateFields = array();
+ }
+ }
+
+ return $dateFields;
+ }
}
Deleted: trunk/library/configs/db/tables/gems__respondent2track2field.20.sql
===================================================================
--- trunk/library/configs/db/tables/gems__respondent2track2field.20.sql 2012-09-21 16:42:22 UTC (rev 952)
+++ trunk/library/configs/db/tables/gems__respondent2track2field.20.sql 2012-09-24 10:00:20 UTC (rev 953)
@@ -1,17 +0,0 @@
-
-CREATE TABLE if not exists gems__respondent2track2field (
- gr2t2f_id_respondent_track bigint unsigned not null references gems__respondent2track (gr2t_id_respondent_track),
- gr2t2f_id_field bigint unsigned not null references gems__track_fields (gtf_id_field),
-
- gr2t2f_value text CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null,
-
- gr2t2f_changed timestamp not null default current_timestamp on update current_timestamp,
- gr2t2f_changed_by bigint unsigned not null,
- gr2t2f_created timestamp not null,
- gr2t2f_created_by bigint unsigned not null,
-
- PRIMARY KEY(gr2t2f_id_respondent_track,gr2t2f_id_field)
- )
- ENGINE=InnoDB
- CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
-
Added: trunk/library/configs/db/tables/gems__respondent2track2field.50.sql
===================================================================
--- trunk/library/configs/db/tables/gems__respondent2track2field.50.sql (rev 0)
+++ trunk/library/configs/db/tables/gems__respondent2track2field.50.sql 2012-09-24 10:00:20 UTC (rev 953)
@@ -0,0 +1,17 @@
+
+CREATE TABLE if not exists gems__respondent2track2field (
+ gr2t2f_id_respondent_track bigint unsigned not null references gems__respondent2track (gr2t_id_respondent_track),
+ gr2t2f_id_field bigint unsigned not null references gems__track_fields (gtf_id_field),
+
+ gr2t2f_value text CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null,
+
+ gr2t2f_changed timestamp not null default current_timestamp on update current_timestamp,
+ gr2t2f_changed_by bigint unsigned not null,
+ gr2t2f_created timestamp not null,
+ gr2t2f_created_by bigint unsigned not null,
+
+ PRIMARY KEY(gr2t2f_id_respondent_track,gr2t2f_id_field)
+ )
+ ENGINE=InnoDB
+ CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
+
Deleted: trunk/library/configs/db/tables/gems__track_fields.20.sql
===================================================================
--- trunk/library/configs/db/tables/gems__track_fields.20.sql 2012-09-21 16:42:22 UTC (rev 952)
+++ trunk/library/configs/db/tables/gems__track_fields.20.sql 2012-09-24 10:00:20 UTC (rev 953)
@@ -1,29 +0,0 @@
-
-CREATE TABLE if not exists gems__track_fields (
- gtf_id_field bigint unsigned not null auto_increment,
- gtf_id_track int unsigned not null references gems__tracks (gtr_id_track),
-
- gtf_id_order int not null default 10,
-
- gtf_field_name varchar(200) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' not null,
- gtf_field_code varchar(20) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null,
- gtf_field_description varchar(200) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null,
-
- gtf_field_values text CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null,
-
- gtf_field_type varchar(20) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' not null,
-
- gtf_required boolean not null default false,
- gtf_readonly boolean not null default false,
-
- gtf_changed timestamp not null default current_timestamp on update current_timestamp,
- gtf_changed_by bigint unsigned not null,
- gtf_created timestamp not null,
- gtf_created_by bigint unsigned not null,
-
- PRIMARY KEY (gtf_id_field)
- )
- ENGINE=InnoDB
- AUTO_INCREMENT = 60000
- CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
-
Added: trunk/library/configs/db/tables/gems__track_fields.40.sql
===================================================================
--- trunk/library/configs/db/tables/gems__track_fields.40.sql (rev 0)
+++ trunk/library/configs/db/tables/gems__track_fields.40.sql 2012-09-24 10:00:20 UTC (rev 953)
@@ -0,0 +1,29 @@
+
+CREATE TABLE if not exists gems__track_fields (
+ gtf_id_field bigint unsigned not null auto_increment,
+ gtf_id_track int unsigned not null references gems__tracks (gtr_id_track),
+
+ gtf_id_order int not null default 10,
+
+ gtf_field_name varchar(200) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' not null,
+ gtf_field_code varchar(20) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null,
+ gtf_field_description varchar(200) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null,
+
+ gtf_field_values text CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' null,
+
+ gtf_field_type varchar(20) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' not null,
+
+ gtf_required boolean not null default false,
+ gtf_readonly boolean not null default false,
+
+ gtf_changed timestamp not null default current_timestamp on update current_timestamp,
+ gtf_changed_by bigint unsigned not null,
+ gtf_created timestamp not null,
+ gtf_created_by bigint unsigned not null,
+
+ PRIMARY KEY (gtf_id_field)
+ )
+ ENGINE=InnoDB
+ AUTO_INCREMENT = 60000
+ CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
+
Modified: trunk/library/languages/default-en.mo
===================================================================
(Binary files differ)
Modified: trunk/library/languages/default-en.po
===================================================================
--- trunk/library/languages/default-en.po 2012-09-21 16:42:22 UTC (rev 952)
+++ trunk/library/languages/default-en.po 2012-09-24 10:00:20 UTC (rev 953)
@@ -2,14 +2,14 @@
msgstr ""
"Project-Id-Version: GemsTracker EN\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-06 11:29+0100\n"
+"POT-Creation-Date: 2012-09-24 11:55+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Matijs de Jong <mj...@ma...>\n"
"Language-Team: Erasmus MGZ <mat...@ma...>\n"
-"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Poedit-SourceCharset: iso-8859-1\n"
"X-Poedit-Basepath: ../\n"
@@ -30,7 +30,8 @@
msgid "You are logged in as %s"
msgstr "You are logged in as %s"
-#: classes/GemsEscort.php:803 classes/Gems/Menu.php:263
+#: classes/GemsEscort.php:803
+#: classes/Gems/Menu.php:263
msgid "Logoff"
msgstr "Logoff"
@@ -48,18 +49,15 @@
msgstr "version"
#: classes/GemsEscort.php:1465
-msgid ""
-"Take note: your session has expired, your inputs were not saved. Please "
-"check the input data and try again"
-msgstr ""
-"Take note: your session has expired, your inputs were not saved. Please "
-"check the input data and try again"
+msgid "Take note: your session has expired, your inputs were not saved. Please check the input data and try again"
+msgstr "Take note: your session has expired, your inputs were not saved. Please check the input data and try again"
#: classes/GemsEscort.php:1594
msgid "Please check back later."
msgstr "Please check back later."
-#: classes/GemsEscort.php:1596 classes/GemsEscort.php:1600
+#: classes/GemsEscort.php:1596
+#: classes/GemsEscort.php:1600
#: classes/GemsEscort.php:1601
msgid "System is in maintenance mode"
msgstr "System is in maintenance mode"
@@ -68,22 +66,22 @@
msgid "No access to site."
msgstr "No access to site."
-#: classes/GemsEscort.php:1613 classes/GemsEscort.php:1656
+#: classes/GemsEscort.php:1613
+#: classes/GemsEscort.php:1656
msgid "You have no access to this site."
msgstr "You have no access to this site."
-#: classes/GemsEscort.php:1629 classes/Gems/Default/StaffAction.php:317
+#: classes/GemsEscort.php:1629
msgid "No access to page"
msgstr "No access to page"
-#: classes/GemsEscort.php:1631 classes/Gems/Default/OrganizationAction.php:94
-#: classes/Gems/Default/StaffAction.php:318
-#: classes/Gems/Model/HiddenOrganizationModel.php:115
+#: classes/GemsEscort.php:1631
#, php-format
msgid "Access to this page is not allowed for current role: %s."
msgstr "Access to this page is not allowed for current role: %s."
-#: classes/GemsEscort.php:1641 classes/GemsEscort.php:1654
+#: classes/GemsEscort.php:1641
+#: classes/GemsEscort.php:1654
msgid "You are no longer logged in."
msgstr "You are no longer logged in."
@@ -91,7 +89,8 @@
msgid "You must login to access this page."
msgstr "You must login to access this page."
-#: classes/GemsEscort.php:1783 classes/GemsEscort.php:1785
+#: classes/GemsEscort.php:1783
+#: classes/GemsEscort.php:1785
#, php-format
msgid "%d survey"
msgid_plural "%d surveys"
@@ -147,7 +146,7 @@
msgid "Project setup"
msgstr "Project setup"
-#: classes/Gems/Menu.php:170 classes/Gems/Default/SourceAction.php:203
+#: classes/Gems/Menu.php:170
msgid "Database"
msgstr "Database"
@@ -155,11 +154,11 @@
msgid "Content"
msgstr "Content"
-#: classes/Gems/Menu.php:177 classes/Gems/Default/DatabaseAction.php:313
+#: classes/Gems/Menu.php:177
msgid "Execute"
msgstr "Execute"
-#: classes/Gems/Menu.php:182 classes/Gems/Default/DatabaseAction.php:289
+#: classes/Gems/Menu.php:182
msgid "Patches"
msgstr "Patches"
@@ -175,7 +174,7 @@
msgid "Run SQL"
msgstr "Run SQL"
-#: classes/Gems/Menu.php:190 classes/Gems/Default/ReceptionAction.php:132
+#: classes/Gems/Menu.php:190
msgid "Reception codes"
msgstr "Reception codes"
@@ -183,16 +182,16 @@
msgid "Consents"
msgstr "Consents"
-#: classes/Gems/Menu.php:196 classes/Gems/Default/RoleAction.php:309
+#: classes/Gems/Menu.php:196
msgid "Roles"
msgstr "Roles"
-#: classes/Gems/Menu.php:197 classes/Gems/Menu.php:391
+#: classes/Gems/Menu.php:197
+#: classes/Gems/Menu.php:391
msgid "Assigned"
msgstr "Assigned"
-#: classes/Gems/Menu.php:198 classes/Gems/Default/RoleAction.php:238
-#: classes/Gems/Default/RoleAction.php:324
+#: classes/Gems/Menu.php:198
msgid "Privileges"
msgstr "Privileges"
@@ -201,20 +200,14 @@
msgstr "Groups"
#: classes/Gems/Menu.php:204
-#: classes/Gems/Default/SurveyMaintenanceAction.php:203
-#: classes/Gems/Default/TrackMaintenanceAction.php:131
-#: classes/Gems/Email/MailTemplateForm.php:101
-#: classes/Gems/Tracker/Snippets/EditTrackEngineSnippetGeneric.php:140
msgid "Organizations"
msgstr "Organizations"
-#: classes/Gems/Menu.php:207 classes/Gems/Default/GroupAction.php:93
-#: classes/Gems/Default/LogAction.php:193
-#: classes/Gems/Default/StaffAction.php:470
+#: classes/Gems/Menu.php:207
msgid "Staff"
msgstr "Staff"
-#: classes/Gems/Menu.php:210 classes/Gems/Default/LogAction.php:213
+#: classes/Gems/Menu.php:210
msgid "Logging"
msgstr "Logging"
@@ -226,15 +219,14 @@
msgid "Upgrade"
msgstr "Upgrade"
-#: classes/Gems/Menu.php:220 classes/Gems/Menu.php:221
-#: classes/Gems/Default/ProjectInformationAction.php:113
-#: classes/Gems/Default/ProjectInformationAction.php:118
+#: classes/Gems/Menu.php:220
+#: classes/Gems/Menu.php:221
#, php-format
msgid "Changelog %s"
msgstr "Changelog %s"
-#: classes/Gems/Menu.php:222 classes/Gems/Menu.php:355
-#: classes/Gems/Menu/SubMenuItem.php:551
+#: classes/Gems/Menu.php:222
+#: classes/Gems/Menu.php:355
msgid "Show"
msgstr "Show"
@@ -263,7 +255,7 @@
msgid "Logon"
msgstr "Logon"
-#: classes/Gems/Menu.php:258 classes/Gems/User/Form/LoginForm.php:112
+#: classes/Gems/Menu.php:258
msgid "Lost password"
msgstr "Lost password"
@@ -271,72 +263,40 @@
msgid "Your account"
msgstr "Your account"
-#: classes/Gems/Menu.php:260 classes/Gems/Default/OptionAction.php:153
+#: classes/Gems/Menu.php:260
msgid "Activity overview"
msgstr "Activity overview"
-#: classes/Gems/Menu.php:261 classes/Gems/Default/OptionAction.php:78
+#: classes/Gems/Menu.php:261
msgid "Change password"
msgstr "Change password"
-#: classes/Gems/Menu.php:262 classes/Gems/Menu.php:315
-#: classes/Gems/Menu.php:361 classes/Gems/Default/MailLogAction.php:114
-#: classes/Gems/Default/TrackAction.php:459
-#: classes/Gems/Export/RespondentExport.php:150
-#: classes/Gems/Snippets/TokenModelSnippetAbstract.php:70
-#: classes/Gems/Tracker/Engine/StepEngineAbstract.php:490
-#: classes/Gems/Tracker/Form/AskTokenForm.php:77
-#: classes/Gems/Tracker/Model/StandardTokenModel.php:195
-#: classes/Gems/Tracker/Snippets/AnswerModelSnippetGeneric.php:173
-#: classes/Gems/Tracker/Snippets/AnswerModelSnippetGeneric.php:182
-#: snippets/BrowseSingleSurveyTokenSnippet.php:167
-#: snippets/TrackTokenOverviewSnippet.php:132
-#: snippets/Organization/OrganizationEditSnippet.php:89
-#: snippets/Track/Token/ShowAllOpenSnippet.php:88
-#: snippets/Track/Token/ShowFirstOpenSnippet.php:110
+#: classes/Gems/Menu.php:262
+#: classes/Gems/Menu.php:315
+#: classes/Gems/Menu.php:361
msgid "Token"
msgstr "Token"
-#: classes/Gems/Menu.php:303 classes/Gems/Export/RespondentExport.php:301
+#: classes/Gems/Menu.php:303
msgid "Export"
msgstr "Export"
-#: classes/Gems/Menu.php:310 classes/Gems/Default/MailJobAction.php:99
-#: classes/Gems/Default/ProjectTracksAction.php:64
-#: classes/Gems/Default/TrackAction.php:328
-#: classes/Gems/Default/TrackActionAbstract.php:199
-#: classes/Gems/Default/TrackFieldsAction.php:96
-#: classes/Gems/Email/OneMailForm.php:54
-#: classes/Gems/Export/RespondentExport.php:207
-#: classes/Gems/Export/RespondentExport.php:219
-#: classes/Gems/Tracker/Engine/StepEngineAbstract.php:492
-#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:734
-#: classes/Gems/Tracker/Model/StandardTokenModel.php:216
-#: classes/Gems/Tracker/Snippets/EditTrackSnippetAbstract.php:149
-#: classes/Gems/Tracker/Snippets/ShowTrackUsageAbstract.php:146
-#: snippets/Track/Token/ShowAllOpenSnippet.php:148
+#: classes/Gems/Menu.php:310
msgid "Track"
msgstr "Track"
-#: classes/Gems/Menu.php:318 classes/Gems/Menu.php:343
+#: classes/Gems/Menu.php:318
+#: classes/Gems/Menu.php:343
#: classes/Gems/Menu.php:385
-#: classes/Gems/Default/TrackMaintenanceAction.php:367
-#: snippets/AddTracksSnippet.php:242
msgid "Add"
msgstr "Add"
-#: classes/Gems/Menu.php:324 classes/Gems/Menu.php:424
-#: classes/Gems/Email/EmailFormAbstract.php:280
-#: classes/Gems/Email/EmailFormAbstract.php:291
-#: classes/Gems/Menu/MenuAbstract.php:367
-#: classes/Gems/Menu/MenuAbstract.php:380
+#: classes/Gems/Menu.php:324
+#: classes/Gems/Menu.php:424
msgid "Preview"
msgstr "Preview"
-#: classes/Gems/Menu.php:333 classes/Gems/Default/ExportAction.php:149
-#: classes/Gems/Default/TrackMaintenanceAction.php:314
-#: classes/Gems/Menu/MenuAbstract.php:376
-#: classes/Gems/Menu/MenuAbstract.php:457 snippets/AddTracksSnippet.php:239
+#: classes/Gems/Menu.php:333
msgid "Tracks"
msgstr "Tracks"
@@ -344,19 +304,15 @@
msgid "Assignments"
msgstr "Assignments"
-#: classes/Gems/Menu.php:365 classes/Gems/Menu/SubMenuItem.php:417
+#: classes/Gems/Menu.php:365
msgid "Edit"
msgstr "Edit"
-#: classes/Gems/Menu.php:371 classes/Gems/Menu/SubMenuItem.php:398
+#: classes/Gems/Menu.php:371
msgid "Delete"
msgstr "Delete"
#: classes/Gems/Menu.php:378
-#: classes/Gems/Default/SurveyMaintenanceAction.php:563
-#: classes/Gems/Menu/MenuAbstract.php:383
-#: classes/Gems/Menu/MenuAbstract.php:445
-#: classes/Gems/Tracker/Model/TrackModel.php:100
msgid "Surveys"
msgstr "Surveys"
@@ -373,13 +329,10 @@
msgstr "E-Mail now!"
#: classes/Gems/Menu.php:427
-#: classes/Gems/Tracker/Engine/StepEngineAbstract.php:489
msgid "Answers"
msgstr "Answers"
-#: classes/Gems/Menu.php:579 classes/Gems/Default/GroupAction.php:94
-#: classes/Gems/Default/OrganizationAction.php:142
-#: classes/Gems/Default/RespondentAction.php:403
+#: classes/Gems/Menu.php:579
msgid "Respondents"
msgstr "Patients"
@@ -387,7 +340,7 @@
msgid "Overview"
msgstr "Overview"
-#: classes/Gems/Menu.php:594 classes/Gems/Menu/MenuAbstract.php:340
+#: classes/Gems/Menu.php:594
msgid "Project"
msgstr "Project"
@@ -403,13 +356,11 @@
msgid "Mail"
msgstr "Mail"
-#: classes/Gems/Menu.php:609 classes/Gems/Default/RespondentAction.php:511
-#: classes/Gems/Default/RespondentExportAction.php:60
+#: classes/Gems/Menu.php:609
msgid "Export respondent"
msgstr "Export respondent"
-#: classes/Gems/Menu.php:615 classes/Gems/Default/ContactAction.php:101
-#: snippets/Organization/OrganizationEditSnippet.php:82
+#: classes/Gems/Menu.php:615
msgid "Contact"
msgstr "Contact"
@@ -418,19 +369,10 @@
msgstr "Changelog"
#: classes/Gems/Model.php:206
-#: classes/Gems/Tracker/Model/StandardTokenModel.php:213
msgid "Respondent nr"
msgstr "Patient nr"
-#: classes/Gems/Model.php:209 classes/Gems/Default/ExportAction.php:172
-#: classes/Gems/Default/IndexAction.php:229
-#: classes/Gems/Default/LogAction.php:197
-#: classes/Gems/Default/MailJobAction.php:98
-#: classes/Gems/Default/StaffAction.php:340
-#: classes/Gems/Snippets/Export/ReportHeaderSnippet.php:63
-#: classes/Gems/User/Form/LayeredLoginForm.php:254
-#: classes/Gems/User/Form/OrganizationFormAbstract.php:166
-#: snippets/Organization/OrganizationEditSnippet.php:80
+#: classes/Gems/Model.php:209
msgid "Organization"
msgstr "Organization"
@@ -442,43 +384,27 @@
msgid "Consent"
msgstr "Consent"
-#: classes/Gems/Model.php:214 classes/Gems/Default/OptionAction.php:130
-#: classes/Gems/Default/StaffAction.php:330
+#: classes/Gems/Model.php:214
msgid "E-Mail"
msgstr "E-Mail"
-#: classes/Gems/Model.php:219 classes/Gems/Default/OptionAction.php:134
-#: classes/Gems/Default/StaffAction.php:343
+#: classes/Gems/Model.php:219
msgid "Gender"
msgstr "Gender"
-#: classes/Gems/Model.php:220 classes/Gems/Default/OptionAction.php:131
-#: classes/Gems/Default/StaffAction.php:185
+#: classes/Gems/Model.php:220
msgid "First name"
msgstr "First name"
-#: classes/Gems/Model.php:221 classes/Gems/Default/OptionAction.php:132
-#: classes/Gems/Default/StaffAction.php:187
+#: classes/Gems/Model.php:221
msgid "Surname prefix"
msgstr "Surname prefix"
-#: classes/Gems/Model.php:222 classes/Gems/Default/OptionAction.php:133
-#: classes/Gems/Default/StaffAction.php:188
+#: classes/Gems/Model.php:222
msgid "Last name"
msgstr "Last name"
-#: classes/Gems/Model.php:224 classes/Gems/Default/DatabaseAction.php:135
-#: classes/Gems/Default/DatabaseAction.php:335
-#: classes/Gems/Default/GroupAction.php:87
-#: classes/Gems/Default/OrganizationAction.php:114
-#: classes/Gems/Default/RoleAction.php:231
-#: classes/Gems/Default/SourceAction.php:195
-#: classes/Gems/Default/StaffAction.php:328
-#: classes/Gems/Default/SurveyMaintenanceAction.php:412
-#: classes/Gems/Default/TokenPlanAction.php:121
-#: classes/Gems/Default/TrackFieldsAction.php:98
-#: classes/Gems/Default/TrackMaintenanceAction.php:227
-#: classes/Gems/Tracker/Model/TrackModel.php:98
+#: classes/Gems/Model.php:224
msgid "Name"
msgstr "Name"
@@ -491,7 +417,6 @@
msgstr "Zipcode"
#: classes/Gems/Model.php:229
-#: classes/Gems/Default/RespondentPlanAction.php:134
msgid "City"
msgstr "City"
@@ -500,7 +425,6 @@
msgstr "Phone"
#: classes/Gems/Model.php:233
-#: classes/Gems/Default/RespondentPlanAction.php:133
msgid "Birthday"
msgstr "Birthday"
@@ -546,164 +470,100 @@
msgid "Trying upgrade for %s to level %s: %s"
msgstr "Trying upgrade for %s to level %s: %s"
-#: classes/Gems/Controller/BrowseEditAction.php:358
-#: classes/Gems/Controller/ModelSnippetActionAbstract.php:239
-#: classes/Gems/Default/StaffAction.php:228
-#: classes/Gems/Snippets/ModelFormSnippetAbstract.php:186
+#: classes/Gems/Controller/BrowseEditAction.php:357
#, php-format
msgid "New %s..."
msgstr "New %s..."
-#: classes/Gems/Controller/BrowseEditAction.php:391
-#: classes/Gems/Controller/ModelSnippetActionAbstract.php:259
-#: classes/Gems/Default/TrackFieldsAction.php:130
-#: classes/Gems/Default/TrackRoundsAction.php:171
+#: classes/Gems/Controller/BrowseEditAction.php:390
#, php-format
msgid "Delete %s"
msgstr "Delete %s"
-#: classes/Gems/Controller/BrowseEditAction.php:395
-#: classes/Gems/Default/TrackFieldsAction.php:137
-#: classes/Gems/Default/TrackRoundsAction.php:186
-#: snippets/DeleteSingleSurveyInSourceTokenSnippet.php:134
-#: snippets/DeleteTrackTokenSnippet.php:152
+#: classes/Gems/Controller/BrowseEditAction.php:394
#, php-format
msgid "%2$u %1$s deleted"
msgstr "%2$u %1$s deleted"
-#: classes/Gems/Controller/BrowseEditAction.php:412
-#: classes/Gems/Default/OrganizationAction.php:200
+#: classes/Gems/Controller/BrowseEditAction.php:411
#, php-format
msgid "Edit %s %s"
msgstr "Edit %s %s"
-#: classes/Gems/Controller/BrowseEditAction.php:414
-#: classes/Gems/Controller/ModelSnippetActionAbstract.php:269
-#: classes/Gems/Snippets/ModelFormSnippetAbstract.php:188
+#: classes/Gems/Controller/BrowseEditAction.php:413
#, php-format
msgid "Edit %s"
msgstr "Edit %s"
-#: classes/Gems/Controller/BrowseEditAction.php:515
-#: snippets/Generic/AutosearchFormSnippet.php:134
+#: classes/Gems/Controller/BrowseEditAction.php:514
msgid "Free search text"
msgstr "Free search text"
-#: classes/Gems/Controller/BrowseEditAction.php:586
-#: snippets/Generic/AutosearchFormSnippet.php:209
+#: classes/Gems/Controller/BrowseEditAction.php:585
msgid "Search"
msgstr "Search"
-#: classes/Gems/Controller/BrowseEditAction.php:602
-#: classes/Gems/Default/TrackMaintenanceAction.php:361
+#: classes/Gems/Controller/BrowseEditAction.php:601
#, php-format
msgid "No %s found"
msgstr "No %s found"
-#: classes/Gems/Controller/BrowseEditAction.php:686
-#: classes/Gems/Default/ExportAction.php:245
+#: classes/Gems/Controller/BrowseEditAction.php:685
#, php-format
msgid "No %s found."
msgstr "No %s found."
-#: classes/Gems/Controller/BrowseEditAction.php:804
-#: classes/Gems/Default/TrackRoundsAction.php:244
-#: snippets/DeleteSingleSurveyNotUsedTokenSnippet.php:94
+#: classes/Gems/Controller/BrowseEditAction.php:803
msgid "Are you sure?"
msgstr "Are you sure?"
-#: classes/Gems/Controller/BrowseEditAction.php:820
-#: classes/Gems/Default/DatabaseAction.php:187
-#: classes/Gems/Default/DatabaseAction.php:499
-#: classes/Gems/Default/StaffAction.php:276
-#: classes/Gems/Default/TrackAction.php:419
-#: classes/Gems/Default/TrackRoundsAction.php:264
-#: classes/Gems/Snippets/ModelItemYesNoDeleteSnippetAbstract.php:181
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:143
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:147
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:166
-#: classes/Gems/Util/Translated.php:263
-#: classes/MUtil/Snippets/ModelYesNoDeleteSnippetAbstract.php:192
-#: snippets/DeleteSingleSurveyNotUsedTokenSnippet.php:124
+#: classes/Gems/Controller/BrowseEditAction.php:819
msgid "Yes"
msgstr "Yes"
-#: classes/Gems/Controller/BrowseEditAction.php:821
-#: classes/Gems/Default/DatabaseAction.php:188
-#: classes/Gems/Default/DatabaseAction.php:500
-#: classes/Gems/Default/StaffAction.php:277
-#: classes/Gems/Default/TrackAction.php:420
-#: classes/Gems/Default/TrackRoundsAction.php:265
-#: classes/Gems/Snippets/ModelItemYesNoDeleteSnippetAbstract.php:183
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:144
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:148
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:167
-#: classes/Gems/Util/ReceptionCodeLibrary.php:99
-#: classes/Gems/Util/ReceptionCodeLibrary.php:123
-#: classes/Gems/Util/Translated.php:263
-#: classes/MUtil/Snippets/ModelYesNoDeleteSnippetAbstract.php:194
-#: snippets/DeleteSingleSurveyNotUsedTokenSnippet.php:125
+#: classes/Gems/Controller/BrowseEditAction.php:820
msgid "No"
msgstr "No"
-#: classes/Gems/Controller/BrowseEditAction.php:874
-#: classes/Gems/Default/RespondentAction.php:246
-#: classes/Gems/Default/RespondentAction.php:456
-#: classes/Gems/Default/RespondentAction.php:494
-#: classes/Gems/Default/TrackAction.php:547
+#: classes/Gems/Controller/BrowseEditAction.php:873
#, php-format
msgid "Unknown %s requested"
msgstr "Unknown %s requested"
-#: classes/Gems/Controller/BrowseEditAction.php:897
+#: classes/Gems/Controller/BrowseEditAction.php:896
#, php-format
msgid "New %1$s..."
msgstr "New %1$s..."
-#: classes/Gems/Controller/BrowseEditAction.php:905
-#: classes/Gems/Email/MailTemplateForm.php:108
-#: classes/Gems/User/Form/ChangePasswordForm.php:341
-#: classes/MUtil/Snippets/ModelFormSnippetAbstract.php:245
+#: classes/Gems/Controller/BrowseEditAction.php:904
msgid "Save"
msgstr "Save"
-#: classes/Gems/Controller/BrowseEditAction.php:941
-#: classes/Gems/Default/MailTemplateAction.php:116
-#: classes/MUtil/Snippets/ModelFormSnippetAbstract.php:209
+#: classes/Gems/Controller/BrowseEditAction.php:940
#, php-format
msgid "%2$u %1$s saved"
msgstr "%2$u %1$s saved"
-#: classes/Gems/Controller/BrowseEditAction.php:944
+#: classes/Gems/Controller/BrowseEditAction.php:943
msgid "No changes to save."
msgstr "No changes to save."
-#: classes/Gems/Controller/BrowseEditAction.php:953
-#: classes/Gems/Default/RespondentAction.php:307
+#: classes/Gems/Controller/BrowseEditAction.php:952
msgid "Input error! No changes saved!"
msgstr "Input error! No changes saved!"
-#: classes/Gems/Controller/BrowseEditAction.php:981
-#: classes/Gems/Default/SurveyMaintenanceAction.php:592
+#: classes/Gems/Controller/BrowseEditAction.php:980
#, php-format
msgid "Show %s"
msgstr "Show %s"
-#: classes/Gems/Controller/BrowseEditAction.php:988
-#: classes/Gems/Default/SurveyMaintenanceAction.php:601
+#: classes/Gems/Controller/BrowseEditAction.php:987
#, php-format
msgid "Unknown %s."
msgstr "Unknown %s."
#: classes/Gems/Controller/ModelActionAbstract.php:97
#: classes/Gems/Default/DatabaseAction.php:503
-#: classes/Gems/Default/SourceAction.php:292
-#: classes/Gems/Default/UpgradeAction.php:184
-#: classes/Gems/Snippets/ModelFormSnippetAbstract.php:171
-#: classes/Gems/Snippets/ModelItemTableSnippetAbstract.php:180
-#: classes/Gems/Tracker/Snippets/ShowRoundSnippetAbstract.php:193
-#: snippets/Generic/CurrentButtonRowSnippet.php:77
-#: snippets/Track/Token/ShowFirstOpenSnippet.php:133
msgid "Cancel"
msgstr "Cancel"
@@ -727,8 +587,6 @@
msgstr "Showing %s"
#: classes/Gems/Controller/ModelSnippetActionAbstract.php:390
-#: classes/Gems/Default/OptionAction.php:181
-#: classes/MUtil/Snippets/ModelFormSnippetAbstract.php:341
msgid "item"
msgid_plural "items"
msgstr[0] "item"
@@ -765,36 +623,22 @@
msgstr "After answering the survey you will be logged off automatically."
#: classes/Gems/Default/AskAction.php:100
-msgid ""
-"A token consists of two groups of four letters and numbers, separated by an "
-"optional hyphen. Tokens are case insensitive."
-msgstr ""
-"A token consists of two groups of four letters and numbers, separated by an "
-"optional hyphen. Tokens are case insensitive."
+msgid "A token consists of two groups of four letters and numbers, separated by an optional hyphen. Tokens are case insensitive."
+msgstr "A token consists of two groups of four letters and numbers, separated by an optional hyphen. Tokens are case insensitive."
#: classes/Gems/Default/AskAction.php:101
-msgid ""
-"The number zero and the letter O are treated as the same; the same goes for "
-"the number one and the letter L."
-msgstr ""
-"The number zero and the letter O are treated as the same; the same goes for "
-"the number one and the letter L."
+msgid "The number zero and the letter O are treated as the same; the same goes for the number one and the letter L."
+msgstr "The number zero and the letter O are treated as the same; the same goes for the number one and the letter L."
#: classes/Gems/Default/AskAction.php:136
#, php-format
-msgid ""
-"Thank you for answering. At the moment we have no further surveys for you to "
-"take."
-msgstr ""
-"Thank you for answering. At the moment we have no further surveys for you to "
-"take."
+msgid "Thank you for answering. At the moment we have no further surveys for you to take."
+msgstr "Thank you for answering. At the moment we have no further surveys for you to take."
#: classes/Gems/Default/AskAction.php:138
#, php-format
-msgid ""
-"The survey for token %s has been answered and no further surveys are open."
-msgstr ""
-"The survey for token %s has been answered and no further surveys are open."
+msgid "The survey for token %s has been answered and no further surveys are open."
+msgstr "The survey for token %s has been answered and no further surveys are open."
#: classes/Gems/Default/AskAction.php:145
#, php-format
@@ -808,26 +652,11 @@
#: classes/Gems/Default/ConsentAction.php:68
#: classes/Gems/Default/GroupAction.php:88
-#: classes/Gems/Default/ReceptionAction.php:81
-#: classes/Gems/Default/RoleAction.php:232
-#: classes/Gems/Default/SurveyMaintenanceAction.php:199
-#: classes/Gems/Default/SurveyMaintenanceAction.php:413
-#: classes/Gems/Default/TrackActionAbstract.php:200
-#: classes/Gems/Default/TrackFieldsAction.php:101
-#: classes/Gems/Default/UpgradeAction.php:176
-#: classes/Gems/Export/RespondentExport.php:208
-#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:740
-#: classes/Gems/Tracker/Model/StandardTokenModel.php:214
-#: classes/Gems/Tracker/Snippets/EditTrackSnippetAbstract.php:150
-#: classes/Gems/Tracker/Snippets/ShowTrackUsageAbstract.php:147
-#: snippets/TrackSurveyOverviewSnippet.php:115
msgid "Description"
msgstr "Description"
#: classes/Gems/Default/ConsentAction.php:70
#: classes/Gems/Default/DatabaseAction.php:139
-#: classes/Gems/Default/TrackFieldsAction.php:97
-#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:739
msgid "Order"
msgstr "Order"
@@ -840,12 +669,8 @@
msgstr "Consent code"
#: classes/Gems/Default/ConsentAction.php:75
-msgid ""
-"Internal code, not visible to users, copied with the token information to "
-"the source."
-msgstr ""
-"Internal code, not visible to users, copied with the token information to "
-"the source."
+msgid "Internal code, not visible to users, copied with the token information to the source."
+msgstr "Internal code, not visible to users, copied with the token information to the source."
#: classes/Gems/Default/ConsentAction.php:92
msgid "respondent consent"
@@ -894,14 +719,10 @@
msgstr "No mails sent."
#: classes/Gems/Default/CronAction.php:226
-#: classes/Gems/Email/MultiMailForm.php:49
-#: classes/Gems/Email/OneMailForm.php:47
msgid "On this test system all mail will be delivered to the from address."
msgstr "On this test system all mail will be delivered to the from address."
#: classes/Gems/Default/DatabaseAction.php:75
-#: classes/Gems/Default/ProjectInformationAction.php:192
-#: classes/Gems/Task/CleanCache.php:58
msgid "Cache cleaned"
msgstr "Cache cleaned"
@@ -911,25 +732,18 @@
msgstr "No rows in %s."
#: classes/Gems/Default/DatabaseAction.php:134
-#: classes/Gems/Default/TrackFieldsAction.php:104
-#: classes/Gems/Default/TrackMaintenanceAction.php:229
msgid "Type"
msgstr "Type"
#: classes/Gems/Default/DatabaseAction.php:138
-#: classes/Gems/Default/SurveyMaintenanceAction.php:434
msgid "Group"
msgstr "Group"
#: classes/Gems/Default/DatabaseAction.php:140
-#: classes/Gems/Default/OrganizationAction.php:115
msgid "Location"
msgstr "Location"
#: classes/Gems/Default/DatabaseAction.php:143
-#: classes/Gems/Default/SourceAction.php:210
-#: classes/Gems/Export/RespondentExport.php:151
-#: classes/Gems/Tracker/Snippets/AnswerModelSnippetGeneric.php:149
msgid "Status"
msgstr "Status"
@@ -940,7 +754,6 @@
#: classes/Gems/Default/DatabaseAction.php:148
#: classes/Gems/Default/DatabaseAction.php:293
#: classes/Gems/Default/DatabaseAction.php:340
-#: classes/Gems/Tracker/Model/StandardTokenModel.php:204
msgid "Changed on"
msgstr "Changed on"
@@ -1011,9 +824,6 @@
#: classes/Gems/Default/DatabaseAction.php:287
#: classes/Gems/Default/DatabaseAction.php:333
-#: classes/Gems/Default/UpgradeAction.php:126
-#: classes/Gems/Default/UpgradeAction.php:153
-#: classes/Gems/Default/UpgradeAction.php:175
msgid "Level"
msgstr "Level"
@@ -1046,7 +856,6 @@
msgstr "%d new or changed patch(es)."
#: classes/Gems/Default/DatabaseAction.php:303
-#: classes/Gems/Default/ProjectInformationAction.php:137
msgid "Gems build"
msgstr "Gems build"
@@ -1071,7 +880,6 @@
msgstr "Show patches"
#: classes/Gems/Default/DatabaseAction.php:326
-#: classes/Gems/Task/Db/ExecutePatch.php:68
#, php-format
msgid "%d patch(es) executed."
msgstr "%d patch(es) executed."
@@ -1115,7 +923,6 @@
msgstr "Starting %d object creation scripts."
#: classes/Gems/Default/DatabaseAction.php:474
-#: classes/Gems/Task/Db/CreateNewTable.php:73
#, php-format
msgid "Finished %s creation script for object %d of %d"
msgstr "Finished %s creation script for object %d of %d"
@@ -1150,7 +957,6 @@
msgstr "Separate multiple commands with semicolons (;)."
#: classes/Gems/Default/DatabaseAction.php:522
-#: classes/Gems/Menu/MenuAbstract.php:275
msgid "Run"
msgstr "Run"
@@ -1194,14 +1000,6 @@
msgstr "Not patient nr, but respondent id as exported here."
#: classes/Gems/Default/ExportAction.php:154
-#: classes/Gems/Default/MailJobAction.php:100
-#: classes/Gems/Default/ProjectSurveysAction.php:67
-#: classes/Gems/Default/SurveyAction.php:191
-#: classes/Gems/Email/OneMailForm.php:57
-#: classes/Gems/Export/RespondentExport.php:148
-#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:737
-#: classes/Gems/Tracker/Model/StandardTokenModel.php:215
-#: snippets/TrackSurveyOverviewSnippet.php:111
msgid "Survey"
msgstr "Survey"
@@ -1224,34 +1022,20 @@
#: classes/Gems/Default/GroupAction.php:89
#: classes/Gems/Default/LogAction.php:201
-#: classes/Gems/Default/RoleAction.php:298
msgid "Role"
msgstr "Role"
#: classes/Gems/Default/GroupAction.php:92
-#: classes/Gems/Default/MailJobAction.php:82
-#: classes/Gems/Default/OrganizationAction.php:139
-#: classes/Gems/Default/ReceptionAction.php:88
-#: classes/Gems/Default/SourceAction.php:101
-#: classes/Gems/Default/SurveyMaintenanceAction.php:425
-#: classes/Gems/Default/SurveyMaintenanceAction.php:480
-#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:742
-#: classes/Gems/Tracker/Model/TrackModel.php:102
-#: classes/Gems/Util/TrackData.php:147
msgid "Active"
msgstr "Active"
#: classes/Gems/Default/GroupAction.php:97
-#: classes/Gems/Default/OrganizationAction.php:163
msgid "Allowed IP Ranges"
msgstr "Allowed IP Ranges"
#: classes/Gems/Default/GroupAction.php:98
-#: classes/Gems/Default/OrganizationAction.php:164
-msgid ""
-"Separate with | example: 10.0.0.0-10.0.0.255 (subnet masks are not supported)"
-msgstr ""
-"Separate with | example: 10.0.0.0-10.0.0.255 (subnet masks are not supported)"
+msgid "Separate with | example: 10.0.0.0-10.0.0.255 (subnet masks are not supported)"
+msgstr "Separate with | example: 10.0.0.0-10.0.0.255 (subnet masks are not supported)"
#: classes/Gems/Default/GroupAction.php:108
msgid "group"
@@ -1276,12 +1060,8 @@
msgstr "Please enter your username or e-mail address. "
#: classes/Gems/Default/IndexAction.php:182
-msgid ""
-"We will then send you an e-mail with a link. The link will bring you to a "
-"page where you can set a new password of your choice."
-msgstr ""
-"We will then send you an e-mail with a link. The link will bring you to a "
-"page where you can set a new password of your choice."
+msgid "We will then send you an e-mail with a link. The link will bring you to a page where you can set a new password of your choice."
+msgstr "We will then send you an e-mail with a link. The link will bring you to a page where you can set a new password of your choice."
#: classes/Gems/Default/IndexAction.php:188
msgid "Execute password reset"
@@ -1305,7 +1085,6 @@
msgstr "Please enter your password of choice twice."
#: classes/Gems/Default/IndexAction.php:218
-#: classes/Gems/User/Form/LayeredLoginForm.php:258
msgid "Department"
msgstr "Department"
@@ -1324,26 +1103,18 @@
msgstr "Good bye: %s."
#: classes/Gems/Default/IndexAction.php:339
-msgid ""
-"Your password reset request is no longer valid, please request a new link."
-msgstr ""
-"Your password reset request is no longer valid, please request a new link."
+msgid "Your password reset request is no longer valid, please request a new link."
+msgstr "Your password reset request is no longer valid, please request a new link."
#: classes/Gems/Default/IndexAction.php:341
-msgid ""
-"Your password input request is no longer valid, please request a new link."
-msgstr ""
-"Your password input request is no longer valid, please request a new link."
+msgid "Your password input request is no longer valid, please request a new link."
+msgstr "Your password input request is no longer valid, please request a new link."
#: classes/Gems/Default/IndexAction.php:360
-msgid ""
-"We sent you an e-mail with a reset link. Click on the link in the e-mail."
-msgstr ""
-"We sent you an e-mail with a reset link. Click on the link in the e-mail."
+msgid "We sent you an e-mail with a reset link. Click on the link in the e-mail."
+msgstr "We sent you an e-mail with a reset link. Click on the link in the e-mail."
#: classes/Gems/Default/IndexAction.php:369
-#: classes/Gems/Default/OptionAction.php:94
-#: classes/Gems/Default/StaffAction.php:510
msgid "New password is active."
msgstr "New password is active."
@@ -1356,9 +1127,7 @@
"Dear {greeting},\n"
"\n"
"\n"
-"A new password was requested for your [b]{organization}[/b] account on the "
-"[b]{project}[/b] site, please click within {reset_in_hours} hours on [url="
-"{reset_url}]this link[/url] to enter the password of your choice.\n"
+"A new password was requested for your [b]{organization}[/b] account on the [b]{project}[/b] site, please click within {reset_in_hours} hours on [url={reset_url}]this link[/url] to enter the password of your choice.\n"
"\n"
"\n"
"{organization_signature}\n"
@@ -1368,9 +1137,7 @@
"Dear {greeting},\n"
"\n"
"\n"
-"A new password was requested for your [b]{organization}[/b] account on the "
-"[b]{project}[/b] site, please click within {reset_in_hours} hours on [url="
-"{reset_url}]this link[/url] to enter the password of your choice.\n"
+"A new password was requested for your [b]{organization}[/b] account on the [b]{project}[/b] site, please click within {reset_in_hours} hours on [url={reset_url}]this link[/url] to enter the password of your choice.\n"
"\n"
"\n"
"{organization_signature}\n"
@@ -1390,32 +1157,26 @@
msgstr "Invalid language setting."
#: classes/Gems/Default/LogAction.php:78
-#: classes/Gems/Default/TokenPlanAction.php:243
msgid "from"
msgstr "from"
#: classes/Gems/Default/LogAction.php:83
-#: classes/Gems/Default/TokenPlanAction.php:248
msgid "until"
msgstr "until"
#: classes/Gems/Default/LogAction.php:89
-#: classes/Gems/Default/TokenPlanAction.php:254
msgid "days"
msgstr "days"
#: classes/Gems/Default/LogAction.php:90
-#: classes/Gems/Default/TokenPlanAction.php:255
msgid "weeks"
msgstr "weeks"
#: classes/Gems/Default/LogAction.php:91
-#: classes/Gems/Default/TokenPlanAction.php:256
msgid "months"
msgstr "months"
#: classes/Gems/Default/LogAction.php:92
-#: classes/Gems/Default/TokenPlanAction.php:257
msgid "years"
msgstr "years"
@@ -1452,33 +1213,23 @@
msgstr "All actions"
#: classes/Gems/Default/LogAction.php:190
-#: classes/Gems/Default/TrackFieldsAction.php:92
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:472
msgid "Date"
msgstr "Date"
#: classes/Gems/Default/LogAction.php:191
#: classes/Gems/Default/LogMaintenanceAction.php:52
-#: classes/Gems/Default/UpgradeAction.php:177
msgid "Action"
msgstr "Action"
#: classes/Gems/Default/LogAction.php:192
-#: classes/Gems/Default/MailTemplateAction.php:66
-#: classes/Gems/Email/EmailFormAbstract.php:168
msgid "Message"
msgstr "Message"
#: classes/Gems/Default/LogAction.php:198
-#: classes/Gems/Default/TokenPlanAction.php:116
-#: snippets/RespondentDetailsSnippet.php:74
-#: snippets/RespondentDetailsWithAssignmentsSnippet.php:148
msgid "Respondent"
msgstr "Patient"
#: classes/Gems/Default/LogAction.php:202
-#: classes/Gems/Default/OptionAction.php:175
-#: classes/Gems/User/RadiusUserDefinition.php:163
msgid "IP address"
msgstr "IP address"
@@ -1492,7 +1243,6 @@
msgstr "Log:"
#: classes/Gems/Default/LogMaintenanceAction.php:72
-#: snippets/RespondentTokenTabsSnippet.php:69
msgid "All"
msgstr "All"
@@ -1506,7 +1256,6 @@
#: classes/Gems/Default/MailJobAction.php:78
#: classes/Gems/Default/MailLogAction.php:118
-#: classes/Gems/Email/EmailFormAbstract.php:308
msgid "Template"
msgstr "Template"
@@ -1573,10 +1322,6 @@
msgstr "Use the 'By staff member' address"
#: classes/Gems/Default/MailJobAction.php:133
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:290
-#: classes/Gems/Tracker/Source/LimeSurvey1m9FieldMap.php:338
-#: snippets/Organization/OrganizationEditSnippet.php:85
-#: snippets/Organization/OrganizationEditSnippet.php:131
msgid "Other"
msgstr "Other"
@@ -1600,12 +1345,8 @@
msgstr "Turn Automatic Mail Jobs ON"
#: classes/Gems/Default/MailJobAction.php:176
-msgid ""
-"With automatic mail jobs and a cron job on the server, mails can be sent "
-"without manual user action."
-msgstr ""
-"With automatic mail jobs and a cron job on the server, mails can be sent "
-"without manual user action."
+msgid "With automatic mail jobs and a cron job on the server, mails can be sent without manual user action."
+msgstr "With automatic mail jobs and a cron job on the server, mails can be sent without manual user action."
#: classes/Gems/Default/MailLogAction.php:109
msgid "Date sent"
@@ -1629,7 +1370,6 @@
#: classes/Gems/Default/MailLogAction.php:115
#: classes/Gems/Default/MailTemplateAction.php:62
-#: classes/Gems/Email/EmailFormAbstract.php:349
msgid "Subject"
msgstr "Subject"
@@ -1672,7 +1412,6 @@
msgstr "TLS"
#: classes/Gems/Default/MailServerAction.php:80
-#: classes/Gems/User/RadiusUserDefinition.php:164
msgid "Port"
msgstr "Port"
@@ -1685,20 +1424,16 @@
msgstr "User ID"
#: classes/Gems/Default/MailServerAction.php:88
-#: classes/Gems/User/Form/LoginForm.php:127
msgid "Password"
msgstr "Password"
#: classes/Gems/Default/MailServerAction.php:90
#: classes/Gems/Default/SourceAction.php:95
-#: classes/Gems/User/Form/ChangePasswordForm.php:241
-#: classes/Gems/User/Form/ChangePasswordForm.php:287
msgid "Repeat password"
msgstr "Repeat password"
#: classes/Gems/Default/MailServerAction.php:91
#: classes/Gems/Default/SourceAction.php:74
-#: classes/Gems/User/RadiusUserDefinition.php:169
msgid "Enter only when changing"
msgstr "Enter only when changing the password"
@@ -1714,8 +1449,6 @@
#: classes/Gems/Default/MailTemplateAction.php:76
#: classes/Gems/Default/RespondentAction.php:349
-#: classes/Gems/Default/StaffAction.php:335
-#: classes/Gems/Default/StaffAction.php:405
msgid "(all organizations)"
msgstr "(all organizations)"
@@ -1740,7 +1473,6 @@
#: classes/Gems/Default/OptionAction.php:136
#: classes/Gems/Default/OrganizationAction.php:135
#: classes/Gems/Default/RespondentAction.php:195
-#: classes/Gems/Default/StaffAction.php:351
msgid "Language"
msgstr "Language"
@@ -1750,12 +1482,8 @@
msgstr "Options"
#: classes/Gems/Default/OptionAction.php:155
-msgid ""
-"This overview provides information about the last login activity on your "
-"account."
-msgstr ""
-"This overview provides information about the last login activity on your "
-"account."
+msgid "This overview provides information about the last login activity on your account."
+msgstr "This overview provides information about the last login activity on your account."
#: classes/Gems/Default/OptionAction.php:175
msgid "Date / time"
@@ -1766,7 +1494,6 @@
msgstr "Item"
#: classes/Gems/Default/OrganizationAction.php:92
-#: classes/Gems/Model/HiddenOrganizationModel.php:113
msgid "Inaccessible or unknown organization"
msgstr "Inaccessible or unknown organization"
@@ -1796,19 +1523,14 @@
#: classes/Gems/Default/OrganizationAction.php:129
#, php-format
-msgid ""
-"Always switch to this organization when %s is accessed from one of these "
-"space separated url's. The first is used for mails."
-msgstr ""
-"Always switch to this organization when %s is accessed from one of these "
-"space separated url's. The first is used for mails."
+msgid "Always switch to this organization when %s is accessed from one of these space separated url's. The first is used for mails."
+msgstr "Always switch to this organization when %s is accessed from one of these space separated url's. The first is used for mails."
#: classes/Gems/Default/OrganizationAction.php:139
msgid "Can the organization be used?"
msgstr "Can the organization be used?"
#: classes/Gems/Default/OrganizationAction.php:140
-#: classes/Gems/User/Form/LoginForm.php:151
msgid "Login"
msgstr "Login"
@@ -1858,12 +1580,10 @@
msgstr "Checked organizations see this organizations patients."
#: classes/Gems/Default/OrganizationAction.php:160
-#: classes/Gems/Default/SurveyMaintenanceAction.php:442
msgid "Code name"
msgstr "Code name"
#: classes/Gems/Default/OrganizationAction.php:160
-#: classes/Gems/Default/SurveyMaintenanceAction.php:442
msgid "Only for programmers."
msgstr "Only for programmers."
@@ -1872,7 +1592,6 @@
msgstr "This can not be changed yet"
#: classes/Gems/Default/OrganizationAction.php:180
-#: classes/Gems/Default/StaffAction.php:158
msgid "User Definition"
msgstr "User Definition"
@@ -1888,9 +1607,6 @@
#: classes/Gems/Default/OverviewPlanAction.php:115
#: classes/Gems/Default/ProjectSurveysAction.php:88
-#: classes/Gems/Default/SurveyAction.php:207
-#: classes/Gems/Default/SurveyMaintenanceAction.php:558
-#: classes/Gems/Tracker/Snippets/EditSingleSurveyTokenSnippetAbstract.php:157
msgid "survey"
msgid_plural "surveys"
msgstr[0] "survey"
@@ -2009,31 +1725,20 @@
msgstr "Session content"
#: classes/Gems/Default/ProjectInformationAction.php:225
-#: classes/Gems/Menu/MenuAbstract.php:341
msgid "Session"
msgstr "Session"
#: classes/Gems/Default/ProjectSurveysAction.php:68
-#: classes/Gems/Default/SurveyAction.php:192
-#: snippets/TrackSurveyOverviewSnippet.php:113
msgid "By"
msgstr "By"
#: classes/Gems/Default/ProjectSurveysAction.php:69
#: classes/Gems/Default/ProjectTracksAction.php:67
-#: classes/Gems/Default/SurveyAction.php:193
-#: classes/Gems/Default/TrackAction.php:330
-#: classes/Gems/Email/EmailFormAbstract.php:193
-#: classes/Gems/Email/EmailFormAbstract.php:251
-#: classes/Gems/Email/MailTemplateForm.php:81
-#: classes/Gems/Tracker/Model/TrackModel.php:103
msgid "From"
msgstr "From"
#: classes/Gems/Default/ProjectSurveysAction.php:70
#: classes/Gems/Default/ProjectTracksAction.php:68
-#: classes/Gems/Default/SurveyAction.php:197
-#: classes/Gems/Default/TrackAction.php:332
msgid "Until"
msgstr "Until"
@@ -2042,15 +1747,10 @@
msgstr "Active surveys"
#: classes/Gems/Default/ProjectTracksAction.php:65
-#: classes/Gems/Default/TrackAction.php:329
msgid "Survey #"
msgstr "Survey #"
#: classes/Gems/Default/ProjectTracksAction.php:85
-#: classes/Gems/Default/TrackAction.php:452
-#: classes/Gems/Default/TrackMaintenanceAction.php:309
-#: classes/Gems/Tracker/Snippets/EditTrackEngineSnippetGeneric.php:191
-#: classes/Gems/Tracker/Snippets/EditTrackSnippetAbstract.php:170
msgid "track"
msgid_plural "tracks"
msgstr[0] "track"
@@ -2066,7 +1766,6 @@
msgstr "Questions in survey %s"
#: classes/Gems/Default/ProjectTracksAction.php:118
-#: classes/Gems/Default/SurveyAction.php:85
#, php-format
msgid "Survey %s does not exist."
msgstr "Survey %s does not exist."
@@ -2076,7 +1775,6 @@
msgstr "Survey not specified."
#: classes/Gems/Default/ProjectTracksAction.php:132
-#: classes/Gems/Default/TrackActionAbstract.php:492
#, php-format
msgid "Track %s does not exist."
msgstr "Track %s does not exist."
@@ -2205,7 +1903,6 @@
msgstr "Has the patient signed the informed consent letter?"
#: classes/Gems/Default/RespondentAction.php:228
-#: classes/Gems/Tracker/Model/StandardTokenModel.php:203
msgid "Comments"
msgstr "Comments"
@@ -2214,11 +1911,6 @@
msgstr "Treatment"
#: classes/Gems/Default/RespondentAction.php:257
-#: classes/Gems/Default/TrackAction.php:132
-#: classes/Gems/Default/TrackAction.php:479
-#: classes/Gems/Tracker/Model/StandardTokenModel.php:212
-#: snippets/DeleteInSourceTrackSnippet.php:112
-#: snippets/EditTrackSnippet.php:94
msgid "Rejection code"
msgstr "Rejection code"
@@ -2235,7 +1927,6 @@
msgstr "Patient tracks stopped."
#: classes/Gems/Default/RespondentAction.php:304
-#: classes/Gems/Default/TrackAction.php:405
msgid "Choose a reception code to delete."
msgstr "Choose a reception code to delete."
@@ -2250,8 +1941,6 @@
msgstr "Please settle the informed consent form for this patient."
#: classes/Gems/Default/RespondentExportAction.php:54
-#: classes/Gems/Default/TrackAction.php:121
-#: snippets/DeleteInSourceTrackSnippet.php:82 snippets/EditTrackSnippet.php:72
msgid "Respondent number"
msgstr "Patient number"
@@ -2260,37 +1949,18 @@
msgstr "Separate multiple respondents with a comma (,)"
#: classes/Gems/Default/RespondentPlanAction.php:67
-#: classes/Gems/Default/SurveyAction.php:171
-#: classes/Gems/Default/TrackAction.php:297
-#: snippets/DeleteInSourceTrackSnippet.php:132
-#: snippets/DeleteSingleSurveyInSourceTokenSnippet.php:174
-#: snippets/DeleteSingleSurveyNotUsedTokenSnippet.php:145
-#: snippets/DeleteTrackTokenSnippet.php:195
-#: snippets/EditSingleSurveyTokenSnippet.php:134
-#: snippets/EditTrackSnippet.php:109 snippets/EditTrackTokenSnippet.php:144
-#: snippets/ShowSingleSurveyTokenSnippet.php:140
-#: snippets/ShowTrackTokenSnippet.php:146
msgid "Show respondent"
msgstr "Show patient"
#: classes/Gems/Default/RespondentPlanAction.php:73
-#: classes/Gems/Default/TrackAction.php:266
-#: classes/Gems/Default/TrackAction.php:285
-#: snippets/DeleteInSourceTrackSnippet.php:129
-#: snippets/EditTrackSnippet.php:107 snippets/EditTrackTokenSnippet.php:142
-#: snippets/ShowTrackTokenSnippet.php:145
msgid "Show track"
msgstr "Show track"
#: classes/Gems/Default/RespondentPlanAction.php:136
-#: classes/Gems/Default/TrackAction.php:317
-#: snippets/ShowTrackUsageSnippet.php:103
msgid " of "
msgstr " of "
#: classes/Gems/Default/RespondentPlanAction.php:137
-#: classes/Gems/Default/TrackAction.php:318
-#: snippets/ShowTrackUsageSnippet.php:104
msgid "Progress"
msgstr "Progress"
@@ -2389,40 +2059,20 @@
msgstr "Database Password"
#: classes/Gems/Default/SourceAction.php:115
-msgid ""
-"Check tokens for being answered or not, reruns survey and round event code "
-"on completed tokens and recalculates the start and end times of all tokens "
-"in tracks that have completed tokens."
-msgstr ""
-"Check tokens for being answered or not, reruns survey and round event code "
-"on completed tokens and recalculates the start and end times of all tokens "
-"in tracks that have completed tokens."
+msgid "Check tokens for being answered or not, reruns survey and round event code on completed tokens and recalculates the start and end times of all tokens in tracks that have completed tokens."
+msgstr "Check tokens for being answered or not, reruns survey and round event code on completed tokens and recalculates the start and end times of all tokens in tracks that have completed tokens."
#: classes/Gems/Default/SourceAction.php:116
-msgid ""
-"Run this code when survey result fields, survey or round events or the event "
-"code has changed or after bulk changes in a survey source."
-msgstr ""
-"Run this code when survey result fields, survey or round events or the event "
-"code has changed or after bulk changes in a survey source."
+msgid "Run this code when survey result fields, survey or round events or the event code has changed or after bulk changes in a survey source."
+msgstr "Run this code when survey result fields, survey or round events or the event code has changed or after bulk changes in a survey source."
#: classes/Gems/Default/SourceAction.php:126
-msgid ""
-"Check source for new surveys, changes in survey status and survey deletion. "
-"Can also perform maintenance on some sources, e.g. by changing the number of "
-"attributes."
-msgstr ""
-"Check source for new surveys, changes in survey status and survey deletion. "
-"Can also perform maintenance on some sources, e.g. by changing the number of "
-"attributes."
+msgid "Check source for new surveys, changes in survey status and survey deletion. Can also perform maintenance on some sources, e.g. by changing the number of attributes."
+msgstr "Check source for new surveys, changes in survey status and survey deletion. Can also perform maintenance on some sources, e.g. by changing the number of attributes."
#: classes/Gems/Default/SourceAction.php:127
-msgid ""
-"Run this code when the status of a survey in a source has changed or when "
-"the code has changed and the source must be adapted."
-msgstr ""
-"Run this code when the status of a survey in a source has changed or when "
-"the code has changed and the source must be adapted."
+msgid "Run this code when the status of a survey in a source has changed or when the code has changed and the source must be adapted."
+msgstr "Run this code when the status of a survey in a source has changed or when the code has changed and the source must be adapted."
#: classes/Gems/Default/SourceAction.php:140
#, php-format
@@ -2434,12 +2084,8 @@
msgstr "Refreshes the attributes for a token as stored in the source."
#: classes/Gems/Default/SourceAction.php:146
-msgid ""
-"Run this code when the number of attributes has changed or when you suspect "
-"the attributes have been corrupted somehow."
-msgstr ""
-"Run this code when the number of attributes has changed or when you suspect "
-"the attributes have been corrupted somehow."
+msgid "Run this code when the number of attributes has changed or when you suspect the attributes have been corrupted somehow."
+msgstr "Run this code when the number of attributes has changed or when you suspect the attributes have been corrupted somehow."
#: classes/Gems/Default/SourceAction.php:159
#, php-format
@@ -2493,7 +2139,6 @@
msgstr[1] "sources"
#: classes/Gems/Default/SourceAction.php:249
-#: classes/Gems/Menu/MenuAbstract.php:436
msgid "Survey Sources"
msgstr "Survey Sources"
@@ -2536,15 +2181,10 @@
#: classes/Gems/Default/StaffAction.php:268
#, php-format
-msgid ""
-"User with id %s already exists but is deleted, do you want to reactivate the "
-"account?"
-msgstr ""
-"User with id %s already exists but is deleted, do you want to reactivate the "
-"account?"
+msgid "User with id %s already exists but is deleted, do you want to reactivate the account?"
+msgstr "User with id %s already exists but is deleted, do you want to reactivate the account?"
-#: classes/Gems/Default/StaffAction.php:327 classes/Gems/User/User.php:1181
-#: classes/Gems/User/Form/OrganizationFormAbstract.php:232
+#: classes/Gems/Default/StaffAction.php:327
msgid "Username"
msgstr "Username"
@@ -2576,7 +2216,6 @@
msgstr "You are not allowed to change this password."
#: classes/Gems/Default/SurveyAction.php:64
-#: classes/Gems/Tracker/Snippets/EditSingleSurveyTokenSnippetAbstract.php:179
msgid "Add survey"
msgstr "Add survey"
@@ -2613,15 +2252,10 @@
msgstr "Assignments of this survey to %s"
#: classes/Gems/Default/SurveyAction.php:165
-#: snippets/DeleteSingleSurveyInSourceTokenSnippet.php:173
-#: snippets/DeleteSingleSurveyNotUsedTokenSnippet.php:144
-#: snippets/EditSingleSurveyTokenSnippet.php:133
-#: snippets/ShowSingleSurveyTokenSnippet.php:139
msgid "Show surveys"
msgstr "Show surveys"
#: classes/Gems/Default/SurveyAction.php:212
-#: snippets/RespondentDetailsWithAssignmentsSnippet.php:77
msgid "Assigned surveys"
msgstr "Assigned surveys"
@@ -2658,12 +2292,8 @@
msgstr "Create Single Survey"
#: classes/Gems/Default/SurveyMaintenanceAction.php:211
-msgid ""
-"At the moment this survey can only be assigned to respondents as part ...
[truncated message content] |