Merge branch 'dev-pending-01-02-2026' into PRE-PRODUCTION-2026-OSHO

PRE-PRODUCTION-2026-OSHO
Naeem Ullah 5 days ago
commit b82833b5ba

@ -184,9 +184,9 @@
<th scope="col">{{ "crAccount" | translate }}</th> <th scope="col">{{ "crAccount" | translate }}</th>
<th scope="col">{{ "drPcaGlacode" | translate }}</th> <th scope="col">{{ "drPcaGlacode" | translate }}</th>
<th scope="col">{{ "crPcaglacode" | translate }}</th> <th scope="col">{{ "crPcaglacode" | translate }}</th>
<th scope="col">{{ "transactionUri" | translate }}</th>
<th scope="col">{{ "transactionCode" | translate }}</th> <th scope="col">{{ "transactionCode" | translate }}</th>
<th scope="col">{{ "paymentMode" | translate }}</th> <th scope="col">{{ "transactionUri" | translate }}</th>
<!-- <th scope="col">{{ "paymentMode" | translate }}</th> -->
<th scope="col">{{ "date" | translate }}</th> <th scope="col">{{ "date" | translate }}</th>
<th scope="col">{{ "channel" | translate }}</th> <th scope="col">{{ "channel" | translate }}</th>
<th scope="col">{{ "createdAt" | translate }}</th> <th scope="col">{{ "createdAt" | translate }}</th>
@ -203,7 +203,7 @@
'crPcaglacode', 'crPcaglacode',
'transactionUri', 'transactionUri',
'transactionCode', 'transactionCode',
'ppmPymdcode',
'sgtGntrdate', 'sgtGntrdate',
'channelCode', 'channelCode',
'createdAt' 'createdAt'
@ -217,7 +217,7 @@
<td>{{ log.crPcaglacode || '-' }}</td> <td>{{ log.crPcaglacode || '-' }}</td>
<td><small class="text-muted">{{ log.transactionUri || 'N/A' }}</small></td> <td><small class="text-muted">{{ log.transactionUri || 'N/A' }}</small></td>
<td><span class="badge bg-secondary">{{ log.transactionCode || 'N/A' }}</span></td> <td><span class="badge bg-secondary">{{ log.transactionCode || 'N/A' }}</span></td>
<td>{{ log.ppmPymdcode || '-' }}</td> <!-- <td>{{ log.ppmPymdcode || '-' }}</td> -->
<td>{{ log.sgtGntrdate | date: 'MMM dd, yyyy' }}</td> <td>{{ log.sgtGntrdate | date: 'MMM dd, yyyy' }}</td>
<td>{{ log.channelCode || '-' }}</td> <td>{{ log.channelCode || '-' }}</td>
<td>{{ log.createdAt | date: 'MMM dd, yyyy HH:mm' }}</td> <td>{{ log.createdAt | date: 'MMM dd, yyyy HH:mm' }}</td>

@ -203,9 +203,10 @@
<div <div
class="password-wrapper position-relative w-100" class="password-wrapper position-relative w-100"
> >
<input <div class="password-wrapper">
<input
id="defaultPassword" id="defaultPassword"
type="password" [type]="passwordType"
class="form-control" class="form-control"
formControlName="defaultPassword" formControlName="defaultPassword"
name="defaultPassword" name="defaultPassword"
@ -214,7 +215,10 @@
}}" }}"
appNoWhitespaces appNoWhitespaces
/> />
<app-password-hide-show #passShowSetupUser class="password-eye align-items" [showPassword]="true"
(onEyeClick)="toggleSetupPass()"></app-password-hide-show>
</div>
<div <div
class="text-danger" class="text-danger"
*ngIf=" *ngIf="

@ -1,5 +1,5 @@
import { CommonModule } from '@angular/common'; import { CommonModule } from '@angular/common';
import { Component, OnInit } from '@angular/core'; import { Component, OnInit, ViewChild } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NgSelectModule } from '@ng-select/ng-select'; import { NgSelectModule } from '@ng-select/ng-select';
import { TranslateModule } from '@ngx-translate/core'; import { TranslateModule } from '@ngx-translate/core';
@ -15,11 +15,12 @@ import { HttpURIService } from '../../app.http.uri.service';
import { I18NService } from '../../services/i18n.service'; import { I18NService } from '../../services/i18n.service';
import { SuccessMessages, ErrorMessages } from '../../utils/enums'; import { SuccessMessages, ErrorMessages } from '../../utils/enums';
import { ResetPasswordModalComponent } from '../reset-password-modal/reset-password-modal.component'; import { ResetPasswordModalComponent } from '../reset-password-modal/reset-password-modal.component';
import { PasswordHideShowComponent } from '../../shared/components/password-hide-show/password-hide-show.component';
@Component({ @Component({
selector: 'app-setup-user', selector: 'app-setup-user',
standalone: true, standalone: true,
imports: [TranslateModule, ReactiveFormsModule, FormsModule, CommonModule, NgSelectModule, TableFilterPipe, ResetPasswordModalComponent], imports: [TranslateModule, ReactiveFormsModule, FormsModule, CommonModule, NgSelectModule, TableFilterPipe, ResetPasswordModalComponent, PasswordHideShowComponent],
templateUrl: './setup-user.component.html', templateUrl: './setup-user.component.html',
styleUrl: './setup-user.component.scss' styleUrl: './setup-user.component.scss'
}) })
@ -39,7 +40,7 @@ export class SetupUserComponent implements OnInit {
renewalDataExpanded: boolean = true; renewalDataExpanded: boolean = true;
totalCount: number = 0; totalCount: number = 0;
mode: 'create' | 'edit' = 'create'; mode: 'create' | 'edit' = 'create';
passwordType: string = 'password';
userSetupDataExpanded: boolean = true; userSetupDataExpanded: boolean = true;
buttonPermissions: any; buttonPermissions: any;
isLoading: boolean = false; isLoading: boolean = false;
@ -52,6 +53,7 @@ export class SetupUserComponent implements OnInit {
{ label: 'Admin', value: 'ADMIN' }, { label: 'Admin', value: 'ADMIN' },
{ label: 'User', value: 'USER' }, { label: 'User', value: 'USER' },
]; ];
@ViewChild('passShowSetupUser') passwordHideShow?: PasswordHideShowComponent;
constructor( constructor(
private fb: FormBuilder, private fb: FormBuilder,
@ -61,6 +63,9 @@ export class SetupUserComponent implements OnInit {
private i18nService: I18NService private i18nService: I18NService
) {} ) {}
toggleSetupPass() {
this.passwordType = this.passwordHideShow?.showPassword ? 'password' : 'text';
}
onSearch(value: string): void { onSearch(value: string): void {
this.searchText = value; this.searchText = value;
} }

@ -297,8 +297,6 @@
"expand": "توسيع", "expand": "توسيع",
"entries": "إدخالات", "entries": "إدخالات",
"dateFilter": "تصفية التاريخ", "dateFilter": "تصفية التاريخ",
"fromDate": "من تاريخ",
"toDate": "إلى تاريخ",
"clearFilter": "مسح التصفية", "clearFilter": "مسح التصفية",
"activeFilter": "التصفية نشطة", "activeFilter": "التصفية نشطة",
"from": "من", "from": "من",

@ -1,316 +1,305 @@
{ {
"logintoAccount": "Login to your account",
"userName": "Username", "logintoAccount":"Login to your account",
"userNamePlaceHolder": "Enter Username", "userName":"Username",
"password": "Password", "userNamePlaceHolder":"Enter Username",
"passwordPlaceHolder": "Enter Password", "password":"Password",
"defaultPassword": "Default Password", "passwordPlaceHolder":"Enter Password",
"rememberMe": "Remember me", "defaultPassword":"Default Password",
"forgotPassword": "Forgot password?", "rememberMe":"Remember me",
"login": "Login", "forgotPassword":"Forgot password?",
"dashboardTitle": "Dashboard", "login":"Login",
"monthlyReqTitle": "Monthly Requests", "dashboardTitle":"Dashboard",
"monthlySmsTitle": "Monthly SMS", "monthlyReqTitle":"Monthly Requests",
"dashboard": "Dashboard", "monthlySmsTitle":"Monthly SMS",
"UserManagement": "User Management", "dashboard":"Dashboard",
"thirdPartyRegistration": "Third Party Registration", "UserManagement":"User Management",
"setupUser": "Setup User", "thirdPartyRegistration":"Third Party Registration",
"resetPassword": "Reset User Password", "setupUser":"Setup User",
"changePassword": "Change Password", "resetPassword":"Reset User Password",
"Logging": "Logging", "changePassword":"Change Password",
"loggerManager": "Logger Manager", "Logging":"Logging",
"loggerManagerDetails": "Logger Manager Details", "loggerManager":"Logger Manager",
"SMSBanking": "SMS Banking", "loggerManagerDetails":"Logger Manager Details",
"smsLogger": "SMS Logger", "SMSBanking":"SMS Banking",
"smsLoggerDetails": "SMS Logger Details", "smsLogger":"SMS Logger",
"smsGateway": "SMS Gateway", "smsLoggerDetails": "SMS Logger Details",
"ibUnblockUser": "UnBlock IB User", "smsGateway":"SMS Gateway",
"ibSupport": "IB Support", "ibUnblockUser": "UnBlock IB User",
"Permissions": "Permissions", "ibSupport": "IB Support",
"permissions": "Permission Manager", "Permissions":"Permissions",
"TodayTotalRequests": "Today Total Requests", "permissions":"Permission Manager",
"TodayTotalSms": "Today Total Sms", "TodayTotalRequests":"Today Total Requests",
"DescriptionUserPermission": "Description", "TodayTotalSms":"Today Total Sms",
"PermissionsUserPermission": "Permissions", "DescriptionUserPermission":"Description",
"SaveUserPermission": "Save", "PermissionsUserPermission":"Permissions",
"UpdateUserPermission": "Update", "SaveUserPermission":"Save",
"DeleteUserPermission": "Delete", "UpdateUserPermission":"Update",
"ViewUserPermission": "View", "DeleteUserPermission":"Delete",
"SelectUser": "Select User", "ViewUserPermission":"View",
"SelectAUser": "Select a User", "SelectUser":"Select User",
"loggingTitle": "Logging", "SelectAUser":"Select a User",
"IBChildTitle": "UnBlock User", "loggingTitle":"Logging",
"unblockUserDetails": "Unblock User Details", "IBChildTitle":"UnBlock User",
"IBTitle": "Internet Banking Support", "unblockUserDetails": "Unblock User Details",
"loggingChildTitle": "Logger Manager", "IBTitle":"Internet Banking Support",
"fromDate": "From Date", "loggingChildTitle":"Logger Manager",
"custId": "Customer Identity Value", "fromDate":"From Date",
"toDate": "To Date", "custId":"Customer Identity Value",
"findLogs": "Find Logs", "toDate":"To Date",
"unBlockCustomer": "UnBlock Customer", "findLogs":"Find Logs",
"fetchCustomer": "Find Customer", "unBlockCustomer":"UnBlock Customer",
"loggingID": "Id", "fetchCustomer":"Find Customer",
"firstName": "First Name", "loggingID":"Id",
"lastName": "Last Name", "firstName":"First Name",
"cmpCuststatus": "Customer Status", "lastName": "Last Name",
"cmpCustlastlogin": "Last Login", "cmpCuststatus":"Customer Status",
"accountNonLocked": "Account Locked", "cmpCustlastlogin": "Last Login",
"lockTime": "Lock Time", "accountNonLocked":"Account Locked",
"accountno": "Account No", "lockTime":"Lock Time",
"phoneno": "Phone No", "accountno":"Account No",
"loggingRequestUri": "Request Uri", "phoneno":"Phone No",
"loggingResponseCode": "Response code", "loggingRequestUri":"Request Uri",
"loggingRemoteIP": "Remote IP", "loggingResponseCode":"Response code",
"loggingTimeTaken": "Time Taken", "loggingRemoteIP":"Remote IP",
"loggingDate": "Date", "loggingTimeTaken":"Time Taken",
"loggingDateTime": "Date and Time", "loggingDate":"Date",
"loggingMethod": "Method", "loggingDateTime":"Date and Time",
"DataAnalysis": "Data Analysis", "loggingMethod":"Method",
"Analysis": "Analysis", "DataAnalysis":"Data Analysis",
"smsBankingTitle": "SMS Banking", "Analysis":"Analysis",
"smsBankingChildTitle": "SMS Logger", "smsBankingTitle":"SMS Banking",
"smsTrackingID": "Tracking ID", "smsBankingChildTitle":"SMS Logger",
"smsMessage": "Message", "smsTrackingID":"Tracking ID",
"message": "Message", "smsMessage":"Message",
"template": "Template", "message": "Message",
"smsNo": "Phone Number", "template": "Template",
"smsOrgaCode": "Organization Code", "smsNo":"Phone Number",
"smsDate": "Date", "smsOrgaCode":"Organization Code",
"smsStatus": "Status", "smsDate":"Date",
"language": "Language", "smsStatus":"Status",
"viewThirdPartyAccounts": "View Accounts", "language":"Language",
"ThirdPartyID": "Third Party ID", "viewThirdPartyAccounts":"View Accounts",
"name": "Name", "ThirdPartyID":"Third Party ID",
"EnterThirdPartyName": "Enter Third Party Name", "name":"Name",
"email": "Email", "EnterThirdPartyName":"Enter Third Party Name",
"Address": "Address", "email":"Email",
"phoneNumber": "Phone Number", "Address":"Address",
"PhoneNumberPlaceHolder": "Enter Phone Number", "phoneNumber":"Phone Number",
"regPhoneNo": "Phone number must be 10 digits", "PhoneNumberPlaceHolder":"Enter Phone Number",
"NewNoOfAccounts": "New No of Accounts", "regPhoneNo": "Phone number must be 10 digits",
"EnterNewNumberOfAccounts": "Enter New Number of Accounts", "NewNoOfAccounts":"New No of Accounts",
"TotalNoOfAccounts": "Total No of Accounts", "EnterNewNumberOfAccounts":"Enter New Number of Accounts",
"gridSearch": "Search:", "TotalNoOfAccounts":"Total No of Accounts",
"gridShow": "Show", "gridSearch":"Search:",
"gridEntries": "entries", "gridShow":"Show",
"gridFilter": "Filter", "gridEntries":"entries",
"gridNum10": "10", "gridFilter":"Filter",
"gridNum25": "25", "gridNum10":"10",
"gridNum50": "50", "gridNum25":"25",
"gridNum100": "100", "gridNum50":"50",
"userID": "User ID", "gridNum100":"100",
"userId": "User ID", "userID":"User ID",
"userContactNumber": "Enter User Contact Number", "userId":"User ID",
"SelectHomeBranch": "Select Home Branch", "userContactNumber":"Enter User Contact Number",
"SelectRole": "Select Role", "SelectHomeBranch":"Select Home Branch",
"HomeBranch": "Home Branch", "SelectRole":"Select Role",
"Role": "Role", "HomeBranch":"Home Branch",
"ResetPassword": "Reset Password", "Role":"Role",
"enterNewPassword": "Enter New Password", "ResetPassword":"Reset Password",
"oldPassword": "Old Password", "enterNewPassword":"Enter New Password",
"newPasswordStatic": "New Password", "oldPassword":"Old Password",
"savePassword": "Save", "newPasswordStatic":"New Password",
"passwordPattern": "Password must be 820 characters and include uppercase, lowercase, number, and special character", "savePassword":"Save",
"SMSGatewaySelect": "Select Gateway", "passwordPattern":"Password must be 820 characters and include uppercase, lowercase, number, and special character",
"selectIdentValueType": "Select Type", "SMSGatewaySelect":"Select Gateway",
"IdTypeSelect": "Select Select Type", "selectIdentValueType": "Select Type",
"SMSGatewaySyriatel": "Syriatel", "IdTypeSelect":"Select Select Type",
"SMSGatewayTwillio": "Twilio", "SMSGatewaySyriatel":"Syriatel",
"SMSGatewayJazz": "Jazz", "SMSGatewayTwillio":"Twilio",
"syriatelCredentials": "Syriatel Credentials", "SMSGatewayJazz":"Jazz",
"twilioCredentials": "Twilio Credentials", "syriatelCredentials":"Syriatel Credentials",
"jazzCredentials": "Jazz Credentials", "twilioCredentials":"Twilio Credentials",
"accountSID": "Account SID", "jazzCredentials":"Jazz Credentials",
"authToken": "Auth Token", "accountSID":"Account SID",
"fromNumber": "From Number", "authToken":"Auth Token",
"notificationType": "Notification Type", "fromNumber":"From Number",
"sinceLastDay": "Since last day", "notificationType":"Notification Type",
"TodayTotalErrorRequest": "Today Total Error Request", "sinceLastDay":"Since last day",
"TodayTotalPendingSms": "Today Total Pending Sms", "TodayTotalErrorRequest":"Today Total Error Request",
"selectTheDates": "Please Select the Dates", "TodayTotalPendingSms":"Today Total Pending Sms",
"selectIdentValue": "Please Select the Identity No", "selectTheDates":"Please Select the Dates",
"selectIdentityValue": "Identity No is Required", "selectIdentValue":"Please Select the Identity No",
"noLogsFound": "No Logs Found Between these Dates", "selectIdentityValue":"Identity No is Required",
"loginSuccess": "Successfully Logged In", "noLogsFound":"No Logs Found Between these Dates",
"passwordNotMatched": "Password Does Not Match", "loginSuccess":"Successfully Logged In",
"passwordPatternNotMatched": "Password Pattern Not Matched", "passwordNotMatched":"Password Does Not Match",
"successDeleted": "Successfully Deleted", "passwordPatternNotMatched":"Password Pattern Not Matched",
"passwordNotSame": "Password Cannot be same as Old Password", "successDeleted":"Successfully Deleted",
"passwordTooShort": "Password is too short.", "passwordNotSame":"Password Cannot be same as Old Password",
"passwordsDoNotMatch": "Passwords do not match.", "passwordTooShort": "Password is too short.",
"SuccessSave": "Successfully Saved", "passwordsDoNotMatch": "Passwords do not match.",
"SuccessFind": "Successfully Find", "SuccessSave":"Successfully Saved",
"customerAlreadyUnblocked": "Customer Already UnBlocked", "SuccessFind":"Successfully Find",
"SuccessUpdate": "Successfully Updated", "customerAlreadyUnblocked": "Customer Already UnBlocked",
"UpdateFailed": "Unable to update", "SuccessUpdate":"Successfully Updated",
"formInvalid": "Form is Invalid", "UpdateFailed":"Unable to update",
"ServerError": "Server Error", "formInvalid":"Form is Invalid",
"fieldsMissing": "Required Fields are missing or invalid", "ServerError":"Server Error",
"selectAll": "Select All ", "fieldsMissing":"Required Fields are missing or invalid",
"logoutSuccess": "Successfully Logout", "selectAll":"Select All ",
"smsGateWayChanged": "SMS Gateway Successfully Changed", "logoutSuccess":"Successfully Logout",
"cnic_scnic": "CNIC/SCNIC", "smsGateWayChanged":"SMS Gateway Successfully Changed",
"poc": "POC", "cnic_scnic": "CNIC/SCNIC",
"nicop": "S/NICOP", "poc": "POC",
"passport": "PASSPORT", "nicop": "S/NICOP",
"senderNamePlaceHolder": "Enter Sender Name", "passport": "PASSPORT",
"enterIdentityValue": "Enter Identity Value", "senderNamePlaceHolder":"Enter Sender Name",
"senderName": "Sender Name", "enterIdentityValue":"Enter Identity Value",
"passwordChangeRequired": "Password Change Required", "senderName":"Sender Name",
"Next": "Next", "passwordChangeRequired": "Password Change Required",
"ERR_APP_B_0001": "Internal Server Error", "Next": "Next",
"ERR_APP_B_0002": "Possible connection error with {{value1}} module", "ERR_APP_B_0001":"Internal Server Error",
"ERR_APP_B_0003": "Bad Request on {{value1}} module", "ERR_APP_B_0002":"Possible connection error with {{value1}} module",
"ERR_APP_B_0004": "Session timed out", "ERR_APP_B_0003":"Bad Request on {{value1}} module",
"ERR_APP_B_0005": "Unauthorized: {{value1}}.", "ERR_APP_B_0004":"Session timed out",
"ERR_MDL_B_0001": "Purpose Code already exists", "ERR_APP_B_0005":"Unauthorized: {{value1}}.",
"feedbackSetup": "Feedback Setup", "ERR_MDL_B_0001": "Purpose Code already exists",
"credentials": "Credentials", "feedbackSetup": "Feedback Setup",
"credentialsTitle": "Feedback Credentials Setup", "credentials": "Credentials",
"passwordPlaceholder": "Enter Password", "credentialsTitle": "Feedback Credentials Setup",
"confirmPasswordPlaceholder": "Enter confirm password", "passwordPlaceholder": "Enter Password",
"newPasswordPlaceholder": "Enter new password", "confirmPasswordPlaceholder": "Enter confirm password",
"confirmPassword": "Confirm Password", "newPasswordPlaceholder": "Enter new password",
"fieldRequired": "Field Required", "confirmPassword": "Confirm Password",
"emailLabel": "Email", "fieldRequired": "Field Required",
"emailRequiredError": "Email is required.", "emailLabel": "Email",
"invalidEmailFormatError": "Invalid email format.", "emailRequiredError": "Email is required.",
"invalidEmail": "Enter a valid email with @", "invalidEmailFormatError": "Invalid email format.",
"passNotMatch": "Password does not match", "invalidEmail": "Enter a valid email with @",
"POR_ORGACODE": "Organization ID", "passNotMatch": "Password does not match",
"purposeSetup": "Configure Transaction Purpose", "POR_ORGACODE": "Organization ID",
"purpcodeLabel": "Purpose Code", "purposeSetup": "Configure Transaction Purpose",
"purpdescLabel": "Purpose Description", "purpcodeLabel": "Purpose Code",
"purpcodePlaceholder": "Enter Purpose Code", "purpdescLabel": "Purpose Description",
"purpdescPlaceholder": "Enter Purpose Description", "purpcodePlaceholder": "Enter Purpose Code",
"transactionDetails": "Transaction Details", "purpdescPlaceholder": "Enter Purpose Description",
"invalidField": "Invalid Input", "transactionDetails": "Transaction Details",
"lengthExceed": "Length exceeded", "invalidField": "Invalid Input",
"transactionLogs": "Transaction Logs", "lengthExceed": "Length exceeded",
"loadingTransactionLogs": "Loading transaction logs...", "transactionLogs": "Transaction Logs",
"noTransactionLogsFound": "No transaction logs found.", "loadingTransactionLogs": "Loading transaction logs...",
"logID": "Log ID", "noTransactionLogsFound": "No transaction logs found.",
"organization": "Organization", "logID": "Log ID",
"transactionID": "Transaction ID", "organization": "Organization",
"drAccount": "DR Account", "transactionID": "Tran ID",
"crAccount": "CR Account", "drAccount": "DR Account",
"crPcaglacode": "CR GL Account", "crAccount": "CR Account",
"drPcaGlacode": "DR GL Account", "crPcaglacode": "CR GL",
"paymentMode": "Payment Mode", "drPcaGlacode": "DR GL",
"channel": "Channel", "paymentMode": "Payment Mode",
"createdAt": "Created At", "channel": "Channel",
"refresh": "Refresh", "createdAt": "Created At",
"loading": "Loading", "refresh": "Refresh",
"action": "Action", "loading": "Loading",
"recordNotFound": "Record not found", "action": "Action",
"confirmDelete": "Are you sure you want to delete?", "recordNotFound": "Record not found",
"confirmSave": "Are you sure you want to save?", "confirmDelete":"Are you sure you want to delete?",
"2-stepAppPassword": "Enter 2-step verification Generated - App Password", "confirmSave":"Are you sure you want to save?",
"english": "English", "2-stepAppPassword": "Enter 2-step verification Generated - App Password",
"arabic": "Arabic", "english": "English",
"userNameRequired": "User name is required", "arabic": "Arabic",
"userNamePattterenError": "Only lower case alphabets and numbers are allowed", "userNameRequired" : "User name is required",
"PasswordRequired": "Password is required", "userNamePattterenError": "Only lower case alphabets and numbers are allowed",
"copyRightsReserved": "Copyright © {{currentYearLong}} MFSYS Technologies. All rights reserved.", "PasswordRequired": "Password is required",
"versionAndBuildNumber": "Version {{versionNumber}} Build {{buildNumber}}", "copyRightsReserved": "Copyright © {{currentYearLong}} MFSYS Technologies. All rights reserved.",
"versionBuildDate": "+ Build Date {{date}}", "versionAndBuildNumber": "Version {{versionNumber}} Build {{buildNumber}}",
"date": "Date", "versionBuildDate": "+ Build Date {{date}}",
"logout": "Log Out", "date" : "Date",
"save": "Save", "logout": "Log Out",
"update": "Update", "save": "Save",
"cancel": "Cancel", "update": "Update",
"thirdPartyRegistrationDetails": "Third Party Registration Details", "cancel": "Cancel",
"SetupUserDetails": "Setup User Details", "thirdPartyRegistrationDetails": "Third Party Registration Details",
"search": "Search", "SetupUserDetails":"Setup User Details",
"thirdPartyNamePlaceholder": "Enter Third Party Name", "search": "Search",
"phoneNumberPlaceholder": "Enter Phone Number", "thirdPartyNamePlaceholder": "Enter Third Party Name",
"newNoOfAccountsPlaceholder": "Enter New Number of Accounts", "phoneNumberPlaceholder": "Enter Phone Number",
"page": "Page", "newNoOfAccountsPlaceholder": "Enter New Number of Accounts",
"of": "of", "page": "Page",
"totalItems": "Records", "of": "of",
"record": "Record", "totalItems": "Records",
"previous": "Previous", "record": "Record",
"next": "Next", "previous": "Previous",
"LOGIN_SUCCESSFULLY": "Login SucessFully", "next": "Next",
"RESET_PASSWORD_SUCCESS": "Password Reset Successfully", "LOGIN_SUCCESSFULLY":"Login SucessFully",
"CHANGE_PASSWORD_SUCCESS": "Password Changed Successfully", "RESET_PASSWORD_SUCCESS":"Password Reset Successfully",
"ALREADY_LOGGED_IN": "User Already Logged In", "RESET_PASSWORD_FAILED":"New password cannot be the same as previous password",
"ACCESS_DENIED": "Access Denied", "CHANGE_PASSWORD_SUCCESS":"Password Changed Successfully",
"INTERNAL_SERVER_ERROR": "Internal Server Error", "ALREADY_LOGGED_IN": "User Already Logged In",
"CONNECTION_ERROR": "Connection Error", "ACCESS_DENIED" : "Access Denied",
"BAD_REQUEST": "Bad Request", "INTERNAL_SERVER_ERROR": "Internal Server Error",
"FORBIDDEN_REQUEST": "Forbidden Request", "CONNECTION_ERROR": "Connection Error",
"UNAUTHORIZED_REQUEST": "Unauthorized Request", "BAD_REQUEST": "Bad Request",
"edit": "Edit", "FORBIDDEN_REQUEST": "Forbidden Request",
"delete": "Delete", "UNAUTHORIZED_REQUEST": "Unauthorized Request",
"deleteUser": "Delete User", "edit": "Edit",
"permissionManagement": "Permission Managment", "delete": "Delete",
"userCode": "User", "deleteUser": "Delete User",
"choose": "Choose", "permissionManagement": "Permission Managment",
"allow": "Allow", "userCode": "User",
"toDateInvalidError": "To Date must be greater than or equal to From Date", "choose" : "Choose",
"noLoggingDetailsFound": "No Activity Log Details found", "allow": "Allow",
"noUserDetailsFound": "No User Details found", "toDateInvalidError": "To Date must be greater than or equal to From Date",
"noThirdPartyRegFound": "No Third Party Registration Details Found", "noLoggingDetailsFound": "No Activity Log Details found",
"ERR_SEC_0001": "Email already exists", "noUserDetailsFound":"No User Details found",
"ERR_SEC_0007": "New password cannot be same as old password", "noThirdPartyRegFound":"No Third Party Registration Details Found",
"ERR_SEC_0002": "User ID already exists", "ERR_SEC_0001": "Email already exists",
"ERR_SEC_0003": "Old Password is not correct", "ERR_SEC_0007": "New password cannot be same as old password",
"ERR_SEC_0004": "Invalid credentials", "ERR_SEC_0002": "User ID already exists",
"ERR_SEC_0005": "User not found", "ERR_SEC_0003": "Old Password is not correct",
"ERR_SEC_0006": "Incorrect password", "ERR_SEC_0004":"Invalid credentials",
"toDateGreaterThanToday": "To Date must be less than Current Date", "ERR_SEC_0005": "User not found",
"fromDateGreaterThanToday": "From Date must be less than Current Date", "ERR_SEC_0006": "Incorrect password",
"userIdMinLength": "User ID must be at least 5 characters", "toDateGreaterThanToday": "To Date must be less than Current Date",
"nameMinLength": "Name must be at least 5 characters", "fromDateGreaterThanToday": "From Date must be less than Current Date",
"emptySpaceRestriction": "Empty spaces & capital letters are not allowed", "userIdMinLength" : "User ID must be at least 5 characters",
"USER_CREATED_SUCCESS": "User Created", "nameMinLength" : "Name must be at least 5 characters",
"USER_UPDATE_SUCCESS": "User Updated", "emptySpaceRestriction" : "Empty spaces & capital letters are not allowed",
"USER_DELETE_SUCCESS": "User Deleted", "USER_CREATED_SUCCESS": "User Created",
"SAVED_SUCCESSFULLY": "Saved Successfully", "USER_UPDATE_SUCCESS": "User Updated",
"oldAndNewPass": "Old password and new password cannot be the same", "USER_DELETE_SUCCESS": "User Deleted",
"activityLogs": "Activity Logs", "SAVED_SUCCESSFULLY" :"Saved Successfully",
"activityLogDetails": "Activity Log Details", "oldAndNewPass":"Old password and new password cannot be the same",
"transactionCode": "Transaction Code", "activityLogs": "Activity Logs",
"transactionUri": "Transaction URI", "activityLogDetails": "Activity Log Details",
"resetPasswordButton": "Reset Password", "transactionCode": "Tran Code",
"dateTime": "Date Time", "transactionUri": "Tran URI",
"responseCode": "Response Code", "resetPasswordButton": "Reset Password",
"remoteIp": "Remote IP", "dateTime": "Date Time",
"requestBody": "Request Body", "responseCode": "Response Code",
"requestUri": "Request URI", "remoteIp": "Remote IP",
"method": "Method", "requestBody": "Request Body",
"id": "Id", "requestUri": "Request URI",
"logId": "Log ID", "method": "Method",
"porOrgacode": "Organization Code", "id": "Id",
"drMbmbkmsnumber": "Debit Account Number", "logId": "Log ID",
"crMbmbkmsnumber": "Credit Account Number", "porOrgacode": "Organization Code",
"ppmPymdcode": "Payment Code", "drMbmbkmsnumber": "Debit Account Number",
"sgtGntrdate": "Transaction Date", "crMbmbkmsnumber": "Credit Account Number",
"sgtGntrcreateat": "Creation Date", "ppmPymdcode": "Payment Code",
"updatedAt": "Updated At", "sgtGntrdate": "Transaction Date",
"channelCode": "Channel Code", "sgtGntrcreateat": "Creation Date",
"userFullname": "Full Name", "updatedAt": "Updated At",
"show": "Show", "channelCode": "Channel Code",
"entries": "entries", "userFullname" : "Full Name",
"tableCollapsed": "Table collapsed", "show": "Show",
"showTable": "Show Table", "entries": "entries",
"collapse": "Collapse", "tableCollapsed": "Table collapsed",
"expand": "Expand", "showTable": "Show Table",
"dateFilter": "Date Filter", "collapse": "Collapse",
"clearFilter": "Clear Filter", "expand": "Expand",
"activeFilter": "Active Filter", "dateFilter": "Date Filter",
"from": "From", "showDateFilters":"Show Date Filter",
"to": "to", "hideDateFilters":"Hide Date Filter"
"last7Days": "Last 7 Days",
"last30Days": "Last 30 Days",
"thisMonth": "This Month",
"last3Months": "Last 3 Months",
"hideDateFilters": "Hide Date Filters",
"showDateFilters": "Show Date Filters",
"filteringByDate": "Filtering by date range...",
"tryAdjustingFilters": "Try adjusting your date filters or search terms",
"noDataInRange": "No transactions found in the selected date range",
"dateRangeError": "Please select a valid date range",
"exportAllData": "Export All Data"
} }

Loading…
Cancel
Save