[Dhis2-devs] [Bug 909583] Re: data mart: Validation restrictions while creating/updating datamart export

2011-12-29 Thread Thu Tran
** Changed in: dhis2
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909583

Title:
  data mart: Validation restrictions while creating/updating datamart
  export

Status in DHIS 2 - District Health Information Software:
  Fix Committed

Bug description:
  trying to create new data mart export with only dataelements but while
  saving validation is restricting saying that select indicators field
  is required, vice verse

  Also same for periods, sleected 'reporting month'  check box only,
  validation is restricting saying that 'select periods field is
  required'

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909583/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 909583] Re: data mart: Validation restrictions while creating/updating datamart export

2011-12-29 Thread Thu Tran
** Changed in: dhis2
 Assignee: (unassigned) => Thu Tran (tran-hispvietnam)

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909583

Title:
  data mart: Validation restrictions while creating/updating datamart
  export

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  trying to create new data mart export with only dataelements but while
  saving validation is restricting saying that select indicators field
  is required, vice verse

  Also same for periods, sleected 'reporting month'  check box only,
  validation is restricting saying that 'select periods field is
  required'

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909583/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 5643: Fixed bug: Data mart - Validation restrictions while creating or updating datamart export

2011-12-29 Thread noreply

revno: 5643
committer: Tran Chau 
branch nick: dhis2
timestamp: Fri 2011-12-30 14:17:59 +0700
message:
  Fixed bug: Data mart - Validation restrictions while creating or updating 
datamart export
modified:
  
dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/i18n/messages.vm
  
dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.validate.ext.js
  dhis-2/dhis-web/dhis-web-commons/src/main/resources/i18n_global.properties
  
dhis-2/dhis-web/dhis-web-datamart/src/main/webapp/dhis-web-datamart/exportForm.vm


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/i18n/messages.vm'
--- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/i18n/messages.vm	2011-09-19 07:44:36 +
+++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/i18n/messages.vm	2011-12-30 07:17:59 +
@@ -62,6 +62,7 @@
 ,strippedminlength : '$encoder.jsEscape($i18n.getString( 'please_enter_at_least_n_character' ) , "'")'
 ,datelessthanequaltoday: '$encoder.jsEscape($i18n.getString( 'this_date_can_not_be_after_today' ) , "'")'
 ,required_group : '$encoder.jsEscape($i18n.getString( 'please_fill_out_at_least_one_of_these_fields' ) , "'")'
+		,required_select_group : '$encoder.jsEscape($i18n.getString( 'please_select_at_least_one_option_for_these_fields' ) , "'")'
 ,password: '$encoder.jsEscape($i18n.getString( 'password_must_contain_at_least_one_capital_letter_and_one_digit' ) , "'")'
 ,notOnlyDigits: '$encoder.jsEscape($i18n.getString('only_digits_are_not_allowed' ) , "'")'
 		,custome_regex: validatorFormat("{1}")

=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.validate.ext.js'
--- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.validate.ext.js	2011-09-20 14:48:24 +
+++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.validate.ext.js	2011-12-30 07:17:59 +
@@ -327,6 +327,10 @@
 return $("input.required_group:filled").length;
 }, "Please fill out at least one of these fields.");
 
+jQuery.validator.addMethod("required_select_group", function(value, element) {
+return $("select.required_select_group option").length;
+}, "Please select at least one option for these fields.");
+
 jQuery.validator.addMethod("date", function(value, element, param) {
 return this.optional(element) || getDateFromFormat(value,param);
 });

=== modified file 'dhis-2/dhis-web/dhis-web-commons/src/main/resources/i18n_global.properties'
--- dhis-2/dhis-web/dhis-web-commons/src/main/resources/i18n_global.properties	2011-12-14 08:10:22 +
+++ dhis-2/dhis-web/dhis-web-commons/src/main/resources/i18n_global.properties	2011-12-30 07:17:59 +
@@ -370,6 +370,7 @@
 please_enter_at_least_n_character=Please enter at least {0} characters.
 this_date_can_not_be_after_today=This date can not be after today.
 please_fill_out_at_least_one_of_these_fields=Please fill out at least one of these fields.
+please_select_at_least_one_option_for_these_fields=Please select at least one option for these fields.
 password_must_contain_at_least_one_capital_letter_and_one_digit=Password must contain at least one capital letter and one digit.
 only_digits_are_not_allowed=Only digits are not allowed
 closedDate_should_be_greater_than_openDate=The ClosedDate field should be greater than the OpenDate field.

=== modified file 'dhis-2/dhis-web/dhis-web-datamart/src/main/webapp/dhis-web-datamart/exportForm.vm'
--- dhis-2/dhis-web/dhis-web-datamart/src/main/webapp/dhis-web-datamart/exportForm.vm	2011-10-04 05:10:07 +
+++ dhis-2/dhis-web/dhis-web-datamart/src/main/webapp/dhis-web-datamart/exportForm.vm	2011-12-30 07:17:59 +
@@ -45,7 +45,7 @@
 		$i18n.getString( "available_dataelements" )
 		
 		$i18n.getString( "selected_dataelements" )
-			
+			
 		
 		
 	
@@ -76,7 +76,7 @@
 		$i18n.getString( "available_indicators" )
 		
 		$i18n.getString( "selected_indicators" )
-			
+			
 		
 	
 	

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 910000] [NEW] UserGroup: While trying to delete usergroup getting exception

2011-12-29 Thread Bharath
Public bug reported:

Trying to delete usergroup, got exception, while debugging found that
the same usergroup is assigned to 'Completeness notification recipients'
in system setting.

* ERROR 11:44:58,744 Cannot delete or update a parent row: a foreign key constra
int fails (`dhis26/configuration`, CONSTRAINT `fk_configuration_completeness_rec
ipients` FOREIGN KEY (`completenessrecipientsid`) REFERENCES `usergroup` (`userg
roupid`)) (JDBCExceptionReporter.java ["http-apr-9090"-exec-3])
* ERROR 11:44:58,778 Error while executing action (ExceptionInterceptor.java ["h
ttp-apr-9090"-exec-3])

** Affects: dhis2
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/91

Title:
  UserGroup: While trying to delete usergroup getting exception

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  Trying to delete usergroup, got exception, while debugging found that
  the same usergroup is assigned to 'Completeness notification
  recipients' in system setting.

  * ERROR 11:44:58,744 Cannot delete or update a parent row: a foreign key 
constra
  int fails (`dhis26/configuration`, CONSTRAINT 
`fk_configuration_completeness_rec
  ipients` FOREIGN KEY (`completenessrecipientsid`) REFERENCES `usergroup` 
(`userg
  roupid`)) (JDBCExceptionReporter.java ["http-apr-9090"-exec-3])
  * ERROR 11:44:58,778 Error while executing action (ExceptionInterceptor.java 
["h
  ttp-apr-9090"-exec-3])

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/91/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 909995] [NEW] OrganisationUnit: After updating orgunit, coordinates field becoming NULL

2011-12-29 Thread Bharath
Public bug reported:

An orgunit is existed with coordinates, tried to update the orgunit name
and saved it, now not able to see the boundary/polygon for that orgunit
in GIS, when tired to debug, coordinates field in the orgunit become
null. (tested in 2.6)

** Affects: dhis2
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909995

Title:
  OrganisationUnit: After updating orgunit, coordinates field becoming
  NULL

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  An orgunit is existed with coordinates, tried to update the orgunit
  name and saved it, now not able to see the boundary/polygon for that
  orgunit in GIS, when tired to debug, coordinates field in the orgunit
  become null. (tested in 2.6)

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909995/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 5642: Don't aggragate values with multi-dimensional data-elements in Beneficiary Query Builder.

2011-12-29 Thread noreply

revno: 5642
committer: Tran Chau 
branch nick: dhis2
timestamp: Fri 2011-12-30 11:59:48 +0700
message:
  Don't aggragate values with multi-dimensional data-elements in Beneficiary 
Query Builder.
modified:
  
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/caseaggregation/GetPSDataElementsAction.java


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/caseaggregation/GetPSDataElementsAction.java'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/caseaggregation/GetPSDataElementsAction.java	2011-12-26 10:07:59 +
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/java/org/hisp/dhis/patient/action/caseaggregation/GetPSDataElementsAction.java	2011-12-30 04:59:48 +
@@ -119,17 +119,6 @@
 {
 DataElement de = deIterator.next();
 
-if ( de.getType().equals( DataElement.VALUE_TYPE_STRING ) && de.isMultiDimensional() )
-{
-optionComboIds.add( "[DE:" + psId + "." + de.getId() + ".0]" );
-
-optionComboNames.add( de.getName() );
-
-optionComboType.add( "1:" + de.getType() );
-
-continue;
-}
-
 DataElementCategoryCombo dataElementCategoryCombo = de.getCategoryCombo();
 
 List optionCombos = new ArrayList(

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 909903] Re: Sorting exception in data entry

2011-12-29 Thread Knut Staring
I'm also told that I'm offline, while I'm clearly not.

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909903

Title:
  Sorting exception in data entry

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  In 2.6 online demo, go to http://apps.dhis2.org/demo/dhis-web-
  dataentry/index.action

  Selecting the following parameters:

  Organisation Unit: Sierra Leone   
  Data Set  : PHUF -1: Morbidity
  PeriodFebruary 2011

  [-] Exception (java.lang.IllegalArgumentException): Comparison method 
violates its general contract!
  java.util.TimSort.mergeHi(TimSort.java:868)
  java.util.TimSort.mergeAt(TimSort.java:485)
  java.util.TimSort.mergeForceCollapse(TimSort.java:426)
  java.util.TimSort.sort(TimSort.java:223)
  java.util.TimSort.sort(TimSort.java:173)
  java.util.Arrays.sort(Arrays.java:659)
  java.util.Collections.sort(Collections.java:217)
  
org.hisp.dhis.de.action.LoadFormAction.getOtherDataEntryForm(LoadFormAction.java:355)
  org.hisp.dhis.de.action.LoadFormAction.execute(LoadFormAction.java:303)
  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2)
  sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
  
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  java.lang.reflect.Method.invoke(Method.java:601)

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909903/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 909903] [NEW] Sorting exception in data entry

2011-12-29 Thread Knut Staring
Public bug reported:

In 2.6 online demo, go to http://apps.dhis2.org/demo/dhis-web-
dataentry/index.action

Selecting the following parameters:

Organisation Unit: Sierra Leone 
Data Set: PHUF -1: Morbidity
Period  February 2011

[-] Exception (java.lang.IllegalArgumentException): Comparison method violates 
its general contract!
java.util.TimSort.mergeHi(TimSort.java:868)
java.util.TimSort.mergeAt(TimSort.java:485)
java.util.TimSort.mergeForceCollapse(TimSort.java:426)
java.util.TimSort.sort(TimSort.java:223)
java.util.TimSort.sort(TimSort.java:173)
java.util.Arrays.sort(Arrays.java:659)
java.util.Collections.sort(Collections.java:217)
org.hisp.dhis.de.action.LoadFormAction.getOtherDataEntryForm(LoadFormAction.java:355)
org.hisp.dhis.de.action.LoadFormAction.execute(LoadFormAction.java:303)
sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
java.lang.reflect.Method.invoke(Method.java:601)

** Affects: dhis2
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909903

Title:
  Sorting exception in data entry

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  In 2.6 online demo, go to http://apps.dhis2.org/demo/dhis-web-
  dataentry/index.action

  Selecting the following parameters:

  Organisation Unit: Sierra Leone   
  Data Set  : PHUF -1: Morbidity
  PeriodFebruary 2011

  [-] Exception (java.lang.IllegalArgumentException): Comparison method 
violates its general contract!
  java.util.TimSort.mergeHi(TimSort.java:868)
  java.util.TimSort.mergeAt(TimSort.java:485)
  java.util.TimSort.mergeForceCollapse(TimSort.java:426)
  java.util.TimSort.sort(TimSort.java:223)
  java.util.TimSort.sort(TimSort.java:173)
  java.util.Arrays.sort(Arrays.java:659)
  java.util.Collections.sort(Collections.java:217)
  
org.hisp.dhis.de.action.LoadFormAction.getOtherDataEntryForm(LoadFormAction.java:355)
  org.hisp.dhis.de.action.LoadFormAction.execute(LoadFormAction.java:303)
  sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethodAccessorImpl.java:-2)
  sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
  
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  java.lang.reflect.Method.invoke(Method.java:601)

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909903/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-devs] DHIS version 2.6 released

2011-12-29 Thread Samuel Cheburet
Bravo to all,

Happy new year to all. Hope it will be the year of great things.


Regards

2011/12/27 Lars Helge Øverland 

> Hi all,
>
> DHIS version 2.6 is released. We have a long list of improvements:
>
> 1. A new Web API module which provides read access to most objects in
> the system and read access to data values and messages: All resources
> are uniquely identified by URLs and have a rich set of representation
> formats; currently HTML, XML, JSON and JSONP. The resources are linked
> and navigable meaning that you can easily move between related
> resources using hyperlinks (for instance from the list of data sets to
> one particular data set, then to one particular data element). Certain
> resources (map, chart, report, report table and resource) have a
> special view of the aggregate data (rather than the meta-data info)
> which can be accessed by appending /data to the URL.
>
> The primary purpose of the Web API is to make DHIS suitable as a
> platform for third-party software clients and systems such as Web
> portals, content management systems, dashboards and mobile device
> clients. It provides a machine-readable API from where such clients
> can retrieve the desired data over the well-known HTTP protocol,
> without need for any knowledge of the DHIS internal technologies and
> implementation. You can explored it here:
>
> http://apps.dhis2.org/demo/api/resources
> http://apps.dhis2.org/demo/api/charts/j1gNXBgwKVm
> http://apps.dhis2.org/demo/api/maps/H6jRsZXfDAp
>
> A small demo on how reports, charts and maps produced by DHIS can be
> embedded in a Web portal can be found here:
>
> http://dhis2.org/portal
>
> A more detailed write-up of the purpose and context of the Web API can
> be found here:
>
> http://dhis2.org/doc/snapshot/en/implementer/html/full.html#d5e1545
>
>
> 2. Saved charts in data visualizer module: After creating a chart and
> data table you can now save it as a favorite by clicking on the
> "Favorites" button in the top menu, then on "Manage favorites". This
> makes it easy to later reload your chart and also put it on your
> personal dashboard in the dashboard module. Favorites can be saved as
> personal or system views (if user is authorized). This means that
> users can create their own personal charts without affecting the list
> of charts for other users.
>
> The old chart user interface in reporting module has been removed -
> the data visualizer module is now the place to create charts. Please
> note the new "Chart options" panel on the left menu - all options from
> the old charts are there but at the moment only implemented in the
> image  version of the charts (accessible from the dashboard). We will
> soon implement these options in the client-side charts in data
> visualizer module in order to make both versions compatible.
>
> http://apps.dhis2.org/demo/dhis-web-visualizer/app/index.html
>
> http://dhis2.org/doc/snapshot/en/user/html/full.html#d927e2985
>
>
> 3. Anonymous events: The beneficiary module now provides functionality
> for registering anonymous events. Use-cases for such events are birth
> certificates, nutrition surveys and inpatient morbidity/mortality
> registries. Data for any number of data elements can be defined and
> registered for a single event (no attributes).
>
> Programs must be marked as "single event" and "anonymous" in
> beneficiary module. Under "Event registration" in data records module
> you can register the anonymous events. Start by clicking on "Create
> new event", then fill the entry form before clicking "Complete data
> entry".
>
> http://apps.dhis2.org/demo/dhis-web-caseentry/anonymousRegistration.action
>
> (Select e.g. the first facility in the tree, Ngelehun CHC.)
>
>
> 4. Organisation unit group set analysis in data mart and report table:
> The data mart engine now produces two new data mart tables for data
> element and indicator data aggregated by organisation unit groups. In
> more detail, for all organisation units there are records for all
> organisation unit groups. This feature has currently been implemented
> in the report table tool. You can include groups by clicking on
> "Toggle organisation unit groups" in the add new report table screen.
> We will implement support for groups in most analysis tools for next
> release. Please note that only groups which are members of a group set
> will be included.
>
> This feature is particular useful for doing analysis based on facility
> classification such as type and ownership; for instance you can now
> investigate the immunization rates in public, private and faith-based
> facilities within a province and see how they compare. It can also
> support scenarios where donors want to analyse and compare the
> performance of their implementing partners.
>
> http://apps.dhis2.org/demo/api/reports/KlcaBsIqTV4/data
>
>
> 5. I18n: The user interface is now completely translated into French.
> This will be very useful for the upcoming DHIS implementations in West
> Africa. Tha

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 5641: (mobile) validation fixes

2011-12-29 Thread noreply

revno: 5641
committer: Morten Olav Hansen 
branch nick: dhis2
timestamp: Thu 2011-12-29 11:40:04 +0100
message:
  (mobile) validation fixes
modified:
  
dhis-2/dhis-web/dhis-web-light/src/main/java/org/hisp/dhis/light/dataentry/action/SaveSectionFormAction.java
  
dhis-2/dhis-web/dhis-web-light/src/main/webapp/dhis-web-light/dataEntryOverview.vm


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-light/src/main/java/org/hisp/dhis/light/dataentry/action/SaveSectionFormAction.java'
--- dhis-2/dhis-web/dhis-web-light/src/main/java/org/hisp/dhis/light/dataentry/action/SaveSectionFormAction.java	2011-12-27 13:06:26 +
+++ dhis-2/dhis-web/dhis-web-light/src/main/java/org/hisp/dhis/light/dataentry/action/SaveSectionFormAction.java	2011-12-29 10:40:04 +
@@ -209,13 +209,6 @@
 return validationViolations;
 }
 
-private List validationRuleViolations = new ArrayList();
-
-public List getValidationRuleViolations()
-{
-return validationRuleViolations;
-}
-
 private Map typeViolations = new HashMap();
 
 public Map getTypeViolations()
@@ -454,10 +447,8 @@
 
 validationViolations = formUtils.getValidationViolations( organisationUnit, dataElements, period );
 
-validationRuleViolations = formUtils.getValidationRuleViolations( organisationUnit, dataSet, period );
-
 if ( needsValidation
-&& (!validationViolations.isEmpty() || !validationRuleViolations.isEmpty() || !typeViolations.isEmpty()) )
+&& (!validationViolations.isEmpty() || !typeViolations.isEmpty()) )
 {
 return ERROR;
 }

=== modified file 'dhis-2/dhis-web/dhis-web-light/src/main/webapp/dhis-web-light/dataEntryOverview.vm'
--- dhis-2/dhis-web/dhis-web-light/src/main/webapp/dhis-web-light/dataEntryOverview.vm	2011-12-27 12:16:47 +
+++ dhis-2/dhis-web/dhis-web-light/src/main/webapp/dhis-web-light/dataEntryOverview.vm	2011-12-29 10:40:04 +
@@ -9,7 +9,7 @@
 
 #if( $validationRuleViolations.size() > 0 )
 
-$i18n.getString("validation_rule_violations")
+$i18n.getString("validation_rule_violation_warnings")
 
 #foreach( $validationRuleViolation in $validationRuleViolations )
 $validationRuleViolation 

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 909655] [NEW] In Dataset Report always getting aggregated value of Indicators.

2011-12-29 Thread Neeraj
Public bug reported:

In Dataset Reports it doesn't make any difference for indicator values
whether we select USE DATA FOR SELECTED UNIT ONLY option or not, in both
the cases it is aggregating the values and generating the Indicator
Values in Report.

** Affects: dhis2
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909655

Title:
  In Dataset Report always getting aggregated value of Indicators.

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  In Dataset Reports it doesn't make any difference for indicator values
  whether we select USE DATA FOR SELECTED UNIT ONLY option or not, in
  both the cases it is aggregating the values and generating the
  Indicator Values in Report.

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909655/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 909657] [NEW] Indicator Values are not exported in Dataset Report

2011-12-29 Thread Neeraj
Public bug reported:

If we are exporting Dataset Report to Excel then indicator values are
not exported and the exported report is of Default Data Entry Screen
even if we have custom dataentry screen.

** Affects: dhis2
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909657

Title:
  Indicator Values are not exported in Dataset Report

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  If we are exporting Dataset Report to Excel then indicator values are
  not exported and the exported report is of Default Data Entry Screen
  even if we have custom dataentry screen.

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909657/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 909653] [NEW] Indicators are not displayed in default data entry screen

2011-12-29 Thread Neeraj
Public bug reported:

If a dataset is created which is having some indicators And custom
dataentry screen is not designed then in data entry it is not showing
the indicators (Default Data Entry Screen)

** Affects: dhis2
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909653

Title:
  Indicators are not displayed in default data entry screen

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  If a dataset is created which is having some indicators And custom
  dataentry screen is not designed then in data entry it is not showing
  the indicators (Default Data Entry Screen)

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909653/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Bug 909624] [NEW] Resource Tables are not generated

2011-12-29 Thread Neeraj
Public bug reported:

Report Tables are not getting generated in 2.6 Version.

** Affects: dhis2
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of DHIS 2
developers, which is subscribed to DHIS.
https://bugs.launchpad.net/bugs/909624

Title:
  Resource Tables are not generated

Status in DHIS 2 - District Health Information Software:
  New

Bug description:
  Report Tables are not getting generated in 2.6 Version.

To manage notifications about this bug go to:
https://bugs.launchpad.net/dhis2/+bug/909624/+subscriptions

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 5640: (Translations) Few more stragglers in French.

2011-12-29 Thread noreply

revno: 5640
committer: Jason P. Pickering 
branch nick: dhis2
timestamp: Thu 2011-12-29 09:15:40 +
message:
  (Translations) Few more stragglers in French.
modified:
  
dhis-2/dhis-web/dhis-web-caseentry/src/main/resources/org/hisp/dhis/caseentry/i18n_module_fr_FR.properties
  
dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module.properties
  
dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module_fr_FR.properties
  
dhis-2/dhis-web/dhis-web-dataentry/src/main/resources/org/hisp/dhis/de/i18n_module_fr_FR.properties
  
dhis-2/dhis-web/dhis-web-mapping/src/main/resources/org/hisp/dhis/mapping/i18n_module_fr_FR.properties
  
dhis-2/dhis-web/dhis-web-reporting/src/main/resources/org/hisp/dhis/reporting/i18n_module_fr_FR.properties


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-caseentry/src/main/resources/org/hisp/dhis/caseentry/i18n_module_fr_FR.properties'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/resources/org/hisp/dhis/caseentry/i18n_module_fr_FR.properties	2011-12-29 07:23:40 +
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/resources/org/hisp/dhis/caseentry/i18n_module_fr_FR.properties	2011-12-29 09:15:40 +
@@ -453,4 +453,4 @@
 delete_current_event_success=Deleted \u00e9v\u00e9nement en cours avec succ\u00e8s
 please_enter_report_date=S'il vous pla\u00eet entrez la date du rapport
 comfirm_delete_current_event=Are you sure you want to delete the current event ?
-registered_by_orgunit=Registered by facility
+registered_by_orgunit=Enregistr\u00e9 par \u00e9tablissement

=== modified file 'dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module.properties'
--- dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module.properties	2011-12-29 08:50:42 +
+++ dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module.properties	2011-12-29 09:15:40 +
@@ -40,3 +40,4 @@
 user_roles=User roles
 meta_data=Meta data
 sending_message=Sending message
+

=== modified file 'dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module_fr_FR.properties'
--- dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module_fr_FR.properties	2011-12-29 08:50:42 +
+++ dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module_fr_FR.properties	2011-12-29 09:15:40 +
@@ -37,3 +37,4 @@
 user_roles=Les r\u00f4les des utilisateurs
 meta_data=M\u00e9tadonn\u00e9es
 sending_message=Envoi du message
+

=== modified file 'dhis-2/dhis-web/dhis-web-dataentry/src/main/resources/org/hisp/dhis/de/i18n_module_fr_FR.properties'
--- dhis-2/dhis-web/dhis-web-dataentry/src/main/resources/org/hisp/dhis/de/i18n_module_fr_FR.properties	2011-12-29 07:23:40 +
+++ dhis-2/dhis-web/dhis-web-dataentry/src/main/resources/org/hisp/dhis/de/i18n_module_fr_FR.properties	2011-12-29 09:15:40 +
@@ -105,7 +105,7 @@
 specify_valid_input_date=Veuillez saisir une date valide
 register_complete_dataset_success=Ensemble de donn\u00e9es\u00a0enregitr\u00e9es comme complet
 register_complete_dataset_failed=Echec d'enregistrement du formulaire comme complet\u00a0
-undo_register_complete_dataset_success=Undo register complete dataset success
+undo_register_complete_dataset_success=Annuler registre complet de succ\u00e8s ensemble de donn\u00e9es
 datavalue_history=Historique des valeurs de donn\u00e9es
 data_element_order=Ordre des \u00e9l\u00e9ments de donn\u00e9es
 generate_min_max_success=G\u00e9n\u00e9r\u00e9 valeurs min / max

=== modified file 'dhis-2/dhis-web/dhis-web-mapping/src/main/resources/org/hisp/dhis/mapping/i18n_module_fr_FR.properties'
--- dhis-2/dhis-web/dhis-web-mapping/src/main/resources/org/hisp/dhis/mapping/i18n_module_fr_FR.properties	2011-12-29 07:23:40 +
+++ dhis-2/dhis-web/dhis-web-mapping/src/main/resources/org/hisp/dhis/mapping/i18n_module_fr_FR.properties	2011-12-29 09:15:40 +
@@ -20,7 +20,7 @@
 applied=appliqu\u00e9
 show=Afficher
 hide=Masquer
-showhide=Show / hide
+showhide=Montrer / cacher
 toggle=Basculer
 boundary=Fronti\u00e8re
 level=Niveau

=== modified file 'dhis-2/dhis-web/dhis-web-reporting/src/main/resources/org/hisp/dhis/reporting/i18n_module_fr_FR.properties'
--- dhis-2/dhis-web/dhis-web-reporting/src/main/resources/org/hisp/dhis/reporting/i18n_module_fr_FR.properties	2011-12-29 07:23:40 +
+++ dhis-2/dhis-web/dhis-web-reporting/src/main/resources/org/hisp/dhis/reporting/i18n_module_fr_FR.properties	2011-12-29 09:15:40 +
@@ -396,7 +396

Re: [Dhis2-devs] [Dhis2-users] DHIS version 2.6 released

2011-12-29 Thread John Ojo
Thank you so much Lars and team for giving us this Christmas gift wrapped in 
version 2.6. Bravo!
John.
 
John Ojo MD, FMCPH

Senior Monitoring & Evaluation Advisor

Action for West Africa Region (AWARE II)
Accra, Ghana.
Mobile: +223 544334105
Email: j...@aware2.org




 From: Lars Helge Øverland 
To: DHIS 2 developers ; 
dhis2-us...@lists.launchpad.net 
Sent: Tuesday, December 27, 2011 6:42 PM
Subject: [Dhis2-users] DHIS version 2.6 released
 
Hi all,

DHIS version 2.6 is released. We have a long list of improvements:

1. A new Web API module which provides read access to most objects in
the system and read access to data values and messages: All resources
are uniquely identified by URLs and have a rich set of representation
formats; currently HTML, XML, JSON and JSONP. The resources are linked
and navigable meaning that you can easily move between related
resources using hyperlinks (for instance from the list of data sets to
one particular data set, then to one particular data element). Certain
resources (map, chart, report, report table and resource) have a
special view of the aggregate data (rather than the meta-data info)
which can be accessed by appending /data to the URL.

The primary purpose of the Web API is to make DHIS suitable as a
platform for third-party software clients and systems such as Web
portals, content management systems, dashboards and mobile device
clients. It provides a machine-readable API from where such clients
can retrieve the desired data over the well-known HTTP protocol,
without need for any knowledge of the DHIS internal technologies and
implementation. You can explored it here:

http://apps.dhis2.org/demo/api/resources
http://apps.dhis2.org/demo/api/charts/j1gNXBgwKVm
http://apps.dhis2.org/demo/api/maps/H6jRsZXfDAp

A small demo on how reports, charts and maps produced by DHIS can be
embedded in a Web portal can be found here:

http://dhis2.org/portal

A more detailed write-up of the purpose and context of the Web API can
be found here:

http://dhis2.org/doc/snapshot/en/implementer/html/full.html#d5e1545


2. Saved charts in data visualizer module: After creating a chart and
data table you can now save it as a favorite by clicking on the
"Favorites" button in the top menu, then on "Manage favorites". This
makes it easy to later reload your chart and also put it on your
personal dashboard in the dashboard module. Favorites can be saved as
personal or system views (if user is authorized). This means that
users can create their own personal charts without affecting the list
of charts for other users.

The old chart user interface in reporting module has been removed -
the data visualizer module is now the place to create charts. Please
note the new "Chart options" panel on the left menu - all options from
the old charts are there but at the moment only implemented in the
image  version of the charts (accessible from the dashboard). We will
soon implement these options in the client-side charts in data
visualizer module in order to make both versions compatible.

http://apps.dhis2.org/demo/dhis-web-visualizer/app/index.html

http://dhis2.org/doc/snapshot/en/user/html/full.html#d927e2985


3. Anonymous events: The beneficiary module now provides functionality
for registering anonymous events. Use-cases for such events are birth
certificates, nutrition surveys and inpatient morbidity/mortality
registries. Data for any number of data elements can be defined and
registered for a single event (no attributes).

Programs must be marked as "single event" and "anonymous" in
beneficiary module. Under "Event registration" in data records module
you can register the anonymous events. Start by clicking on "Create
new event", then fill the entry form before clicking "Complete data
entry".

http://apps.dhis2.org/demo/dhis-web-caseentry/anonymousRegistration.action

(Select e.g. the first facility in the tree, Ngelehun CHC.)


4. Organisation unit group set analysis in data mart and report table:
The data mart engine now produces two new data mart tables for data
element and indicator data aggregated by organisation unit groups. In
more detail, for all organisation units there are records for all
organisation unit groups. This feature has currently been implemented
in the report table tool. You can include groups by clicking on
"Toggle organisation unit groups" in the add new report table screen.
We will implement support for groups in most analysis tools for next
release. Please note that only groups which are members of a group set
will be included.

This feature is particular useful for doing analysis based on facility
classification such as type and ownership; for instance you can now
investigate the immunization rates in public, private and faith-based
facilities within a province and see how they compare. It can also
support scenarios where donors want to analyse and compare the
performance of their implementing partners.

http://apps.dhis2.org/demo/api/

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 5639: fixed compilation error in caseentry

2011-12-29 Thread noreply

revno: 5639
committer: Morten Olav Hansen 
branch nick: dhis2
timestamp: Thu 2011-12-29 10:03:09 +0100
message:
  fixed compilation error in caseentry
modified:
  
dhis-2/dhis-web/dhis-web-caseentry/src/main/java/org/hisp/dhis/caseentry/action/caseentry/ProgramStageCustomDataEntryAction.java


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-caseentry/src/main/java/org/hisp/dhis/caseentry/action/caseentry/ProgramStageCustomDataEntryAction.java'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/java/org/hisp/dhis/caseentry/action/caseentry/ProgramStageCustomDataEntryAction.java	2011-12-29 04:50:47 +
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/java/org/hisp/dhis/caseentry/action/caseentry/ProgramStageCustomDataEntryAction.java	2011-12-29 09:03:09 +
@@ -27,11 +27,7 @@
 
 package org.hisp.dhis.caseentry.action.caseentry;
 
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.HashMap;
-import java.util.Map;
+import java.util.*;
 
 import org.hisp.dhis.caseentry.state.SelectedStateManager;
 import org.hisp.dhis.dataelement.DataElement;
@@ -227,9 +223,9 @@
 return programStageInstance.getId();
 }
 
-private Collection programStageDataElements;
+private List programStageDataElements;
 
-public Collection getProgramStageDataElements()
+public List getProgramStageDataElements()
 {
 return programStageDataElements;
 }
@@ -251,7 +247,7 @@
 
 programStage = programStageInstance.getProgramStage();
 
-programStageDataElements = programStage.getProgramStageDataElements();
+programStageDataElements = new ArrayList( programStage.getProgramStageDataElements() );
 
 Collections.sort( programStageDataElements, new ProgramStageDataElementSortOrderComparator() );
 

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 5638: (Translations) Minfor alterations to dhis-web-dashboard-integration)

2011-12-29 Thread noreply

revno: 5638
committer: Jason P. Pickering 
branch nick: dhis2
timestamp: Thu 2011-12-29 08:50:42 +
message:
  (Translations) Minfor alterations to dhis-web-dashboard-integration)
modified:
  
dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module.properties
  
dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module_fr_FR.properties


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module.properties'
--- dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module.properties	2011-12-14 08:10:22 +
+++ dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module.properties	2011-12-29 08:50:42 +
@@ -1,7 +1,7 @@
 dashboard=Dashboard
 insert=Insert
 close=Close
-clea r= Clear
+clear= Clear
 
 rss_health=RSS Health
 rss_hiv_aids= RSS HIV/AIDS
@@ -39,4 +39,4 @@
 username=Username
 user_roles=User roles
 meta_data=Meta data
-sending_message=Sending message
\ No newline at end of file
+sending_message=Sending message

=== modified file 'dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module_fr_FR.properties'
--- dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module_fr_FR.properties	2011-12-29 07:23:40 +
+++ dhis-2/dhis-web/dhis-web-dashboard-integration/src/main/resources/org/hisp/dhis/dashboard/i18n_module_fr_FR.properties	2011-12-29 08:50:42 +
@@ -1,7 +1,7 @@
 dashboard=Tableau de bord
 insert=Ins\u00e9rer
 close=Fermer
-clea r= Clear
+clear=Effacer
 rss_health=RSS Sant\u00e9
 rss_hiv_aids=RSS VIH/SIDA
 rss_pregnancy=RSS Grossesse

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp


[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 5637: (Translation) Stragglers in web-light fr_FR.

2011-12-29 Thread noreply

revno: 5637
committer: Jason P. Pickering 
branch nick: dhis2
timestamp: Thu 2011-12-29 08:12:13 +
message:
  (Translation) Stragglers in web-light fr_FR.
modified:
  
dhis-2/dhis-web/dhis-web-light/src/main/resources/org/hisp/dhis/light/i18n_module_fr_FR.properties


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to 
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-light/src/main/resources/org/hisp/dhis/light/i18n_module_fr_FR.properties'
--- dhis-2/dhis-web/dhis-web-light/src/main/resources/org/hisp/dhis/light/i18n_module_fr_FR.properties	2011-12-29 07:23:40 +
+++ dhis-2/dhis-web/dhis-web-light/src/main/resources/org/hisp/dhis/light/i18n_module_fr_FR.properties	2011-12-29 08:12:13 +
@@ -10,7 +10,7 @@
 dashboard_charts=Graphiques de tableau de bord
 dashboard_documents=Documents de tableau de bord
 data_entry=Entr\u00e9e de donn\u00e9es
-data_entry_overview=Data Entry Overview
+data_entry_overview=Aper\u00e7u de saisie de donn\u00e9es
 logout=D\u00e9connexion
 desktop_version=Version bureau
 report_table_parameters=Rapport param\u00e8tres
@@ -35,5 +35,5 @@
 validation_rule_violation_warnings=Violation d'avertissement de r\u00e8gle de validation
 minmax_violation_warnings=Avertissements Violation Min / Max
 type_violation_errors=Erreurs de violation de type
-mark_as_complete=Mark as complete
-mark_as_not_complete=Mark as not complete
+mark_as_complete=Marquer comme compl\u00e8te
+mark_as_not_complete=Marquer comme non compl\u00e8te

___
Mailing list: https://launchpad.net/~dhis2-devs
Post to : dhis2-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-devs
More help   : https://help.launchpad.net/ListHelp