From: <gem...@li...> - 2012-06-14 13:06:37
|
Revision: 761 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=761&view=rev Author: matijsdejong Date: 2012-06-14 13:06:26 +0000 (Thu, 14 Jun 2012) Log Message: ----------- Menu can now set class for menu LI element (instead of just A element) Added fields for survey duration Modified Paths: -------------- trunk/library/classes/Gems/Default/SurveyMaintenanceAction.php trunk/library/classes/Gems/Menu.php trunk/library/configs/db/patches.sql trunk/library/configs/db/tables/gems__surveys.30.sql 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/Default/SurveyMaintenanceAction.php =================================================================== --- trunk/library/classes/Gems/Default/SurveyMaintenanceAction.php 2012-06-13 15:25:27 UTC (rev 760) +++ trunk/library/classes/Gems/Default/SurveyMaintenanceAction.php 2012-06-14 13:06:26 UTC (rev 761) @@ -121,9 +121,10 @@ ->addValidator( new MUtil_Validate_Require($model->get('gsu_active', 'label'), 'gsu_id_primary_group', $model->get('gsu_id_primary_group', 'label'))); $bridge->addSelect( 'gsu_id_primary_group', 'description', $this->_('If empty, survey will never show up!')); - $bridge->addSelect( 'gsu_result_field', 'label', $this->_('Result field'), 'multiOptions', $surveyFields); - $bridge->addSelect( 'gsu_beforeanswering_event', 'label', $this->_('Before answering'), 'multiOptions', $this->loader->getEvents()->listSurveyBeforeAnsweringEvents()); - $bridge->addSelect( 'gsu_completed_event', 'label', $this->_('After completion'), 'multiOptions', $this->loader->getEvents()->listSurveyCompletionEvents()); + $bridge->addSelect( 'gsu_result_field', 'multiOptions', $surveyFields); + $bridge->addText( 'gsu_duration'); + $bridge->addSelect( 'gsu_beforeanswering_event'); + $bridge->addSelect( 'gsu_completed_event'); $bridge->addFile( 'new_pdf', 'label', $this->_('Upload new PDF'), 'accept', 'application/pdf', @@ -370,6 +371,15 @@ $model->set('gsu_surveyor_active', 'multiOptions', $yesNo); $model->set('gsu_id_primary_group', 'label', $this->_('Group'), 'multiOptions', $this->util->getDbLookup()->getGroups()); + if ($detailed) { + $events = $this->loader->getEvents(); + + $model->set('gsu_result_field', 'label', $this->_('Result field')); + $model->set('gsu_duration', 'label', $this->_('Duration description'), 'description', $this->_('Text to inform the respondent.')); + $model->set('gsu_beforeanswering_event', 'label', $this->_('Before answering'), 'multiOptions', $events->listSurveyBeforeAnsweringEvents()); + $model->set('gsu_completed_event', 'label', $this->_('After completion'), 'multiOptions', $events->listSurveyCompletionEvents()); + } + $model->setCreate(false); return $model; Modified: trunk/library/classes/Gems/Menu.php =================================================================== --- trunk/library/classes/Gems/Menu.php 2012-06-13 15:25:27 UTC (rev 760) +++ trunk/library/classes/Gems/Menu.php 2012-06-14 13:06:26 UTC (rev 761) @@ -660,6 +660,9 @@ if (isset($item['active']) && $item['active']) { $li->class = 'active'; } + if (isset($item['liClass']) && $item['liClass']) { + $li->appendAttrib('class', $item['liClass']); + } $a = $li->a($url, $item['label']); if (isset($item['class'])) { Modified: trunk/library/configs/db/patches.sql =================================================================== --- trunk/library/configs/db/patches.sql 2012-06-13 15:25:27 UTC (rev 760) +++ trunk/library/configs/db/patches.sql 2012-06-14 13:06:26 UTC (rev 761) @@ -407,3 +407,7 @@ -- PATCH: Add column to store maximum number of reminders (default is 3) to mail jobs ALTER TABLE `gems__mail_jobs` ADD `gmj_filter_max_reminders` INT(11) UNSIGNED NOT NULL DEFAULT 3 AFTER `gmj_filter_days_between`; + +-- GEMS VERSION: 48 +-- PATCH: Add duration to surveys +ALTER TABLE gems__surveys ADD gsu_duration varchar(50) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' AFTER gsu_result_field; Modified: trunk/library/configs/db/tables/gems__surveys.30.sql =================================================================== --- trunk/library/configs/db/tables/gems__surveys.30.sql 2012-06-13 15:25:27 UTC (rev 760) +++ trunk/library/configs/db/tables/gems__surveys.30.sql 2012-06-14 13:06:26 UTC (rev 761) @@ -34,7 +34,8 @@ gsu_followup_field varchar(20) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci' not null default 'submitdate', -- end depreciated - gsu_result_field varchar(20) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci', + gsu_result_field varchar(20) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci', + gsu_duration varchar(50) CHARACTER SET 'utf8' COLLATE 'utf8_general_ci', gsu_changed timestamp not null default current_timestamp on update current_timestamp, gsu_changed_by bigint unsigned not null, Modified: trunk/library/languages/default-en.mo =================================================================== (Binary files differ) Modified: trunk/library/languages/default-en.po =================================================================== --- trunk/library/languages/default-en.po 2012-06-13 15:25:27 UTC (rev 760) +++ trunk/library/languages/default-en.po 2012-06-14 13:06:26 UTC (rev 761) @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: GemsTracker EN\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-11 14:50+0100\n" +"POT-Creation-Date: 2012-06-14 15:04+0100\n" "PO-Revision-Date: \n" "Last-Translator: Matijs de Jong <mj...@ma...>\n" "Language-Team: Erasmus MGZ <mat...@ma...>\n" @@ -23,72 +23,72 @@ msgid "Path %s not writable" msgstr "Path %s not writable" -#: classes/GemsEscort.php:756 +#: classes/GemsEscort.php:776 #, php-format msgid "You are logged in as %s" msgstr "You are logged in as %s" -#: classes/GemsEscort.php:758 +#: classes/GemsEscort.php:778 #: classes/Gems/Menu.php:249 msgid "Logoff" msgstr "Logoff" -#: classes/GemsEscort.php:761 +#: classes/GemsEscort.php:781 msgid "You are not logged in" msgstr "You are not logged in" -#: classes/GemsEscort.php:945 +#: classes/GemsEscort.php:965 #, php-format msgid "User: %s" msgstr "User: %s" -#: classes/GemsEscort.php:970 +#: classes/GemsEscort.php:990 msgid "version" msgstr "version" -#: classes/GemsEscort.php:1412 +#: classes/GemsEscort.php:1432 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:1543 +#: classes/GemsEscort.php:1563 msgid "Please check back later." msgstr "Please check back later." -#: classes/GemsEscort.php:1545 -#: classes/GemsEscort.php:1549 -#: classes/GemsEscort.php:1550 +#: classes/GemsEscort.php:1565 +#: classes/GemsEscort.php:1569 +#: classes/GemsEscort.php:1570 msgid "System is in maintenance mode" msgstr "System is in maintenance mode" -#: classes/GemsEscort.php:1560 +#: classes/GemsEscort.php:1580 msgid "No access to site." msgstr "No access to site." -#: classes/GemsEscort.php:1562 -#: classes/GemsEscort.php:1605 +#: classes/GemsEscort.php:1582 +#: classes/GemsEscort.php:1625 msgid "You have no access to this site." msgstr "You have no access to this site." -#: classes/GemsEscort.php:1578 +#: classes/GemsEscort.php:1598 msgid "No access to page" msgstr "No access to page" -#: classes/GemsEscort.php:1580 +#: classes/GemsEscort.php:1600 #, 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:1590 -#: classes/GemsEscort.php:1603 +#: classes/GemsEscort.php:1610 +#: classes/GemsEscort.php:1623 msgid "You are no longer logged in." msgstr "You are no longer logged in." -#: classes/GemsEscort.php:1591 +#: classes/GemsEscort.php:1611 msgid "You must login to access this page." msgstr "You must login to access this page." -#: classes/GemsEscort.php:1732 -#: classes/GemsEscort.php:1734 +#: classes/GemsEscort.php:1752 +#: classes/GemsEscort.php:1754 #, php-format msgid "%d survey" msgid_plural "%d surveys" @@ -2273,99 +2273,107 @@ msgid "If empty, survey will never show up!" msgstr "If empty, survey will never show up!" -#: classes/Gems/Default/SurveyMaintenanceAction.php:124 -msgid "Result field" -msgstr "Result field" - -#: classes/Gems/Default/SurveyMaintenanceAction.php:125 -msgid "Before answering" -msgstr "Before answering" - -#: classes/Gems/Default/SurveyMaintenanceAction.php:126 -msgid "After completion" -msgstr "After completion" - -#: classes/Gems/Default/SurveyMaintenanceAction.php:128 +#: classes/Gems/Default/SurveyMaintenanceAction.php:129 msgid "Upload new PDF" msgstr "Upload new PDF" -#: classes/Gems/Default/SurveyMaintenanceAction.php:136 +#: classes/Gems/Default/SurveyMaintenanceAction.php:137 msgid "Usage" msgstr "Usage" -#: classes/Gems/Default/SurveyMaintenanceAction.php:151 +#: classes/Gems/Default/SurveyMaintenanceAction.php:152 msgid "Single Survey Assignment" msgstr "Single Survey Assignment" -#: classes/Gems/Default/SurveyMaintenanceAction.php:196 +#: classes/Gems/Default/SurveyMaintenanceAction.php:197 msgid "Assignable since" msgstr "Assignable since" -#: classes/Gems/Default/SurveyMaintenanceAction.php:197 +#: classes/Gems/Default/SurveyMaintenanceAction.php:198 msgid "Assignable until" msgstr "Assignable until" -#: classes/Gems/Default/SurveyMaintenanceAction.php:203 +#: classes/Gems/Default/SurveyMaintenanceAction.php:204 msgid "Create Single Survey" msgstr "Create Single Survey" -#: classes/Gems/Default/SurveyMaintenanceAction.php:207 +#: classes/Gems/Default/SurveyMaintenanceAction.php:208 msgid "At the moment this survey can only be assigned to respondents as part of an existing track." msgstr "At the moment this survey can only be assigned to paitents as part of an existing track." -#: classes/Gems/Default/SurveyMaintenanceAction.php:262 +#: classes/Gems/Default/SurveyMaintenanceAction.php:263 msgid "Survey should be assigned to a group before making it active." msgstr "Survey should be assigned to a group before making it active." -#: classes/Gems/Default/SurveyMaintenanceAction.php:279 +#: classes/Gems/Default/SurveyMaintenanceAction.php:280 #, php-format msgid "Checking survey results for the %s survey." msgstr "Checking survey results for the %s survey." -#: classes/Gems/Default/SurveyMaintenanceAction.php:291 +#: classes/Gems/Default/SurveyMaintenanceAction.php:292 msgid "Checking survey results for all surveys." msgstr "Checking survey results for all surveys." -#: classes/Gems/Default/SurveyMaintenanceAction.php:348 +#: classes/Gems/Default/SurveyMaintenanceAction.php:349 msgid "OK" msgstr "OK" -#: classes/Gems/Default/SurveyMaintenanceAction.php:355 +#: classes/Gems/Default/SurveyMaintenanceAction.php:356 msgid "Source" msgstr "Source" -#: classes/Gems/Default/SurveyMaintenanceAction.php:356 +#: classes/Gems/Default/SurveyMaintenanceAction.php:357 msgid "Status in source" msgstr "Status in source" -#: classes/Gems/Default/SurveyMaintenanceAction.php:359 +#: classes/Gems/Default/SurveyMaintenanceAction.php:360 msgid "Active in source" msgstr "Active in source" -#: classes/Gems/Default/SurveyMaintenanceAction.php:360 +#: classes/Gems/Default/SurveyMaintenanceAction.php:361 #, php-format msgid "Active in %s" msgstr "Active in %s" -#: classes/Gems/Default/SurveyMaintenanceAction.php:367 +#: classes/Gems/Default/SurveyMaintenanceAction.php:368 msgid "Single" msgstr "Single" -#: classes/Gems/Default/SurveyMaintenanceAction.php:400 +#: classes/Gems/Default/SurveyMaintenanceAction.php:377 +msgid "Result field" +msgstr "Result field" + +#: classes/Gems/Default/SurveyMaintenanceAction.php:378 +msgid "Duration description" +msgstr "Duration description" + +#: classes/Gems/Default/SurveyMaintenanceAction.php:378 +msgid "Text to inform the respondent." +msgstr "Text to inform the respondent." + +#: classes/Gems/Default/SurveyMaintenanceAction.php:379 +msgid "Before answering" +msgstr "Before answering" + +#: classes/Gems/Default/SurveyMaintenanceAction.php:380 +msgid "After completion" +msgstr "After completion" + +#: classes/Gems/Default/SurveyMaintenanceAction.php:410 #, php-format msgid "%d times in track." msgstr "%d times in track." -#: classes/Gems/Default/SurveyMaintenanceAction.php:402 +#: classes/Gems/Default/SurveyMaintenanceAction.php:412 #, php-format msgid "%d times in %d track(s)." msgstr "%d times in %d track(s)." -#: classes/Gems/Default/SurveyMaintenanceAction.php:406 +#: classes/Gems/Default/SurveyMaintenanceAction.php:416 msgid "Not used in track." msgstr "Not used in track." -#: classes/Gems/Default/SurveyMaintenanceAction.php:408 +#: classes/Gems/Default/SurveyMaintenanceAction.php:418 msgid "Not used in tracks." msgstr "Not used in tracks." @@ -3319,32 +3327,32 @@ msgid "Use a track level date." msgstr "Use a track level date." -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:443 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:446 #, php-format msgid "%s track engines cannot be converted to %s track engines." msgstr "%s track engines cannot be converted to %s track engines." -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:686 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:689 #, php-format msgid "%d: %s - %s" msgstr "%d: %s - %s" -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:689 #: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:692 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:695 #, php-format msgid "%d: %s" msgstr "%d: %s" -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:695 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:698 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:735 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:738 msgid "Icon" msgstr "Icon" -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:738 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:741 msgid "After change" msgstr "After change" Modified: trunk/library/languages/default-nl.mo =================================================================== (Binary files differ) Modified: trunk/library/languages/default-nl.po =================================================================== --- trunk/library/languages/default-nl.po 2012-06-13 15:25:27 UTC (rev 760) +++ trunk/library/languages/default-nl.po 2012-06-14 13:06:26 UTC (rev 761) @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: GemsTracker NL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-11 14:50+0100\n" +"POT-Creation-Date: 2012-06-14 15:04+0100\n" "PO-Revision-Date: \n" "Last-Translator: Matijs de Jong <mj...@ma...>\n" "Language-Team: Erasmus MGZ <mat...@ma...>\n" @@ -23,72 +23,72 @@ msgid "Path %s not writable" msgstr "Path %s niet schrijfbaar" -#: classes/GemsEscort.php:756 +#: classes/GemsEscort.php:776 #, php-format msgid "You are logged in as %s" msgstr "Ingelogd als %s" -#: classes/GemsEscort.php:758 +#: classes/GemsEscort.php:778 #: classes/Gems/Menu.php:249 msgid "Logoff" msgstr "Uitloggen" -#: classes/GemsEscort.php:761 +#: classes/GemsEscort.php:781 msgid "You are not logged in" msgstr "U bent niet ingelogd" -#: classes/GemsEscort.php:945 +#: classes/GemsEscort.php:965 #, php-format msgid "User: %s" msgstr "Login: %s" -#: classes/GemsEscort.php:970 +#: classes/GemsEscort.php:990 msgid "version" msgstr "versie" -#: classes/GemsEscort.php:1412 +#: classes/GemsEscort.php:1432 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:1543 +#: classes/GemsEscort.php:1563 msgid "Please check back later." msgstr "Probeer het later opnieuw." -#: classes/GemsEscort.php:1545 -#: classes/GemsEscort.php:1549 -#: classes/GemsEscort.php:1550 +#: classes/GemsEscort.php:1565 +#: classes/GemsEscort.php:1569 +#: classes/GemsEscort.php:1570 msgid "System is in maintenance mode" msgstr "Systeem is in onderhoudsmodus" -#: classes/GemsEscort.php:1560 +#: classes/GemsEscort.php:1580 msgid "No access to site." msgstr "Geen toegang tot website." -#: classes/GemsEscort.php:1562 -#: classes/GemsEscort.php:1605 +#: classes/GemsEscort.php:1582 +#: classes/GemsEscort.php:1625 msgid "You have no access to this site." msgstr "U heeft geen toegang tot deze website." -#: classes/GemsEscort.php:1578 +#: classes/GemsEscort.php:1598 msgid "No access to page" msgstr "Geen toegang tot pagina" -#: classes/GemsEscort.php:1580 +#: classes/GemsEscort.php:1600 #, 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:1590 -#: classes/GemsEscort.php:1603 +#: classes/GemsEscort.php:1610 +#: classes/GemsEscort.php:1623 msgid "You are no longer logged in." msgstr "U bent niet meer ingelogd." -#: classes/GemsEscort.php:1591 +#: classes/GemsEscort.php:1611 msgid "You must login to access this page." msgstr "U moet ingelogd zijn voor toegang tot deze pagina." -#: classes/GemsEscort.php:1732 -#: classes/GemsEscort.php:1734 +#: classes/GemsEscort.php:1752 +#: classes/GemsEscort.php:1754 #, php-format msgid "%d survey" msgid_plural "%d surveys" @@ -2273,99 +2273,107 @@ msgid "If empty, survey will never show up!" msgstr "Indien leeg zal de vragenlijst niet tevoorschijn komen!" -#: classes/Gems/Default/SurveyMaintenanceAction.php:124 -msgid "Result field" -msgstr "Resultaat veld" - -#: classes/Gems/Default/SurveyMaintenanceAction.php:125 -msgid "Before answering" -msgstr "Voor beantwoording" - -#: classes/Gems/Default/SurveyMaintenanceAction.php:126 -msgid "After completion" -msgstr "Na afronding" - -#: classes/Gems/Default/SurveyMaintenanceAction.php:128 +#: classes/Gems/Default/SurveyMaintenanceAction.php:129 msgid "Upload new PDF" msgstr "Upload nieuwe PDF" -#: classes/Gems/Default/SurveyMaintenanceAction.php:136 +#: classes/Gems/Default/SurveyMaintenanceAction.php:137 msgid "Usage" msgstr "Gebruik" -#: classes/Gems/Default/SurveyMaintenanceAction.php:151 +#: classes/Gems/Default/SurveyMaintenanceAction.php:152 msgid "Single Survey Assignment" msgstr "Losse vragenlijst toewijzing" -#: classes/Gems/Default/SurveyMaintenanceAction.php:196 +#: classes/Gems/Default/SurveyMaintenanceAction.php:197 msgid "Assignable since" msgstr "Toewijsbaar sinds" -#: classes/Gems/Default/SurveyMaintenanceAction.php:197 +#: classes/Gems/Default/SurveyMaintenanceAction.php:198 msgid "Assignable until" msgstr "Toewijsbaar tot" -#: classes/Gems/Default/SurveyMaintenanceAction.php:203 +#: classes/Gems/Default/SurveyMaintenanceAction.php:204 msgid "Create Single Survey" msgstr "Maak losse vragenlijst" -#: classes/Gems/Default/SurveyMaintenanceAction.php:207 +#: classes/Gems/Default/SurveyMaintenanceAction.php:208 msgid "At the moment this survey can only be assigned to respondents as part of an existing track." msgstr "Op dit moment kan deze vragenlijst alleen aan patiënten toegewezen als onderdeel van een traject." -#: classes/Gems/Default/SurveyMaintenanceAction.php:262 +#: classes/Gems/Default/SurveyMaintenanceAction.php:263 msgid "Survey should be assigned to a group before making it active." msgstr "Vragenlijst moet aan een groep toegewezen worden voordat deze actief kan worden gemaakt." -#: classes/Gems/Default/SurveyMaintenanceAction.php:279 +#: classes/Gems/Default/SurveyMaintenanceAction.php:280 #, php-format msgid "Checking survey results for the %s survey." msgstr "Controle op vragenlijstresultaten voor de vragenlijst '%s'." -#: classes/Gems/Default/SurveyMaintenanceAction.php:291 +#: classes/Gems/Default/SurveyMaintenanceAction.php:292 msgid "Checking survey results for all surveys." msgstr "Controle op vragenlijstresultaten voor alle vragenlijsten." -#: classes/Gems/Default/SurveyMaintenanceAction.php:348 +#: classes/Gems/Default/SurveyMaintenanceAction.php:349 msgid "OK" msgstr "OK" -#: classes/Gems/Default/SurveyMaintenanceAction.php:355 +#: classes/Gems/Default/SurveyMaintenanceAction.php:356 msgid "Source" msgstr "Bron" -#: classes/Gems/Default/SurveyMaintenanceAction.php:356 +#: classes/Gems/Default/SurveyMaintenanceAction.php:357 msgid "Status in source" msgstr "Status in bron" -#: classes/Gems/Default/SurveyMaintenanceAction.php:359 +#: classes/Gems/Default/SurveyMaintenanceAction.php:360 msgid "Active in source" msgstr "Actief in bron" -#: classes/Gems/Default/SurveyMaintenanceAction.php:360 +#: classes/Gems/Default/SurveyMaintenanceAction.php:361 #, php-format msgid "Active in %s" msgstr "Actief in %s" -#: classes/Gems/Default/SurveyMaintenanceAction.php:367 +#: classes/Gems/Default/SurveyMaintenanceAction.php:368 msgid "Single" msgstr "Los" -#: classes/Gems/Default/SurveyMaintenanceAction.php:400 +#: classes/Gems/Default/SurveyMaintenanceAction.php:377 +msgid "Result field" +msgstr "Resultaat veld" + +#: classes/Gems/Default/SurveyMaintenanceAction.php:378 +msgid "Duration description" +msgstr "Beschrijving afnametijd" + +#: classes/Gems/Default/SurveyMaintenanceAction.php:378 +msgid "Text to inform the respondent." +msgstr "tekst er informatie van de patiënt." + +#: classes/Gems/Default/SurveyMaintenanceAction.php:379 +msgid "Before answering" +msgstr "Voor beantwoording" + +#: classes/Gems/Default/SurveyMaintenanceAction.php:380 +msgid "After completion" +msgstr "Na afronding" + +#: classes/Gems/Default/SurveyMaintenanceAction.php:410 #, php-format msgid "%d times in track." msgstr "%d keer in traject." -#: classes/Gems/Default/SurveyMaintenanceAction.php:402 +#: classes/Gems/Default/SurveyMaintenanceAction.php:412 #, php-format msgid "%d times in %d track(s)." msgstr "%d keer in %d traject(en)." -#: classes/Gems/Default/SurveyMaintenanceAction.php:406 +#: classes/Gems/Default/SurveyMaintenanceAction.php:416 msgid "Not used in track." msgstr "Niet in traject gebruikt." -#: classes/Gems/Default/SurveyMaintenanceAction.php:408 +#: classes/Gems/Default/SurveyMaintenanceAction.php:418 msgid "Not used in tracks." msgstr "Niet in trajecten gebruikt." @@ -3319,32 +3327,32 @@ msgid "Use a track level date." msgstr "Gebruik een op traject niveau ingestelde datum." -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:443 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:446 #, php-format msgid "%s track engines cannot be converted to %s track engines." msgstr "Traject type %s kan niet geconverteerd worden naar %s." -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:686 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:689 #, php-format msgid "%d: %s - %s" msgstr "%d: %s - %s" -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:689 #: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:692 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:695 #, php-format msgid "%d: %s" msgstr "%d: %s" -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:695 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:698 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:735 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:738 msgid "Icon" msgstr "Icoon" -#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:738 +#: classes/Gems/Tracker/Engine/TrackEngineAbstract.php:741 msgid "After change" msgstr "Ronde veranderingscode" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |