From: <gem...@li...> - 2012-05-07 09:27:40
|
Revision: 672 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=672&view=rev Author: mennodekker Date: 2012-05-07 09:27:28 +0000 (Mon, 07 May 2012) Log Message: ----------- Added getSubject method to allow setting a subject for use with tabbed forms. In a tab form the subject you are editing can be in a different tab, so the subject is added to the title. Cleaned up translations Modified Paths: -------------- trunk/library/classes/Gems/Controller/BrowseEditAction.php trunk/library/classes/Gems/Controller/ModelSnippetActionAbstract.php trunk/library/classes/Gems/Default/OrganizationAction.php trunk/library/classes/Gems/Default/RespondentAction.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 Modified: trunk/library/classes/Gems/Controller/BrowseEditAction.php =================================================================== --- trunk/library/classes/Gems/Controller/BrowseEditAction.php 2012-05-07 09:13:59 UTC (rev 671) +++ trunk/library/classes/Gems/Controller/BrowseEditAction.php 2012-05-07 09:27:28 UTC (rev 672) @@ -402,7 +402,13 @@ public function editAction() { if ($form = $this->processForm()) { - $this->html->h3(sprintf($this->_('Edit %s'), $this->getTopic())); + if ($this->useTabbedForms && method_exists($this, 'getSubject')) { + $data = $this->getModel()->loadFirst(); + $subject = $this->getSubject($data); + $this->html->h3(sprintf($this->_('Edit %s %s'), $this->getTopic(1), $subject)); + } else { + $this->html->h3(sprintf($this->_('Edit %s'), $this->getTopic(1))); + } $this->html[] = $form; } } Modified: trunk/library/classes/Gems/Controller/ModelSnippetActionAbstract.php =================================================================== --- trunk/library/classes/Gems/Controller/ModelSnippetActionAbstract.php 2012-05-07 09:13:59 UTC (rev 671) +++ trunk/library/classes/Gems/Controller/ModelSnippetActionAbstract.php 2012-05-07 09:27:28 UTC (rev 672) @@ -255,7 +255,7 @@ */ public function getEditTitle() { - return sprintf($this->_('Edit %s...'), $this->getTopic(1)); + return sprintf($this->_('Edit %s'), $this->getTopic(1)); } /** Modified: trunk/library/classes/Gems/Default/OrganizationAction.php =================================================================== --- trunk/library/classes/Gems/Default/OrganizationAction.php 2012-05-07 09:13:59 UTC (rev 671) +++ trunk/library/classes/Gems/Default/OrganizationAction.php 2012-05-07 09:27:28 UTC (rev 672) @@ -191,7 +191,10 @@ { $data = $this->getModel()->loadFirst(); - return sprintf($this->_('Edit %s %s - %s'), $this->getTopic(1), $data['gor_name'], $data['gor_location']); + //Add location to the subject + $subject = sprintf('%s - %s', $data['gor_name'], $data['gor_location']); + + return sprintf($this->_('Edit %s %s'), $this->getTopic(1), $subject); } /** Modified: trunk/library/classes/Gems/Default/RespondentAction.php =================================================================== --- trunk/library/classes/Gems/Default/RespondentAction.php 2012-05-07 09:13:59 UTC (rev 671) +++ trunk/library/classes/Gems/Default/RespondentAction.php 2012-05-07 09:27:28 UTC (rev 672) @@ -321,6 +321,11 @@ } } + public function getSubject($data) + { + return sprintf('%s - %s', $data['name'], $data['gr2o_patient_nr']); + } + public function getTopic($count = 1) { return $this->plural('respondent', 'respondents', $count); Modified: trunk/library/languages/default-en.mo =================================================================== (Binary files differ) Modified: trunk/library/languages/default-en.po =================================================================== --- trunk/library/languages/default-en.po 2012-05-07 09:13:59 UTC (rev 671) +++ trunk/library/languages/default-en.po 2012-05-07 09:27:28 UTC (rev 672) @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: GemsTracker EN\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-05-04 10:24+0100\n" +"POT-Creation-Date: 2012-05-07 11:24+0100\n" "PO-Revision-Date: \n" "Last-Translator: Menno Dekker <men...@er...>\n" "Language-Team: Erasmus MGZ <mat...@ma...>\n" @@ -18,77 +18,77 @@ "X-Poedit-KeywordsList: plural:1,2\n" "X-Poedit-SearchPath-0: .\n" -#: classes/GemsEscort.php:212 +#: classes/GemsEscort.php:214 #, php-format msgid "Path %s not writable" msgstr "Path %s not writable" -#: classes/GemsEscort.php:750 +#: classes/GemsEscort.php:752 #, php-format msgid "You are logged in as %s" msgstr "You are logged in as %s" -#: classes/GemsEscort.php:752 +#: classes/GemsEscort.php:754 #: classes/Gems/Menu.php:249 msgid "Logoff" msgstr "Logoff" -#: classes/GemsEscort.php:755 +#: classes/GemsEscort.php:757 msgid "You are not logged in" msgstr "You are not logged in" -#: classes/GemsEscort.php:939 +#: classes/GemsEscort.php:941 #, php-format msgid "User: %s" msgstr "User: %s" -#: classes/GemsEscort.php:964 +#: classes/GemsEscort.php:966 msgid "version" msgstr "version" -#: classes/GemsEscort.php:1395 +#: classes/GemsEscort.php:1397 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:1526 +#: classes/GemsEscort.php:1528 msgid "Please check back later." msgstr "Please check back later." -#: classes/GemsEscort.php:1528 -#: classes/GemsEscort.php:1532 -#: classes/GemsEscort.php:1533 +#: classes/GemsEscort.php:1530 +#: classes/GemsEscort.php:1534 +#: classes/GemsEscort.php:1535 msgid "System is in maintenance mode" msgstr "System is in maintenance mode" -#: classes/GemsEscort.php:1543 +#: classes/GemsEscort.php:1545 msgid "No access to site." msgstr "No access to site." -#: classes/GemsEscort.php:1545 -#: classes/GemsEscort.php:1587 +#: classes/GemsEscort.php:1547 +#: classes/GemsEscort.php:1589 msgid "You have no access to this site." msgstr "You have no access to this site." -#: classes/GemsEscort.php:1561 +#: classes/GemsEscort.php:1563 msgid "No access to page" msgstr "No access to page" -#: classes/GemsEscort.php:1563 +#: classes/GemsEscort.php:1565 #, 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:1573 -#: classes/GemsEscort.php:1585 +#: classes/GemsEscort.php:1575 +#: classes/GemsEscort.php:1587 msgid "You are no longer logged in." msgstr "You are no longer logged in." -#: classes/GemsEscort.php:1574 +#: classes/GemsEscort.php:1576 msgid "You must login to access this page." msgstr "You must login to access this page." -#: classes/GemsEscort.php:1714 #: classes/GemsEscort.php:1716 +#: classes/GemsEscort.php:1718 #, php-format msgid "%d survey" msgid_plural "%d surveys" @@ -423,10 +423,6 @@ msgid " The error message is: %s" msgstr " The error message is: %s" -#: classes/Gems/Tracker.php:771 -msgid "Checks performed" -msgstr "Checks performed" - #: classes/Gems/Upgrades.php:77 msgid "Syncing surveys for all sources" msgstr "Syncing surveys for all sources" @@ -462,79 +458,85 @@ msgid "%2$u %1$s deleted" msgstr "%2$u %1$s deleted" -#: classes/Gems/Controller/BrowseEditAction.php:405 +#: classes/Gems/Controller/BrowseEditAction.php:408 #, php-format +msgid "Edit %s %s" +msgstr "Edit %s %s" + +#: classes/Gems/Controller/BrowseEditAction.php:410 +#: classes/Gems/Controller/ModelSnippetActionAbstract.php:258 +#, php-format msgid "Edit %s" msgstr "Edit %s" -#: classes/Gems/Controller/BrowseEditAction.php:502 +#: classes/Gems/Controller/BrowseEditAction.php:508 msgid "Free search text" msgstr "Free search text" -#: classes/Gems/Controller/BrowseEditAction.php:573 +#: classes/Gems/Controller/BrowseEditAction.php:579 msgid "Search" msgstr "Search" -#: classes/Gems/Controller/BrowseEditAction.php:589 +#: classes/Gems/Controller/BrowseEditAction.php:595 #, php-format msgid "No %s found" msgstr "No %s found" -#: classes/Gems/Controller/BrowseEditAction.php:673 +#: classes/Gems/Controller/BrowseEditAction.php:679 #: classes/Gems/Default/ExportAction.php:234 #, php-format msgid "No %s found." msgstr "No %s found." -#: classes/Gems/Controller/BrowseEditAction.php:791 +#: classes/Gems/Controller/BrowseEditAction.php:797 msgid "Are you sure?" msgstr "Are you sure?" -#: classes/Gems/Controller/BrowseEditAction.php:807 +#: classes/Gems/Controller/BrowseEditAction.php:813 #: classes/Gems/Default/DatabaseAction.php:187 #: classes/Gems/Default/DatabaseAction.php:499 msgid "Yes" msgstr "Yes" -#: classes/Gems/Controller/BrowseEditAction.php:808 +#: classes/Gems/Controller/BrowseEditAction.php:814 #: classes/Gems/Default/DatabaseAction.php:188 #: classes/Gems/Default/DatabaseAction.php:500 msgid "No" msgstr "No" -#: classes/Gems/Controller/BrowseEditAction.php:861 +#: classes/Gems/Controller/BrowseEditAction.php:867 #, php-format msgid "Unknown %s requested" msgstr "Unknown %s requested" -#: classes/Gems/Controller/BrowseEditAction.php:884 +#: classes/Gems/Controller/BrowseEditAction.php:890 #, php-format msgid "New %1$s..." msgstr "New %1$s..." -#: classes/Gems/Controller/BrowseEditAction.php:892 +#: classes/Gems/Controller/BrowseEditAction.php:898 msgid "Save" msgstr "Save" -#: classes/Gems/Controller/BrowseEditAction.php:928 +#: classes/Gems/Controller/BrowseEditAction.php:934 #, php-format msgid "%2$u %1$s saved" msgstr "%2$u %1$s saved" -#: classes/Gems/Controller/BrowseEditAction.php:931 +#: classes/Gems/Controller/BrowseEditAction.php:937 msgid "No changes to save." msgstr "No changes to save." -#: classes/Gems/Controller/BrowseEditAction.php:940 +#: classes/Gems/Controller/BrowseEditAction.php:946 msgid "Input error! No changes saved!" msgstr "Input error! No changes saved!" -#: classes/Gems/Controller/BrowseEditAction.php:968 +#: classes/Gems/Controller/BrowseEditAction.php:974 #, php-format msgid "Show %s" msgstr "Show %s" -#: classes/Gems/Controller/BrowseEditAction.php:975 +#: classes/Gems/Controller/BrowseEditAction.php:981 #, php-format msgid "Unknown %s." msgstr "Unknown %s." @@ -549,11 +551,6 @@ msgid "Do you want to delete this %s?" msgstr "Do you want to delete this %s?" -#: classes/Gems/Controller/ModelSnippetActionAbstract.php:258 -#, php-format -msgid "Edit %s..." -msgstr "Edit %s..." - #: classes/Gems/Controller/ModelSnippetActionAbstract.php:271 msgid "No data found." msgstr "No data found." @@ -1026,78 +1023,78 @@ msgid "Administrative groups" msgstr "Administrative groups" -#: classes/Gems/Default/IndexAction.php:156 +#: classes/Gems/Default/IndexAction.php:157 msgid "Request password reset" msgstr "Request password reset" -#: classes/Gems/Default/IndexAction.php:160 +#: classes/Gems/Default/IndexAction.php:161 msgid "Please enter your organization and your username or e-mail address. " msgstr "Please enter your organization and your username or e-mail address. " -#: classes/Gems/Default/IndexAction.php:162 +#: classes/Gems/Default/IndexAction.php:163 msgid "Please enter your username or e-mail address. " msgstr "Please enter your username or e-mail address. " -#: classes/Gems/Default/IndexAction.php:164 +#: classes/Gems/Default/IndexAction.php:165 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:170 +#: classes/Gems/Default/IndexAction.php:171 msgid "Execute password reset" msgstr "Execute password reset" -#: classes/Gems/Default/IndexAction.php:171 +#: classes/Gems/Default/IndexAction.php:172 msgid "We received your password reset request." msgstr "We received your password reset request." -#: classes/Gems/Default/IndexAction.php:174 +#: classes/Gems/Default/IndexAction.php:175 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" -#: classes/Gems/Default/IndexAction.php:175 +#: classes/Gems/Default/IndexAction.php:176 msgid "Welcome to this website." msgstr "Welcome to this website." -#: classes/Gems/Default/IndexAction.php:178 +#: classes/Gems/Default/IndexAction.php:179 msgid "Please enter your password of choice twice." msgstr "Please enter your password of choice twice." -#: classes/Gems/Default/IndexAction.php:216 +#: classes/Gems/Default/IndexAction.php:217 msgid "Your password must be changed." msgstr "Your password must be changed." -#: classes/Gems/Default/IndexAction.php:231 +#: classes/Gems/Default/IndexAction.php:232 #, php-format msgid "Login successful, welcome %s." msgstr "Login successful, welcome %s." -#: classes/Gems/Default/IndexAction.php:271 +#: classes/Gems/Default/IndexAction.php:272 #, php-format msgid "Good bye: %s." msgstr "Good bye: %s." -#: classes/Gems/Default/IndexAction.php:294 +#: classes/Gems/Default/IndexAction.php:295 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:296 +#: classes/Gems/Default/IndexAction.php:297 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:315 +#: classes/Gems/Default/IndexAction.php:316 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:324 +#: classes/Gems/Default/IndexAction.php:325 msgid "New password is active." msgstr "New password is active." -#: classes/Gems/Default/IndexAction.php:345 +#: classes/Gems/Default/IndexAction.php:346 msgid "Password reset requested" msgstr "Password reset requested" -#: classes/Gems/Default/IndexAction.php:348 +#: classes/Gems/Default/IndexAction.php:349 msgid "" "Dear {greeting},\n" "\n" @@ -1563,16 +1560,11 @@ msgid "User Definition" msgstr "User Definition" -#: classes/Gems/Default/OrganizationAction.php:194 -#, php-format -msgid "Edit %s %s - %s" -msgstr "Edit %s %s - %s" - -#: classes/Gems/Default/OrganizationAction.php:204 +#: classes/Gems/Default/OrganizationAction.php:207 msgid "Participating organizations" msgstr "Participating organizations" -#: classes/Gems/Default/OrganizationAction.php:215 +#: classes/Gems/Default/OrganizationAction.php:218 msgid "organization" msgid_plural "organizations" msgstr[0] "organization" @@ -1903,13 +1895,13 @@ msgid "Choose a reception code to delete." msgstr "Choose a reception code to delete." -#: classes/Gems/Default/RespondentAction.php:326 +#: classes/Gems/Default/RespondentAction.php:331 msgid "respondent" msgid_plural "respondents" msgstr[0] "patient" msgstr[1] "patients" -#: classes/Gems/Default/RespondentAction.php:399 +#: classes/Gems/Default/RespondentAction.php:404 msgid "Please settle the informed consent form for this respondent." msgstr "Please settle the informed consent form for this patient." @@ -2075,55 +2067,55 @@ msgid "Synchronize all sources." msgstr "Synchronize all sources." -#: classes/Gems/Default/StaffAction.php:161 +#: classes/Gems/Default/StaffAction.php:158 msgid "Unsupported User Definition" msgstr "Unsupported User Definition" -#: classes/Gems/Default/StaffAction.php:190 +#: classes/Gems/Default/StaffAction.php:187 msgid "Users can only login when this box is checked." msgstr "Users can only login when this box is checked." -#: classes/Gems/Default/StaffAction.php:191 +#: classes/Gems/Default/StaffAction.php:188 msgid "If checked the user will logoff when answering a survey." msgstr "If checked the user will logoff when answering a survey." -#: classes/Gems/Default/StaffAction.php:208 +#: classes/Gems/Default/StaffAction.php:205 msgid "You are not allowed to edit this staff member." msgstr "You are not allowed to edit this staff member." -#: classes/Gems/Default/StaffAction.php:265 +#: classes/Gems/Default/StaffAction.php:262 #, 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?" -#: classes/Gems/Default/StaffAction.php:306 +#: classes/Gems/Default/StaffAction.php:303 msgid "Username" msgstr "Username" -#: classes/Gems/Default/StaffAction.php:321 +#: classes/Gems/Default/StaffAction.php:318 msgid "Primary function" msgstr "Primary function" -#: classes/Gems/Default/StaffAction.php:331 +#: classes/Gems/Default/StaffAction.php:328 msgid "Can login" msgstr "Can login" -#: classes/Gems/Default/StaffAction.php:332 +#: classes/Gems/Default/StaffAction.php:329 msgid "Logout on survey" msgstr "Logout on survey" -#: classes/Gems/Default/StaffAction.php:407 +#: classes/Gems/Default/StaffAction.php:404 msgid "staff member" msgid_plural "staff members" msgstr[0] "staff member" msgstr[1] "staff members" -#: classes/Gems/Default/StaffAction.php:439 +#: classes/Gems/Default/StaffAction.php:436 #, php-format msgid "Reset password for: %s" msgstr "Reset password for: %s" -#: classes/Gems/Default/StaffAction.php:442 +#: classes/Gems/Default/StaffAction.php:439 msgid "You are not allowed to change this password." msgstr "You are not allowed to change this password." @@ -2486,12 +2478,12 @@ msgid "%s %s not found." msgstr "%s %s not found." -#: classes/Gems/Default/TrackActionAbstract.php:489 +#: classes/Gems/Default/TrackActionAbstract.php:492 #, php-format msgid "Overview of %s track for respondent %s" msgstr "Overview of %s track for patient %s" -#: classes/Gems/Default/TrackActionAbstract.php:493 +#: classes/Gems/Default/TrackActionAbstract.php:496 msgid "This track is currently not assigned to this respondent." msgstr "This track is currently not assigned to this patient." @@ -3686,25 +3678,26 @@ msgstr[0] "Your account is temporarily blocked, please wait a minute." msgstr[1] "Your account is temporarily blocked, please wait %d minutes." -#: classes/Gems/User/User.php:430 +#: classes/Gems/User/User.php:431 +#: classes/Gems/User/User.php:458 msgid "You are not allowed to login from this location." msgstr "You are not allowed to login from this location." -#: classes/Gems/User/User.php:1081 +#: classes/Gems/User/User.php:1113 msgid "Your birthday" msgstr "Your birthday" -#: classes/Gems/User/User.php:1097 +#: classes/Gems/User/User.php:1129 #: classes/Gems/User/Form/ChangePasswordForm.php:163 #, php-format msgid "%s is not correct." msgstr "%s is not correct." -#: classes/Gems/User/User.php:1179 +#: classes/Gems/User/User.php:1211 msgid "Trying to send a password reset to a user that cannot be reset." msgstr "Trying to send a password reset to a user that cannot be reset." -#: classes/Gems/User/User.php:1207 +#: classes/Gems/User/User.php:1239 msgid "Unable to send e-mail." msgstr "Unable to send e-mail." @@ -4306,6 +4299,15 @@ msgid "The Pulse software was made possible thanks to support from " msgstr "The Pulse software was made possible thanks to support from " +#~ msgid "Edit %s..." +#~ msgstr "Edit %s..." + +#~ msgid "Checks performed" +#~ msgstr "Checks performed" + +#~ msgid "Edit %s %s - %s" +#~ msgstr "Edit %s %s - %s" + #~ msgid "Cookies must be enabled for this site." #~ msgstr "Cookies must be enabled for this site." Modified: trunk/library/languages/default-nl.mo =================================================================== (Binary files differ) Modified: trunk/library/languages/default-nl.po =================================================================== --- trunk/library/languages/default-nl.po 2012-05-07 09:13:59 UTC (rev 671) +++ trunk/library/languages/default-nl.po 2012-05-07 09:27:28 UTC (rev 672) @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: GemsTracker NL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-05-04 10:26+0100\n" +"POT-Creation-Date: 2012-05-07 11:23+0100\n" "PO-Revision-Date: \n" "Last-Translator: Menno Dekker <men...@er...>\n" "Language-Team: Erasmus MGZ <mat...@ma...>\n" @@ -18,77 +18,77 @@ "X-Poedit-KeywordsList: plural:1,2\n" "X-Poedit-SearchPath-0: .\n" -#: classes/GemsEscort.php:212 +#: classes/GemsEscort.php:214 #, php-format msgid "Path %s not writable" msgstr "Path %s niet schrijfbaar" -#: classes/GemsEscort.php:750 +#: classes/GemsEscort.php:752 #, php-format msgid "You are logged in as %s" msgstr "Ingelogd als %s" -#: classes/GemsEscort.php:752 +#: classes/GemsEscort.php:754 #: classes/Gems/Menu.php:249 msgid "Logoff" msgstr "Uitloggen" -#: classes/GemsEscort.php:755 +#: classes/GemsEscort.php:757 msgid "You are not logged in" msgstr "U bent niet ingelogd" -#: classes/GemsEscort.php:939 +#: classes/GemsEscort.php:941 #, php-format msgid "User: %s" msgstr "Login: %s" -#: classes/GemsEscort.php:964 +#: classes/GemsEscort.php:966 msgid "version" msgstr "versie" -#: classes/GemsEscort.php:1395 +#: classes/GemsEscort.php:1397 msgid "Take note: your session has expired, your inputs were not saved. Please check the input data and try again" msgstr "Let op: uw sessie is verlopen, uw invoer is niet opgeslagen. Controleer uw gegevens en probeer a.u.b. opnieuw." -#: classes/GemsEscort.php:1526 +#: classes/GemsEscort.php:1528 msgid "Please check back later." msgstr "Probeer het later opnieuw." -#: classes/GemsEscort.php:1528 -#: classes/GemsEscort.php:1532 -#: classes/GemsEscort.php:1533 +#: classes/GemsEscort.php:1530 +#: classes/GemsEscort.php:1534 +#: classes/GemsEscort.php:1535 msgid "System is in maintenance mode" msgstr "Systeem is in onderhoudsmodus" -#: classes/GemsEscort.php:1543 +#: classes/GemsEscort.php:1545 msgid "No access to site." msgstr "Geen toegang tot website." -#: classes/GemsEscort.php:1545 -#: classes/GemsEscort.php:1587 +#: classes/GemsEscort.php:1547 +#: classes/GemsEscort.php:1589 msgid "You have no access to this site." msgstr "U heeft geen toegang tot deze website." -#: classes/GemsEscort.php:1561 +#: classes/GemsEscort.php:1563 msgid "No access to page" msgstr "Geen toegang tot pagina" -#: classes/GemsEscort.php:1563 +#: classes/GemsEscort.php:1565 #, php-format msgid "Access to this page is not allowed for current role: %s." msgstr "U heeft geen toegang tot deze pagina. Uw huidige rol is: %s." -#: classes/GemsEscort.php:1573 -#: classes/GemsEscort.php:1585 +#: classes/GemsEscort.php:1575 +#: classes/GemsEscort.php:1587 msgid "You are no longer logged in." msgstr "U bent niet meer ingelogd." -#: classes/GemsEscort.php:1574 +#: classes/GemsEscort.php:1576 msgid "You must login to access this page." msgstr "U moet ingelogd zijn voor toegang tot deze pagina." -#: classes/GemsEscort.php:1714 #: classes/GemsEscort.php:1716 +#: classes/GemsEscort.php:1718 #, php-format msgid "%d survey" msgid_plural "%d surveys" @@ -423,10 +423,6 @@ msgid " The error message is: %s" msgstr "De foutmelding is: %s" -#: classes/Gems/Tracker.php:771 -msgid "Checks performed" -msgstr "Controle uitgevoerd" - #: classes/Gems/Upgrades.php:77 msgid "Syncing surveys for all sources" msgstr "Vragenlijsten synchroniseren voor alle bronnen." @@ -462,79 +458,85 @@ msgid "%2$u %1$s deleted" msgstr "%2$u %1$s verwijderd" -#: classes/Gems/Controller/BrowseEditAction.php:405 +#: classes/Gems/Controller/BrowseEditAction.php:408 #, php-format +msgid "Edit %s %s" +msgstr "Bewerk %s %s" + +#: classes/Gems/Controller/BrowseEditAction.php:410 +#: classes/Gems/Controller/ModelSnippetActionAbstract.php:258 +#, php-format msgid "Edit %s" msgstr "Bewerk %s" -#: classes/Gems/Controller/BrowseEditAction.php:502 +#: classes/Gems/Controller/BrowseEditAction.php:508 msgid "Free search text" msgstr "Vrije zoek tekst" -#: classes/Gems/Controller/BrowseEditAction.php:573 +#: classes/Gems/Controller/BrowseEditAction.php:579 msgid "Search" msgstr "Zoeken" -#: classes/Gems/Controller/BrowseEditAction.php:589 +#: classes/Gems/Controller/BrowseEditAction.php:595 #, php-format msgid "No %s found" msgstr "Geen %s gevonden" -#: classes/Gems/Controller/BrowseEditAction.php:673 +#: classes/Gems/Controller/BrowseEditAction.php:679 #: classes/Gems/Default/ExportAction.php:234 #, php-format msgid "No %s found." msgstr "Geen %s gevonden." -#: classes/Gems/Controller/BrowseEditAction.php:791 +#: classes/Gems/Controller/BrowseEditAction.php:797 msgid "Are you sure?" msgstr "Weet u het zeker?" -#: classes/Gems/Controller/BrowseEditAction.php:807 +#: classes/Gems/Controller/BrowseEditAction.php:813 #: classes/Gems/Default/DatabaseAction.php:187 #: classes/Gems/Default/DatabaseAction.php:499 msgid "Yes" msgstr "Ja" -#: classes/Gems/Controller/BrowseEditAction.php:808 +#: classes/Gems/Controller/BrowseEditAction.php:814 #: classes/Gems/Default/DatabaseAction.php:188 #: classes/Gems/Default/DatabaseAction.php:500 msgid "No" msgstr "Nee" -#: classes/Gems/Controller/BrowseEditAction.php:861 +#: classes/Gems/Controller/BrowseEditAction.php:867 #, php-format msgid "Unknown %s requested" msgstr "Onjuist %s verzoek" -#: classes/Gems/Controller/BrowseEditAction.php:884 +#: classes/Gems/Controller/BrowseEditAction.php:890 #, php-format msgid "New %1$s..." msgstr "Nieuwe %1$s..." -#: classes/Gems/Controller/BrowseEditAction.php:892 +#: classes/Gems/Controller/BrowseEditAction.php:898 msgid "Save" msgstr "Opslaan" -#: classes/Gems/Controller/BrowseEditAction.php:928 +#: classes/Gems/Controller/BrowseEditAction.php:934 #, php-format msgid "%2$u %1$s saved" msgstr "%2$u %1$s opgeslagen" -#: classes/Gems/Controller/BrowseEditAction.php:931 +#: classes/Gems/Controller/BrowseEditAction.php:937 msgid "No changes to save." msgstr "Geen verandering om op te slaan." -#: classes/Gems/Controller/BrowseEditAction.php:940 +#: classes/Gems/Controller/BrowseEditAction.php:946 msgid "Input error! No changes saved!" msgstr "Invoer fout! Veranderingen niet opgeslagen!" -#: classes/Gems/Controller/BrowseEditAction.php:968 +#: classes/Gems/Controller/BrowseEditAction.php:974 #, php-format msgid "Show %s" msgstr "Toon %s" -#: classes/Gems/Controller/BrowseEditAction.php:975 +#: classes/Gems/Controller/BrowseEditAction.php:981 #, php-format msgid "Unknown %s." msgstr "%s is onbekend." @@ -549,11 +551,6 @@ msgid "Do you want to delete this %s?" msgstr "Weet u zeker dat deze %s verwijderd moet worden?" -#: classes/Gems/Controller/ModelSnippetActionAbstract.php:258 -#, php-format -msgid "Edit %s..." -msgstr "Bewerk %s..." - #: classes/Gems/Controller/ModelSnippetActionAbstract.php:271 msgid "No data found." msgstr "Geen gegevens gevonden." @@ -1026,78 +1023,78 @@ msgid "Administrative groups" msgstr "Beheer groepen" -#: classes/Gems/Default/IndexAction.php:156 +#: classes/Gems/Default/IndexAction.php:157 msgid "Request password reset" msgstr "Wachtwoord vergeten?" -#: classes/Gems/Default/IndexAction.php:160 +#: classes/Gems/Default/IndexAction.php:161 msgid "Please enter your organization and your username or e-mail address. " msgstr "Geef uw organisatie en uw email adres of de gebruikersnaam op. " -#: classes/Gems/Default/IndexAction.php:162 +#: classes/Gems/Default/IndexAction.php:163 msgid "Please enter your username or e-mail address. " msgstr "Geef uw email adres of gebruikersnaam op. " -#: classes/Gems/Default/IndexAction.php:164 +#: classes/Gems/Default/IndexAction.php:165 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 "Vervolgens sturen wij u een email met een link. De link verwijst naar een pagina waar u een zelfgekozen wachtwoord in kan voeren." -#: classes/Gems/Default/IndexAction.php:170 +#: classes/Gems/Default/IndexAction.php:171 msgid "Execute password reset" msgstr "Vervang vergeten passwood" -#: classes/Gems/Default/IndexAction.php:171 +#: classes/Gems/Default/IndexAction.php:172 msgid "We received your password reset request." msgstr "We hebben uw verzoek voor een nieuw wachtwoord ontvangen." -#: classes/Gems/Default/IndexAction.php:174 +#: classes/Gems/Default/IndexAction.php:175 #, php-format msgid "Welcome to %s" msgstr "Welkom bij %s" -#: classes/Gems/Default/IndexAction.php:175 +#: classes/Gems/Default/IndexAction.php:176 msgid "Welcome to this website." msgstr "Welkom op deze website." -#: classes/Gems/Default/IndexAction.php:178 +#: classes/Gems/Default/IndexAction.php:179 msgid "Please enter your password of choice twice." msgstr "Geef twee keer een zelfgekozen wachtwoord op." -#: classes/Gems/Default/IndexAction.php:216 +#: classes/Gems/Default/IndexAction.php:217 msgid "Your password must be changed." msgstr "Uw wachtwoord moet veranderd worden." -#: classes/Gems/Default/IndexAction.php:231 +#: classes/Gems/Default/IndexAction.php:232 #, php-format msgid "Login successful, welcome %s." msgstr "Login in orde, welkom %s." -#: classes/Gems/Default/IndexAction.php:271 +#: classes/Gems/Default/IndexAction.php:272 #, php-format msgid "Good bye: %s." msgstr "Tot ziens: %s." -#: classes/Gems/Default/IndexAction.php:294 +#: classes/Gems/Default/IndexAction.php:295 msgid "Your password reset request is no longer valid, please request a new link." msgstr "Uw verzoek om een nieuw wachtwoord is niet meer geldig, maar u kan hieronder een nieuwe link aanvragen." -#: classes/Gems/Default/IndexAction.php:296 +#: classes/Gems/Default/IndexAction.php:297 msgid "Your password input request is no longer valid, please request a new link." msgstr "Uw link om een wachtwoord in te voeren is niet meer geldig, maar u kan hieronder een nieuwe link aanvragen." -#: classes/Gems/Default/IndexAction.php:315 +#: classes/Gems/Default/IndexAction.php:316 msgid "We sent you an e-mail with a reset link. Click on the link in the e-mail." msgstr "We hebben u een email met reset link gestuurd. Klik op de link in de email." -#: classes/Gems/Default/IndexAction.php:324 +#: classes/Gems/Default/IndexAction.php:325 msgid "New password is active." msgstr "Nieuwe wachtwoord geactiveerd." -#: classes/Gems/Default/IndexAction.php:345 +#: classes/Gems/Default/IndexAction.php:346 msgid "Password reset requested" msgstr "Wachtwoord reset aangevraagd" -#: classes/Gems/Default/IndexAction.php:348 +#: classes/Gems/Default/IndexAction.php:349 msgid "" "Dear {greeting},\n" "\n" @@ -1563,16 +1560,11 @@ msgid "User Definition" msgstr "User Definition" -#: classes/Gems/Default/OrganizationAction.php:194 -#, php-format -msgid "Edit %s %s - %s" -msgstr "Bewerk %s %s - %s" - -#: classes/Gems/Default/OrganizationAction.php:204 +#: classes/Gems/Default/OrganizationAction.php:207 msgid "Participating organizations" msgstr "Deelnemende organisaties" -#: classes/Gems/Default/OrganizationAction.php:215 +#: classes/Gems/Default/OrganizationAction.php:218 msgid "organization" msgid_plural "organizations" msgstr[0] "organisatie" @@ -1903,13 +1895,13 @@ msgid "Choose a reception code to delete." msgstr "Kies een ontvangst code om te verwijderen." -#: classes/Gems/Default/RespondentAction.php:326 +#: classes/Gems/Default/RespondentAction.php:331 msgid "respondent" msgid_plural "respondents" msgstr[0] "patiënt" msgstr[1] "patiënten" -#: classes/Gems/Default/RespondentAction.php:399 +#: classes/Gems/Default/RespondentAction.php:404 msgid "Please settle the informed consent form for this respondent." msgstr "A.u.b. het informed consent formulier doornemen met deze patiënt" @@ -2075,55 +2067,55 @@ msgid "Synchronize all sources." msgstr "Synchroniseer alle bronnen." -#: classes/Gems/Default/StaffAction.php:161 +#: classes/Gems/Default/StaffAction.php:158 msgid "Unsupported User Definition" msgstr "Onbekende User Definition" -#: classes/Gems/Default/StaffAction.php:190 +#: classes/Gems/Default/StaffAction.php:187 msgid "Users can only login when this box is checked." msgstr "Gebruikers kunnen alleen inloggen als dit is aangevinkt." -#: classes/Gems/Default/StaffAction.php:191 +#: classes/Gems/Default/StaffAction.php:188 msgid "If checked the user will logoff when answering a survey." msgstr "Indien actief, dan logt de gebruiker uit voor het beantwoorden van een vragenlijst." -#: classes/Gems/Default/StaffAction.php:208 +#: classes/Gems/Default/StaffAction.php:205 msgid "You are not allowed to edit this staff member." msgstr "U mag deze medewerker niet wijzigen." -#: classes/Gems/Default/StaffAction.php:265 +#: classes/Gems/Default/StaffAction.php:262 #, php-format msgid "User with id %s already exists but is deleted, do you want to reactivate the account?" msgstr "Gebruiker met inlognaam %s bestaat al maar is verwijderd, wilt u het account opnieuw activeren?" -#: classes/Gems/Default/StaffAction.php:306 +#: classes/Gems/Default/StaffAction.php:303 msgid "Username" msgstr "Gebruikersnaam" -#: classes/Gems/Default/StaffAction.php:321 +#: classes/Gems/Default/StaffAction.php:318 msgid "Primary function" msgstr "Primaire functie" -#: classes/Gems/Default/StaffAction.php:331 +#: classes/Gems/Default/StaffAction.php:328 msgid "Can login" msgstr "Kan inloggen" -#: classes/Gems/Default/StaffAction.php:332 +#: classes/Gems/Default/StaffAction.php:329 msgid "Logout on survey" msgstr "Logout bij beantwoorden vragenlijst" -#: classes/Gems/Default/StaffAction.php:407 +#: classes/Gems/Default/StaffAction.php:404 msgid "staff member" msgid_plural "staff members" msgstr[0] "medewerker" msgstr[1] "medewerkers" -#: classes/Gems/Default/StaffAction.php:439 +#: classes/Gems/Default/StaffAction.php:436 #, php-format msgid "Reset password for: %s" msgstr "Verander het wachtwoord voor: %s" -#: classes/Gems/Default/StaffAction.php:442 +#: classes/Gems/Default/StaffAction.php:439 msgid "You are not allowed to change this password." msgstr "U mag dit wachtwoord niet wijzigen." @@ -2486,12 +2478,12 @@ msgid "%s %s not found." msgstr "%s %s niet gevonden." -#: classes/Gems/Default/TrackActionAbstract.php:489 +#: classes/Gems/Default/TrackActionAbstract.php:492 #, php-format msgid "Overview of %s track for respondent %s" msgstr "Overzicht van het %s traject voor patiënt %s " -#: classes/Gems/Default/TrackActionAbstract.php:493 +#: classes/Gems/Default/TrackActionAbstract.php:496 msgid "This track is currently not assigned to this respondent." msgstr "Dit traject is nog niet aan deze patiënt toegewezen." @@ -3686,25 +3678,26 @@ msgstr[0] "Uw account is tijdelijk geblokkeerd. U kunt over een minuut opnieuw inloggen." msgstr[1] "Uw account is tijdelijk geblokkeerd. U kunt over %d minuten opnieuw inloggen." -#: classes/Gems/User/User.php:430 +#: classes/Gems/User/User.php:431 +#: classes/Gems/User/User.php:458 msgid "You are not allowed to login from this location." msgstr "U kunt vanaf deze locatie niet inloggen." -#: classes/Gems/User/User.php:1081 +#: classes/Gems/User/User.php:1113 msgid "Your birthday" msgstr "Uw geboortedatum" -#: classes/Gems/User/User.php:1097 +#: classes/Gems/User/User.php:1129 #: classes/Gems/User/Form/ChangePasswordForm.php:163 #, php-format msgid "%s is not correct." msgstr "%s is onjuist." -#: classes/Gems/User/User.php:1179 +#: classes/Gems/User/User.php:1211 msgid "Trying to send a password reset to a user that cannot be reset." msgstr "Het wachtwoord voor deze gebruiker kan niet gewijzigd worden." -#: classes/Gems/User/User.php:1207 +#: classes/Gems/User/User.php:1239 msgid "Unable to send e-mail." msgstr "Verzenden email mislukt." @@ -4306,6 +4299,15 @@ msgid "The Pulse software was made possible thanks to support from " msgstr "De PULSE software is mede mogelijk gemaakt met steun van " +#~ msgid "Edit %s..." +#~ msgstr "Bewerk %s..." + +#~ msgid "Checks performed" +#~ msgstr "Controle uitgevoerd" + +#~ msgid "Edit %s %s - %s" +#~ msgstr "Bewerk %s %s - %s" + #~ msgid "Cookies must be enabled for this site." #~ msgstr "Zonder cookies heeft u geen toegang tot deze site." This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |