=== removed directory 'labs' === removed directory 'labs/dhis-web-wap-client' === removed file 'labs/dhis-web-wap-client/pom.xml' --- labs/dhis-web-wap-client/pom.xml 2011-10-14 14:05:27 +0000 +++ labs/dhis-web-wap-client/pom.xml 1970-01-01 00:00:00 +0000 @@ -1,62 +0,0 @@ - - 4.0.0 - - - org.hisp.dhis - dhis-web - 2.5 - - - dhis-web-wap-client - war - DHIS WAP CLIENT - - - dhis-web-wap-client - - - - - - - - org.hisp.dhis - dhis-web-commons - - - org.hisp.dhis - dhis-web-commons-resources - war - - - org.hisp.dhis - dhis-service-core - - - org.hisp.dhis - dhis-service-reporting - - - org.hisp.dhis - dhis-service-options - - - - - - - ../../ - - === removed directory 'labs/dhis-web-wap-client/src' === removed directory 'labs/dhis-web-wap-client/src/main' === removed directory 'labs/dhis-web-wap-client/src/main/java' === removed directory 'labs/dhis-web-wap-client/src/main/java/org' === removed directory 'labs/dhis-web-wap-client/src/main/java/org/hisp' === removed directory 'labs/dhis-web-wap-client/src/main/java/org/hisp/dhis' === removed directory 'labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap' === removed directory 'labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action' === removed file 'labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/AvailableFacilityReportsFormAction.java' --- labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/AvailableFacilityReportsFormAction.java 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/AvailableFacilityReportsFormAction.java 1970-01-01 00:00:00 +0000 @@ -1,79 +0,0 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ -package org.hisp.dhis.wap.action; - - -import com.opensymphony.xwork2.Action; -import java.util.Collection; -import org.hisp.dhis.dataset.DataSet; - -import org.hisp.dhis.dataset.DataSetService; -import org.hisp.dhis.organisationunit.OrganisationUnit; -import org.hisp.dhis.user.CurrentUserService; -import org.hisp.dhis.user.User; - -/** - * - * @author harsh - */ -public class AvailableFacilityReportsFormAction implements Action -{ - - String facility; - - public String getFacility() - { - return facility; - } - - public void setFacility( String facility ) - { - this.facility = facility; - } - - User user; - OrganisationUnit orgUnit; - Collection dataSetsForMobile; - - public Collection getDataSetsForMobile() - { - return dataSetsForMobile; - } - - DataSetService dataSetService; - CurrentUserService currentUserService; - - public void setCurrentUserService( CurrentUserService currentUserService ) - { - this.currentUserService = currentUserService; - } - - public void setDataSetService( DataSetService dataSetService ) - { - this.dataSetService = dataSetService; - } - - public void setOrgUnit( OrganisationUnit orgUnit ) - { - this.orgUnit = orgUnit; - } - - - @Override - public String execute() throws Exception - { - - user=currentUserService.getCurrentUser(); - System.out.println("user--->"+user.getFirstName()); - orgUnit=user.getOrganisationUnit(); - System.out.println("orgunit---->"+orgUnit.getName()); - dataSetsForMobile = dataSetService.getDataSetsForMobile( orgUnit ); - System.out.println("--------->"+dataSetsForMobile.size()+"<----"); - - return SUCCESS; - //throw new UnsupportedOperationException( "Not supported yet." ); - } - -} === removed file 'labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/DisplayDataElementsFormAction.java' --- labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/DisplayDataElementsFormAction.java 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/DisplayDataElementsFormAction.java 1970-01-01 00:00:00 +0000 @@ -1,68 +0,0 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ -package org.hisp.dhis.wap.action; - - -import com.opensymphony.xwork2.Action; -import java.util.Collection; -import java.util.Iterator; -import org.hisp.dhis.dataelement.DataElement; -import org.hisp.dhis.dataset.DataSet; -import org.hisp.dhis.dataset.DataSetService; - -/** - * - * @author harsh - */ -public class DisplayDataElementsFormAction implements Action -{ - - private String dsRadio; - - public void setDsRadio( String dsRadio ) - { - this.dsRadio = dsRadio; - } - - DataSetService dataSetService; - - public void setDataSetService( DataSetService dataSetService ) - { - this.dataSetService = dataSetService; - } - - Collection dataElements; - - public Collection getDataElements() - { - return dataElements; - } - - @Override - public String execute() throws Exception - { - int dataSetId = Integer.parseInt( dsRadio ); - DataSet dataSet = null; - Collection allDataSets = dataSetService.getAllDataSets(); - Iterator itr = allDataSets.iterator(); - while ( itr.hasNext() ) - { - dataSet = (DataSet) itr.next(); - if ( dataSet.getId() == dataSetId ) - { - break; - } - dataSet = null; - } - if ( dataSet != null ) - { - dataElements = dataSetService.getDataElements( dataSet ); - } - - System.out.println( "drdio=" + dsRadio + "dataele=" + dataElements.size() ); - return SUCCESS; - //throw new UnsupportedOperationException( "Not supported yet." ); - } -} === removed file 'labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/MainFormAction.java' --- labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/MainFormAction.java 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/java/org/hisp/dhis/wap/action/MainFormAction.java 1970-01-01 00:00:00 +0000 @@ -1,24 +0,0 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ -package org.hisp.dhis.wap.action; - - -import com.opensymphony.xwork2.Action; - -/** - * - * @author harsh - */ -public class MainFormAction implements Action -{ - - @Override - public String execute() throws Exception - { - - return SUCCESS; - //throw new UnsupportedOperationException( "Not supported yet." ); - } -} === removed directory 'labs/dhis-web-wap-client/src/main/resources' === removed directory 'labs/dhis-web-wap-client/src/main/resources/META-INF' === removed directory 'labs/dhis-web-wap-client/src/main/resources/META-INF/dhis' === removed file 'labs/dhis-web-wap-client/src/main/resources/META-INF/dhis/beans.xml' --- labs/dhis-web-wap-client/src/main/resources/META-INF/dhis/beans.xml 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/META-INF/dhis/beans.xml 1970-01-01 00:00:00 +0000 @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - === removed directory 'labs/dhis-web-wap-client/src/main/resources/org' === removed directory 'labs/dhis-web-wap-client/src/main/resources/org/hisp' === removed directory 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis' === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module.properties 1970-01-01 00:00:00 +0000 @@ -1,139 +0,0 @@ -please_select = Please Select -open_entry_form = Open Entry Form -hide_entry_form = Hide Entry Form -available_sections = Available Sections -value_type = Value Type -value_date = Value Date -dataelement_comment = Comment -please_design_a_custom_form = Please design a custom form for this data set -import_export = Import/Export -import_from_excel = Import from Excel (Exported Template) -export_entry_template = Export Entry screen as Excel -history_not_valid = History is not applied for this dataelement! -use_section_form = Use Section Form -no_option_selected = No Option Selected -multidimensional_data_entry = Multi-Dimensional Data Entry -data_entry_is_not_possible = DataEntry is not Possible! Probably Empty DataSet. -data_element = Data Element -min = Min -entry = Entry -max = Max -timestamp = Timestamp -stored_by = Stored By -edit_min_max = Edit Min/Max -no_value = No value -no_comment = No comment -custom_comment = Custom comment -edit_min_max_for = Edit min/max for -minimum = Minimum -maximum = Maximum -delete_min_max_values = Delete min/max values -move_up = Move up -move_down = Move down -organisation_unit = Organisation Unit -data_set = Data Set -select = Select -change_order = Change Order -period = Period -earlier_periods = Earlier periods -later_periods = Later periods -use_short_names = Use Short Names -value_of_data_element_less = The value of the following data element is less than the minimum accepted value -value_of_data_element_greater = The value of the following data element is greater than the maximum accepted value -specify_minimum_value = Please specify a minimum value -specify_maximum_value = Please specify a maximum value -minimum_value_must_integer = The minimum value must be an integer -maximum_value_must_integer = The maximum value must be an integer -minimum_must_less_than_maximum = The minimum value must be less than the maximum value -value_must_integer = Value must be an integer and maximum length not exceeds 255 characters -saving_value_failed_status_code = Saving value failed with status code -saving_value_failed_error_code = Saving value failed with error code -saving_comment_failed_status_code = Saving comment failed with status code -saving_comment_failed_error_code = Saving comment failed with error code -saving_minmax_failed_error_code = Saving min/max values failed with error code -move = Move -order_by_entry = Order by registration (default) -order_by_name = Order by name -order_by_code = Order by code -reset_order_inherit = Reset order/inherit from parent -date = Date -min_limit = Min limit -max_limit = Max limit -dataelement_history = Data element history -not_set = Not set -nr = Nr -generate_min_max = Generate min/max -min_max_limits = Min-max limits -run_validation = Run validation -validation_result = Validation Result -expression = Expression -successful_validation = The data entry screen successfully passed validation -unsuccessful_validation = The data entry screen has validation errors, please correct these before proceeding -the_following_values_violate_rules = The following values violate validation rules -the_following_values_are_outliers = The following values are considered as outliers (min-max or std dev) -value = Value -operator = Operator -right_description = Right Description -left_description = Left Description -no_organisationunit_selected = No Organisation Unit Selected -no_period_selected = No Period Selected -no_dataelement_selected = No Data Element Selected -use_default_form = Use Default Form -use_custom_form = Use Custom Form -complete = Complete -incomplete = Incomplete -confirm_complete = Are you sure this dataset is complete? -confirm_undo = Are you sure you will undo the registration? -data_entry = Data Entry -audit = Audit of Data Value -audit_value = Audit Value -audit_stored_by = Operated By -audit_time = Audit Time -audit_operation = Operation Type -audit_from = From -audit_to = To -dv_updated = Updated -dv_deleted = Deleted -dv_added = Added -followup = Follow-up -interpolation = Interpolation -validation_rule = Validation rule -the_following_values_are_outliers = The following values are considered as outliers (min-max or std dev). -no_outlier_values_found = No outlier values found. -specify_input_date = Please specify an input date -specify_valid_input_date = Please enter a valid input date -register_complete_dataset_success = Registered complete dataset -register_complete_dataset_failed = Register complete dataset failed -undo_register_complete_dataset_success = Undo register complete dataset success -datavalue_history = Data value history -data_element_order = Data Element Order -generate_min_max_success = Generated min/max values -enter_digits = Enter digit only. -value_must_number = Value must be an number -value_must_positive_integer = Value must be an positive integer -value_must_negative_integer = Value must be an negative integer -value_is_too_long = Value is too long -field_unallowed_save_zero = This element does not permit 0 values. The original value will not be affected. -datavalue_history = Data value history -max_must_be_greater_than_min = Max must be greater than min -next = Next -prev = Prev -select_from_tree = Select from tree on the left side -select_data_set = Select data set -select_period = Select period -change_from = change from -to = to -on = On -value = Value -no_response_from_server = No response from server, please check connectivity and try again -save = Save -save_comment = Save comment -operation_not_available_offline = This operation is not available in off-line mode -online_notification = You are online -offline_notification = You are offline, data will be stored locally -need_to_sync_notification = There is data stored locally, please upload to server -sync_now = Upload -sync_success = Upload to server was successful -sync_failed = Upload to server failed, please try again later -uploading_data_notification = Uploading locally stored data to the server -ajax_login_failed = Login failed, check your username and password and try again \ No newline at end of file === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_am_ET.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_am_ET.properties 2012-09-18 17:07:09 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_am_ET.properties 1970-01-01 00:00:00 +0000 @@ -1,66 +0,0 @@ -#Resource generated by I18n Resource Editor -#Thu Mar 22 18:50:36 CET 2007 -change=\u1208\u12CD\u1325 -specify_minimum_value=\u12DD\u1245\u1270\u129B\u12CD \u12CB\u130B -value_of_data_element_greater=\u12E8\u12A0\u1308\u120D\u130D\u120E\u1271 \u12CB\u130B \u12A8\u12A8\u134D\u1270\u129B \u12D5\u1245\u12F1 \u12ED\u1260\u120D\u1323\u120D -code=\u12AE\u12F5 -specify_maximum_value=\u12A8\u134D\u1270\u129B\u12CD\u1295 \u12D5\u1245\u12F5 \u12A0\u1235\u1308\u1263 -cancel=\u1230\u122D\u12DD -reset_order_inherit=\u12A8\u12C8\u120B\u1305 \u12E8\u1270\u12C8\u1208\u1230\u12CD\u1295 \u1245\u12F0\u121D \u1270\u12A8\u1270\u120D \u1218\u120D\u1235 -down=\u12C8\u12F0\u1273\u127D -no_comment=\u12A0\u1235\u1270\u12EB\u12E8\u1275 \u12E8\u1208\u121D -saving_value_failed_status_code=\u12CB\u130B\u12CD\u1295 \u121B\u1235\u1308\u1263\u1275 \u12A0\u120D\u1270\u127B\u1208\u121D \u1260\u127D\u130D\u122D \u12AE\u12F5 -timestamp=\u1273\u12ED\u121D\u1230\u1273\u121D\u1355 -saving_minmax_failed_error_code=\u12DD\u1245/\u12A8\u134D \u12CB\u130B \u121B\u1235\u1308\u1263\u1275 \u12A0\u120D\u1270\u127B\u1208\u121D \u1260\u127D\u130D\u122D \u12AE\u12F5 -edit_min_max_for=\u12A0\u12F5\u1275 \u12A8\u134D\u1270\u129B \u12DD\u1245\u1270\u129B \u1208 -name=\u1225\u121D -not_set=\u12A0\u120D\u1308\u1263\u121D -move=\u12A0\u1295\u1240\u1233\u1243\u123D -stored_by=\u122A\u1356\u122D\u1275 \u12A0\u1320\u1293\u1243\u122A -organisation_unit=\u12E8\u1324\u1293 \u12F5\u122D\u1305\u1276\u127D -data_element=\u12E8\u1324\u1293 \u12A0\u1308\u120D\u1308\u120E\u1275 \u12D8\u122D\u134D -move_up=\u12C8\u12F5\u120B\u12ED \u12A0\u1295\u1240\u1233\u1245\u1235 -minimum_value_must_integer=\u12DD\u1245\u1270\u129B\u12CD \u12CB\u130B \u1345\u1295\u134D \u12A2\u1295\u1272\u1300\u122D \u1218\u1206\u1295 \u12A0\u120D\u1260\u1275 -delete_min_max_values=\u12A8\u134D\u1270\u129B \u12DD\u1245\u1270\u129B \u12CB\u130B\u12CE\u127D\u1295 \u12A0\u1325\u134B -average=\u12A0\u121B\u12AB\u129D -save=\u12A0\u1235\u1308\u1263 -min_limit=\u12DD\u1245\u1270\u129B \u1345\u1295\u134D -min_max_values=\u12DD\u1245/\u12A8\u134D \u12CB\u130B -custom_comment=\u12A0\u1235\u1270\u12EB\u12E8\u1275 \u121B\u1235\u1308\u1262\u12EB -saving_comment_failed_error_code=\u12A0\u1235\u1270\u12EB\u12E8\u1271\u1295 \u121B\u1235\u1308\u1263\u1275 \u12A0\u120D\u1270\u132B\u1208\u121D \u1260\u127D\u130D\u122D \u12AE\u12F5 -saving_comment_failed_status_code=\u12A0\u1235\u1270\u12EB\u12E8\u1271\u1295 \u121B\u1235\u1308\u1263\u1275 \u12A0\u120D\u1270\u127B\u1208\u121D \u1260 \u12AE\u12F5 -max=\u12A8\u134D -minimum_must_less_than_maximum=\u12A8\u12A8\u134D\u1270\u1308\u129B\u12CD \u12CB\u130B \u1218\u1265\u1208\u1275 \u12E8\u1208\u1260\u1275\u121D -minimum=\u12A8\u134D\u1270\u129B -period=\u1240\u1240\u1295 \u1295 -text=\u1345\u1201\u134D -edit_min_max=\u12A8\u134D\u1270\u129B \u12DD\u1245\u1270\u129B \u121B\u12F0\u1275\u12EB -saving_value_failed_error_code=\u12CB\u130B\u12CD\u1295 \u121B\u1235\u1308\u1263\u1275 \u12A0\u120D\u1270\u127B\u1208\u121D \u1260\u127D\u130D\u122D \u12AE\u12F5 -entry=\u121B\u1235\u1308\u1262\u12EB -order_by_entry=\u12A5\u1290\u12F0\u12A0\u1308\u1263\u1261 \u12F0\u122D\u12F5\u122D -comment=\u12A0\u1235\u1270\u12EB\u12E8\u1275 -up=\u12C8\u12F0\u120B\u12ED -generate_values=\u12CB\u130B\u12CE\u127D\u1295 \u12A0\u12CD\u1323 -maximum=\u12A8\u134D\u1270\u129B -order_by_code=\u1260\u12AE\u12F5 \u12F0\u122D\u12F5\u122D -no_value=\u12CB\u130B \u12A0\u120D\u1270\u1230\u1320\u12CD\u121D -use_short_names=\u12A0\u132D\u1229\u1295 \u1235\u121D \u1270\u1320\u1240\u121D -data_element_order=\u12E8\u1324\u1293 \u12A0\u1308\u120D\u1308\u120E\u1275 \u12D8\u122D\u134D \u1245\u12F0\u121D \u1270\u12A8\u1270\u120D -value_of_data_element_less=\u12E8\u12A0\u1308\u120D\u130D\u120E\u1271 \u12CB\u130B \u12A8\u12DD\u1245\u1270\u129B \u12D5\u1245\u12F1 \u12EB\u1295\u1233\u120D -move_down=\u12C8\u12F5\u1273\u127D \u12A0\u1295\u1240\u1233\u1245\u1235 -generate_missing_values=\u12EB\u120D\u1308\u1261 \u12CB\u130B\u12CE\u127D\u1295 \u12A0\u12CD\u1323 -max_limit=\u12A8\u134D\u1270\u129B \u1345\u1295\u134D -close=\u12DD\u130B -select=\u121D\u1228\u1325 -yes=\u12A0\u12CE -order_by_name=\u1260\u1235\u121D \u12F0\u122D\u12F5\u122D -data_set=\u12E8\u1324\u1293 \u12A0\u1308\u120D\u1308\u120E\u1275 \u12D8\u122D\u134D \u1261\u12F5\u1295 -nr=\u1290\u1228 -no=\u12A0\u12ED\u12F0\u1208\u121D -yes_no=\u12A0\u12CE/\u12A0\u12ED\u12F0\u1208\u121D -min=\u12DD\u1245 -value_must_integer=\u12CB\u130B\u12CD \u12A2\u1295\u1272\u1300\u122D \u1218\u1206\u1295 \u12A0\u1208\u1260\u1275 -number=\u1241\u1325\u122D -dataelement_history=\u12E8\u1324\u1293 \u12A0\u1308\u120D\u1308\u120E\u1275 \u12D8\u122D\u134D \u1273\u122A\u12AD -maximum_value_must_integer=\u12A8\u134D\u1270\u129B\u12CD \u12CB\u130B \u1345\u1295\u134D \u12A2\u1295\u1272\u1300\u122D \u1218\u1206\u1295 \u12A0\u120D\u1260\u1275 -type=\u12D3\u12ED\u1290\u1275 === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_en_GB.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_en_GB.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_en_GB.properties 1970-01-01 00:00:00 +0000 @@ -1,124 +0,0 @@ -#Resource generated by I18n Resource Editor -#Tue Sep 14 15:24:01 CEST 2010 -import_from_excel=Import from Excel (Exported Template) -saving_comment_failed_status_code=Saving comment failed with status code -description=Description -use_short_names=Use Short Names -saving_value_failed_error_code=Saving value failed with error code -entry=Entry -data_set=Data Set -dataelement_comment=Comment -confirm_undo=Are you sure you will undo the registration? -successful_validation=The data entry screen successfully passed validation -data_entry=Data Entry -stored_by=Stored By -order_by_entry=Order by registration (default) -saving_value_failed_status_code=Saving value failed with status code -max_limit=Max limit -dv_deleted=Deleted -delete_min_max_values=Delete min/max values -saving_comment_failed_error_code=Saving comment failed with error code -organisation_unit=Organisation Unit -value_of_data_element_greater=The value of the following data element is greater than the maximum accepted value -yes=Yes -max=Max -generate_min_max=Generate min/max -date=Date -audit_operation=Operation Type -less_than_or_equal_to=<\= -validation_result=Validation Result -dv_updated=Updated -use_custom_form=Use Custom Form -value_of_data_element_less=The value of the following data element is less than the minimum accepted value -save=Save -saving_minmax_failed_error_code=Saving min/max values failed with error code -min_max_limits=Min-max limits -left_description=Left Description -comment=Comment -dataelement_history=Data element history -minimum_must_less_than_maximum=The minimum value must be less than the maximum value -unsuccessful_validation=The data entry screen has validation errors, please correct these before proceeding -specify_minimum_value=Please specify a minimum value -open_entry_form=Open Entry Form -equal_to=\=\= -code=Code -use_section_form=Use Section Form -change_order=Change Order -specify_valid_input_date=Please enter a valid input date -not_equal_to=\!\= -hide_entry_form=Hide Entry Form -audit_stored_by=Operated By -value=Value -specify_maximum_value=Please specify a maximum value -operator=Operator -no_dataelement_selected=No Data Element Selected -data_element=Data Element -please_design_a_custom_form=Please design a custom FORM for this dataSet \!\! -minimum_value_must_integer=The minimum value must be an integer -yes_no=Yes/no -import_export=Import/Export -close=Close -history_not_valid=History is not applied for this dataelement -value_date=Value Date -type=Type -interpolation=Interpolation -no_organisationunit_selected=No Organisation Unit Selected -nr=Nr -audit_value=Audit Value -use_default_form=Use Default Form -no=No -edit_min_max_for=Edit min/max for -min_limit=Min limit -later_periods=Later periods -custom_comment=Custom comment -period=Period -no_outlier_values_found=No outlier values found. -complete=Complete -order_by_code=Order by code -name=Name -timestamp=Timestamp -less_than=< -dv_added=Added -data_entry_is_not_possible=DataEntry is not Possible\! Probably Empty DataSet. -move=Move -no_option_selected=No Option Selected -right_description=Right Description -move_up=Move up -reset_order_inherit=Reset order/inherit from parent -no_value=No value -expression=Expression -not_set=Not set -specify_input_date=Please specify an input date -average=Average -earlier_periods=Earlier periods -validation_rule=Validation rule -text=Text -edit_min_max=Edit Min/Max -audit_from=From -confirm_complete=Are you sure this dataset is complete? -maximum_value_must_integer=The maximum value must be an integer -undo=Undo -audit_time=Audit Time -no_comment=No comment -maximum=Maximum -value_type=Value Type -followup=Follow-up -audit_to=To -the_following_values_are_outliers=The following values are considered as outliers (min-max or std dev). -value_must_integer=Value must be an integer -order_by_name=Order by name -available_sections=Available Sections -select=Select -greater_than_or_equal_to=>\= -number=Number -move_down=Move down -export_entry_template=Export Entry screen as Excel -greater_than=> -min=Min -minimum=Minimum -the_following_values_violates_rules=The following values violates validation rules -cancel=Cancel -no_period_selected=No Period Selected -audit=\u12A0\u1265\u12EE\u1275 -multidimensional_data_entry=Multi-Dimensional Data Entry -run_validation=Run validation === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_es_ES.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_es_ES.properties 2012-11-06 12:52:23 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_es_ES.properties 1970-01-01 00:00:00 +0000 @@ -1,158 +0,0 @@ -#Resource generated by I18n Resource Editor -#Sat May 16 13:17:47 GMT-05:00 2009 -import_from_excel=Importar de Excel (Plantilla exportada) -saving_comment_failed_status_code=Guardando comentario fallido con c\u00f3digo de estado -description=Descripci\u00f3n -use_short_names=Usar Nombres Cortos -saving_value_failed_error_code=Guardando valor fallido con codigo de error -entry=Entrada -data_set=Conjunto de Datos -dataelement_comment=Comentario -confirm_undo=\u00bfSeguro que desea deshacer el registro? -successful_validation=Los valores pasaron la validaci\u00f3n con \u00e9xito -stored_by=Guardado por -order_by_entry=Orden por Entrada (asumida) -saving_value_failed_status_code=Guardando valor fallido con c\u00f3digo de estado -max_limit=Limite Maximo -delete_min_max_values=Borrar valores Minimos/Maximos -saving_comment_failed_error_code=Guardando comentario fallido con c\u00f3digo de error -organisation_unit=Unidad Organizativa -value_of_data_element_greater=Valor del Elemento de Datos mayor que el valor M\u00e1ximo aceptado -yes=S\u00ed -max=maximo -generate_min_max=Generar Min/Max -less_than_or_equal_to=<= -validation_result=Resultado de Validaci\u00f3n -value_of_data_element_less=Valor del Elemento de Datos menor que el valor M\u00ednimo aceptado -save=Guardar -saving_minmax_failed_error_code=Guardando Minimo/Maximo fallido con codigo de error -left_description=Descriptores Izquierdos -comment=Comentario -dataelement_history=Historia del Elemento de Datos -minimum_must_less_than_maximum=El valor Minimo debe ser menor que el del Maximo -unsuccessful_validation=Los valores no pasaron la Validaci\u00f3n. Por favor, corrijalos para continuar -specify_minimum_value=Especificar valores Minimos -equal_to== -code=c\u00f3digo -use_section_form=Usar formulario de secci\u00f3n -change_order=Cambiar Orden -not_equal_to=<> -value=Valor -specify_maximum_value=Especificar valores m\u00e1ximos -operator=Operador -no_dataelement_selected=No se han seleccionado elementos de datos -data_element=Elemento de Datos -please_design_a_custom_form=Dise\u00f1ar un formato de entrada personalizado para este Conjunto de Datos -minimum_value_must_integer=El valor m\u00ednimo debe ser un n\u00famero entero -yes_no=si/no -import_export=Importar/Exportar -close=cerrar -history_not_valid=Historia no v\u00e1lida para este Elemento de Datos -type=tipo -no_organisationunit_selected=No se ha seleccionado Unidad Organizativa -nr=No -use_default_form=Usar formulario predefinido -no=No -edit_min_max_for=Editar M\u00ednimos/M\u00e1ximos para -min_limit=L\u00edmite m\u00ednimo -later_periods=\u00daltimos periodos -custom_comment=Comentario Personalizado -period=Per\u00edodo -order_by_code=Ordenar por c\u00f3digo -complete=Completo -name=nombre -timestamp=Fechado -less_than=< -data_entry_is_not_possible=No es posible introducir datos. Probablemente el Set de Datos est\u00e9 vac\u00edo. -move=Mover -no_option_selected=No se ha seleccionado opci\u00f3n -right_description=Descripci\u00f3n correcta -move_up=Mover arriba -reset_order_inherit=Restablecer orden/heredado de los padres -no_value=No existe valor -not_set=No establecido -expression=Expresi\u00f3n -earlier_periods=Periodos Anteriores -average=promedio -text=texto -edit_min_max=Editar Minimos/Maximos -confirm_complete=\u00bfConfirmar Set de Datos como completo? -maximum_value_must_integer=Valor m\u00e1ximo debe ser un n\u00famero entero -undo=deshacer -no_comment=Sin Comentario -maximum=Maximo -value_must_integer=El valor debe ser un entero y la longitud no puede exceder de 255 caracteres -order_by_name=Ordenar por nombre -select=Seleccionar -greater_than_or_equal_to=>= -number=n\u00famero -move_down=Mover abajo -export_entry_template=Exportar pantalla de entrada como Excel -greater_than=> -minimum=M\u00ednimo -min=min -cancel=cancelar -no_period_selected=No se ha seleccionado periodo -multidimensional_data_entry=Entrada de Datos Multidimensional -run_validation=Iniciar validaci\u00f3n -please_select=Por favor seleccione -open_entry_form=Abrir un formulario de entrada -hide_entry_form=Ocultar formulario de entrada -available_sections=Secci\u00f3n disponible -value_type=Tipo de valor -value_date=valor de fecha -date=fecha -min_max_limits=L\u00edmites m\u00e1ximo y m\u00ednimo -the_following_values_violate_rules=Los siguientes valores no cumplen las reglas de validaci\u00f3n -use_custom_form=Use formulario personalizado -incomplete=Incompleto -data_entry=Datos de entrada -audit=Auditor\u00eda del valor de los datos -audit_value=Auditor\u00eda de valor -audit_stored_by=Operado por -audit_time=Auditor\u00eda de tiempo -audit_operation=Tiempo de operaci\u00f3n -audit_from=desde -audit_to=a -dv_updated=actualizado -dv_deleted=borrado -dv_added=A\u00f1adido -followup=Seguimiento -interpolation=interpolaci\u00f3n -validation_rule=Regla de validaci\u00f3n -the_following_values_are_outliers=Valores considerados at\u00edpicos (min-max o desviaci\u00f3n est\u00e1ndar). -no_outlier_values_found=No se encontraron valores at\u00edpicos. -specify_input_date=Especifique la fecha de entrada -specify_valid_input_date=Introduzca una fecha de entrada v\u00e1lida -register_complete_dataset_success=Set de datos completo -register_complete_dataset_failed=Fallo al completar el Set de Datos -undo_register_complete_dataset_success=Conjunto completo de datos deshecho correctamente -data_element_order=Orden de elemento de datos -generate_min_max_success=Generado valores Minimos/Maximos -enter_digits=Introduzca un solo d\u00edgito. -value_must_number=El valor debe ser un n\u00famero -value_must_positive_integer=El valor debe ser un entero positivo -value_must_negative_integer=El valor debe ser un entero negativo -value_is_too_long=Valor demasiado grande -field_unallowed_save_zero=El elemento no permite cero. El valor original no cambiar\u00e1. -datavalue_history=Histor\u00eda del valor del dato -max_must_be_greater_than_min=M\u00e1ximo debe ser mayor que el m\u00ednimo -next=siguiente -prev=anterior -select_from_tree=Seleccione del arbol de la derecha -select_data_set=Seleccione un conjunto de datos -select_period=Seleccione un periodo -change_from=cambiar de -to=a -on=en -no_response_from_server=No hay respuesta del servidor, compruebe la conectividad e intente de nuevo -save_comment=Guardar comentario -operation_not_available_offline=Operaci\u00f3n no permitida en modo off-line -online_notification=Est\u00e1 sin conexi\u00f3n -offline_notification=Est\u00e1 sin conexi\u00f3n, los datos se guardar\u00e1n localmente -need_to_sync_notification=Existen datos locales, cargue al servidor -sync_now=Cargar -sync_success=Carga al servidor realizada correctamente -sync_failed=Carga al servidor fallida, intente de nuevo -uploading_data_notification=Cargar datos locales al servidor -ajax_login_failed=Acceso incorrecto, compruebe su nombre de usuario y su contrase\u00f1a e intentelo de nuevo === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_fr_FR.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_fr_FR.properties 2012-01-16 06:35:50 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_fr_FR.properties 1970-01-01 00:00:00 +0000 @@ -1,139 +0,0 @@ -please_select=Veuillez selectionner -open_entry_form=Ouvrir formulaire de saisie -hide_entry_form=Masquer le formulaire de saisie -available_sections=Sections disponibles -value_type=Type de valeur -value_date=Date de la valeur -dataelement_comment=Commentaire -please_design_a_custom_form=Veuillez cr\u00e9er un formulaire personnalis\u00e9 pour cet ensemble de donn\u00e9es!! -import_export=IImport/Export -import_from_excel=Import \u00e0 partir d'Excel (mod\u00e8le export\u00e9) -export_entry_template=Exporter le masque de saisie en Excel -history_not_valid=Historique non applicable pour ce \u00e9l\u00e9ment de donn\u00e9e -use_section_form=Utiliser le formulaire de section -no_option_selected=Pas d'option s\u00e9lectionn\u00e9e -multidimensional_data_entry=Saisie de donn\u00e9es multi-dimensionnelles -data_entry_is_not_possible=Saisi de donn\u00e9e impossible! Ensemble de donn\u00e9es probablement vide -data_element=Element de donn\u00e9e -min=Min -entry=Entr\u00e9e -max=Max -timestamp=Horodatage -stored_by=Enregistr\u00e9 par -edit_min_max=Editer Min/Max -no_value=Pas de valeur -no_comment=Pas de commentaire -custom_comment=Commentaire personnalis\u00e9 -edit_min_max_for=Editer le min/max pour -minimum=Minimum -maximum=Maximum -delete_min_max_values=Supprimer la valeur min/max -move_up=Monter -move_down=Abaisser -organisation_unit=Unit\u00e9 d'organisation -data_set=Ensemble de donn\u00e9es -select=S\u00e9lectionner -change_order=Changer l'ordre -period=P\u00e9riode -earlier_periods=P\u00e9riodes pr\u00e9c\u00e9dentes -later_periods=Periodes suivantes -use_short_names=Utiliser les noms courts -value_of_data_element_less=La valeur de l'\u00e9l\u00e9ment de donn\u00e9e suivant est inf\u00e9rieure au minimum admis -value_of_data_element_greater=La valeur de la donn\u00e9e suivante est sup\u00e9rieure au maximum admis -specify_minimum_value=Veuillez indiquer une valeur minimum -specify_maximum_value=Veuillez indiquer une valeur maximale -minimum_value_must_integer=La valeur minimum doit \u00eatre un nombre entier -maximum_value_must_integer=La valeur maximum doit \u00eatre un nombre entier -minimum_must_less_than_maximum=La valeur minimale doit \u00eatre inf\u00e9rieure \u00e0 la valeur maximale -value_must_integer=La valeur doit \u00eatre un nombre entier -saving_value_failed_status_code=Enregistrement de la valeur a \u00e9chou\u00e9 avec le code de statut -saving_value_failed_error_code=L'enregistrement de la valeur a \u00e9chou\u00e9 avec le code d'erreur -saving_comment_failed_status_code=L'enregistrement du commentaire a \u00e9chou\u00e9 avec le code de statut -saving_comment_failed_error_code=L'enregistrement du commentaire a \u00e9chou\u00e9 avec le code d'erreur -saving_minmax_failed_error_code=Enregistrement de la valeur min/max a \u00e9chou\u00e9 avec le code d'erreur -move=D\u00e9placer -order_by_entry=Classer par enregistrement (defaut) -order_by_name=Classer par nom -order_by_code=Classer par code -reset_order_inherit=R\u00e9initialiser l'ordre/h\u00e9riter du parent -date=Date -min_limit=Limite inf\u00e9rieure -max_limit=Limite sup\u00e9rieure -dataelement_history=Historique des \u00e9l\u00e9ments de donn\u00e9es -not_set=Non d\u00e9fini -nr=Nr -generate_min_max=G\u00e9n\u00e9rer min/max -min_max_limits=Limites Min-max -run_validation=Ex\u00e9cuter la validation -validation_result=Resultat de validation -expression=Expression -successful_validation=La validation de ce formulaire a r\u00e9ussi -unsuccessful_validation=La validation de ce formulaire a \u00e9chou\u00e9 -the_following_values_violate_rules=La valeur suivante viole les r\u00e8gles de validation -the_following_values_are_outliers=The following values are considered as outliers (min-max or std dev). -value=Valeur -operator=Op\u00e9rateur -right_description=Description du c\u00f4t\u00e9 droit -left_description=Description du c\u00f4t\u00e9 gauche -no_organisationunit_selected=Pas d'unit\u00e9 d'organisation s\u00e9lectionn\u00e9e -no_period_selected=Pas de p\u00e9riode s\u00e9lectionn\u00e9e -no_dataelement_selected=Pas d'\u00e9l\u00e9ment de donn\u00e9e s\u00e9lectionn\u00e9 -use_default_form=Utiliser le formulaire par d\u00e9faut -use_custom_form=Utiser le formulaire personnalis\u00e9 -complete=Finir -incomplete=IIncomplet -confirm_complete=Etes-vous que ce formulaire est complement rempli? -confirm_undo=Etes-vous s\u00fbr d'annuler l'enregistrement de ce formulaire? -data_entry=Saisie de donn\u00e9es -audit=Audit de valeur de donn\u00e9e -audit_value=Valeur de l'audit -audit_stored_by=Enregistr\u00e9e par -audit_time=Temps d'audit -audit_operation=Type d'operation -audit_from=De -audit_to=A -dv_updated=Mis \u00e0 jour -dv_deleted=Supprim\u00e9e -dv_added=Ajout\u00e9 -followup=Suivi -interpolation=Interpolation -validation_rule=R\u00e8gle de validation -the_following_values_are_outliers=The following values are considered as outliers (min-max or std dev). -no_outlier_values_found=Pas de valeurs ab\u00e9rrantes trouv\u00e9es -specify_input_date=Vauillez sp\u00e9cifier la date -specify_valid_input_date=Veuillez saisir une date valide -register_complete_dataset_success=Ensemble de donn\u00e9es complet enregistr\u00e9 -register_complete_dataset_failed=lL'enregistrement de l'ensemble de donn\u00e9e complet a \u00e9chou\u00e9 -undo_register_complete_dataset_success=Retour de l'enregistrement de l'ensemble des donn\u00e9es complet reussi -datavalue_history=Valeur de donn\u00e9e historique -data_element_order=Ordre des \u00e9l\u00e9ments de donn\u00e9es -generate_min_max_success=Valeurs min/max g\u00e9n\u00e9r\u00e9es -enter_digits=Saisie digitale uniquement. -value_must_number=La valeur doit \u00eatre un nombre -value_must_positive_integer=La valeur doit \u00eatre un nombre entier positif -value_must_negative_integer=La valeur doit \u00eatre un nombre entier n\u00e9gatif -value_is_too_long=La valeur est trop longue -field_unallowed_save_zero=Cet \u00e9l\u00e9ments ne permet pas les valeurs 0. La valeur initiale ne sera pas affect\u00e9e. -datavalue_history=Valeur de donn\u00e9e historique -max_must_be_greater_than_min=Max doit \u00eatre plus grand que min -next=Suivant -prev=Pr\u00e9c\u00e9dent -select_from_tree=S\u00e9lectionner \u00e0 partir l\u2019arborescence sur le c\u00f4t\u00e9 gauche -select_data_set=S\u00e9lectionner l'ensemble des donn\u00e9es -select_period=S\u00e9lectionner la p\u00e9riode -change_from=Changer \u00e0 partir de -to=\u00e0 -on=Sur -value=Valeur -no_response_from_server=Pas de r\u00e9ponse du serveur, SVP v\u00e9rifier la connectivit\u00e9 et r\u00e9essayer -save=Enregistrer -save_comment=Enregistrer le commentaire -operation_not_available_offline=Cette op\u00e9ration n'est pas disponible en mode hors connexion -online_notification=Vous \u00eates connect\u00e9 -offline_notification=Vous \u00eates d\u00e9connect\u00e9, les donn\u00e9es seront stock\u00e9es localement -need_to_sync_notification=ll y a des donn\u00e9es stock\u00e9es localement, veuillez les envoyer au serveur -sync_now=Upload -sync_success=La transmission au serveur a r\u00e9ussi -sync_failed=La transmission au serveur a \u00e9chou\u00e9, veuillez r\u00e9essayer plus tard -uploading_data_notification=Transmission en cours des donn\u00e9es stock\u00e9es localement vers le serveur -ajax_login_failed=L'identification a \u00e9chou\u00e9, veuillez v\u00e9rifier votre nom d'utilisateur et mot de passe, puis r\u00e9essayer. === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_gu_IN.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_gu_IN.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_gu_IN.properties 1970-01-01 00:00:00 +0000 @@ -1,61 +0,0 @@ -#DHIS2 resource - generated by I18n Resource Editor for locale "Gujarati (India)" -#Wed Jun 28 23:35:21 CEST 2006 -change= બદલ્વુ -specify_minimum_value= મહેરબાનિ કરી ચોક્ક્સ ઓછા મા ઓછિ સખ્યા બતાવો -value_of_data_element_greater= નીચેના માહિતિ તત્વની વેલ્યુ મહત્તમ સ્વીકારેલ વેલ્યુ કરતા વધારે છે. -code=Codespecify_maximum_value= મહેરબાનિ કરી ચોક્ક્સ વધુ મા વધુ સખ્યા બતાવો -cancel= કાઢિ નાખો -reset_order_inherit= ફરી પહેલા ઓડૅર -down= નિચે લઈ જાવો -no_comment= કોઇ ટિપ્પ્ણી નહિ -saving_value_failed_status_code= જે સખ્યાં તમે સેવ કરવાના હતા સ્ટેટસ કોડ સાથે નિકળિ ગઇ છે -timestamp= ટાઇમ સ્ટેમ્પ -edit_min_max_for= ઓછિ/વધુ સખ્યાં મા ફેરફાર -name= નામ -not_set= નહિ સેટ -move= ખસેડો -stored_by= સગ્રહ દ્વારા -data_element= માહિતિ તત્વો -move_up= ઉપર જાવ -minimum_value_must_integer= ન્યુનતમ વેલ્યુ આકડાકીય જ હોવી જોઈએ -delete_min_max_values= ન્યુનતમ/ મહત્તમ વેલ્યુ રદ કરો -organization_unit= વ્યવસ્થા તંત્ર ના ભાગ -average= સરેરાશ -save= સંગ્રહ -min_limit= ન્યુનતમ હદ -custom_comment= ટિપ્પણિ બદલવી -saving_comment_failed_error_code= સંગ્રહ ટિપ્પણી ભુલ કોડ સાથે રદ થાય છે. -saving_comment_failed_status_code= સંગ્રહ ટિપ્પણી સ્થિતિ કોડ સાથે રદ થાય છે. -max= મહત્તમ -minimum_must_less_than_maximum= ન્યુનતમ વેલ્યુ મહત્તમ વેલ્યુ કરતા ઓછી જ હોવી જોઈએ. -minimum=ન્યુનતમ -period= સમય -text= લખાણ -edit_min_max= ન્યુનતમ / મહત્તમ માં ફેરફાર -saving_value_failed_error_code= સંગ્રહ ટિપ્પણી ભુલ કોડ સાથે રદ થાય છે. -entry= દાખલ કરવુ -order_by_entry= ઓર્ડર દ્વારા નોંધણી -comment= ટિપ્પણી -up= ઉપર -maximum= મહત્તમ -order_by_code= ઓર્ડર દ્વારા કોડ -use_short_names= ટુકુ નામ વાપરો -no_value= વેલ્યુ નથી -data_element_order= માહિતિ તત્વો નો ક્રમાંક -value_of_data_element_less= નીચેની વેલ્યુ ન્યુનતમ સ્વીકારેલ વેલ્યુ કરતા ઓછી છે. -move_down= નીચે જાવ -max_limit= મહત્તમ મર્યાદા -close= બંધ -select= પસંદ -yes= હા -order_by_name= નામ પ્રમાણે ઓર્ડર -data_set= માહિતિ પત્રક -no= ના -yes_no= હા/ના -min= ન્યુનતમ -value_must_integer= વિલ્યુ આંકડાકીય જ હોવી જોઈએ -number= આંકડો -type= પ્રકાર -maximum_value_must_integer= મહત્તમ વેલ્યુ આંકડાકીય જ હોવી જોઈએ -dataelement_history= માહિતિ તત્વોનો ઈતિહાસ -nr= નંબર. \ No newline at end of file === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_hi_IN.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_hi_IN.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_hi_IN.properties 1970-01-01 00:00:00 +0000 @@ -1,78 +0,0 @@ -#Resource generated by I18n Resource Editor -#Thu Mar 29 20:35:10 IST 2007 -validate=\u092A\u0941\u0937\u094D\u091F \u0915\u0930\u0928\u093E -saving_comment_failed_status_code=\u092C\u091A\u093E\u0935 \u0915\u0940 \u091C\u093E \u0930\u0939\u0940 \u091F\u093F\u092A\u094D\u092A\u0923\u0940 \u0938\u094D\u091F\u0947\u091F\u094D\u0938 \u0915\u094B\u0921 \u0915\u0947 \u0938\u093E\u0925 \u0935\u093F\u092B\u0932 \u0939\u0941\u0906 -use_short_names=\u0938\u0902\u0915\u094D\u0937\u093F\u092A\u094D\u0924 \u0928\u093E\u092E\u094B\u0902 \u0915\u093E \u0907\u0938\u094D\u0924\u0947\u092E\u093E\u0932 \u0915\u0940\u091C\u093F\u090F -saving_value_failed_error_code=\u092C\u091A\u093E\u0928\u0947 \u0935\u093E\u0932\u093E \u092E\u093E\u0928 \u0935\u093F\u095E\u0932 \u0939\u0941\u0906 \u090F\u0930\u0930 \u0915\u094B\u0921 \u0915\u0947 \u0938\u093E\u0925 -entry=\u092A\u094D\u0930\u0935\u0947\u0936/\u092A\u094D\u0930\u0935\u0940\u0938\u094D\u091F\u093F -data_set=\u0921\u0947\u091F\u093E\u0938\u0947\u091F -successful_validation=\u092E\u093E\u0928 \u0938\u092B\u0932\u0924\u093E\u092A\u0942\u0930\u094D\u0935\u0915 \u092E\u093E\u0928\u094D\u092F\u0915\u0930\u0923 \u0938\u0947 \u0928\u093F\u0915\u0932\u0947 -stored_by=\u0915\u0947 \u091C\u0930\u093F\u092F\u0947 \u0938\u0947 \u0938\u0941\u0930\u0915\u094D\u0937\u093F\u0924(\u0938\u0947\u0935) -order_by_entry=\u0930\u091C\u093F\u0938\u094D\u091F\u094D\u0930\u0947\u0938\u0928 \u0915\u093E \u0915\u094D\u0930\u092E (default) -saving_value_failed_status_code=\u092C\u091A\u0924 \u092E\u093E\u0928 \u0938\u094D\u091F\u0947\u091F\u0938 \u0915\u094B\u0921 \u0915\u0947 \u0938\u093E\u0925 \u0935\u093F\u092B\u0932 \u0939\u0941\u0906 -max_limit=\u0905\u0927\u093F\u0915\u0924\u092E \u0938\u0940\u092E\u093E -delete_min_max_values=\u092E\u093F\u091F\u093E\u0907\u092F\u0947 \u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E/\u092E\u0939\u0924\u094D\u0924\u092E \u092E\u093E\u0928 -saving_comment_failed_error_code=\u092C\u091A\u093E\u0935 \u0915\u0940 \u091C\u093E \u0930\u0939\u0940 \u091F\u093F\u092A\u094D\u092A\u0923\u0940 \u090F\u0930\u0930 \u0915\u094B\u0921 \u0915\u0947 \u0938\u093E\u0925 \u0935\u093F\u092B\u0932 \u0939\u0941\u0906 -organisation_unit=\u0938\u094D\u0935\u093E\u0938\u094D\u0925\u094D\u092F \u0915\u0947\u0902\u0926\u094D\u0930 -value_of_data_element_greater=\u0926\u093F\u092F\u0947 \u0939\u0941\u090F \u0921\u0947\u091F\u093E \u090F\u0932\u0940\u092E\u0947\u0928\u094D\u091F \u0915\u093E \u092E\u093E\u0928 \u0938\u094D\u0935\u0940\u0915\u0943\u0924 \u092E\u0939\u0924\u094D\u0924\u092E \u092E\u093E\u0928 \u0938\u0947 \u095B\u094D\u092F\u093E\u0926\u093E \u0939\u0948 -yes=\u0939\u093E\u0901 -max=\u092E\u0939\u0924\u094D\u0924\u092E -validation_result=\u092E\u093E\u0928\u094D\u092F\u0915\u0930\u0923 \u0915\u0947 \u092A\u0930\u093F\u0923\u093E\u092E -down=\u0928\u0940\u091A\u0947 -value_of_data_element_less=\u0926\u093F\u090F \u0939\u0941\u090F \u0926\u0947\u091F\u093E \u090F\u0932\u093F\u092E\u0947\u0928\u094D\u091F \u0915\u093E \u092E\u093E\u0928 \u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E \u0938\u094D\u0935\u0940\u0915\u0943\u0924 \u092E\u093E\u0928 \u0938\u0947 \u0915\u092E \u0939\u0948 -save=\u0938\u0941\u0930\u0915\u094D\u0937\u093F\u0924(\u0938\u0947\u0935) -saving_minmax_failed_error_code=\u0924\u094D\u0930\u0941\u091F\u093F \u0915\u0942\u091F(\u0915\u094B\u0921) \u0935\u093F\u092B\u0932\u0924\u093E \u0915\u0947 \u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E/\u092E\u0939\u0924\u094D\u0924\u092E \u092E\u093E\u0928 \u0915\u0947 \u0938\u093E\u0925 \u0938\u0941\u0930\u0915\u094D\u0937\u093F\u0924(\u0938\u0947\u0935) -left_description=\u0935\u093F\u0935\u0930\u0923 \u092C\u093E\u0915\u0940 \u0939\u0948 -comment=\u091F\u093F\u092A\u094D\u092A\u0923\u0940 -dataelement_history=\u0921\u0947\u091F\u093E \u090F\u0932\u0940\u092E\u0947\u0928\u094D\u091F \u0907\u0924\u093F\u0939\u093E\u0938 -minimum_must_less_than_maximum=\u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E \u092E\u093E\u0928 \u092E\u0939\u0924\u094D\u0924\u092E \u092E\u093E\u0928 \u0938\u0947 \u0915\u092E \u0939\u094B\u0928\u093E \u091A\u093E\u0939\u093F\u090F -unsuccessful_validation=\u092E\u093E\u0928 \u092E\u093E\u0928\u094D\u092F\u0915\u0930\u0923 \u0938\u0947 \u0928\u093F\u0915\u0932\u0928\u0947 \u092E\u0947\u0902 \u0905\u0938\u092B\u0932 \u0939\u0948\u0902. \u0928\u093F\u092E\u094D\u0928 \u090F\u0930\u0930 \u092A\u094D\u0930\u0915\u091F \u0939\u0948\\\: -specify_minimum_value=\u0915\u0943\u092A\u092F\u093E \u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E \u092E\u093E\u0928 \u0926\u0940\u091C\u093F\u090F -code=\u0915\u0942\u091F/\u0915\u094B\u0921 -value=\u092E\u093E\u0928 -specify_maximum_value=\u0915\u0943\u092A\u092F\u093E \u092E\u0939\u0924\u094D\u0924\u092E \u092E\u093E\u0928 \u0926\u0940\u091C\u093F\u090F -operator=\u0938\u0902\u0915\u093E\u0930\u0915 -min_max_values=\u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E/\u092E\u0939\u0924\u094D\u0924\u092E \u092E\u093E\u0928 -data_element=\u0921\u0947\u091F\u093E \u090F\u0932\u093F\u092E\u0947\u0902\u091F -data_element_order=\u0921\u0947\u091F\u093E \u090F\u0932\u0940\u092E\u0947\u0928\u094D\u091F \u0915\u093E \u0915\u094D\u0930\u092E -up=\u090A\u092A\u0930 \u0915\u0940 \u0913\u0930 \u0915\u093E -minimum_value_must_integer=\u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E \u092E\u093E\u0928 \u092A\u0942\u0930\u094D\u0923\u093E\u0902\u0915 \u0939\u094B\u0928\u093E \u091A\u093E\u0939\u093F\u090F -yes_no=\u0939\u093E\u0902/\u0928\u0939\u0940\u0902 -close=\u092C\u0902\u0926 -generate_values=\u092E\u093E\u0928 \u0909\u0924\u094D\u092A\u0928\u094D\u0928 \u0915\u0930\u0928\u093E -type=\u092A\u094D\u0930\u0915\u093E\u0930 -nr=\u090F\u0928 \u0906\u0930 -no=\u0928\u0939\u0940\u0902 -edit_min_max_for=\u0907\u0928\u0915\u0947 \u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E/\u092E\u0939\u0924\u094D\u0924\u092E \u092C\u0926\u0932\u093F\u092F\u0947 -min_limit=\u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E \u0938\u0940\u092E\u093E -custom_comment=\u0935\u094D\u092F\u0935\u0939\u093E\u0930\u093F\u0915 \u091F\u093F\u092A\u094D\u092A\u094D\u0923\u0940 -period=\u0905\u0935\u0927\u093F -order_by_code=\u0915\u0942\u091F/\u0915\u094B\u0921 \u0915\u0947 \u0905\u0928\u0941\u0938\u093E\u0930 \u0915\u094D\u0930\u092E -name=\u0928\u093E\u092E -D=scm2dhiscode\trunkdhis-2dhis-webdhis-web-dataentrysrcmain\resourcesorghispdhisde -generate_missing_values=\u092C\u0928\u093E\u0908\u090F \u0932\u093E\u092A\u0924\u093E/\u0905\u0928\u0941\u092A\u0938\u094D\u0925\u093F\u0924 \u092E\u093E\u0928 -timestamp=\u0938\u092E\u092F \u092E\u094B\u0939\u0930 -change=\u092C\u0926\u0932\u0928\u093E -move=\u0939\u091F\u093E\u0928\u093E -right_description=\u0926\u093E\u0939\u093F\u094D\u0928\u0947 \u092A\u0915\u094D\u0937 \u0915\u093E \u0935\u093F\u0935\u0930\u0923 -move_up=\u092E\u0942\u0935 \u0905\u092A -reset_order_inherit=\u0915\u094D\u0930\u092E \u092B\u093F\u0930 \u0938\u0947 \u091C\u094B\u095C\u0928\u093E / \u092E\u0942\u0932 \u0938\u0947 \u0935\u094D\u092F\u0941\u0924\u094D\u092A\u0928\u094D\u0928 -no_value=\u0915\u094B\u0908 \u092E\u093E\u0928 \u0928\u0939\u0940 \u0939\u0948 -expression=\u0922\u0902\u0917/\u0935\u094D\u092F\u0902\u091C\u0915 -not_set=\u0928\u093F\u092F\u0924 \u0928\u0939\u0940\u0902 \u0939\u0948 -average=\u0914\u0938\u0924 -validation_rule=\u092E\u093E\u0928\u094D\u092F\u0915\u0930\u0923 \u0915\u0947 \u0928\u093F\u092F\u092E -text=\u091F\u0947\u0915\u094D\u0938\u091F(\u0935\u093F\u0937\u092F) -edit_min_max=\u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E/\u092E\u0939\u0924\u094D\u0924\u092E \u092C\u0926\u0932\u093F\u092F\u0947 -maximum_value_must_integer=\u092E\u0939\u0924\u094D\u0924\u092E \u092E\u093E\u0928 \u092A\u0942\u0930\u094D\u0923\u093E\u0902\u0915 \u0939\u094B\u0928\u093E \u091A\u093E\u0939\u093F\u090F -no_comment=\u0915\u094B\u0908 \u091F\u093F\u092A\u094D\u092A\u0923\u0940 \u0928\u0939\u0940\u0902 -maximum=\u0905\u0927\u093F\u0915\u0924\u092E -value_must_integer=\u092E\u093E\u0928 \u090F\u0915 \u0907\u0928\u091F\u0940\u091C\u0930 \u0939\u094B\u0928\u093E \u091A\u093E\u0939\u093F\u090F -order_by_name=\u0928\u093E\u092E \u0915\u0947 \u0905\u0928\u0941\u0938\u093E\u0930 \u0915\u094D\u0930\u092E -select=\u091A\u0941\u0928\u094B -number=\u0938\u0902\u0916\u094D\u092F\u093E -move_down=\u092E\u0942\u0935 \u0921\u093E\u0909\u0928 -min=\u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E -minimum=\u0928\u093F\u092E\u094D\u0928\u0924\u094D\u0924\u092E -cancel=\u0930\u0926\u094D\u0926 \u0915\u0930\u0928\u093E -organization_unit=&\#2360;&\#2381;&\#2357;&\#2366;&\#2360;&\#2381;&\#2341;&\#2381;&\#2351; &\#2325;&\#2375;&\#2306;&\#2342;&\#2381;&\#2352; === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_kn_IN.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_kn_IN.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_kn_IN.properties 1970-01-01 00:00:00 +0000 @@ -1,88 +0,0 @@ -validate=\u0CAA\u0CB0\u0CC0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CC1 -saving_comment_failed_status_code=\u0C85\u0CAD\u0CBF\u0CAA\u0CCD\u0CB0\u0CBE\u0CAF\u0CB5\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CB2\u0CBE\u0C97\u0CB2\u0CBF\u0CB2\u0CCD\u0CB2. \u0CB8\u0CCD\u0C9F\u0CC7\u0C9F\u0CB8\u0CCD \u0CB8\u0C82\u0C96\u0CC7\u0CA4 \u0C95\u0CCA\u0C9F\u0CCD\u0C9F\u0CBF\u0CA6\u0CC6. -use_short_names=\u0C9A\u0CBF\u0C95\u0CCD\u0C95 \u0CB9\u0CC6\u0CB8\u0CB0\u0CC1\u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0C86\u0CB0\u0CBF\u0CB8\u0CBF\u0C95\u0CCA\u0CB3\u0CCD\u0CB3\u0CBF -saving_value_failed_error_code=\u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0CB5\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CB2\u0CBE\u0C97\u0CB2\u0CBF\u0CB2\u0CCD\u0CB2 \u0CA6\u0CCB\u0CB7 \u0CB8\u0C82\u0C96\u0CC7\u0CA4 \u0C95\u0CCA\u0C9F\u0CCD\u0C9F\u0CBF\u0CA6\u0CC6. -entry=\u0C8E\u0C82\u0C9F\u0CCD\u0CB0\u0CBF -data_set=\u0CA1\u0CBE\u0C9F\u0CBE \u0CB8\u0CC6\u0C9F\u0CCD -successful_validation=\u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0C97\u0CB3 \u0CAE\u0CBE\u0CA8\u0CCD\u0CAF\u0CA4\u0CC6 \u0CAF\u0CB6\u0CB8\u0CCD\u0CB5\u0CBF\u0CAF\u0CBE\u0CAF\u0CBF\u0CA4\u0CC1 -stored_by=\u0CB0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CB2\u0CBE\u0CA6 \u0CB5\u0CBF\u0CA7\u0CBE\u0CA8 -order_by_entry=\u0CB0\u0CC6\u0C9C\u0CBF\u0CB8\u0CCD\u0C9F\u0CCD\u0CB0\u0CC7\u0CB7\u0CA8\u0CCD \u0CB5\u0CBF\u0CA7\u0CBE\u0CA8 (\u0CAA\u0CC2\u0CB0\u0CCD\u0CB5\u0CA8\u0CBF\u0CAF\u0CCB\u0C9C\u0CBF\u0CA4) -saving_value_failed_status_code=\u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0CB5\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CB2\u0CBE\u0C97\u0CB2\u0CBF\u0CB2\u0CCD\u0CB2 \u0CB8\u0CCD\u0C9F\u0CC7\u0C9F\u0CB8\u0CCD \u0CB8\u0C82\u0C96\u0CC7\u0CA4 \u0C95\u0CCA\u0C9F\u0CCD\u0C9F\u0CBF\u0CA6\u0CC6 -max_limit=\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CAE\u0C9F\u0CCD\u0C9F -delete_min_max_values=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F/\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB0\u0CA6\u0CCD\u0CA6\u0CC1\u0CAA\u0CA1\u0CBF\u0CB8\u0CBF -saving_comment_failed_error_code=\u0C85\u0CAD\u0CBF\u0CAA\u0CCD\u0CB0\u0CBE\u0CAF\u0CB5\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CB2\u0CBE\u0C97\u0CB2\u0CBF\u0CB2\u0CCD\u0CB2\u0CA6\u0CCB\u0CB7 \u0CB8\u0C82\u0C96\u0CC7\u0CA4 \u0C95\u0CCA\u0C9F\u0CCD\u0C9F\u0CBF\u0CA6\u0CC6 -organisation_unit=\u0C98\u0C9F\u0C95 -value_of_data_element_greater=\u0C88 \u0C95\u0CC6\u0CB3\u0C95\u0C82\u0CA1 \u0CA6\u0CA4\u0CCD\u0CA4\u0CBE\u0C82\u0CB6\u0CAF\u0CA6 \u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1 \u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6\u0C97\u0CBF\u0C82\u0CA4 \u0CB9\u0CC6\u0C9A\u0CCD\u0C9A\u0CC1 \u0C87\u0CA6\u0CC6 -yes=\u0CB8\u0CB0\u0CBF -max=\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F -validation_result=\u0CAE\u0CBE\u0CA8\u0CCD\u0CAF\u0CA4\u0CC6\u0CAF \u0CAB\u0CB2\u0CBF\u0CA4\u0CBE\u0C82\u0CB6 -down=\u0C95\u0CC6\u0CB3\u0C97\u0CC6 -value_of_data_element_less=\u0C88 \u0C95\u0CC6\u0CB3\u0C95\u0C82\u0CA1 \u0CA6\u0CA4\u0CCD\u0CA4\u0CBE\u0C82\u0CB6\u0CAF\u0CA6 \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6 \u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6\u0C97\u0CBF\u0C82\u0CA4 \u0C95\u0CA1\u0CBF\u0CAE\u0CC6 \u0C87\u0CA6\u0CC6 -save=\u0CB0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CC1 -saving_minmax_failed_error_code=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F/\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6\u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB0\u0C95\u0CCD\u0CB7\u0CBF\u0CB8\u0CB2\u0CBE\u0C97\u0CB2\u0CBF\u0CB2\u0CCD\u0CB2 \u0CA6\u0CCB\u0CB7 \u0CB8\u0C82\u0C96\u0CC7\u0CA4 \u0C95\u0CCA\u0C9F\u0CCD\u0C9F\u0CBF\u0CA6\u0CC6 -comment=\u0C85\u0CAD\u0CBF\u0CAA\u0CCD\u0CB0\u0CBE\u0CAF -dataelement_history=\u0CA6\u0CA4\u0CCD\u0CA4\u0CBE\u0C82\u0CB6\u0CAF\u0CA6 \u0CA6\u0CBE\u0C96\u0CB2\u0CC6 -minimum_must_less_than_maximum=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6 \u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6\u0C97\u0CBF\u0C82\u0CA4 \u0C95\u0CA1\u0CBF\u0CAE\u0CC6 \u0C87\u0CB0\u0CAC\u0CC7\u0C95\u0CC1 -unsuccessful_validation=\u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0CAE\u0CBE\u0CA8\u0CCD\u0CAF\u0C97\u0CCA\u0CB3\u0CBF\u0CB8\u0CB2\u0CBE\u0C97\u0CB2\u0CBF\u0CB2\u0CCD\u0CB2. \u0C88 \u0C95\u0CC6\u0CB3\u0C95\u0C82\u0CA1 \u0CA6\u0CCB\u0CB7 \u0C95\u0C82\u0CA1\u0CBF\u0CA6\u0CC6\: -specify_minimum_value=\u0CA6\u0CAF\u0CB5\u0CBF\u0C9F\u0CCD\u0C9F\u0CC1 \u0C92\u0C82\u0CA6\u0CC1 \u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6\u0CAF\u0CA8\u0CCD\u0CA8\u0CC1 \u0CA8\u0CAE\u0CC2\u0CA6\u0CBF\u0CB8\u0CBF -code=\u0CB8\u0C82\u0C95\u0CC7\u0CA4 -value=\u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1 -specify_maximum_value=\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0CB5\u0CA8\u0CCD\u0CA8\u0CC1 \u0CA8\u0CAE\u0CC2\u0CA6\u0CBF\u0CB8\u0CBF -operator=\u0C86\u0CAA\u0CB0\u0CC7\u0C9F\u0CB0\u0CCD -min_max_values=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F/\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0C97\u0CB3\u0CC1 -data_element=\u0CA6\u0CA4\u0CCD\u0CA4\u0CBE\u0C82\u0CB6\u0CAF -data_element_order=\u0CA6\u0CA4\u0CCD\u0CA4\u0CBE\u0C82\u0CB6\u0CAF\u0CA6 \u0C95\u0CCD\u0CB0\u0CAE -up=\u0CAE\u0CC7\u0CB2\u0CC6 -minimum_value_must_integer=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6 \u0CB8\u0CB0\u0CBF\u0CAF\u0CBE\u0C97\u0CBF\u0CA6\u0CC6\u0CAF\u0C82\u0CA6\u0CC1 \u0C96\u0C9A\u0CBF\u0CA4\u0CAA\u0CA1\u0CBF\u0CB8\u0CBF -yes_no=\u0CB8\u0CB0\u0CBF/\u0CA4\u0CAA\u0CCD\u0CAA\u0CC1 -close=\u0CAE\u0CC1\u0C95\u0CCD\u0CA4\u0CBE\u0C82ii -generate_values=\u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB0\u0C9A\u0CBF\u0CB8\u0CBF -type=\u0CAE\u0CBE\u0CA6\u0CB0\u0CBF -nr=\u0CA8\u0C82\u0CAC\u0CB0\u0CCD -no=\u0C87\u0CB2\u0CCD\u0CB2 -edit_min_max_for=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F/\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CB8\u0CB0\u0CBF\u0CAA\u0CA1\u0CBF\u0CB8\u0CBF -min_limit=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F \u0C85\u0CB5\u0CA6\u0CBF -custom_comment=\u0C95\u0CB8\u0CCD\u0C9F\u0CAE\u0CCD \u0C85\u0CAD\u0CBF\u0CAA\u0CCD\u0CB0\u0CBE\u0CAF -period=\u0C95\u0CBE\u0CB2\u0CBE\u0CB5\u0CA6\u0CBF -earlier_periods =\u0CAE\u0CC1\u0C82\u0C9A\u0CBF\u0CA8 \u0C95\u0CBE\u0CB2\u0CBE\u0CB5\u0CA6\u0CBF -later_periods =\u0CA8\u0C82\u0CA4\u0CB0\u0CA6 \u0C95\u0CBE\u0CB2\u0CBE\u0CB5\u0CA6\u0CBF -order_by_code=\u0CB8\u0C82\u0C96\u0CC7\u0CA4 \u0CAE\u0CBE\u0CA6\u0CB0\u0CBF \u0CAA\u0CCD\u0CB0\u0C95\u0CBE\u0CB0 -name=\u0CB9\u0CC6\u0CB8\u0CB0\u0CC1 -generate_missing_values=\u0C95\u0CB3\u0CC6\u0CA6\u0CC1 \u0CB9\u0CCB\u0C97\u0CBF\u0CB0\u0CC1\u0CB5 \u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1\u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB0\u0C9A\u0CBF\u0CB8\u0CBF -timestamp=\u0C9F\u0CC8\u0CAE\u0CCD \u0CB8\u0CCD\u0C9F\u0CBE\u0C82\u0CAA\u0CCD -change=\u0CAA\u0CB0\u0CBF\u0CB5\u0CB0\u0CCD\u0CA4\u0CBF\u0CB8\u0CBF -move=\u0C9C\u0CB0\u0CC1\u0C97\u0CBF\u0CB8\u0CBF -move_up=\u0CAE\u0CC7\u0CB2\u0CC6 \u0C9C\u0CB0\u0CC1\u0C97\u0CBF\u0CB8\u0CBF -reset_order_inherit=\u0C85\u0CA8\u0CC1\u0C95\u0CCD\u0CB0\u0CAE\u0CB5\u0CA8\u0CCD\u0CA8\u0CC1 \u0CAA\u0CC1\u0CA8\u0C83 \u0C9C\u0CCB\u0CA1\u0CBF\u0CB8\u0CBF/\u0CAA\u0CC2\u0CB0\u0CCD\u0CB5\u0C9C\u0CA8\u0CBF\u0C82\u0CA6 \u0CAA\u0CA1\u0CC6\u0CAF\u0CBF\u0CB0\u0CBF -no_value=\u0CB5\u0CCD\u0CAF\u0CBE\u0CB2\u0CCD\u0CAF\u0CC1 \u0C87\u0CB2\u0CCD\u0CB2 -expression=\u0CA8\u0CBF\u0CB0\u0CC2\u0CAA\u0CA3\u0CC6 -not_set=\u0C9C\u0CCB\u0CA1\u0CBF\u0CB8\u0CB2\u0CBE\u0C97\u0CB2\u0CBF\u0CB2\u0CCD\u0CB2 -average=\u0CB8\u0CB0\u0CBE\u0CB8\u0CB0\u0CBF -validation_rule=\u0CAE\u0CBE\u0CA8\u0CCD\u0CAF\u0C97\u0CCA\u0CB3\u0CBF\u0CB8\u0CC1\u0CB5 \u0CB8\u0CC2\u0CA4\u0CCD\u0CB0 -text=\u0C97\u0CCD\u0CB0\u0C82\u0CA5 -edit_min_max=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F/\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0CB8\u0CB0\u0CBF\u0CAA\u0CA1\u0CBF\u0CB8\u0CBF -maximum_value_must_integer=\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F \u0CAE\u0CCA\u0CA4\u0CCD\u0CA4 S \u0CA1\u0CCD\u0CA1\u0CBE\u0CAF\u0CB5\u0CBE\u0C97\u0CBF \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6\u0CAF\u0CBE\u0C97\u0CBF\u0CB0\u0CAC\u0CC7\u0C95\u0CC1 -no_comment=\u0C85\u0CAD\u0CBF\u0CAA\u0CCD\u0CB0\u0CBE\u0CAF\u0CB5\u0CBF\u0CB2\u0CCD\u0CB2 -maximum=\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F -value_must_integer=\u0CAE\u0CCA\u0CA4\u0CCD\u0CA4 S \u0CA1\u0CCD\u0CA1\u0CBE\u0CAF\u0CB5\u0CBE\u0C97\u0CBF \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6\u0CAF\u0CBE\u0C97\u0CBF\u0CB0\u0CAC\u0CC7\u0C95\u0CC1 -order_by_name=\u0CB9\u0CC6\u0CB8\u0CB0\u0CBF\u0CA8 \u0CAA\u0CCD\u0CB0\u0C95\u0CBE\u0CB0 \u0CAE\u0CBE\u0CA6\u0CB0\u0CBF -select=\u0C86\u0CB0\u0CBF\u0CB8\u0CBF\u0C95\u0CCA\u0CB3\u0CCD\u0CB3\u0CBF -number=\u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6 -move_down=\u0C95\u0CC6\u0CB3\u0C97\u0CC6 \u0C9C\u0CB0\u0CC1\u0C97\u0CBF\u0CB8\u0CBF -min=\u0C95\u0CA8\u0CBF\u0CB7\u0CCD\u0C9F -minimum=\u0C97\u0CB0\u0CBF\u0CB7\u0CCD\u0C9F -cancel=\u0CB0\u0CA6\u0CCD\u0CA6\u0CC1 \u0CAE\u0CBE\u0CA1\u0CBF -no_organisationunit_selected=\u0CAF\u0CBE\u0CB5\u0CC1\u0CA6\u0CC7 \u0C98\u0C9F\u0C95\u0C97\u0CB3\u0CA8\u0CCD\u0CA8\u0CC1 \u0C86\u0CB0\u0CBF\u0CB8\u0CBF\u0C95\u0CCA\u0CA1\u0CBF\u0CB2\u0CCD\u0CB2 -no_period_selected=\u0CAF\u0CBE\u0CB5\u0CC1\u0CA6\u0CC7 \u0C95\u0CBE\u0CB2\u0CBE\u0CB5\u0CA6\u0CBF \u0C86\u0CB0\u0CBF\u0CB8\u0CBF\u0C95\u0CCA\u0C82\u0CA1\u0CBF -no_dataelement_selected=\u0CAF\u0CBE\u0CB5\u0CC1\u0CA6\u0CC7 \u0CA6\u0CA4\u0CCD\u0CA4\u0CBE\u0C82\u0CB6\u0CB5\u0CA8\u0CCD\u0CA8\u0CC1 \u0C86\u0CB0\u0CBF\u0CB8\u0CBF\u0C95\u0CCA\u0C82\u0CA1\u0CBF -use_default_form = Use Default Form -complete = Complete -undo = Undo -confirm_complete = Are you sure this dataset is complete? -confirm_undo = Are you sure you will undo the registration? -equal_to = == -not_equal_to = != -greater_than = > -greater_than_or_equal_to = >= -less_than = < -less_than_or_equal_to = <= \ No newline at end of file === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_ml_IN.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_ml_IN.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_ml_IN.properties 1970-01-01 00:00:00 +0000 @@ -1,72 +0,0 @@ -#Resource generated by I18n Resource Editor -#Thu Mar 29 20:35:10 IST 2007 -successful_validation= -unsuccessful_validation= -change=\u0D2E\u0D3E\u0D31\u0D4D\u0D31\u0D41\u0D15 -specify_minimum_value=\u0D12\u0D30\u0D41 \u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E \u0D38\u0D02\u0D16\u0D4D\u0D2F \u0D38\u0D42\u0D1A\u0D3F\u0D2A\u0D4D\u0D2A\u0D3F\u0D15\u0D4D\u0D15\u0D41\u0D15 -value_of_data_element_greater=\u0D08 \u0D21\u0D47\u0D31\u0D4D\u0D31\u0D3E \u0D0E\u0D32\u0D3F\u0D2E\u0D46\u0D28\u0D4D\u200D\u0D31\u0D4D\u0D31\u0D3F\u0D28\u0D4D\u0D31\u0D46 \u0D35\u0D3F\u0D32 \u0D05\u0D02\u0D17\u0D40\u0D15\u0D30\u0D3F\u0D1A\u0D4D\u0D1A\u0D3F\u0D1F\u0D4D\u0D1F\u0D41\u0D33\u0D4D\u0D33 \u0D15\u0D42\u0D1F\u0D3F\u0D2F \u0D35\u0D3F\u0D32\u0D2F\u0D46\u0D15\u0D3E\u0D33\u0D41\u0D02 \u0D15\u0D42\u0D1F\u0D41\u0D24\u0D32\u0D3E\u0D23\u0D4D -code=\u0D15\u0D4B\u0D21\u0D4D -specify_maximum_value=\u0D12\u0D30\u0D41 \u0D15\u0D42\u0D1F\u0D3F\u0D2F \u0D38\u0D02\u0D16\u0D4D\u0D2F \u0D38\u0D42\u0D1A\u0D3F\u0D2A\u0D4D\u0D2A\u0D3F\u0D15\u0D4D\u0D15\u0D41\u0D15 -cancel=\u0D1A\u0D46\u0D2F\u0D4D\u0D2F\u0D23\u0D4D\u0D1F -reset_order_inherit=\u0D2A\u0D47\u0D30\u0D46\u0D28\u0D4D\u200D\u0D31\u0D4D\u0D31\u0D3F\u0D32\u0D4D\u200D \u0D28\u0D3F\u0D28\u0D4D\u0D28\u0D41\u0D02 \u0D38\u0D4D\u0D35\u0D40\u0D15\u0D30\u0D3F\u0D15\u0D4D\u0D15\u0D41\u0D15\u0D2F\u0D4B \u0D13\u0D30\u0D4D\u200D\u0D21\u0D30\u0D4D\u200D \u0D31\u0D40\u0D38\u0D46\u0D31\u0D4D\u0D31\u0D4D \u0D1A\u0D46\u0D2F\u0D4D\u0D2F\u0D41\u0D15\u0D2F\u0D4B \u0D1A\u0D46\u0D2F\u0D4D\u0D2F\u0D41\u0D15 -down=\u0D24\u0D3E\u0D34\u0D4B\u0D1F\u0D4D\u0D1F\u0D4D -no_comment=\u0D12\u0D30\u0D41 \u0D15\u0D3E\u0D30\u0D23\u0D35\u0D41\u0D2E\u0D3F\u0D32\u0D4D\u0D32 -saving_value_failed_status_code=\u0D38\u0D4D\u0D31\u0D4D\u0D31\u0D3E\u0D31\u0D4D\u0D31\u0D38\u0D4D \u0D15\u0D4B\u0D21\u0D41\u0D02 \u0D35\u0D3F\u0D32\u0D2F\u0D41\u0D02 \u0D38\u0D47\u0D35\u0D3E\u0D2F\u0D3F\u0D32\u0D4D\u0D32 -timestamp=\u0D38\u0D2E\u0D2F\u0D15\u0D4D\u0D32\u0D3F\u0D2A\u0D4D\u0D24\u0D02 -saving_minmax_failed_error_code=\u0D0E\u0D31\u0D31\u0D30\u0D4D\u200D \u0D15\u0D4B\u0D21\u0D4D \u0D2E\u0D41\u0D16\u0D47\u0D28 \u0D15\u0D42\u0D1F\u0D3F\u0D2F/\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E \u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D38\u0D47\u0D35\u0D3E\u0D2F\u0D3F\u0D32\u0D4D\u0D32 -edit_min_max_for=\u0D15\u0D42\u0D1F\u0D3F\u0D2F/\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E \u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D2E\u0D3E\u0D31\u0D4D\u0D31\u0D41\u0D15 -name=\u0D2A\u0D47\u0D30\u0D4D -not_set=\u0D36\u0D30\u0D3F\u0D2F\u0D3E\u0D2F\u0D3F\u0D32\u0D4D\u0D32 -move=\u0D28\u0D40\u0D15\u0D4D\u0D15\u0D41\u0D15 -stored_by=\u0D36\u0D47\u0D16\u0D30\u0D3F\u0D1A\u0D4D\u0D1A\u0D24\u0D4D -organisation_unit=\u0D13\u0D30\u0D4D\u200D\u0D17\u0D28\u0D48\u0D38\u0D47\u0D37\u0D28\u0D4D\u200D \u0D2F\u0D42\u0D23\u0D3F\u0D31\u0D4D\u0D31\u0D4D -data_element=\u0D21\u0D47\u0D31\u0D4D\u0D31\u0D3E \u0D0E\u0D32\u0D3F\u0D2E\u0D46\u0D28\u0D4D\u200D\u0D31\u0D4D\u0D31\u0D4D -move_up=\u0D2E\u0D41\u0D15\u0D33\u0D3F\u0D32\u0D4B\u0D1F\u0D4D\u0D1F\u0D4D \u0D2E\u0D3E\u0D31\u0D4D\u0D31\u0D41\u0D15 -minimum_value_must_integer=\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E \u0D35\u0D3F\u0D32 \u0D24\u0D40\u0D30\u0D4D\u200D\u0D1A\u0D4D\u0D1A\u0D2F\u0D3E\u0D2F\u0D3F\u0D1F\u0D4D\u0D1F\u0D41\u0D02 \u0D05\u0D15\u0D4D\u0D15\u0D2E\u0D3E\u0D2F\u0D3F\u0D30\u0D3F\u0D15\u0D4D\u0D15\u0D23\u0D02 -delete_min_max_values=\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E/\u0D15\u0D42\u0D1F\u0D3F\u0D2F \u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D21\u0D3F\u0D32\u0D40\u0D31\u0D4D\u0D31\u0D4D \u0D1A\u0D46\u0D2F\u0D4D\u0D2F\u0D41\u0D15 -validate= -average=\u0D36\u0D30\u0D3E\u0D36\u0D30\u0D3F -right_description= -save=\u0D38\u0D47\u0D35\u0D4D -min_limit=\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E \u0D2A\u0D30\u0D3F\u0D27\u0D3F -min_max_values=\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E/\u0D15\u0D42\u0D1F\u0D3F\u0D2F \u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D -custom_comment=\u0D15\u0D3E\u0D30\u0D23\u0D02 \u0D30\u0D47\u0D16\u0D2A\u0D4D\u0D2A\u0D46\u0D1F\u0D41\u0D24\u0D4D\u0D24\u0D41\u0D15 -saving_comment_failed_error_code=\u0D0E\u0D31\u0D31\u0D30\u0D4D\u200D \u0D15\u0D4B\u0D21\u0D4D \u0D2E\u0D41\u0D16\u0D47\u0D28 \u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D38\u0D47\u0D35\u0D3E\u0D2F\u0D3F\u0D32\u0D4D\u0D32 -saving_comment_failed_status_code=\u0D38\u0D4D\u0D31\u0D4D\u0D31\u0D3E\u0D31\u0D4D\u0D31\u0D38\u0D4D \u0D15\u0D4B\u0D21\u0D4D \u0D2E\u0D41\u0D16\u0D47\u0D28 \u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D38\u0D47\u0D35\u0D3E\u0D2F\u0D3F\u0D32\u0D4D\u0D32 -max=\u0D15\u0D42\u0D1F\u0D3F\u0D2F\u0D24\u0D4D -expression= -minimum_must_less_than_maximum=\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E\u0D35\u0D3F\u0D32 \u0D15\u0D42\u0D1F\u0D3F\u0D2F \u0D35\u0D3F\u0D32\u0D2F\u0D46\u0D15\u0D4D\u0D15\u0D3E\u0D33\u0D42\u0D02 \u0D1A\u0D46\u0D31\u0D41\u0D24\u0D3E\u0D2F\u0D41\u0D30\u0D3F\u0D15\u0D4D\u0D15\u0D23\u0D02 -minimum=\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E\u0D24\u0D4D -period=\u0D15\u0D3E\u0D32\u0D3E\u0D35\u0D27\u0D3F -text=\u0D35\u0D3E\u0D15\u0D4D\u0D15\u0D41\u0D15\u0D33\u0D4D\u200D -saving_value_failed_error_code=\u0D0E\u0D31\u0D31\u0D30\u0D4D\u200D \u0D15\u0D4B\u0D21\u0D4D \u0D2E\u0D41\u0D16\u0D47\u0D28 \u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D38\u0D47\u0D35\u0D3E\u0D2F\u0D3F\u0D32\u0D4D\u0D32 -edit_min_max=\u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E/\u0D15\u0D42\u0D1F\u0D3F\u0D2F \u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D2E\u0D3E\u0D31\u0D4D\u0D31\u0D41\u0D15 -entry=\u0D2A\u0D4D\u0D30\u0D35\u0D47\u0D36\u0D28\u0D02 -order_by_entry=\u0D30\u0D46\u0D1C\u0D3F\u0D38\u0D4D\u0D31\u0D4D\u0D31\u0D47\u0D37\u0D28\u0D4D\u200D \u0D05\u0D28\u0D41\u0D38\u0D30\u0D3F\u0D1A\u0D4D\u0D1A\u0D4D \u0D15\u0D4D\u0D30\u0D2E\u0D24\u0D4D\u0D24\u0D3F\u0D32\u0D3E\u0D15\u0D4D\u0D15\u0D41\u0D15 -up=\u0D2E\u0D41\u0D15\u0D33\u0D3F\u0D32\u0D4B\u0D1F\u0D4D\u0D1F\u0D4D -comment=\u0D15\u0D3E\u0D30\u0D23\u0D02 -maximum=\u0D15\u0D42\u0D1F\u0D3F\u0D2F\u0D24\u0D4D -generate_values=\u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D09\u0D23\u0D4D\u0D1F\u0D3E\u0D15\u0D4D\u0D15\u0D41\u0D15 -order_by_code=\u0D15\u0D4B\u0D21\u0D28\u0D41\u0D38\u0D30\u0D3F\u0D1A\u0D4D\u0D1A\u0D4D \u0D15\u0D4D\u0D30\u0D2E\u0D24\u0D4D\u0D24\u0D3F\u0D32\u0D3E\u0D15\u0D4D\u0D15\u0D41\u0D15 -use_short_names=\u0D1A\u0D41\u0D30\u0D41\u0D15\u0D4D\u0D15\u0D2A\u0D4D\u0D2A\u0D47\u0D30\u0D4D \u0D09\u0D2A\u0D2F\u0D4B\u0D17\u0D3F\u0D15\u0D4D\u0D15\u0D41\u0D15 -no_value=\u0D35\u0D3F\u0D32\u0D2F\u0D3F\u0D32\u0D4D\u0D32 -data_element_order=\u0D21\u0D47\u0D31\u0D4D\u0D31\u0D3E \u0D0E\u0D32\u0D3F\u0D2E\u0D46\u0D28\u0D4D\u200D\u0D31\u0D4D\u0D31\u0D3F\u0D28\u0D4D\u0D31\u0D46 \u0D15\u0D4D\u0D30\u0D2E\u0D02 -value_of_data_element_less=\u0D08 \u0D21\u0D47\u0D31\u0D4D\u0D31\u0D3E\u0D0E\u0D32\u0D3F\u0D2E\u0D46\u0D28\u0D4D\u200D\u0D31\u0D4D\u0D31\u0D3F\u0D28\u0D4D\u0D31\u0D46 \u0D35\u0D3F\u0D32 \u0D05\u0D02\u0D17\u0D40\u0D15\u0D30\u0D3F\u0D1A\u0D4D\u0D1A\u0D3F\u0D1F\u0D4D\u0D1F\u0D41\u0D33\u0D4D\u0D33 \u0D15\u0D41\u0D31\u0D1E\u0D4D\u0D1E\u0D35\u0D3F\u0D32\u0D2F\u0D46\u0D15\u0D4D\u0D15\u0D3E\u0D33\u0D41\u0D02 \u0D1A\u0D46\u0D31\u0D41\u0D24\u0D3E\u0D23\u0D4D -generate_missing_values=\u0D35\u0D3F\u0D1F\u0D4D\u0D1F\u0D41\u0D2A\u0D4B\u0D2F\u0D35\u0D3F\u0D32\u0D15\u0D33\u0D4D\u200D \u0D30\u0D42\u0D2A\u0D2A\u0D4D\u0D2A\u0D46\u0D1F\u0D41\u0D24\u0D4D\u0D24\u0D41\u0D15 -move_down=\u0D24\u0D3E\u0D34\u0D4B\u0D1F\u0D4D\u0D1F\u0D4D -max_limit=\u0D15\u0D42\u0D1F\u0D3F\u0D2F \u0D2A\u0D30\u0D3F\u0D27\u0D3F -close=\u0D2E\u0D24\u0D3F\u0D2F\u0D15\u0D4D\u0D15\u0D41\u0D15 -yes=\u0D09\u0D23\u0D4D\u0D1F\u0D4D -select=\u0D24\u0D3F\u0D30\u0D1E\u0D4D\u0D1E\u0D46\u0D1F\u0D41\u0D15\u0D4D\u0D15\u0D41\u0D15 -operator=\u0D2A\u0D4D\u0D30\u0D35\u0D30\u0D4D\u200D\u0D24\u0D4D\u0D24\u0D28\u0D02 -order_by_name=\u0D2A\u0D47\u0D30\u0D28\u0D41\u0D38\u0D30\u0D3F\u0D1A\u0D4D\u0D1A\u0D4D \u0D15\u0D4D\u0D30\u0D2E\u0D24\u0D4D\u0D24\u0D3F\u0D32\u0D3E\u0D15\u0D4D\u0D15\u0D41\u0D15 -data_set=\u0D21\u0D47\u0D31\u0D4D\u0D31\u0D3E\u0D38\u0D46\u0D31\u0D4D\u0D31\u0D4D -nr=\u0D05\u0D02\u0D36\u0D02 -no=\u0D07\u0D32\u0D4D\u0D32 -yes_no=\u0D09\u0D23\u0D4D\u0D1F\u0D4D/\u0D07\u0D32\u0D4D\u0D32 -min=\u0D15\u0D41\u0D31\u0D35\u0D4D -value_must_integer=\u0D35\u0D3F\u0D32 \u0D24\u0D40\u0D30\u0D4D\u200D\u0D1A\u0D4D\u0D1A\u0D2F\u0D3E\u0D2F\u0D3F\u0D1F\u0D4D\u0D1F\u0D41\u0D02 \u0D05\u0D15\u0D4D\u0D15\u0D2E\u0D3E\u0D2F\u0D3F\u0D30\u0D3F\u0D15\u0D4D\u0D15\u0D23\u0D02 -number=\u0D05\u0D15\u0D4D\u0D15\u0D02 -type=\u0D30\u0D40\u0D24\u0D3F -maximum_value_must_integer=\u0D15\u0D42\u0D1F\u0D3F\u0D2F \u0D35\u0D3F\u0D32 \u0D24\u0D40\u0D30\u0D4D\u200D\u0D1A\u0D4D\u0D1A\u0D2F\u0D3E\u0D2F\u0D3F\u0D1F\u0D4D\u0D1F\u0D41\u0D02 \u0D05\u0D15\u0D4D\u0D15\u0D2E\u0D3E\u0D2F\u0D3F\u0D30\u0D3F\u0D15\u0D4D\u0D15\u0D23\u0D02 -dataelement_history=\u0D21\u0D47\u0D31\u0D4D\u0D31\u0D3E \u0D0E\u0D32\u0D3F\u0D2E\u0D46\u0D28\u0D4D\u200D\u0D31\u0D4D\u0D31\u0D3F\u0D28\u0D4D\u200D\u0D31\u0D4D\u0D31\u0D46 \u0D1A\u0D30\u0D3F\u0D24\u0D4D\u0D30\u0D02 === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_my_MM.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_my_MM.properties 2012-03-27 07:42:01 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_my_MM.properties 1970-01-01 00:00:00 +0000 @@ -1,91 +0,0 @@ -please_select=\u101b\u103d\u1031\u1038\u1001\u103b\u101a\u103a\u1015\u102b\u104b -open_entry_form=\u1015\u102f\u1036\u1005\u1036\u1016\u1031\u102c\u1004\u103a\u1010\u1005\u103a\u1001\u102f\u1016\u103d\u1004\u1037\u103a\u1015\u102b\u104b -hide_entry_form=\u1015\u102f\u1036\u1005\u1036\u1016\u1031\u102c\u1004\u103a \u1000\u102d\u102f \u101d\u103e\u1000\u103a\u1011\u102c\u1038\u1015\u102b\u104b -available_sections=\u101b\u101b\u103e\u102d\u1014\u102d\u102f\u1004\u103a\u101e\u1031\u102c\u1021\u1001\u1014\u103a\u1038\u1001\u103d\u1032\u1019\u103b\u102c\u1038 -value_type=\u1021\u1000\u103c\u1031\u102c\u1004\u103a\u1038\u1021\u101b\u102c \u1021\u1019\u103b\u102d\u102f\u1038\u1021\u1005\u102c\u1038 -value_date=\u1021\u1000\u103c\u1031\u102c\u1004\u103a\u1038\u1021\u101b\u102c \u1014\u1031\u1037\u1005\u103d\u1032 -dataelement_comment=\u1019\u103e\u1010\u103a\u1001\u103b\u1000\u103a -please_design_a_custom_form=\u1011\u102d\u102fdata \u1021\u1005\u102f \u1021\u1010\u103d\u1000\u103a \u1005\u102d\u1010\u103a\u1000\u103c\u102d\u102f\u1000\u103a\u1016\u1031\u102c\u1004\u103a\u1015\u102f\u1036\u1005\u1036\u1016\u1014\u103a\u1010\u102e\u1038\u1015\u102b\u104b -import_export=\u101e\u103d\u1004\u103a\u1038\u1001\u103c\u1004\u103a\u1038\u104a \u1011\u102f\u1010\u103a\u1001\u103c\u1004\u103a\u1038 -import_from_excel=Excel \u1019\u103e\u101e\u103d\u1004\u103a\u1038\u1015\u102b\u104b (\u1011\u102f\u1010\u103a\u1011\u102c\u1038\u101e\u1031\u102c Template) -export_entry_template=\u1016\u1014\u103a\u101e\u102c\u1038\u1015\u103c\u1004\u103a\u101b\u103e\u102d\u101b\u102d\u102f\u1000\u103a\u101e\u103d\u1004\u103a\u1038\u1011\u102c\u1038\u101e\u1031\u102c \u1015\u102f\u1036\u1005\u1036 \u1000\u102d\u102f Excel \u1021\u1014\u1031\u1016\u103c\u1004\u1037\u103a\u1011\u102f\u1010\u103a\u1015\u102b\u104b -history_not_valid=\u1011\u102d\u102f data \u1021\u1005\u102d\u1010\u103a\u1021\u1015\u102d\u102f\u1004\u103a\u1038\u1000\u102d\u102f history \u1019\u1019\u103e\u1010\u103a\u1011\u102c\u1038\u1015\u102b\u104b -use_section_form=\u1021\u1001\u1014\u103a\u1038\u1015\u102d\u102f\u1004\u103a\u1038\u1016\u1031\u102c\u1004\u103a\u1000\u102d\u102f\u101e\u102f\u1036\u1038\u1015\u102b\u104b -no_option_selected=\u1018\u102c\u1019\u103e\u1019\u101b\u103d\u1031\u1038\u1001\u103b\u101a\u103a\u1011\u102c\u1038\u1015\u102b\u104b -multidimensional_data_entry=\u1018\u1000\u103a\u1005\u102f\u1036\u1019\u103c\u1004\u103a\u1016\u103c\u1004\u1037\u103a \u1021\u1001\u103b\u1000\u103a\u1021\u101c\u1010\u103a\u1019\u103b\u102c\u1038 \u101b\u102d\u102f\u1000\u103a\u101e\u103d\u1004\u103a\u1038\u1001\u103c\u1004\u103a\u1038\u104b -data_entry_is_not_possible=Data \u1019\u103b\u102c\u1038\u101b\u102d\u102f\u1000\u103a\u101e\u103d\u1004\u103a\u1038\u104d\u1019\u101b\u1015\u102b! Dataset \u1019\u101b\u103e\u102d\u1010\u102c\u1016\u103c\u1005\u103a\u1014\u102d\u102f\u1004\u103a\u101e\u100a\u103a\u104b -data_element=Data \u1021\u1005\u102d\u1010\u103a\u1021\u1015\u102d\u102f\u1004\u103a\u1038 -min=\u1021\u1014\u100a\u103a\u1038\u1006\u102f\u1036\u1038 -change_order=\u1021\u1005\u102e\u1021\u1005\u1009\u103a\u1015\u103c\u1031\u102c\u1004\u103a\u1038\u1015\u102b\u104b -earlier_periods=\u101a\u1001\u1004\u103a\u1000 \u1021\u1001\u103b\u102d\u1014\u103a\u1019\u103b\u102c\u1038 -later_periods=\u101a\u1001\u102f\u1014\u1031\u102c\u1000\u103a\u1015\u102d\u102f\u1004\u103a\u1038\u1021\u1001\u103b\u102d\u1014\u103a\u1019\u103b\u102c\u1038 -date=\u101b\u1000\u103a\u1005\u103d\u1032 -generate_min_max=\u1021\u1014\u100a\u103a\u1038\u1006\u102f\u1036\u1038/\u1021\u1019\u103b\u102c\u1006\u102f\u1036\u1038\u1011\u102f\u1010\u103a\u1015\u1031\u1038\u1015\u102b\u104b -min_max_limits=\u1021\u1014\u100a\u103a\u1038\u1006\u102f\u1036\u1038-\u1021\u1019\u103b\u102c\u1038\u1006\u102f\u1036\u1038\u1000\u1014\u1037\u103a\u101e\u1010\u103a\u1001\u103b\u1000\u103a\u1019\u103b\u102c\u1038 -run_validation=\u1006\u1014\u103a\u1038\u1005\u1005\u103a\u1019\u103e\u102f\u1015\u103c\u102f\u101c\u102f\u1015\u103a\u1015\u102b\u104b -validation_result=\u1006\u1014\u103a\u1038\u1005\u1005\u103a\u1019\u103e\u102f\u101b\u101c\u1012\u103a -expression=\u1016\u1031\u102c\u103a\u1015\u103c\u1001\u103b\u1000\u103a -successful_validation=\u1011\u100a\u1037\u103a\u101e\u103d\u1004\u103a\u1038\u1011\u102c\u1038\u101e\u1031\u102c\u1021\u1001\u103b\u1000\u103a\u1021\u101c\u1010\u103a\u1019\u103b\u102c\u1038\u1006\u1014\u103a\u1038\u1005\u1005\u103a\u1019\u103e\u102f\u1021\u1031\u102c\u1004\u103a\u1019\u103c\u1004\u103a\u1005\u103d\u102c\u1015\u103c\u102e\u1038\u1006\u102f\u1036\u1038\u101e\u100a\u103a\u104b -unsuccessful_validation=\u1011\u100a\u1037\u103a\u101e\u103d\u1004\u103a\u1038\u1011\u102c\u1038\u101e\u1031\u102c\u1021\u1001\u103b\u1000\u103a\u1021\u101c\u1010\u103a\u1019\u103b\u102c\u1038 \u1019\u103e\u102c\u1038\u1014\u1031\u101e\u100a\u103a\u104b \u101b\u103e\u1031\u101e\u102d\u102f\u1037\u1019\u1006\u1000\u103a\u1001\u1004\u103a \u1015\u103c\u1014\u103a\u101c\u100a\u103a\u1015\u103c\u1004\u103a\u1006\u1004\u103a\u1015\u1031\u1038\u1015\u102b\u104b -the_following_values_violate_rules=\u1021\u1031\u102c\u1000\u103a\u1015\u102b\u101e\u103d\u1004\u103a\u1038\u1011\u102c\u1038\u101e\u1031\u102c\u1021\u1001\u103b\u1000\u103a\u1021\u101c\u1010\u103a\u1019\u103b\u102c\u1038 \u1000 \u1018\u1031\u102c\u1004\u103a\u1019\u101d\u1004\u103a\u1015\u102b\u104b -operator=\u1000\u102d\u102f\u1004\u103a\u1010\u103d\u101a\u103a\u101e\u1030 -right_description=\u100a\u102c \u1016\u1031\u102c\u103a\u1015\u103c\u1001\u103b\u1000\u103a -left_description=\u1018\u101a\u103a \u1016\u1031\u102c\u103a\u1015\u103c\u1001\u103b\u1000\u103a -no_organisationunit_selected=\u1021\u1016\u103d\u1032\u1037\u1021\u1005\u100a\u103a\u1038\u101a\u1030\u1014\u1005\u103a\u1010\u1005\u103a\u1001\u102f\u1019\u103e\u1019\u101b\u103d\u1031\u1038\u1011\u102c\u1038\u1015\u102b\u104b -no_period_selected=\u1021\u1001\u103b\u102d\u1014\u103a\u1000\u102c\u101c\u1019\u101e\u1010\u103a\u1019\u103e\u1010\u103a\u1011\u102c\u1038\u1015\u102b\u104b -no_dataelement_selected=Data \u1021\u1005\u102d\u1010\u103a\u1021\u1015\u102d\u102f\u1004\u103a\u1038\u1010\u1005\u103a\u1001\u102f\u1019\u103e\u1019\u101b\u103d\u1031\u1038\u1001\u103b\u101a\u103a\u1011\u102c\u1038\u1015\u102b\u104b -use_default_form=\u1015\u102f\u1036\u1019\u103e\u1014\u103a\u1016\u1031\u102c\u1004\u103a \u1000\u102d\u102f\u101e\u102f\u1036\u1038\u1015\u102b\u104b -use_custom_form=\u1005\u102d\u1010\u103a\u1000\u103c\u102d\u102f\u1000\u103a\u1016\u1031\u102c\u1004\u103a\u1000\u102d\u102f\u101e\u102f\u1036\u1038\u1015\u102b\u104b -complete=\u1015\u103c\u100a\u1037\u103a\u1005\u102f\u1036\u101e\u100a\u103a\u104b -incomplete=\u1019\u1015\u103c\u100a\u1037\u103a\u1005\u102f\u1036\u1015\u102b\u104b -confirm_complete=data \u1021\u1005\u102f \u1015\u103c\u100a\u1037\u103a\u1005\u102f\u1036\u1015\u103c\u102e\u1006\u102d\u102f\u1010\u102c \u101e\u1031\u1001\u103b\u102c\u1015\u102b\u101e\u101c\u102c\u1038? -confirm_undo=\u1005\u102c\u101b\u1004\u103a\u1038\u1019\u101e\u103d\u1004\u103a\u1038\u1001\u103b\u1004\u103a\u1010\u1031\u102c\u1037 \u1010\u102c\u101e\u1031\u1001\u103b\u102c\u1015\u102b\u101e\u101c\u102c\u1038\u104b -data_entry=Data \u101b\u102d\u102f\u1000\u103a\u101e\u103d\u1004\u103a\u1038\u1015\u102b\u104b -audit=Data \u1010\u1014\u103a\u1016\u102d\u102f\u1038\u1005\u1005\u103a\u101e\u100a\u103a\u104b -audit_value=\u1005\u102e\u1005\u1005\u103a\u1011\u102c\u1038\u101e\u1031\u102c\u1010\u1014\u103a\u1016\u102d\u102f\u1038 -audit_stored_by=Data \u1021\u1005\u102f \u1015\u103c\u100a\u1037\u103a\u1005\u102f\u1036\u1015\u103c\u102e\u1006\u102d\u102f\u1010\u102c \u101e\u1031\u1001\u103b\u102c\u1015\u102b\u101e\u101c\u102c\u1038\u104b -audit_time=\u1005\u102e\u1005\u1005\u103a\u1001\u103b\u102d\u1014\u103a -audit_operation=\u101c\u102f\u1015\u103a\u1006\u1031\u102c\u1004\u103a\u1015\u102f\u1036\u1021\u1019\u103b\u102d\u102f\u1038\u1021\u1005\u102c\u1038 -audit_from=\u1019\u103e -audit_to=\u101e\u102d\u102f\u1037 -dv_updated=\u1015\u103c\u1004\u103a\u1006\u1004\u103a\u1019\u103d\u1019\u103a\u1038\u1019\u1036\u101e\u100a\u103a\u104b -dv_deleted=\u1016\u103b\u1000\u103a\u101e\u100a\u103a\u104b -dv_added=\u1015\u1031\u102b\u1004\u103a\u1038\u101e\u100a\u103a\u104b -followup=\u1005\u1031\u102c\u1004\u1037\u103a\u1000\u103c\u1015\u103a\u1000\u103c\u100a\u1037\u103a\u101b\u103e\u102f\u1001\u103c\u1004\u103a\u1038 -interpolation=\u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101c\u1032\u1015\u103c\u102f\u1015\u103c\u1004\u103a\u1001\u103c\u1004\u103a\u1038 -validation_rule=\u1006\u1014\u103a\u1038\u1005\u1005\u103a\u1019\u103e\u102f\u1005\u100a\u103a\u1038\u1019\u103b\u1009\u103a\u1038\u1025\u1015\u1012\u1031 -no_outlier_values_found=\u1015\u103c\u1004\u103a\u1015\u1021\u1001\u103b\u1000\u103a\u1021\u101c\u1010\u103a\u1019\u103b\u102c\u1038\u101b\u103e\u102c\u1019\u1010\u103d\u1031\u1037\u1015\u102b\u104b -specify_input_date=\u1011\u100a\u1037\u103a\u101e\u103d\u1004\u103a\u1038\u101e\u100a\u1037\u103a\u1014\u1031\u1037\u1005\u103d\u1032\u1000\u102d\u102f \u101e\u1010\u103a\u1019\u103e\u1010\u103a\u1015\u1031\u1038\u1015\u102b\u104b -specify_valid_input_date=\u1021\u1010\u100a\u103a\u1015\u103c\u102f\u1011\u102c\u1038\u101e\u1031\u102c\u1011\u100a\u1037\u103a\u101e\u103d\u1004\u103a\u1038\u101e\u100a\u1037\u103a\u1014\u1031\u1037\u1005\u103d\u1032\u1000\u102d\u102f \u101b\u102d\u102f\u1000\u103a\u1011\u100a\u1037\u103a\u1015\u1031\u1038\u1015\u102b\u104b -register_complete_dataset_success=\u1015\u103c\u100a\u1037\u103a\u1005\u102f\u1036\u101e\u1031\u102c data \u1021\u1005\u102f \u1005\u102c\u101b\u1004\u103a\u1038\u101e\u103d\u1004\u103a\u1038\u101e\u100a\u103a\u104b -register_complete_dataset_failed=\u1015\u103c\u100a\u1037\u103a\u1005\u102f\u1036\u101e\u1031\u102c data \u1021\u1005\u102f \u1005\u102c\u101b\u1004\u103a\u1038\u101e\u103d\u1004\u103a\u1038\u104d\u1019\u101b\u1015\u102b\u104b -undo_register_complete_dataset_success=\u1015\u103c\u102e\u1038\u101e\u103d\u102c\u1038\u101e\u1031\u102c data \u1021\u1005\u102f \u1005\u102c\u101b\u1004\u103a\u1038\u101e\u103d\u1004\u103a\u1038\u1001\u103c\u1004\u103a\u1038\u1000\u102d\u102f \u1019\u101c\u102f\u1015\u103a\u1010\u1031\u102c\u1037\u1015\u102b\u104b -generate_min_max_success=\u1021\u1014\u100a\u103a\u1038\u1006\u102f\u1036\u1038/ \u1021\u1019\u103b\u102c\u1038\u1006\u102f\u1036\u1038\u1010\u1014\u103a\u1016\u102d\u102f\u1038\u1019\u103b\u102c\u1038\u1000\u102d\u102f \u1011\u102f\u1010\u103a\u1015\u1031\u1038\u1015\u102b\u104b -enter_digits=\u1000\u102d\u1014\u103a\u1038\u1002\u100f\u1014\u103a\u1038\u1019\u103b\u102c\u1038\u101e\u102c\u101b\u102d\u102f\u1000\u103a\u1011\u100a\u1037\u103a\u1015\u102b\u104b -value_must_number=\u1010\u1014\u103a\u1016\u102d\u102f\u1038\u101e\u100a\u103a \u1000\u102d\u1014\u103a\u1038\u1002\u100f\u1014\u103a\u1038\u101e\u102c\u1016\u103c\u1005\u103a\u101b\u1019\u100a\u103a\u104b -value_must_positive_integer=\u1010\u1014\u103a\u1016\u102d\u102f\u1038\u101e\u100a\u103a \u1021\u1015\u1031\u102b\u1004\u103a\u1038\u1000\u102d\u1014\u103a\u1038 \u101e\u102c\u1016\u103c\u1005\u103a\u101b\u1019\u100a\u103a\u104b -value_must_negative_integer=\u1010\u1014\u103a\u1016\u102d\u102f\u1038\u101e\u100a\u103a \u1021\u1014\u102f\u1010\u103a\u1000\u102d\u1014\u103a\u1038 \u101e\u102c\u1016\u103c\u1005\u103a\u101b\u1019\u100a\u103a\u104b -value_is_too_long=\u1010\u1014\u103a\u1016\u102d\u102f\u1038\u1019\u103e\u102c \u1021\u101c\u103d\u1014\u103a\u101b\u103e\u100a\u103a\u101c\u103b\u102c\u1038\u1014\u1031\u1015\u102b\u101e\u100a\u103a\u104b -field_unallowed_save_zero=\u101e\u102f\u100a\u1000\u102d\u1014\u103a\u1038\u1002\u100f\u1014\u103a\u1038\u1000\u102d\u102f \u101a\u1001\u102f\u1021\u1019\u103b\u102d\u102f\u1038\u1021\u1005\u102c\u1038\u1010\u103d\u1004\u103a \u1001\u103d\u1004\u1037\u103a\u1019\u1015\u103c\u102f\u1015\u102b\u104b \u1019\u1030\u101b\u1004\u103a\u1038\u1010\u1014\u103a\u1016\u102d\u102f\u1038\u1000\u102d\u102f \u1021\u1000\u103b\u102d\u102f\u1038\u101e\u1000\u103a\u101b\u1031\u102c\u1000\u103a\u1019\u100a\u103a\u1019\u101f\u102f\u1010\u103a\u1015\u102b\u104b -datavalue_history=Data \u1010\u1014\u103a\u1016\u102d\u102f\u1038\u104f History -max_must_be_greater_than_min=\u1021\u1019\u103b\u102c\u1038\u1006\u102f\u1036\u1038\u1010\u1014\u103a\u1016\u102d\u102f\u1038\u101e\u100a\u103a \u1021\u1014\u100a\u103a\u1038\u1006\u102f\u1036\u1038\u1010\u1014\u103a\u1016\u102d\u102f\u1038\u1011\u1000\u103a\u1000\u103c\u102e\u1038\u1014\u1031\u101b\u1019\u100a\u103a\u104b -next=\u101b\u103e\u1031\u1037\u101e\u102d\u102f\u1037 -prev=\u1014\u1031\u102c\u1000\u103a\u101e\u102d\u102f\u1037 -select_from_tree=\u1018\u101a\u103a\u1016\u1000\u103a\u1010\u103d\u1004\u103a\u101b\u103e\u102d\u101e\u1031\u102c \u101d\u102b\u1005\u1009\u103a\u1019\u103e\u101b\u103d\u1031\u1038\u1001\u103b\u101a\u103a\u1015\u102b\u104b -select_data_set=\u1021\u1001\u103b\u1000\u103a\u1021\u101c\u1000\u103a\u1021\u1005\u102f\u1019\u103e \u101b\u103d\u1031\u1038\u1001\u103b\u101a\u103a\u1015\u102b\u104b -select_period=\u1021\u1001\u103b\u102d\u1014\u103a\u1000\u102c\u101c\u101b\u103d\u1031\u1038\u1001\u103b\u101a\u103a\u1015\u102b\u104b -change_from=\u1019\u103e \u1015\u103c\u1031\u102c\u1004\u103a\u1038\u101c\u1032\u1015\u102b\u104b -to=\u101e\u102d\u102f\u1037 -on=\u1010\u103d\u1004\u103a -value=\u1010\u1014\u103a\u1016\u102d\u102f\u1038 -no_response_from_server=Server\u1019\u103e\u1015\u103c\u1014\u103a\u1000\u103c\u102c\u1038\u1001\u103c\u1004\u103a\u1038\u1019\u101b\u103e\u102d\u1015\u102b\u104b Connection \u1000\u102d\u102f\u1015\u103c\u1014\u103a\u101c\u100a\u103a\u1005\u1005\u103a\u1006\u1031\u1038\u1015\u1031\u1038\u1015\u102b\u104b -save_comment=\u1019\u103e\u1010\u103a\u1001\u103b\u1000\u103a\u1000\u102d\u102f\u101e\u102d\u1019\u103a\u1038\u1015\u102b\u104b -operation_not_available_offline=Off-line \u1016\u103c\u1005\u103a\u1014\u1031\u1001\u103b\u102d\u1014\u103a\u1010\u103d\u1004\u103a \u1012\u102e\u101c\u102f\u1015\u103a\u1006\u1031\u102c\u1004\u103a\u1001\u103b\u1000\u103a \u1021\u101c\u102f\u1015\u103a\u1019\u101c\u102f\u1015\u103a\u1015\u102b\u104b -online_notification=\u101e\u1004\u103a online \u1015\u1031\u102b\u103a\u1010\u103d\u1004\u103a\u101b\u1031\u102c\u1000\u103a\u101b\u103e\u102d\u1014\u1031\u1015\u102b\u101e\u100a\u103a\u104b -offline_notification=\u101e\u1004\u103a offline \u1016\u103c\u1005\u103a\u1014\u1031\u1015\u102b\u101e\u100a\u103a\u104b data \u1019\u103b\u102c\u1038\u1000\u102d\u102f \u1005\u1000\u103a\u1021\u1010\u103d\u1004\u103a\u1038\u104c \u101e\u102d\u1019\u103a\u1038\u1011\u102c\u1038\u101e\u100a\u103a\u104b -need_to_sync_notification=\u1005\u1000\u103a\u1021\u1010\u103d\u1004\u103a\u1038\u104c \u101e\u102d\u1019\u103a\u1038\u1011\u102c\u1038\u101e\u1031\u102c data \u1019\u103b\u102c\u1038\u101b\u103e\u102d\u101e\u100a\u103a\u104b Server \u1015\u1031\u102b\u103a\u101e\u102d\u102f\u1037\u1015\u103c\u1031\u102c\u1004\u103a\u1038\u1010\u1004\u103a\u1015\u102b\u104b -sync_now=upload -sync_success=Server \u101e\u102d\u102f\u1037\u1015\u102d\u102f\u1037\u101c\u103d\u103e\u1010\u103a\u1001\u103c\u1004\u103a\u1038 \u1021\u1031\u102c\u1004\u103a\u1019\u103c\u1004\u103a\u1015\u102b\u101e\u100a\u103a\u104b -sync_failed=Server \u101e\u102d\u102f\u1037\u1015\u102d\u102f\u1037\u101c\u103d\u103e\u1010\u103a\u104d\u1019\u101b\u1015\u102b\u104b \u1014\u1031\u102c\u1000\u103a\u1019\u103e\u1015\u103c\u1014\u103a\u101c\u100a\u103a\u1015\u103c\u102f\u101c\u102f\u1015\u103a\u1015\u102b\u104b -uploading_data_notification=\u1005\u1000\u103a\u1021\u1010\u103d\u1004\u103a\u1038\u104c \u101e\u102d\u1019\u103a\u1038\u1011\u102c\u1038\u101e\u1031\u102c data \u1019\u103b\u102c\u1038\u1000\u102d\u102f Server \u1015\u1031\u102b\u103a\u101e\u102d\u102f\u1037\u1015\u103c\u1031\u102c\u1004\u103a\u1038\u1010\u1004\u103a\u1015\u102b\u104b -ajax_login_failed=\u1005\u1014\u1005\u103a\u101e\u102d\u102f\u1037\u101d\u1004\u103a\u101b\u1031\u102c\u1000\u103a\u104d\u1019\u101b\u1015\u102b\u104b \u1021\u101e\u102f\u1036\u1038\u1015\u103c\u102f\u101e\u1030\u1021\u1019\u100a\u103a\u1014\u103e\u1004\u1037\u103a \u101c\u103b\u103e\u102d\u102f\u1037\u101d\u103e\u1000\u103a\u1014\u1036\u1015\u102b\u1010\u103a\u1000\u102d\u102f \u1015\u103c\u1014\u103a\u101c\u100a\u103a\u1005\u1005\u103a\u1006\u1031\u1038\u1015\u1031\u1038\u1015\u102b\u104b === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_no_NO.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_no_NO.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_no_NO.properties 1970-01-01 00:00:00 +0000 @@ -1,89 +0,0 @@ -#Resource generated by I18n Resource Editor -#Wed Feb 06 17:57:42 IST 2008 -validate=Valider -saving_comment_failed_status_code=Feil ved lagring av kommentaren, med statuskode -use_short_names=Bruk kortnavn -saving_value_failed_error_code=Feil ved lagring av verdien, med feilkode -entry=Legg inn -data_set=Datasett -successful_validation=Valideringen var vellykket. -stored_by=Lagret av -order_by_entry=Sorter etter registrering (standard) -saving_value_failed_status_code=Feil ved lagring av verdien, med statuskode -max_limit=Maksimumsgrense -delete_min_max_values=Slett min- og maksverdier -saving_comment_failed_error_code=Feil ved lagring av kommentaren, med feilkode -organisation_unit=Organisasjonsenhet -value_of_data_element_greater=Verdien til det f\u00F8lgende dataelementet er h\u00F8yere enn h\u00F8yeste aksepterte verdi. -yes=Ja -max=Maks -generate_min_max=Generer min/maks -validation_result=Resultat av valideringen -down=Ned -value_of_data_element_less=Verdien til det f\u00F8lgende dataelementet er er lavere enn laveste aksepterte verdi. -save=Lagre -saving_minmax_failed_error_code=Feil ved lagring av min/max-verdier, med feilkode -left_description=Beskrivelse til venstre -comment=Kommentar -dataelement_history=Dataelementhistorikk -minimum_must_less_than_maximum=Minimumsverdien m\u00E5 v\u00E6re mindre enn maksimumsverdien -unsuccessful_validation=Valideringen var mislykket. F\u00F8lgende feil oppsto\: -specify_minimum_value=Vennligst angi en minimumsverdi -code=Kode -change_order=Endre rekkef\u00F8lge -value=Verdi -specify_maximum_value=Vennligst angi en maksimumsverdi -operator=Operator -no_dataelement_selected=Intet dataelement er valgt -min_max_values=Min/Max verdier -data_element=Dataelement -use_secction_form=Bruk skjema med inndelinger -data_element_order=Rekkef\u00F8lge p\u00E5 dataelementer -up=Opp -minimum_value_must_integer=Minimumsverdien m\u00E5 v\u00E6re et heltall -yes_no=Ja/nei -close=Lukk -generate_values=Generer verdier -type=Type -no_organisationunit_selected=Ingen organisasjonsenhet er valgt -nr=Nr -no=Nei -edit_min_max_for=Endre min/maks for -min_limit=Minimumsgrense -later_periods=Senere perioder -custom_comment=Egendefinert kommentar -period=Periode -order_by_code=Sorter etter kode -name=Navn -generate_missing_values=Generer manglende verdier -timestamp=Tidsstempel -use_standard_form=Bruk standardform -change=Endre -data_entry_is_not_possible=Dataregistrering er ikke mulig\! Sannsynligvis tomt datasett. -move=Flytt -no_option_selected=Intet alternativ er valgt -right_description=Beskrivelse til h\u00F8yre -move_up=Flytt opp -reset_order_inherit=Tilbakestill sortering (sorter som i overordnet niv\u00E5) -no_value=Ingen verdi -expression=Registrering -not_set=Ikke angitt -earlier_periods=Tidligere perioder -average=Gjennomsnitt -validation_rule=Valideringsregel -text=Tekst -edit_min_max=Endre min/maks -maximum_value_must_integer=Maksimumsverdien m\u00E5 v\u00E6re et heltall -no_comment=Ingen kommentar -maximum=Maksimum -value_must_integer=Verdien m\u00E5 v\u00E6re et heltall -order_by_name=Sorter etter navn -select=Velg -number=Tall -move_down=Flytt ned -minimum=Minimum -min=Min -cancel=Avbryt -no_period_selected=Ingen periode er valgt -multidimensional_data_entry=Dataregistrering i flere dimensjoner -run_validation=Kj\u00F8r validering === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_pt_PT.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_pt_PT.properties 2012-07-19 11:19:00 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_pt_PT.properties 1970-01-01 00:00:00 +0000 @@ -1,136 +0,0 @@ -please_select=Por favor seleccione -open_entry_form=Abrir formul\u00e1rio de entrada -hide_entry_form=Esconder formul\u00e1rio de entrada -available_sections=Sec\u00e7\u00f5es dispon\u00edveis -value_type=Tipo de valor -value_date=Data-valor -dataelement_comment=Coment\u00e1rio -please_design_a_custom_form=Por favor desenhe um formul\u00e1rio personalizado para este dataset -import_export=Importar/Exportar -import_from_excel=Importar do Excel -export_entry_template=Exportar tela de entrada como Excel -history_not_valid=Historia n\u00e3o aplicada para este elemento de dado -use_section_form=Utilizar formul\u00e1rio de Sec\u00e7\u00e3o -no_option_selected=Nenhuma op\u00e7\u00e3o seleccionada -multidimensional_data_entry=Entrada de dados Multi-dimensional -data_entry_is_not_possible=N\u00e3o e poss\u00edvel efectuar entrada de dados. Possivelmente o dataset esta vazio. -data_element=Elemento de Dado -min=Min -entry=Entrada -max=M\u00e1x -timestamp=Timestamp -stored_by=Guardado por -edit_min_max=Editar Min/Max -no_value=Nenhum valor -no_comment=Nenhum comentario -custom_comment=Coment\u00e1rio personalizado -edit_min_max_for=Editar Min/Max para -minimum=Minimo -maximum=M\u00e1ximo -delete_min_max_values=Apagar valores min/max -move_up=Mover para cima -move_down=Mover para baixo -organisation_unit=Unidade organizacional -data_set=Conjunto de Dados -select=Seleccionar -change_order=Alterar ordem -period=Per\u00edodo -earlier_periods=Per\u00edodos anteriores -later_periods=Per\u00edodos posteriores -use_short_names=Utilizar nomes curtos -value_of_data_element_less=O valor do elemento de dado e menor que o valor m\u00ednimo aceit\u00e1vel -value_of_data_element_greater=O valor do elemento de dado e maior que o valor m\u00e1ximo aceit\u00e1vel -specify_minimum_value=Por favor, especifique o valor m\u00ednimo -specify_maximum_value=Por favor, especifique o valor m\u00e1ximo -minimum_value_must_integer=O valor m\u00ednimo deve ser um inteiro -maximum_value_must_integer=O valor m\u00e1ximo deve ser um inteiro -minimum_must_less_than_maximum=O valor m\u00ednimo deve ser menor que o valor m\u00e1ximo -value_must_integer=O valor deve ser um inteiro e o tamanho m\u00e1ximo n\u00e3o deve exceder 255 caracteres -saving_value_failed_status_code=Gravando o valor falhou com c\u00f3digo de estado -saving_value_failed_error_code=Gravando valor falhou com c\u00f3digo de erro -saving_comment_failed_status_code=Gravando coment\u00e1rio falhou com c\u00f3digo de estado -saving_comment_failed_error_code=Gravando coment\u00e1rio falhou com c\u00f3digo de erro -saving_minmax_failed_error_code=Gravando valores min/m\u00e1x falhou com c\u00f3digo de erro -move=Mover -order_by_entry=Ordenar por registro (default) -order_by_name=Ordenar por nome -order_by_code=Ordenar por c\u00f3digo -reset_order_inherit=Reset order/inherit from parent -date=Data -min_limit=Limite Min -max_limit=Limite M\u00e1x -dataelement_history=Hist\u00f3rico de elemento de dado -not_set=N\u00e3o definido -nr=N\u00ba -generate_min_max=Gerar min/m\u00e1x -min_max_limits=Limites min-m\u00e1x -run_validation=Executar valida\u00e7\u00e3o -validation_result=Resultado de Valida\u00e7\u00e3o -expression=Express\u00e3o -successful_validation=A tela de entrada de dado passou a valida\u00e7\u00e3o com \u00eaxito -unsuccessful_validation=The data entry screen has validation errors, please correct these before proceeding -the_following_values_violate_rules=The following values violate validation rules -the_following_values_are_outliers=The following values are considered as outliers (min-max or std dev). -value=Value -operator=Operator -right_description=Right Description -left_description=Left Description -no_organisationunit_selected=No Organisation Unit Selected -no_period_selected=No Period Selected -no_dataelement_selected=No Data Element Selected -use_default_form=Use Default Form -use_custom_form=Use Custom Form -complete=Complete -incomplete=Incomplete -confirm_complete=Are you sure this dataset is complete? -confirm_undo=Are you sure you will undo the registration? -data_entry=Data Entry -audit=Audit of Data Value -audit_value=Audit Value -audit_stored_by=Operated By -audit_time=Audit Time -audit_operation=Operation Type -audit_from=From -audit_to=To -dv_updated=Updated -dv_deleted=Deleted -dv_added=Added -followup=Follow-up -interpolation=Interpolation -validation_rule=Validation rule -no_outlier_values_found=No outlier values found. -specify_input_date=Please specify an input date -specify_valid_input_date=Please enter a valid input date -register_complete_dataset_success=Registered complete dataset -register_complete_dataset_failed=Register complete dataset failed -undo_register_complete_dataset_success=Undo register complete dataset success -datavalue_history=Data value history -data_element_order=Data Element Order -generate_min_max_success=Generated min/max values -enter_digits=Enter digit only. -value_must_number=Value must be an number -value_must_positive_integer=Value must be an positive integer -value_must_negative_integer=Value must be an negative integer -value_is_too_long=Value is too long -field_unallowed_save_zero=This element does not permit 0 values. The original value will not be affected. -max_must_be_greater_than_min=Max must be greater than min -next=Next -prev=Prev -select_from_tree=Select from tree on the left side -select_data_set=Select data set -select_period=Select period -change_from=change from -to=to -on=On -no_response_from_server=No response from server, please check connectivity and try again -save=Save -save_comment=Save comment -operation_not_available_offline=This operation is not available in off-line mode -online_notification=You are online -offline_notification=You are offline, data will be stored locally -need_to_sync_notification=There is data stored locally, please upload to server -sync_now=Upload -sync_success=Upload to server was successful -sync_failed=Upload to server failed, please try again later -uploading_data_notification=Uploading locally stored data to the server -ajax_login_failed=Login failed, check your username and password and try again === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_ru_RU.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_ru_RU.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_ru_RU.properties 1970-01-01 00:00:00 +0000 @@ -1,79 +0,0 @@ -#Resource generated by I18n Resource Editor -#Wed May 28 15:51:33 CEST 2008 -saving_comment_failed_status_code=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043A\u043E\u043C\u0435\u043D\u0442\u0430\u0440\u0438\u0439 \u043D\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441\u043E \u0441\u0442\u0430\u0442\u0443\u0441\u043E\u043C \u043E\u0448\u0438\u0431\u043A\u0438 -use_short_names=\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u043A\u043E\u0440\u043E\u0442\u043A\u0438\u0435 \u0438\u043C\u0435\u043D\u0430 -saving_value_failed_error_code=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043D\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441 \u043A\u043E\u0434\u043E\u043C \u043E\u0448\u0438\u0431\u043A\u0438 -entry=\u0412\u0432\u043E\u0434 -data_set=\u041D\u0430\u0431\u043E\u0440 \u0434\u0430\u043D\u043D\u044B\u0445 -successful_validation=\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0443\u0434\u0430\u0447\u043D\u043E \u043F\u0440\u043E\u0448\u043B\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C -stored_by=\u0421\u043E\u0445\u0440\u0430\u043D\u0435\u043D -order_by_entry=\u0423\u043F\u043E\u0440\u044F\u0434\u043E\u0447\u0438\u0442\u044C \u043F\u043E \u0432\u0432\u043E\u0434\u0443 -saving_value_failed_status_code=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043D\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441\u043E \u0441\u0442\u0430\u0442\u0443\u0441\u043E\u043C \u043E\u0448\u0438\u0431\u043A\u0438 -max_limit=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439 \u043F\u0440\u0435\u0434\u0435\u043B -delete_min_max_values=\u0423\u0434\u0430\u043B\u0435\u043D\u0438\u0435 \u043C\u0438\u043D/\u043C\u0430\u043A \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F -saving_comment_failed_error_code=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043A\u043E\u043C\u0435\u043D\u0442\u0430\u0440\u0438\u0439 \u043D\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441 \u043A\u043E\u0434\u043E\u043C \u043E\u0448\u0438\u0431\u043A\u0438 -organisation_unit=\u041F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u0435 \u043E\u0440\u0433\u0430\u043D\u0438\u0437\u0430\u0446\u0438\u0438 -value_of_data_element_greater=\u0412\u0435\u043B\u0438\u0447\u0438\u043D\u0430 \u0442\u0435\u043A\u0443\u0449\u0435\u0433\u043E \u044D\u043B\u0435\u043C\u0435\u043D\u0442\u0430 \u0434\u0430\u043D\u043D\u044B\u0445 \u0431\u043E\u043B\u044C\u0448\u0435 \u0447\u0435\u043C \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0435 -yes=\u0414\u0430 -max=\u041C\u0430\u043A\u0441 -generate_min_max=\u0413\u0435\u043D\u0435\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043C\u0438\u043D/\u043C\u0430\u043A\u0441 -validation_result=\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u043F\u0440\u0438\u0433\u043E\u0434\u043D\u043E\u0441\u0442\u0438 -value_of_data_element_less=\u0412\u0435\u043B\u0438\u0447\u0438\u043D\u0430 \u0442\u0435\u043A\u0443\u0449\u0435\u0433\u043E \u044D\u043B\u0435\u043C\u0435\u043D\u0442\u0430 \u0434\u0430\u043D\u043D\u044B\u0445 \u043C\u0435\u043D\u044C\u0448\u0435 \u0447\u0435\u043C \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0435 -save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C -saving_minmax_failed_error_code=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043C\u0438\u043D/\u043C\u0430\u043A\u0441 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043D\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u043D\u043E\u0441\u0442\u0438 \u0441 \u043A\u043E\u0434\u043E\u043C \u043E\u0448\u0438\u0431\u043A\u0438 -left_description=\u041B\u0435\u0432\u043E\u0435 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 -comment=\u041A\u043E\u043C\u0435\u043D\u0442\u0430\u0440\u0438\u0438 -dataelement_history=\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u0435\u043B\u0435\u043C\u043D\u0442 \u0434\u0430\u043D\u043D\u044B\u0445 -minimum_must_less_than_maximum=\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0434\u043E\u043B\u0436\u043D\u043E \u0431\u044B\u0442\u044C \u043C\u0435\u043D\u044C\u0448\u0435 \u0447\u0435\u043C \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 -unsuccessful_validation=\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043D\u0435 \u043F\u0440\u043E\u0448\u043B\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C. \u041F\u0440\u043E\u0438\u0437\u043E\u0448\u043B\u0430 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0430\u044F \u043E\u0448\u0438\u0431\u043A\u0430\: -specify_minimum_value=\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430 \u043E\u0431\u043E\u0437\u043D\u0430\u0447\u0442\u0435 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u0443\u044E \u0432\u0435\u043B\u0438\u0447\u0438\u043D\u0443 -code=\u041A\u043E\u0434 -change_order=\u0417\u0430\u044F\u0432\u043A\u0430 \u043D\u0430 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0435 -value=\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u0435 -specify_maximum_value=\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430 \u043E\u0431\u043E\u0437\u043D\u0430\u0447\u0442\u0435 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0443\u044E \u0432\u0435\u043B\u0438\u0447\u0438\u043D\u0443 -operator=\u041E\u043F\u0435\u0440\u0430\u0442\u043E\u0440 -no_dataelement_selected=\u041D\u0435 \u0432\u044B\u0431\u0440\u0430\u043D \u044D\u043B\u0435\u043C\u0435\u043D\u0442 \u0434\u0430\u043D\u043D\u044B\u0445 -data_element=\u042D\u043B\u0435\u043C\u0435\u043D\u0442 \u0434\u0430\u043D\u043D\u044B\u0445 -minimum_value_must_integer=\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0447\u0438\u0441\u043B\u043E \u0434\u043E\u043B\u0436\u043D\u043E \u0431\u044B\u0442\u044C \u0446\u0435\u043B\u043E\u0435 -yes_no=\u0414\u0430/\u043D\u0435\u0442 -close=\u0417\u0430\u043A\u0440\u044B\u0442\u044C -type=\u0422\u0438\u043F -no_organisationunit_selected=\u041D\u0435 \u0432\u044B\u0431\u0440\u0430\u043D\u043E \u043F\u043E\u0434\u0440\u0430\u0437\u0434\u0435\u043B\u0435\u043D\u0438\u0435 -nr=\u2116 -no=\u041D\u0435\u0442 -edit_min_max_for=\u041F\u0440\u0430\u0432\u043A\u0430 \u043C\u0438\u043D/\u043C\u0430\u043A\u0441 \u0434\u043B\u044F -min_limit=\u041C\u0438\u043D \u043F\u0440\u0435\u0434\u0435\u043B -later_periods=\u041F\u043E\u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0435 \u043F\u0435\u0440\u0438\u043E\u0434\u044B -custom_comment=\u041F\u0440\u043E\u0441\u0442\u043E\u0439 \u043A\u043E\u043C\u0435\u043D\u0442\u0430\u0440\u0438\u0435\u0432 -period=\u041F\u0435\u0440\u0438\u043E\u0434 -order_by_code=\u0423\u043F\u043E\u0440\u044F\u0434\u043E\u0447\u0438\u0442\u044C \u043F\u043E \u043A\u043E\u0434\u0443 -name=\u0418\u043C\u044F -format.date=yyyy-MM-dd -timestamp=\u041E\u0442\u043C\u0435\u0442\u043A\u0430 \u0432\u0440\u0435\u043C\u0435\u043D\u0438 -use_standard_form=\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u0443\u044E \u0444\u043E\u0440\u043C\u0443 -data_entry_is_not_possible=\u0412\u0432\u043E\u0434 \u0434\u0430\u043D\u043D\u044B\u0445 \u043D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u0435\u043D\! \u0412\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0434\u0430\u043D\u043D\u044B\u0435 \u043D\u0435 \u0432\u0432\u0435\u0434\u0435\u043D\u044B -move=\u041F\u0435\u0440\u0435\u0434\u0432\u0438\u043D\u0443\u0442\u044C -right_description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 \u043F\u0440\u0430\u0432\u043E\u0439 \u0441\u0442\u043E\u0440\u043E\u043D\u044B -move_up=\u041F\u0435\u0440\u0435\u0434\u0432\u0438\u043D\u0443\u0442\u044C \u0432\u0432\u0435\u0440\u0445 -reset_order_inherit=\u041F\u0435\u0440\u0435\u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043F\u043E\u0440\u044F\u0434\u043E\u043A/\u043D\u0430\u0441\u043B\u0435\u0434\u0441\u0442\u0432\u0435\u043D\u043D\u043E\u0441\u0442\u044C \u043F\u043E \u0440\u043E\u0434\u0438\u0442\u0435\u043B\u044F\u043C -no_value=\u041D\u0435\u0442 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F -expression=\u0412\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u0435 -not_set=\u041D\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D -average=\u0421\u0440\u0435\u0434\u043D\u0435\u0435 -earlier_periods=\u041F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0438\u0435 \u043F\u0435\u0440\u0438\u043E\u0434\u044B -text=\u0442\u0422\u0435\u043A\u0441\u0442 -edit_min_max=\u041F\u0440\u0430\u0432\u043A\u0430 \u043C\u0438\u043D/\u043C\u0430\u043A\u0441 -maximum_value_must_integer=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0447\u0438\u0441\u043B\u043E \u0434\u043E\u043B\u0436\u043D\u043E \u0431\u044B\u0442\u044C \u0446\u0435\u043B\u043E\u0435 -no_comment=\u0411\u0435\u0437 \u043A\u043E\u043C\u0435\u043D\u0442\u0430\u0440\u0438\u0435\u0432 -maximum=\u041C\u0430\u043A\u0441\u0438\u043C\u0443\u043C -value_must_integer=\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u0434\u043E\u043B\u0436\u043D\u043E \u0431\u044B\u0442\u044C \u0446\u0435\u043B\u044B\u043C \u0447\u0438\u0441\u043B\u043E\u043C -order_by_name=\u0423\u043F\u043E\u0440\u044F\u0434\u043E\u0447\u0438\u0442\u044C \u043F\u043E \u0438\u043C\u0435\u043D\u0438 -select=\u0412\u044B\u0431\u0440\u0430\u0442\u044C -number=\u0427\u0438\u0441\u043B\u043E -move_down=\u041F\u0435\u0440\u0435\u0434\u0432\u0438\u043D\u0443\u0442\u044C \u0432\u043D\u0438\u0437 -min=\u041C\u0438\u043D -minimum=\u041C\u0438\u043D\u0438\u043C\u0443\u043C -cancel=\u041E\u0442\u043C\u0435\u043D\u0430 -no_period_selected=\u041D\u0435 \u0432\u044B\u0431\u0440\u0430\u043D \u043F\u0435\u0440\u0438\u043E\u0434 -multidimensional_data_entry=\u041C\u043D\u043E\u0433\u043E\u043C\u0435\u0440\u043D\u044B\u0439 \u0432\u0432\u043E\u0434 \u0434\u0430\u043D\u043D\u044B\u0445 -run_validation=\u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043F\u0440\u0438\u0433\u043E\u0434\u043D\u043E\u0441\u0442\u0438 === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_te_IN.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_te_IN.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_te_IN.properties 1970-01-01 00:00:00 +0000 @@ -1,76 +0,0 @@ -#Resource generated by I18n Resource Editor -#Fri Mar 30 18:46:32 IST 2007 -validate=\u0C35\u0C3E\u0C32\u0C3F\u0C21\u0C3E\u0C1F\u0C4D -saving_comment_failed_status_code=\u0C2A\u0C30\u0C3F\u0C38\u0C4D\u0C25\u0C3F\u0C24\u0C41\u0C32 \u0C38\u0C02\u0C15\u0C47\u0C24\u0C2E\u0C41\u0C24\u0C4B \u0C35\u0C3F\u0C35\u0C3E\u0C30\u0C23 \u0C2A\u0C26\u0C3F\u0C32\u0C2A\u0C30\u0C41\u0C1A\u0C41\u0C1F \u0C35\u0C3F\u0C2B\u0C32\u0C2E\u0C48\u0C28\u0C26\u0C3F -use_short_names=\u0C1A\u0C3F\u0C28\u0C4D\u0C28\u0C28\u0C3E\u0C2E\u0C2E\u0C41\u0C32\u0C28\u0C41 \u0C35\u0C3E\u0C21\u0C41\u0C2E\u0C41 -saving_value_failed_error_code=\u0C24\u0C2A\u0C4D\u0C2A\u0C41 \u0C38\u0C02\u0C15\u0C47\u0C24\u0C2E\u0C41\u0C24\u0C4B \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C2A\u0C26\u0C3F\u0C32\u0C2A\u0C30\u0C41\u0C1A\u0C41\u0C1F \u0C35\u0C3F\u0C2B\u0C32\u0C2E\u0C48\u0C28\u0C26\u0C3F\u0C2E\u0C30\u0C4D\u0C2A\u0C41 \u0C05\u0C32\u0C4D\u0C2A\u0C2E\u0C41/\u0C05\u0C27\u0C3F\u0C15\u0C2E\u0C41 -entry=\u0C28\u0C2E\u0C4B\u0C26\u0C41 -data_set=\u0C21\u0C3E\u0C1F \u0C38\u0C2E\u0C3F\u0C24\u0C3F -successful_validation=\u0C08 \u0C35\u0C3F\u0C32\u0C41\u0C35\u0C32\u0C41 \u0C35\u0C3F\u0C1C\u0C2F\u0C35\u0C02\u0C24\u0C2E\u0C41\u0C17\u0C3E \u0C35\u0C3E\u0C32\u0C3F\u0C21\u0C47\u0C37\u0C28\u0C4D \u0C28\u0C41 \u0C09\u0C24\u0C4D\u0C24\u0C40\u0C30\u0C4D\u0C23\u0C24 \u0C38\u0C3E\u0C27\u0C3F\u0C02\u0C1A\u0C46\u0C28\u0C41 -stored_by=\u0C26\u0C3E\u0C1A\u0C41\u0C15\u0C4A\u0C28 \u0C2C\u0C21\u0C3F\u0C28 -order_by_entry=\u0C28\u0C2E\u0C4B\u0C26\u0C41 \u0C2A\u0C4D\u0C30\u0C15\u0C3E\u0C30\u0C2E\u0C41 \u0C15\u0C4D\u0C30\u0C2E\u0C2C\u0C26\u0C4D\u0C26\u0C3F\u0C15\u0C30\u0C3F\u0C02\u0C1A\u0C41 (\u0C2E\u0C3E\u0C2E\u0C41\u0C32\u0C41\u0C17) -saving_value_failed_status_code=\u0C2A\u0C30\u0C3F\u0C38\u0C4D\u0C25\u0C3F\u0C24\u0C41\u0C32 \u0C38\u0C02\u0C15\u0C47\u0C24\u0C2E\u0C41\u0C24\u0C4B \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C2A\u0C26\u0C3F\u0C32\u0C2A\u0C30\u0C41\u0C1A\u0C41\u0C1F \u0C35\u0C3F\u0C2B\u0C32\u0C2E\u0C48\u0C28\u0C26\u0C3F -max_limit=\u0C05\u0C24\u0C4D\u0C2F\u0C26\u0C3F\u0C15 \u0C2A\u0C30\u0C3F\u0C27\u0C3F -delete_min_max_values=\u0C05\u0C27\u0C3F\u0C15\u0C2E\u0C41/\u0C05\u0C32\u0C4D\u0C2A\u0C2E\u0C41 \u0C35\u0C3F\u0C32\u0C41\u0C35\u0C32\u0C28\u0C41 \u0C24\u0C4A\u0C32\u0C17\u0C3F\u0C02\u0C2A\u0C41\u0C2E\u0C41 -saving_comment_failed_error_code=\u0C24\u0C2A\u0C4D\u0C2A\u0C41 \u0C38\u0C02\u0C15\u0C47\u0C24\u0C2E\u0C41\u0C24\u0C4B \u0C35\u0C3F\u0C35\u0C30\u0C23 \u0C2A\u0C26\u0C3F\u0C32\u0C2A\u0C30\u0C41\u0C1A\u0C41\u0C1F \u0C35\u0C3F\u0C2B\u0C32\u0C2E\u0C48\u0C28\u0C26\u0C3F -organisation_unit=\u0C06\u0C30\u0C4B\u0C17\u0C4D\u0C2F\u0C15\u0C47\u0C02\u0C26\u0C4D\u0C30\u0C2E\u0C41 -value_of_data_element_greater=\u0C08 \u0C2F\u0C4A\u0C15\u0C4D\u0C15 \u0C21\u0C3E\u0C1F \u0C0E\u0C32\u0C3F\u0C2E\u0C46\u0C02\u0C1F\u0C4D \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C12\u0C2A\u0C4D\u0C2A\u0C41\u0C15\u0C4A\u0C28\u0C3F\u0C21\u0C3F \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C15\u0C28\u0C4D\u0C28\u0C3E \u0C05\u0C26\u0C3F\u0C15\u0C2E\u0C41\u0C17\u0C3E \u0C09\u0C28\u0C4D\u0C28\u0C26\u0C3F -yes=\u0C05\u0C35\u0C41\u0C28\u0C41 -max=\u0C05\u0C27\u0C3F\u0C15\u0C2E\u0C41 -validation_result=\u0C35\u0C3E\u0C32\u0C3F\u0C21\u0C3E\u0C37\u0C28\u0C4D \u0C2B\u0C32\u0C3F\u0C24\u0C2E\u0C41 -down=\u0C15\u0C3F\u0C02\u0C26 -value_of_data_element_less=\u0C08 \u0C2F\u0C4A\u0C15\u0C4D\u0C15 \u0C21\u0C3E\u0C1F \u0C0E\u0C32\u0C3F\u0C2E\u0C46\u0C02\u0C1F\u0C4D \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C12\u0C2A\u0C4D\u0C2A\u0C41\u0C15\u0C4A\u0C28\u0C3F\u0C21\u0C3F \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C15\u0C28\u0C4D\u0C28\u0C3E \u0C05\u0C32\u0C4D\u0C2A\u0C2E\u0C41\u0C17\u0C3E \u0C09\u0C28\u0C4D\u0C28\u0C26\u0C3F -save=\u0C2A\u0C26\u0C3F\u0C32\u0C2E\u0C41 -saving_minmax_failed_error_code=\u0C24\u0C2A\u0C4D\u0C2A\u0C41 \u0C38\u0C02\u0C15\u0C47\u0C24\u0C2E\u0C41\u0C24\u0C4B \u0C05\u0C32\u0C4D\u0C2A/\u0C05\u0C27\u0C3F\u0C15 \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C2A\u0C26\u0C3F\u0C32\u0C2A\u0C30\u0C41\u0C1A\u0C41\u0C1F \u0C35\u0C3F\u0C2B\u0C32\u0C2E\u0C48\u0C28\u0C26\u0C3F -left_description=\u0C0E\u0C21\u0C2E \u0C35\u0C30\u0C4D\u0C23\u0C28 -comment=\u0C35\u0C3F\u0C35\u0C30\u0C23 -dataelement_history=\u0C21\u0C3E\u0C1F \u0C0E\u0C32\u0C3F\u0C2E\u0C46\u0C02\u0C1F\u0C4D \u0C1A\u0C30\u0C3F\u0C24\u0C4D\u0C30 -minimum_must_less_than_maximum=\u0C05\u0C32\u0C4D\u0C2A \u0C35\u0C3F\u0C32\u0C41\u0C35 , \u0C05\u0C27\u0C3F\u0C15 \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C15\u0C28\u0C4D\u0C28\u0C3E \u0C24\u0C15\u0C4D\u0C15\u0C41\u0C35\u0C17\u0C3E \u0C28\u0C41\u0C02\u0C21\u0C35\u0C32\u0C46\u0C28\u0C41 -unsuccessful_validation=\u0C08 \u0C35\u0C3F\u0C32\u0C41\u0C35\u0C32\u0C41 \u0C35\u0C3E\u0C32\u0C3F\u0C21\u0C47\u0C37\u0C28\u0C4D \u0C28\u0C41 \u0C09\u0C24\u0C4D\u0C24\u0C40\u0C30\u0C4D\u0C23\u0C24 \u0C38\u0C3E\u0C27\u0C3F\u0C02\u0C1A\u0C32\u0C47\u0C26\u0C41.\u0C08 \u0C15\u0C4D\u0C30\u0C3F\u0C02\u0C26\u0C3F \u0C24\u0C2A\u0C4D\u0C2A\u0C41 \u0C35\u0C1A\u0C4D\u0C1A\u0C3F\u0C28\u0C26\u0C3F -specify_minimum_value=\u0C26\u0C2F\u0C1A\u0C47\u0C38\u0C3F \u0C1A\u0C3F\u0C28\u0C4D\u0C28 \u0C35\u0C3F\u0C32\u0C41\u0C35\u0C28\u0C41 \u0C24\u0C46\u0C32\u0C41\u0C2A\u0C41\u0C2E\u0C41 -code=\u0C38\u0C02\u0C15\u0C47\u0C24\u0C2E\u0C41 -value=\u0C35\u0C3F\u0C32\u0C41\u0C35 -specify_maximum_value=\u0C26\u0C2F\u0C1A\u0C47\u0C38\u0C3F \u0C2A\u0C46\u0C26\u0C4D\u0C26 \u0C35\u0C3F\u0C32\u0C41\u0C35\u0C28\u0C41 \u0C24\u0C46\u0C32\u0C41\u0C2A\u0C41\u0C2E\u0C41 -operator=\u0C15\u0C3E\u0C30\u0C4D\u0C2F\u0C2E\u0C41 -min_max_values=\u0C05\u0C27\u0C3F\u0C15\u0C2E\u0C41/\u0C05\u0C32\u0C4D\u0C2A\u0C2E\u0C41 \u0C35\u0C3F\u0C32\u0C41\u0C35\u0C32\u0C41 -data_element=\u0C21\u0C3E\u0C1F \u0C0E\u0C32\u0C3F\u0C2E\u0C46\u0C02\u0C1F\u0C4D -data_element_order=\u0C21\u0C3E\u0C1F \u0C0E\u0C32\u0C3F\u0C2E\u0C46\u0C02\u0C1F\u0C4D \u0C15\u0C4D\u0C30\u0C2E\u0C2E\u0C41 -up=\u0C2A\u0C48\u0C28 -minimum_value_must_integer=\u0C1A\u0C3F\u0C28\u0C4D\u0C28 \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C15\u0C1A\u0C4D\u0C1A\u0C3F\u0C24\u0C2E\u0C41\u0C17\u0C3E \u0C38\u0C02\u0C16\u0C4D\u0C2F\u0C17\u0C3E\u0C28\u0C41\u0C02\u0C21\u0C35\u0C32\u0C46\u0C28\u0C41 -yes_no=\u0C05\u0C35\u0C41\u0C28\u0C41/\u0C32\u0C47\u0C26\u0C41 -close=\u0C2E\u0C42\u0C2F\u0C41\u0C2E\u0C41 -generate_values=\u0C35\u0C3F\u0C32\u0C41\u0C35\u0C32\u0C28\u0C41 \u0C09\u0C24\u0C4D\u0C2A\u0C3E\u0C26\u0C3F\u0C02\u0C1A\u0C41\u0C2E\u0C41 -type=\u0C35\u0C3F\u0C2D\u0C3E\u0C17\u0C2E\u0C41 -nr=\u0C38\u0C02\u0C16\u0C4D\u0C2F -no=\u0C32\u0C47\u0C26\u0C41 -edit_min_max_for=\u0C05\u0C32\u0C4D\u0C2A/\u0C05\u0C27\u0C3F\u0C15 \u0C2E\u0C3E\u0C30\u0C4D\u0C1A\u0C41 \u0C15\u0C4A\u0C30\u0C15\u0C41- -min_limit=\u0C05\u0C32\u0C4D\u0C2A \u0C2A\u0C30\u0C3F\u0C27\u0C3F -custom_comment=\u0C35\u0C3F\u0C35\u0C30\u0C23 \u0C07\u0C35\u0C4D\u0C35\u0C41\u0C2E\u0C41 -period=\u0C15\u0C3E\u0C32\u0C2E\u0C41 -order_by_code=\u0C38\u0C02\u0C15\u0C46\u0C24\u0C2E\u0C41 \u0C2A\u0C4D\u0C30\u0C15\u0C3E\u0C30\u0C2E\u0C41 \u0C15\u0C4D\u0C30\u0C2E\u0C2C\u0C26\u0C4D\u0C21\u0C3F\u0C15\u0C30\u0C23 -name=\u0C28\u0C3E\u0C2E\u0C2E\u0C41 -generate_missing_values=\u0C15\u0C28\u0C2A\u0C21\u0C28\u0C3F \u0C35\u0C3F\u0C32\u0C41\u0C35\u0C32\u0C28\u0C41 \u0C09\u0C24\u0C4D\u0C2A\u0C3E\u0C26\u0C3F\u0C02\u0C1A\u0C41\u0C2E\u0C41 -timestamp=\u0C15\u0C3E\u0C32\u0C2A\u0C30\u0C3F\u0C2E\u0C3F\u0C24\u0C3F -change=\u0C2E\u0C3E\u0C30\u0C4D\u0C2A\u0C41 -move=\u0C15\u0C26\u0C41\u0C2A\u0C41\u0C2E\u0C41 -right_description=\u0C15\u0C41\u0C21\u0C3F\u0C35\u0C48\u0C2A\u0C41 \u0C35\u0C30\u0C4D\u0C23\u0C28 -move_up=\u0C2A\u0C48\u0C15\u0C3F \u0C1C\u0C30\u0C41\u0C2A\u0C41\u0C2E\u0C41 -reset_order_inherit=\u0C15\u0C4D\u0C30\u0C2E\u0C2E\u0C41/\u0C38\u0C4B\u0C2A\u0C28\u0C2E\u0C41 \u0C26\u0C4D\u0C35\u0C3E\u0C30 \u0C30\u0C40\u0C38\u0C46\u0C1F\u0C4D -no_value=\u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C32\u0C47\u0C26\u0C41 -expression=\u0C0E\u0C15\u0C4D\u0C38\u0C4D \u0C2A\u0C4D\u0C30\u0C46\u0C37\u0C28\u0C4D -not_set=\u0C24\u0C46\u0C32\u0C41\u0C2A\u0C2C\u0C21\u0C32\u0C47\u0C26\u0C41 -average=\u0C38\u0C17\u0C1F\u0C41 -validation_rule=\u0C35\u0C3E\u0C32\u0C3F\u0C21\u0C3E\u0C37\u0C28\u0C4D \u0C30\u0C42\u0C32\u0C4D -text=\u0C2A\u0C26\u0C2E\u0C41 -edit_min_max=\u0C28\u0C2E\u0C4B\u0C26\u0C41 -maximum_value_must_integer=\u0C2A\u0C46\u0C26\u0C4D\u0C26 \u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C15\u0C1A\u0C4D\u0C1A\u0C3F\u0C24\u0C2E\u0C41\u0C17\u0C3E \u0C38\u0C02\u0C16\u0C4D\u0C2F\u0C17\u0C3E\u0C28\u0C41\u0C02\u0C21\u0C35\u0C32\u0C46\u0C28\u0C41 -no_comment=\u0C35\u0C3F\u0C35\u0C30\u0C23 \u0C32\u0C47\u0C26\u0C41 -maximum=\u0C05\u0C24\u0C4D\u0C2F\u0C26\u0C3F\u0C15\u0C2E\u0C41 -value_must_integer=\u0C35\u0C3F\u0C32\u0C41\u0C35 \u0C15\u0C1A\u0C4D\u0C1A\u0C3F\u0C24\u0C2E\u0C41\u0C17\u0C3E \u0C38\u0C02\u0C16\u0C4D\u0C2F\u0C17\u0C3E\u0C28\u0C41\u0C02\u0C21\u0C35\u0C32\u0C46\u0C28\u0C41 -order_by_name=\u0C28\u0C3E\u0C2E\u0C2E\u0C41 \u0C26\u0C4D\u0C35\u0C3E\u0C30 \u0C15\u0C4D\u0C30\u0C2E\u0C2C\u0C26\u0C4D\u0C26\u0C4D\u0C27\u0C3F\u0C15\u0C30\u0C23 -select=\u0C0E\u0C02\u0C1A\u0C41\u0C15\u0C4A\u0C28\u0C41\u0C2E\u0C41 -number=\u0C38\u0C02\u0C16\u0C4D\u0C2F -move_down=\u0C15\u0C4D\u0C30\u0C3F\u0C02\u0C26\u0C15\u0C3F \u0C15\u0C26\u0C41\u0C2A\u0C41\u0C2E\u0C41 -minimum=\u0C05\u0C32\u0C4D\u0C2A\u0C2E\u0C41 -min=\u0C05\u0C24\u0C4D\u0C2F\u0C32\u0C4D\u0C2A\u0C2E\u0C41 -cancel=\u0C24\u0C4A\u0C32\u0C17\u0C3F\u0C02\u0C1A\u0C41 === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_tg_TJ.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_tg_TJ.properties 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_tg_TJ.properties 1970-01-01 00:00:00 +0000 @@ -1,79 +0,0 @@ -#Resource generated by I18n Resource Editor -#Wed May 28 15:51:33 CEST 2008 -saving_comment_failed_status_code=\u0421\u0430\u0431\u0442\u0438 \u043D\u043E\u043A\u043E\u043C\u0438 \u044D\u0437\u043E\u04B3 \u0431\u043E \u0440\u0430\u043C\u0437\u0438 \u04B3\u043E\u043B\u0430\u0442 -use_short_names=\u041D\u043E\u043C\u04B3\u043E\u0438 \u041A\u04EF\u0442\u043E\u04B3\u0440\u043E \u0418\u0441\u0442\u0438\u0444\u043E\u0434\u0430 \u0411\u0430\u0440\u0435\u0434 -saving_value_failed_error_code=\u0421\u0430\u0431\u0442\u0438 \u043D\u043E\u043A\u043E\u043C\u0438 \u049B\u0438\u043C\u0430\u0442 \u0431\u043E \u0440\u0430\u043C\u0437\u0438 \u0493\u0430\u043B\u0430\u0442 -entry=\u0412\u0443\u0440\u0443\u0434 -data_set=\u041C\u0430\u04B7\u043C\u04EF\u0430\u0438 \u0414\u043E\u0434\u0430\u04B3\u043E -successful_validation=\u04B2\u0430\u049B\u049B\u043E\u043D\u0438\u044F\u0442\u0438 \u049B\u0438\u043C\u0430\u0442\u04B3\u043E \u0442\u0430\u0441\u0434\u0438\u049B \u0433\u0430\u0440\u0434\u0438\u0434 -stored_by=\u0417\u0430\u0445\u0438\u0440\u0430 \u0448\u0443\u0434 \u0410\u0437 \u04B7\u043E\u043D\u0438\u0431\u0438 -order_by_entry=\u041C\u0443\u0440\u0430\u0442\u0442\u0430\u0431\u0441\u043E\u0437\u04E3 \u043C\u0443\u0432\u043E\u0444\u0438\u049B\u0438 \u049B\u0430\u0439\u0434 \u043D\u0430\u043C\u0443\u0434\u0430\u043D (\u043C\u0430\u044A\u043C\u0443\u043B\u0430\u043D) -saving_value_failed_status_code=\u0421\u0430\u0431\u0442\u0438 \u043D\u043E\u043A\u043E\u043C\u0438 \u049B\u0438\u043C\u0430\u0442 \u0431\u043E \u0440\u0430\u043C\u0437\u0438 \u04B3\u043E\u043B\u0430\u0442 -max_limit=\u04B2\u0443\u0434\u0443\u0434\u0438 \u043C\u0430\u043A\u0441 -delete_min_max_values=\u04B2\u0430\u0437\u0444\u0438 \u049B\u0438\u043C\u0430\u0442\u04B3\u043E\u0438 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u04E3/\u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u04E3 -saving_comment_failed_error_code=\u0421\u0430\u0431\u0442\u0438 \u043D\u043E\u043A\u043E\u043C \u044D\u0437\u043E\u04B3 \u0431\u043E \u0440\u0430\u043C\u0437\u0438 \u0493\u0430\u043B\u0430\u0442 -organisation_unit=\u0412\u043E\u04B3\u0438\u0434\u0438 \u0421\u043E\u0445\u0442\u043E\u0440 -value_of_data_element_greater=\u049A\u0438\u043C\u0430\u0442\u0438 \u04B7\u0443\u0437\u044A\u0438 \u0434\u043E\u0434\u0430\u04B3\u043E\u0438 \u0437\u0435\u0440\u0438\u043D \u0431\u0443\u0437\u0443\u0440\u0433\u0442\u0430\u0440 \u0430\u0437 \u049B\u0438\u043C\u0430\u0442\u0438 \u049B\u0430\u0431\u0443\u043B\u0448\u0443\u0434\u0430\u0438 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u0438\u0441\u0442 -yes=\u0411\u0430\u043B\u0435 -max=\u041C\u0430\u043A\u0441 -generate_min_max=\u042D\u04B7\u043E\u0434\u0438 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u04E3/\u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u04E3 -validation_result=\u041D\u0430\u0442\u0438\u04B7\u0430\u0438 \u0421\u0430\u043D\u04B7\u0438\u0448\u0438 \u04B2\u0430\u049B\u049B\u043E\u043D\u0438\u044F\u0442 -value_of_data_element_less=\u049A\u0438\u043C\u0430\u0442\u0438 \u04B7\u0443\u0437\u044A\u0438 \u0434\u043E\u0434\u0430\u04B3\u043E\u0438 \u0437\u0435\u0440\u0438\u043D \u0445\u0443\u0440\u0434\u0442\u0430\u0440 \u0430\u0437 \u049B\u0438\u043C\u0430\u0442\u0438 \u049B\u0430\u0431\u0443\u043B\u0448\u0443\u0434\u0430\u0438 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u0438\u0441\u0442 -save=\u0421\u0430\u0431\u0442 -saving_minmax_failed_error_code=\u0421\u0430\u0431\u0442\u0438 \u043D\u043E\u043A\u043E\u043C\u0438 \u049B\u0438\u043C\u0430\u0442\u04B3\u043E\u0438 \u043C\u0438\u043D/\u043C\u0430\u0445 \u0431\u043E \u0440\u0430\u043C\u0437\u0438 \u0493\u0430\u043B\u0430\u0442 -left_description=\u0422\u0430c\u0432\u0438\u0440\u0438 \u0427\u0430\u043F -comment=\u042D\u0437\u043E\u04B3 -dataelement_history=\u0422\u0430\u044A\u0440\u0438\u0445\u0438 \u04B7\u0443\u0437\u044A\u0438 \u0434\u043E\u0434\u0430\u04B3\u043E -minimum_must_less_than_maximum=\u049A\u0438\u043C\u0430\u0442\u0438 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u04E3 \u0431\u043E\u044F\u0434 \u0430\u0437 \u049B\u0438\u043C\u0430\u0442\u0438 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u04E3 \u0445\u0443\u0440\u0434 \u0431\u043E\u0448\u0430\u0434 -unsuccessful_validation=\u04B2\u0430\u049B\u049B\u043E\u043D\u0438\u044F\u0442\u0438 \u049B\u0438\u043C\u0430\u0442\u04B3\u043E \u0442\u0430\u0441\u0434\u0438\u049B \u043D\u0430\u0433\u0430\u0440\u0434\u0438\u0434. \u0425\u0430\u0442\u043E\u0433\u0438\u0438 \u0437\u0435\u0440\u0438\u043D \u0440\u0443\u0445 \u0434\u043E\u0434\: -specify_minimum_value=\u041B\u0443\u0442\u0444\u0430\u043D \u049B\u0438\u043C\u0430\u0442\u0438 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u0438\u0440\u043E \u043C\u0443\u0430\u0439\u044F\u043D \u0441\u043E\u0437\u0435\u0434 -code=\u0420\u0430\u043C\u0437 -change_order=\u0422\u0430\u0493\u0439\u0438\u0440\u0438 \u0422\u0430\u0440\u0442\u0438\u0431 -value=\u049A\u0438\u043C\u0430\u0442 -specify_maximum_value=\u041B\u0443\u0442\u0444\u0430\u043D \u049B\u0438\u043C\u0430\u0442\u0438 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u0438\u0440\u043E \u043C\u0443\u0430\u0439\u044F\u043D \u0441\u043E\u0437\u0435\u0434 -operator=\u0410\u043C\u0430\u043B -no_dataelement_selected=\u042F\u0433\u043E\u043D \u04B6\u04EF\u0437\u044A\u0438 \u0414\u043E\u0434\u0430\u04B3\u043E \u0418\u043D\u0442\u0438\u0445\u043E\u0431 \u041D\u0430\u0448\u0443\u0434\u0430\u0430\u0441\u0442 -data_element=\u04B6\u0443\u0437\u044A\u0438 \u0414\u043E\u0434\u0430\u04B3\u043E -minimum_value_must_integer=\u049A\u0438\u043C\u0430\u0442\u0438 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u04E3 \u0431\u043E\u044F\u0434 \u0431\u0443\u0442\u0443\u043D \u0431\u043E\u0448\u0430\u0434 -yes_no=\u0411\u0430\u043B\u0435/\u043D\u0435 -close=\u0411\u0430\u0441\u0442\u0430\u043D -type=\u041D\u0430\u0432\u044A -no_organisationunit_selected=\u042F\u0433\u043E\u043D \u0412\u043E\u04B3\u0438\u0434\u0438 \u0421\u043E\u0445\u0442\u043E\u0440 \u0418\u043D\u0442\u0438\u0445\u043E\u0431 \u041D\u0430\u0448\u0443\u0434\u0430\u0430\u0441\u0442 -nr=\u2116 -no=\u041D\u0435 -edit_min_max_for=\u0422\u0430\u04B3\u0440\u0438\u0440\u0438 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u04E3/\u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u04E3 \u0431\u0430\u0440\u043E\u0438 -min_limit=\u04B2\u0443\u0434\u0443\u0434\u0438 \u043C\u0438\u043D -later_periods=\u0414\u0430\u0432\u0440\u0430\u04B3\u043E\u0438 \u043E\u044F\u043D\u0434\u0430 -custom_comment=\u042D\u0437\u043E\u04B3\u0438 \u041C\u0430\u044A\u043C\u0443\u043B\u04E3 -period=\u0414\u0430\u0432\u0440\u0430 -order_by_code=\u041C\u0443\u0440\u0430\u0442\u0442\u0430\u0431\u0441\u043E\u0437\u04E3 \u043C\u0443\u0432\u043E\u0444\u0438\u049B\u0438 \u0440\u0430\u043C\u0437 -name=\u041D\u043E\u043C -format.date=yyyy-MM-dd -timestamp=\u049A\u0430\u0439\u0434\u0438 \u0412\u0430\u049B\u0442 -use_standard_form=\u0424\u043E\u0440\u043C\u0430\u04B3\u043E\u0438 \u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u0438\u0440\u043E \u0418\u0441\u0442\u0438\u0444\u043E\u0434\u0430 \u0411\u0430\u0440\u0435\u0434 -data_entry_is_not_possible=\u0412\u0443\u0440\u0443\u0434\u0438\u0414\u043E\u0434\u0430\u04B3\u043E \u0418\u043C\u043A\u043E\u043D\u043D\u043E\u043F\u0430\u0437\u0438\u0440 \u0430\u0441\u0442\! \u0428\u043E\u044F\u0434 \u041C\u0430\u04B7\u043C\u04EF\u0430\u0414\u043E\u0434\u0430\u04B3\u043E \u0425\u043E\u043B\u0438\u0441\u0442. -move=\u041A\u04EF\u0447\u043E\u043D\u0438\u0434\u0430\u043D -right_description=\u0422\u0430\u0441\u0432\u0438\u0440\u0438 \u0422\u0430\u0440\u0430\u0444\u0438 \u0420\u043E\u0441\u0442 -move_up=\u041A\u04EF\u0447\u043E\u043D\u0438\u0434\u0430\u043D \u0431\u0430 \u0431\u043E\u043B\u043E -reset_order_inherit=\u0410\u0437\u043D\u0430\u0432\u0441\u043E\u0437\u0438\u0438 \u0442\u0430\u0440\u0442\u0438\u0431\u043E\u0442/\u043C\u0435\u0440\u043E\u0441 \u0430\u0437 \u0433\u0443\u0437\u0430\u0448\u0442\u0430 -no_value=\u0411\u0435 \u049B\u0438\u043C\u0430\u0442 -expression=\u0418\u0444\u043E\u0434\u0430 -not_set=\u041D\u0430\u0441\u0431 \u043D\u0430\u0448\u0443\u0434\u0430 -average=\u041C\u04EF\u044A\u0442\u0430\u0434\u0438\u043B -earlier_periods=\u0414\u0430\u0432\u0440\u0430\u04B3\u043E\u0438 \u041F\u0435\u0448\u0438\u043D -text=\u041C\u0430\u0442\u043D -edit_min_max=\u0422\u0430\u04B3\u0440\u0438\u0440\u0438 \u043C\u0438\u043D\u0438\u043C\u0430\u043B\u04E3/\u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u04E3 -maximum_value_must_integer=\u049A\u0438\u043C\u0430\u0442\u0438 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u04E3 \u0431\u043E\u044F\u0434 \u0431\u0443\u0442\u0443\u043D \u0431\u043E\u0448\u0430\u0434 -no_comment=\u0411\u0435 \u044D\u0437\u043E\u04B3 -maximum=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u04E3 -value_must_integer=\u049A\u0438\u043C\u0430\u0442 \u0431\u043E\u044F\u0434 \u0431\u0443\u0442\u0443\u043D \u0431\u043E\u0448\u0430\u0434 -order_by_name=\u041C\u0443\u0440\u0430\u0442\u0442\u0430\u0431\u0441\u043E\u0437\u04E3 \u043C\u0443\u0432\u043E\u0444\u0438\u049B\u0438 \u043D\u043E\u043C -select=\u0418\u043D\u0442\u0438\u0445\u043E\u0431 -number=\u0420\u0430\u049B\u0430\u043C -move_down=\u049A\u04EF\u0447\u043E\u043D\u0438\u0434\u0430\u043D \u0431\u0430 \u043F\u043E\u0451\u043D -min=\u041C\u0438\u043D -minimum=\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u04E3 -cancel=\u0411\u0435\u043A\u043E\u0440 \u0421\u043E\u0445\u0442\u0430\u043D -no_period_selected=\u042F\u0433\u043E\u043D \u0414\u0430\u0432\u0440\u0430 \u0418\u043D\u0442\u0438\u0445\u043E\u0431 \u041D\u0430\u0448\u0443\u0434\u0430\u0430\u0441\u0442 -multidimensional_data_entry=\u0412\u0443\u0440\u0443\u0434\u043E\u0442\u0438 \u0414\u043E\u0434\u0430\u04B3\u043E\u0438 \u0427\u0430\u043D\u0434\u0447\u0435\u043D\u0430\u043A\u0430 -run_validation=\u0421\u0430\u043D\u04B7\u0438\u0448\u0438 \u04B3\u0430\u049B\u049B\u043E\u043D\u0438\u044F\u0442 === removed file 'labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_vi_VN.properties' --- labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_vi_VN.properties 2012-03-08 08:28:22 +0000 +++ labs/dhis-web-wap-client/src/main/resources/org/hisp/dhis/i18n_module_vi_VN.properties 1970-01-01 00:00:00 +0000 @@ -1,153 +0,0 @@ -value_type=Lo\u1ea1i gi\u00e1 tr\u1ecb -value_of_data_element_less=Gi\u00e1 tr\u1ecb c\u1ee7a th\u00e0nh ph\u1ea7n d\u1eef li\u1ec7u th\u1ea5p h\u01a1n gi\u00e1 tr\u1ecb nh\u1ecf nh\u1ea5t cho ph\u00e9p -value_of_data_element_greater=Gi\u00e1 tr\u1ecb c\u1ee7a th\u00e0nh ph\u1ea7n d\u1eef li\u1ec7u sau l\u1edbn h\u01a1n gi\u00e1 tr\u1ecb l\u1edbn nh\u1ea5t cho ph\u00e9p -value_must_number=Gi\u00e1 tr\u1ecb ph\u1ea3i l\u00e0 m\u1ed9t s\u1ed1 th\u1ef1c v\u00e0 \u0111\u1ed9 \u0111\u00e0i d\u01b0\u1edbi 255 k\u00fd t\u1ef1. -value_must_integer=Gi\u00e1 tr\u1ecb ph\u1ea3i l\u00e0 m\u1ed9t s\u1ed1 nguy\u00ean v\u00e0 \u0111\u1ed9 \u0111\u00e0i d\u01b0\u1edbi 255 k\u00fd t\u1ef1. -value_must_positive_integer=Gi\u00e1 tr\u1ecb ph\u1ea3i l\u00e0 m\u1ed9t s\u1ed1 nguy\u00ean d\u01b0\u01a1ng v\u00e0 \u0111\u1ed9 \u0111\u00e0i d\u01b0\u1edbi 255 k\u00fd t\u1ef1. -value_must_negative_integer=Gi\u00e1 tr\u1ecb ph\u1ea3i l\u00e0 m\u1ed9t s\u1ed1 nguy\u00ean \u00e2m v\u00e0 \u0111\u1ed9 \u0111\u00e0i d\u01b0\u1edbi 255 k\u00fd t\u1ef1. -field_unallowed_save_zero=Ph\u1ea7n t\u1eed n\u00e0y kh\u00f4ng l\u01b0u gi\u00e1 tr\u1ecb 0. Gi\u00e1 tr\u1ecb c\u0169 kh\u00f4ng b\u1ecb \u1ea3nh h\u01b0\u1edfng. -value_date=Gi\u00e1 tr\u1ecb ng\u00e0y th\u00e1ng -value=Gi\u00e1 tr\u1ecb -validation_rule=Quy lu\u1eadt ki\u1ec3m tra t\u00ednh h\u1ee3p l\u1ec7 -validation_result=K\u1ebft qu\u1ea3 ki\u1ec3m tra t\u00ednh h\u1ee3p l\u1ec7 -validate=Ki\u1ec3m tra t\u00ednh h\u1ee3p l\u1ec7 -use_standard_form=Nh\u1eadp theo m\u1eabu chu\u1ea9n -use_short_names=S\u1eed d\u1ee5ng t\u00ean vi\u1ebft t\u1eaft -use_section_form=Nh\u1eadp theo t\u1eeb ph\u1ea7n -use_default_form=D\u00f9ng giao di\u1ec7n m\u1eb7c \u0111\u1ecbnh -up=L\u00ean -unsuccessful_validation=Gi\u00e1 tr\u1ecb kh\u00f4ng h\u1ee3p l\u1ec7. C\u1ee5 th\u1ec3 nh\u01b0 sau: -undo=S\u1eeda l\u1ea1i b\u00e1o c\u00e1o -type=Ki\u1ec3u d\u1eef li\u1ec7u -to=th\u00e0nh -timestamp=Th\u1eddi \u0111i\u1ec3m -the_following_values_violates_rules=C\u00e1c gi\u00e1 tr\u1ecb sau \u0111\u00e2y kh\u00f4ng h\u1ee3p l\u1ec7 -the_following_values_are_outliers=The following values are considered as outliers (min-max or std dev). -successful_validation=Gi\u00e1 tr\u1ecb h\u1ee3p l\u1ec7 -stored_by=Ng\u01b0\u1eddi nh\u1eadp li\u1ec7u -specify_valid_input_date=Vui l\u00f2ng ch\u1ec9 \u0111\u1ecbnh m\u1ed9t ng\u00e0y nh\u1eadp h\u1ee3p l\u1ec7 -specify_minimum_value=Vui l\u00f2ng ch\u1ec9 \u0111\u1ecbnh gi\u00e1 tr\u1ecb nh\u1ecf nh\u1ea5t -specify_maximum_value=Vui l\u00f2ng ch\u1ec9 \u0111\u1ecbnh gi\u00e1 tr\u1ecb l\u1edbn nh\u1ea5t -specify_input_date=Vui l\u00f2ng ch\u1ec9 \u0111\u1ecbnh ng\u00e0y nh\u1eadp -select=Ch\u1ecdn -saving_value_failed_status_code=L\u01b0u gi\u00e1 tr\u1ecb kh\u00f4ng th\u00e0nh c\u00f4ng v\u1edbi m\u00e3 tr\u1ea1ng th\u00e1i -saving_value_failed_error_code=L\u01b0u gi\u00e1 tr\u1ecb kh\u00f4ng th\u00e0nh c\u00f4ng v\u1edbi m\u00e3 l\u1ed7i -saving_minmax_failed_error_code=L\u01b0u gi\u00e1 tr\u1ecb l\u1edbn nh\u1ea5t/nh\u1ecf nh\u1ea5t kh\u00f4ng th\u00e0nh c\u00f4ng v\u1edbi m\u00e3 l\u1ed7i -saving_comment_failed_status_code=L\u01b0u ch\u00fa th\u00edch kh\u00f4ng th\u00e0nh c\u00f4ng v\u1edbi m\u00e3 tr\u1ea1ng th\u00e1i -saving_comment_failed_error_code=L\u01b0u ch\u00fa th\u00edch kh\u00f4ng th\u00e0nh c\u00f4ng v\u1edbi m\u00e3 l\u1ed7i -run_validation=Ki\u1ec3m tra d\u1eef li\u1ec7u -right_description=M\u00f4 t\u1ea3 v\u1ebf ph\u1ea3i -reset_order_inherit=Thi\u1ebft l\u1eadp th\u1ee9 t\u1ef1/th\u1eeba k\u1ebf t\u1eeb cha -please_design_a_custom_form=Vui l\u00f2ng thi\u1ebft k\u1ebf m\u1ed9t giao di\u1ec7n cho t\u1eadp h\u1ee3p d\u1eef li\u1ec7u n\u00e0y! -period=Th\u1eddi \u0111i\u1ec3m -organisation_unit=\u0110\u01a1n v\u1ecb -order_by_name=Th\u1ee9 t\u1ef1 theo t\u00ean -order_by_entry=Th\u1ee9 t\u1ef1 theo \u0111\u0103ng k\u00fd -order_by_code=Th\u1ee9 t\u1ef1 theo m\u00e3 -on=V\u00e0o l\u00fac -nr=S\u1ed1 -not_set=Ch\u01b0a thi\u1ebft l\u1eadp -not_equal_to=Kh\u00f4ng b\u1eb1ng -no_value=Kh\u00f4ng c\u00f3 gi\u00e1 tr\u1ecb -no_period_selected=Kh\u00f4ng th\u1eddi \u0111i\u1ec3m n\u00e0o \u0111\u01b0\u1ee3c ch\u1ecdn -no_outlier_values_found=Kh\u00f4ng t\u00ecm th\u1ea5y gi\u00e1 tr\u1ecb b\u00ean ngo\u00e0i n\u00e0o. -no_organisationunit_selected=Kh\u00f4ng \u0111\u01a1n v\u1ecb n\u00e0o \u0111\u01b0\u1ee3c ch\u1ecdn -no_option_selected=Kh\u00f4ng t\u00f9y ch\u1ecdn n\u00e0o \u0111\u01b0\u1ee3c ch\u1ecdn -no_dataelement_selected=Kh\u00f4ng th\u00e0nh ph\u1ea7n d\u1eef li\u1ec7u n\u00e0o \u0111\u01b0\u1ee3c ch\u1ecdn -no_comment=Kh\u00f4ng c\u00f3 ch\u00fa th\u00edch -multidimensional_data_entry=Nh\u1eadp d\u1eef li\u1ec7u \u0111a chi\u1ec1u -move_up=Di chuy\u1ec3n l\u00ean tr\u00ean -move_down=Di chuy\u1ec3n xu\u1ed1ng d\u01b0\u1edbi -minimum_value_must_integer=Gi\u00e1 tr\u1ecb nh\u1ecf nh\u1ea5t ph\u1ea3i l\u00e0 m\u1ed9t s\u1ed1 nguy\u00ean -minimum_must_less_than_maximum=Gi\u00e1 tr\u1ecb nh\u1ecf nh\u1ea5t ph\u1ea3i nh\u1ecf h\u01a1n gi\u00e1 tr\u1ecb l\u1edbn nh\u1ea5t -minimum=Nh\u1ecf nh\u1ea5t -min_max_values=Gi\u00e1 tr\u1ecb l\u1edbn nh\u1ea5t/nh\u1ecf nh\u1ea5t -min_max_limits=Gi\u1edbi h\u1ea1n l\u1edbn nh\u1ea5t - nh\u1ecf nh\u1ea5t -min_limit=Gi\u1edbi h\u1ea1n th\u1ea5p nh\u1ea5t -min=Nh\u1ecf nh\u1ea5t -maximum_value_must_integer=Gi\u00e1 tr\u1ecb l\u1edbn nh\u1ea5t ph\u1ea3i l\u00e0 m\u1ed9t s\u1ed1 nguy\u00ean -maximum=L\u1edbn nh\u1ea5t -max_limit=Gi\u1edbi h\u1ea1n cao nh\u1ea5t -max=L\u1edbn nh\u1ea5t -less_than=B\u00e9/\u00cdt h\u01a1n -left_description=M\u00f4 t\u1ea3 v\u1ebf tr\u00e1i -later_periods=Th\u1eddi k\u1ef3 sau -interpolation=Ph\u00e9p n\u1ed9i suy -import_from_excel=Nh\u1eadp t\u1eeb file Excel (M\u1eabu \u0111\u00e3 \u0111\u01b0\u1ee3c xu\u1ea5t ra) -history_not_valid=L\u1ecbch s\u1eed d\u1eef li\u1ec7u kh\u00f4ng \u0111\u01b0\u1ee3c \u00e1p d\u1ee5ng cho ph\u1ea7n t\u1eed d\u1eef li\u1ec7u n\u00e0y! -greater_than_or_equal_to=L\u1edbn h\u01a1n ho\u1eb7c b\u1eb1ng -greater_than=L\u1edbn h\u01a1n -generate_values=Ph\u00e1t sinh gi\u00e1 tr\u1ecb -generate_missing_values=Ph\u00e1t sinh nh\u1eefng gi\u00e1 tr\u1ecb ch\u01b0a c\u00f3 -followup=Ti\u1ebfp theo -expression=Bi\u1ec3u th\u1ee9c -export_entry_template=Xu\u1ea5t m\u00e0n h\u00ecnh nh\u1eadp li\u1ec7u ra file Excel -equal_to=B\u1eb1ng v\u1edbi -entry=Gi\u00e1 tr\u1ecb -enter_digits=Ch\u1ec9 nh\u1eadp k\u00fd t\u1ef1 s\u1ed1 -edit_min_max_for=Ch\u1ec9nh s\u1eeda gi\u00e1 tr\u1ecb nh\u1ecf nh\u1ea5t / l\u1edbn nh\u1ea5t cho -edit_min_max=Ch\u1ec9nh s\u1eeda gi\u00e1 tr\u1ecb nh\u1ecf nh\u1ea5t / l\u1edbn nh\u1ea5t -earlier_periods=Th\u1eddi k\u1ef3 tr\u01b0\u1edbc -dv_updated=\u0110\u00e3 c\u1eadp nh\u1eadt -dv_deleted=\u0110\u00e3 x\u00f3a -dv_added=\u0110\u00e3 th\u00eam -down=Xu\u1ed1ng -delete_min_max_values=X\u00f3a gi\u00e1 tr\u1ecb nh\u1ecf nh\u1ea5t / l\u1edbn nh\u1ea5t -date=Ng\u00e0y -datavalue_history=L\u1ecbch s\u1eed gi\u00e1 tr\u1ecb d\u1eef li\u1ec7u -dataelement_history=L\u1ecbch s\u1eed ph\u1ea7n t\u1eed d\u1eef li\u1ec7u -dataelement_comment=Ch\u00fa th\u00edch -data_set=T\u1eadp h\u1ee3p d\u1eef li\u1ec7u -data_entry_is_not_possible=Kh\u00f4ng th\u1ec3 nh\u1eadp d\u1eef li\u1ec7u v\u00ec t\u1eadp h\u1ee3p d\u1eef li\u1ec7u ch\u01b0a c\u00f3 ph\u1ea7n t\u1eed. -data_entry=Nh\u1eadp d\u1eef li\u1ec7u -data_element_order=Th\u1ee9 t\u1ef1 th\u00e0nh ph\u1ea7n d\u1eef li\u1ec7u -custom_comment=Ch\u00fa th\u00edch ng\u1eabu nhi\u00ean -confirm_undo=B\u1ea1n c\u00f3 ch\u1eafc ch\u1eafn b\u1ea1n s\u1ebd x\u00f3a b\u1ecf vi\u1ec7c \u0111\u0103ng k\u00ed n\u00e0y? -confirm_complete=B\u1ea1n c\u00f3 ch\u1eafc ch\u1eafn t\u1eadp h\u1ee3p d\u1eef li\u1ec7u n\u00e0y \u0111\u00e3 ho\u00e0n ch\u1ec9nh? -complete=Ho\u00e0n Ch\u1ec9nh -code=M\u00e3 ph\u1ea7n t\u1eed d\u1eef li\u1ec7u -change_order=\u0110\u1ed5i th\u1ee9 t\u1ef1 -change_from=thay \u0111\u1ed5i -change=Thay \u0111\u1ed5i -audit_value=Ki\u1ec3m tra gi\u00e1 tr\u1ecb -audit_to=\u0110\u1ebfn -audit_time=Th\u1eddi gian ki\u1ec3m tra -audit_stored_by=Th\u1ef1c hi\u1ec7n b\u1edfi -audit_operation=Lo\u1ea1i thao t\u00e1c -audit_from=T\u1eeb -audit=Ki\u1ec3m tra gi\u00e1 tr\u1ecb d\u1eef li\u1ec7u -please_select=H\u00e3y ch\u1ecdn -open_entry_form=M\u1edf m\u1eabu nh\u1eadp -hide_entry_form=\u1ea8n m\u1eabu nh\u1eadp -available_sections=Section hi\u1ec7n c\u00f3 -import_export=Nh\u1eadp/Xu\u1ea5t -data_element=Ph\u1ea7n t\u1eed d\u1eef li\u1ec7u -move=Di chuy\u1ec3n -generate_min_max=Sinh tr\u1ecb Nh\u1ecf nh\u1ea5t/L\u1edbn nh\u1ea5t -the_following_values_violate_rules=C\u00e1c gi\u00e1 tr\u1ecb sau vi ph\u1ea1m lu\u1eadt -operator=To\u00e1n t\u1eed -use_custom_form=D\u00f9ng m\u1eabu t\u1ef1 thi\u1ebft k\u1ebf -incomplete=Ch\u01b0a ho\u00e0n t\u1ea5t -register_complete_dataset_success=T\u1eadp d\u1eef li\u1ec7u ho\u00e0n ch\u1ec9nh \u0111\u01b0\u1ee3c \u0111\u0103ng k\u00fd -register_complete_dataset_failed=T\u1eadp d\u1eef li\u1ec7u ho\u00e0n ch\u1ec9nh \u0111\u0103ng k\u00fd th\u1ea5t b\u1ea1i -undo_register_complete_dataset_success=Th\u1eed \u0111\u0103ng k\u00fd l\u1ea1i t\u1eadp d\u1eef li\u1ec7u ho\u00e0n ch\u1ec9nh th\u00e0nh c\u00f4ng -generate_min_max_success=C\u00e1c tr\u1ecb Nh\u1ecf nh\u1ea5t/L\u1edbn nh\u1ea5t \u0111\u00e3 \u0111\u01b0\u1ee3c sinh -value_is_too_long=Gi\u00e1 tr\u1ecb qu\u00e1 d\u00e0i -max_must_be_greater_than_min=Gi\u00e1 tr\u1ecb l\u1edbn nh\u1ea5t ph\u1ea3i l\u1edbn h\u01a1n gi\u00e1 tr\u1ecb nh\u1ecf nh\u1ea5t -next=K\u1ebf ti\u1ebfp -prev=Tr\u01b0\u1edbc -select_from_tree=Ch\u1ecdn t\u1eeb c\u00e2y \u1edf v\u1ebf tr\u00e1i -select_data_set=Ch\u1ecdn bi\u1ec3u nh\u1eadp -select_period=Ch\u1ecdn th\u1eddi \u0111i\u1ec3m -no_response_from_server=Kh\u00f4ng c\u00f3 ph\u1ea3n h\u1ed3i t\u1eeb m\u00e1y ch\u1ee7, h\u00e3y ki\u1ec3m tra l\u1ea1i k\u1ebft n\u1ed1i v\u00e0 th\u1eed l\u1ea1i -save=L\u01b0u l\u1ea1i -save_comment=L\u01b0u l\u1ea1i ghi ch\u00fa -operation_not_available_offline=Ho\u1ea1t \u0111\u1ed9ng n\u00e0y kh\u00f4ng c\u00f2n gi\u00e1 tr\u1ecb trong ch\u1ebf \u0111\u1ed9 off-line -online_notification=B\u1ea1n \u0111ang on-line -offline_notification=B\u1ea1n \u0111ang off-line, d\u1eef li\u1ec7u s\u1ebd \u0111\u01b0\u1ee3c l\u01b0u tr\u1eef c\u1ee5c b\u1ed9 -need_to_sync_notification=Hi\u1ec7n t\u1ea1i d\u1eef li\u1ec7u \u0111\u01b0\u1ee3c l\u01b0u tr\u1eef c\u1ee5c b\u1ed9 h\u00e3y g\u1eedi l\u00ean m\u00e1y ch\u1ee7 -sync_now=T\u1ea3i l\u00ean -sync_success=T\u1ea3i l\u00ean m\u00e1y ch\u1ee7 kh\u00f4ng th\u00e0nh c\u00f4ng -sync_failed=T\u1ea3i l\u00ean m\u00e1y ch\u1ee7 th\u1ea5t b\u1ea1i h\u00e3y th\u1eed l\u1ea1i l\u1ea7n n\u1eefa -uploading_data_notification=\u0110ang t\u1ea3i d\u1eef li\u1ec7u c\u1ee5c b\u1ed9 l\u00ean m\u00e1y ch\u1ee7 -ajax_login_failed=\u0110\u0103ng nh\u1eadp th\u1ea5t b\u1ea1i, h\u00e3y ki\u1ec3m tra l\u1ea1i t\u00e0i kho\u1ea3n \u0111\u0103ng nh\u1eadp c\u1ee7a b\u1ea1n === removed file 'labs/dhis-web-wap-client/src/main/resources/struts.xml' --- labs/dhis-web-wap-client/src/main/resources/struts.xml 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/resources/struts.xml 1970-01-01 00:00:00 +0000 @@ -1,28 +0,0 @@ - - - - - - - - - - /dhis-web-wap-client/mainForm.vm - /dhis-web-wap-client/style/default.css - - - - /dhis-web-wap-client/availableFacilityReportsForm.vm - - /dhis-web-wap-client/style/default.css - - - - /dhis-web-wap-client/displayDataElements.vm - - - - - === removed directory 'labs/dhis-web-wap-client/src/main/webapp' === removed directory 'labs/dhis-web-wap-client/src/main/webapp/WEB-INF' === removed file 'labs/dhis-web-wap-client/src/main/webapp/WEB-INF/web.xml' --- labs/dhis-web-wap-client/src/main/webapp/WEB-INF/web.xml 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/webapp/WEB-INF/web.xml 1970-01-01 00:00:00 +0000 @@ -1,60 +0,0 @@ - - - - DHIS WAP CLIENT - - - contextConfigLocation - classpath*:/META-INF/dhis/beans.xml - - - automaticAccessType - ghostAdmin - - - - RedirectFilter - org.hisp.dhis.servlet.filter.HttpRedirectFilter - - redirectPath - dhis-web-wap-client/MainFormAction.action - - - - OpenSessionInViewFilter - org.springframework.orm.hibernate3.support.OpenSessionInViewFilter - - - springSecurityFilterChain - org.springframework.web.filter.DelegatingFilterProxy - - - Struts - org.apache.struts2.dispatcher.FilterDispatcher - - - - RedirectFilter - / - - - OpenSessionInViewFilter - *.action - - - springSecurityFilterChain - /* - - - Struts - *.action - - - - org.springframework.web.context.ContextLoaderListener - - - org.hisp.dhis.system.startup.StartupListener - - === removed directory 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client' === removed file 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/availableFacilityReportsForm.vm' --- labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/availableFacilityReportsForm.vm 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/availableFacilityReportsForm.vm 1970-01-01 00:00:00 +0000 @@ -1,16 +0,0 @@ - - - -
- -

Choose a Report

-#foreach($str in $dataSetsForMobile) -

$str.name

-#end - -

- -

-
- - === removed file 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/displayDataElements.vm' --- labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/displayDataElements.vm 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/displayDataElements.vm 1970-01-01 00:00:00 +0000 @@ -1,18 +0,0 @@ -## Velocity Template. - - - - - -
- -

Please fill this:

- -#foreach($element in $dataElements) -

$element.name
-

-#end - -
- - === removed file 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/facility.html' --- labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/facility.html 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/facility.html 1970-01-01 00:00:00 +0000 @@ -1,16 +0,0 @@ - - - - - - -

Select a Form :

- -

  • Sub Centre Daily Mobile Dataset -

    - - - - - === removed directory 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/javascript' === removed file 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/mainForm.vm' --- labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/mainForm.vm 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/mainForm.vm 1970-01-01 00:00:00 +0000 @@ -1,13 +0,0 @@ - - - -

    Choose One Please

    - -
    - -
    - - -
    - -
    === removed file 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/menu.vm' --- labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/menu.vm 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/menu.vm 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -this is the main page \ No newline at end of file === removed directory 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/style' === removed file 'labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/style/default.css' --- labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/style/default.css 2011-09-19 20:31:44 +0000 +++ labs/dhis-web-wap-client/src/main/webapp/dhis-web-wap-client/style/default.css 1970-01-01 00:00:00 +0000 @@ -1,30 +0,0 @@ - - -body { - font-family: arial; - background-color: #d5ffc5; - } -h3 { - background-color:#CCC; - border: 1px solid; - color:#39F; - text-align: left; - } - -p { - color:coral; - text-indent: 0px; - } -img { - padding:0; - border:0; - margin:0; - } -radio{ - color:#0EACDB; - padding:0px; - border:none; - margin:0px; - text-decoration:none; - } -