diff --git a/lib/l10n/app_en.arb b/lib/l10n/app_en.arb index 0792944f..fe1a160a 100644 --- a/lib/l10n/app_en.arb +++ b/lib/l10n/app_en.arb @@ -217,8 +217,8 @@ "operatingHours": "Operating Hours", "partName": "Part Name", "quantity": "Quantity", - "installedQty": "Installed Qty", - "returnQty": "Return Qty", + "installedQty": "Installed Quantity", + "returnQty": "Return Quantity", "oracleNo": "Oracle No.", "reasons": "Reasons", "addSparePartActionHeading": "Do you want to create another spare part request?", diff --git a/lib/service_request_latest/views/forms/spare_part/spare_part_request.dart b/lib/service_request_latest/views/forms/spare_part/spare_part_request.dart index 8b779152..2b4ff463 100644 --- a/lib/service_request_latest/views/forms/spare_part/spare_part_request.dart +++ b/lib/service_request_latest/views/forms/spare_part/spare_part_request.dart @@ -187,7 +187,7 @@ class _SparePartRequestState extends State with TickerProvider if(showInstallAndReturnQty) ...[ AppTextFormField( controller: _installQtyController, - labelText: context.translation.quantity, + labelText: context.translation.installedQty, textInputType: TextInputType.number, labelStyle: AppTextStyles.textFieldLabelStyle, showWithoutDecoration: true, @@ -208,7 +208,7 @@ class _SparePartRequestState extends State with TickerProvider 12.height, AppTextFormField( controller: _returnQtyController, - labelText: context.translation.quantity, + labelText: context.translation.returnQty, textInputType: TextInputType.number, labelStyle: AppTextStyles.textFieldLabelStyle, showWithoutDecoration: true,