dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #38570
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 19646: Removed optional labels in add/edit org unit
------------------------------------------------------------
revno: 19646
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2015-07-14 17:09:01 +0200
message:
Removed optional labels in add/edit org unit
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/addOrganisationUnitForm.vm
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/updateOrganisationUnitForm.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-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/addOrganisationUnitForm.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/addOrganisationUnitForm.vm 2015-06-09 12:52:15 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/addOrganisationUnitForm.vm 2015-07-14 15:09:01 +0000
@@ -71,11 +71,11 @@
<td><textarea id="comment" name="comment"></textarea></td>
</tr>
<tr>
- <td><label for="longitude">$i18n.getString( "longitude_optional" )</label></td>
+ <td><label for="longitude">$i18n.getString( "longitude" )</label></td>
<td><input type="text" id="longitude" name="longitude"></td>
</tr>
<tr>
- <td><label for="latitude">$i18n.getString( "latitude_optional" )</label></td>
+ <td><label for="latitude">$i18n.getString( "latitude" )</label></td>
<td><input type="text" id="latitude" name="latitude"></td>
</tr>
<tr>
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/updateOrganisationUnitForm.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/updateOrganisationUnitForm.vm 2015-06-09 12:52:15 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-organisationunit/src/main/webapp/dhis-web-maintenance-organisationunit/updateOrganisationUnitForm.vm 2015-07-14 15:09:01 +0000
@@ -66,11 +66,11 @@
</tr>
#if( $point )
<tr>
- <td><label for="longitude">$i18n.getString( "longitude_optional" )</label></td>
+ <td><label for="longitude">$i18n.getString( "longitude" )</label></td>
<td><input type="text" id="longitude" name="longitude" value="$!{longitude}"></td>
</tr>
<tr>
- <td><label for="latitude">$i18n.getString( "latitude_optional" )</label></td>
+ <td><label for="latitude">$i18n.getString( "latitude" )</label></td>
<td><input type="text" id="latitude" name="latitude" value="$!{latitude}"></td>
</tr>
#end