diff --git a/Mohem/src/app/app-routing.module.ts b/Mohem/src/app/app-routing.module.ts index a1fab539..01cd9e3a 100644 --- a/Mohem/src/app/app-routing.module.ts +++ b/Mohem/src/app/app-routing.module.ts @@ -8,7 +8,8 @@ const routes: Routes = [ data: { preload: true, delay: 1000 } }, { path: 'home', loadChildren: './home/home.module#HomePageModule' }, - { path: 'sms-page', loadChildren: './authentication/sms-page/sms-page.module#SmsPagePageModule' } + { path: 'sms-page', loadChildren: './authentication/sms-page/sms-page.module#SmsPagePageModule' }, + { path: 'vacation-rule', loadChildren: './vacation-rule/vacation-rule.module#VacationRulePageModule' } ]; diff --git a/Mohem/src/app/app.scss b/Mohem/src/app/app.scss index a3596b78..45ab8719 100644 --- a/Mohem/src/app/app.scss +++ b/Mohem/src/app/app.scss @@ -3,4 +3,5 @@ // Put style rules here that you want to apply to the entire application. These // styles are for the entire app and not just one component. Additionally, this // file can hold Sass mixins, functions, and placeholder classes to be imported -// and used throughout the application. \ No newline at end of file +// and used throughout the application. + diff --git a/Mohem/src/app/hmg-common/services/translator/translator.service.ts b/Mohem/src/app/hmg-common/services/translator/translator.service.ts index ae9559b3..fff6de9e 100644 --- a/Mohem/src/app/hmg-common/services/translator/translator.service.ts +++ b/Mohem/src/app/hmg-common/services/translator/translator.service.ts @@ -14,7 +14,7 @@ export class TranslatorService { public static EN = 'en'; public static EN_US = 'en-us'; public static AR = 'ar'; - public static CURRENT_LANGUAGE = TranslatorService.AR; + public static CURRENT_LANGUAGE = TranslatorService.EN; public static CHANGE_EVENT = 'language-changed-event'; private static translations: any; constructor( diff --git a/Mohem/src/app/home/home.module.ts b/Mohem/src/app/home/home.module.ts index 552dcba8..603eccc5 100644 --- a/Mohem/src/app/home/home.module.ts +++ b/Mohem/src/app/home/home.module.ts @@ -9,7 +9,7 @@ import { HomePage } from './home.page'; const routes: Routes = [ { path: '', - component: HomePage + component: HomePage, } ]; @@ -19,13 +19,10 @@ const routes: Routes = [ FormsModule, IonicModule, HmgCommonModule, - RouterModule.forChild([ - { - path: '', - component: HomePage - } - ]) + RouterModule.forChild(routes) ], - declarations: [HomePage] + declarations: [ + HomePage + ] }) -export class HomePageModule {} +export class HomePageModule { } diff --git a/Mohem/src/app/home/home.page.ts b/Mohem/src/app/home/home.page.ts index 361f0ead..707b17a5 100644 --- a/Mohem/src/app/home/home.page.ts +++ b/Mohem/src/app/home/home.page.ts @@ -1,6 +1,6 @@ import { Component, OnInit } from '@angular/core'; import { TranslatorService } from 'src/app/hmg-common/services/translator/translator.service'; -import { MenuController } from '@ionic/angular'; +import { MenuController, NavController } from '@ionic/angular'; import { AuthenticationService } from "src/app/hmg-common/services/authentication/authentication.service"; import { SMSCheckResponse } from "src/app/hmg-common/services/authentication/models/smscheck.response"; import { AuthenticatedUser } from 'src/app/hmg-common/services/authentication/models/authenticated-user'; @@ -10,37 +10,41 @@ import { AuthenticatedUser } from 'src/app/hmg-common/services/authentication/mo styleUrls: ['./home.page.scss'], }) export class HomePage implements OnInit { - userData: any ={}; - user_image : any = "../assets/imgs/profile.png"; - constructor(public ts: TranslatorService, public menu: MenuController, public authService: AuthenticationService ) { } + userData: any = {}; + user_image: any = "../assets/imgs/profile.png"; + constructor(public ts: TranslatorService, public menu: MenuController, public authService: AuthenticationService, public nav: NavController) { } ngOnInit() { this.getUserDetails(); } - private openMenu(){ + private openMenu() { this.menu.toggle(); } - private getUserDetails(){ - const user = this.authService.loadAuthenticatedUser().subscribe((user: AuthenticatedUser) => { - if (user) { - this.userData=user; - console.log(user); - }else{ - console.log(user); - } - }) - + private getUserDetails() { + const user = this.authService.loadAuthenticatedUser().subscribe((user: AuthenticatedUser) => { + if (user) { + this.userData = user; + console.log(user); + } else { + console.log(user); + } + }); } -// private getMenu(){ -// this.menuService.getMenu(). -// subscribe((result: MenuResponse) => { -// this.handleMenuResult(result); -// }); -// } -// private handleMenuResult(result){ -// if (this.common.validResponse(result)) { -// if (this.common.hasData(result.List_Menu)) { -// this.menuList = result.List_Menu; -// } -// } + + public Vaction_Rule() { + this.nav.navigateForward(['/vacation-rule/home']); + } + + // private getMenu(){ + // this.menuService.getMenu(). + // subscribe((result: MenuResponse) => { + // this.handleMenuResult(result); + // }); + // } + // private handleMenuResult(result){ + // if (this.common.validResponse(result)) { + // if (this.common.hasData(result.List_Menu)) { + // this.menuList = result.List_Menu; + // } + // } } diff --git a/Mohem/src/app/vacation-rule/home/home.component.html b/Mohem/src/app/vacation-rule/home/home.component.html new file mode 100644 index 00000000..43d923e7 --- /dev/null +++ b/Mohem/src/app/vacation-rule/home/home.component.html @@ -0,0 +1,82 @@ + + + + + + + {{ 'general,vacation-rule' | translate}} + + + + +
+ +
+ + + + + + {{'vacation-rule, rule-Info' | translate}} + + + + + + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ +
\ No newline at end of file diff --git a/Mohem/src/app/vacation-rule/home/home.component.scss b/Mohem/src/app/vacation-rule/home/home.component.scss new file mode 100644 index 00000000..1f0f2007 --- /dev/null +++ b/Mohem/src/app/vacation-rule/home/home.component.scss @@ -0,0 +1,93 @@ +.item-md p, +.item-md ios { + white-space: normal; +} +.col { + white-space: normal; + font-size: 14px; +} +ion-col.colBold { + color: #1a586d; +} +.imgSize { + width: 22px; + height: 22px; + -webkit-box-shadow: none; + box-shadow: none; +} + +ion-button { + background: transparent; +} + +ion-card-header { + display: block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.header-toolbar { + --background: linear-gradient(45deg, #3ac1f1 0%, #19a163 36%, #19a163 59%, #1a586d 100%); +} + +.btnBack { + background: transparent; + float: right; +} + +.button, +.button-md, +button-ios { + background: transparent; +} + +ion-card-header { + padding: 0px 10px !important; + color: #ffffff !important; + -webkit-border-top-left-radius: 10px; + -webkit-border-top-right-radius: 10px; + -moz-border-radius-topleft: 10px; + -moz-border-radius-topright: 10px; + border-top-left-radius: 10px; + border-top-right-radius: 10px; + background: #acacac; + .hrTitle { + white-space: normal; + padding: 5px; + padding-top: 12px; + width: 100%; + min-height: 45px; + // @media screen and (max-width: 565px) { + // width: 80%; + // } + // @media screen and (max-width: 450px) { + // width: 74%; + // } + + // @include ltr() { + // float: left; + // } + // @include rtl() { + // float: right; + // } + line-height: 1.2; + } + .button, + .button-md, + button-ios { + background: transparent; + box-shadow: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + min-width: auto; + padding: 0px !important; + margin: 0px 5px !important; + // @include ltr() { + // float: right; + // } + // @include rtl() { + // float: left; + // } + } +} diff --git a/Mohem/src/app/vacation-rule/home/home.component.spec.ts b/Mohem/src/app/vacation-rule/home/home.component.spec.ts new file mode 100644 index 00000000..5ec1377b --- /dev/null +++ b/Mohem/src/app/vacation-rule/home/home.component.spec.ts @@ -0,0 +1,27 @@ +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { HomeComponent } from './home.component'; + +describe('HomeComponent', () => { + let component: HomeComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ HomeComponent ], + schemas: [CUSTOM_ELEMENTS_SCHEMA], + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(HomeComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/Mohem/src/app/vacation-rule/home/home.component.ts b/Mohem/src/app/vacation-rule/home/home.component.ts new file mode 100644 index 00000000..06263bb4 --- /dev/null +++ b/Mohem/src/app/vacation-rule/home/home.component.ts @@ -0,0 +1,152 @@ +import { CommonService } from 'src/app/hmg-common/services/common/common.service'; +import { VacationRuleServiceService } from './../service/vacation-rule-service.service'; +import { VacationRuleRequest } from './../model/VacationRuleRequest'; +import { Component, OnInit } from '@angular/core'; +import { TranslatorService } from 'src/app/hmg-common/services/translator/translator.service'; + +@Component({ + selector: 'app-home', + templateUrl: './home.component.html', + styleUrls: ['./home.component.scss'], +}) +export class HomeComponent implements OnInit { + + userName: any; + P_PAGE_NUM: number; + P_PAGE_LIMIT: number; + GetVacationRulesList: any = []; + isUpdate: boolean = false; + IsReachEnd: boolean = false; + RespondAttributeList: any; + + + constructor(public vacationRuleService: VacationRuleServiceService, public ts: TranslatorService, public cs: CommonService) { + this.P_PAGE_NUM = 1; + this.P_PAGE_LIMIT = 50; + + this.GetVacationRulesList = [ + { + "ACTION": "FORWARD", + "ACTION_DISPLAY": "Forward", + "BEGIN_DATE": "6/26/2019 2:50:14 PM", + "END_DATE": "6/30/2019 2:50:22 PM", + "FROM_ROW_NUM": 1, + "FYI_FLAG": "Y", + "ITEM_TYPE": "HRSSA", + "ITEM_TYPE_DISPLAY_NAME": "HR", + "MESSAGE": "TEst Rule", + "NOTIFICATION_DISPLAY_NAME": "", + "NOTIFICATION_NAME": "*", + "NOTIFICATION_SUBJECT": "", + "NO_OF_ROWS": 1, + "REPLACEMENT_USER_NAME": "70915", + "ROW_NUM": 1, + "RULE_ID": 7770756, + "RULE_NAME": "Delegate: Al Oulah, Mohammed", + "RULE_STATUS": "Active", + "RULE_TIP_MESSAGE": "", + "TO_ROW_NUM": 1 + }, + { + "ACTION": "FORWARD", + "ACTION_DISPLAY": "Forward", + "BEGIN_DATE": "6/26/2019 2:50:14 PM", + "END_DATE": "6/30/2019 2:50:22 PM", + "FROM_ROW_NUM": 1, + "FYI_FLAG": "Y", + "ITEM_TYPE": "HRSSA", + "ITEM_TYPE_DISPLAY_NAME": "HR", + "MESSAGE": "TEst Rule", + "NOTIFICATION_DISPLAY_NAME": "", + "NOTIFICATION_NAME": "*", + "NOTIFICATION_SUBJECT": "", + "NO_OF_ROWS": 1, + "REPLACEMENT_USER_NAME": "70915", + "ROW_NUM": 1, + "RULE_ID": 7770756, + "RULE_NAME": "Delegate: Al Oulah, Mohammed", + "RULE_STATUS": "Active", + "RULE_TIP_MESSAGE": "", + "TO_ROW_NUM": 1 + }, + { + "ACTION": "FORWARD", + "ACTION_DISPLAY": "Forward", + "BEGIN_DATE": "6/26/2019 2:50:14 PM", + "END_DATE": "6/30/2019 2:50:22 PM", + "FROM_ROW_NUM": 1, + "FYI_FLAG": "Y", + "ITEM_TYPE": "HRSSA", + "ITEM_TYPE_DISPLAY_NAME": "HR", + "MESSAGE": "TEst Rule", + "NOTIFICATION_DISPLAY_NAME": "", + "NOTIFICATION_NAME": "*", + "NOTIFICATION_SUBJECT": "", + "NO_OF_ROWS": 1, + "REPLACEMENT_USER_NAME": "70915", + "ROW_NUM": 1, + "RULE_ID": 7770756, + "RULE_NAME": "Delegate: Al Oulah, Mohammed", + "RULE_STATUS": "Active", + "RULE_TIP_MESSAGE": "", + "TO_ROW_NUM": 1 + }, + { + "ACTION": "FORWARD", + "ACTION_DISPLAY": "Forward", + "BEGIN_DATE": "6/26/2019 2:50:14 PM", + "END_DATE": "6/30/2019 2:50:22 PM", + "FROM_ROW_NUM": 1, + "FYI_FLAG": "Y", + "ITEM_TYPE": "HRSSA", + "ITEM_TYPE_DISPLAY_NAME": "HR", + "MESSAGE": "TEst Rule", + "NOTIFICATION_DISPLAY_NAME": "", + "NOTIFICATION_NAME": "*", + "NOTIFICATION_SUBJECT": "", + "NO_OF_ROWS": 1, + "REPLACEMENT_USER_NAME": "70915", + "ROW_NUM": 1, + "RULE_ID": 7770756, + "RULE_NAME": "Delegate: Al Oulah, Mohammed", + "RULE_STATUS": "Active", + "RULE_TIP_MESSAGE": "", + "TO_ROW_NUM": 1 + } + + ]; + + } + + ngOnInit() { + console.log('OnInit'); + this.getVacationRules(); + console.log(this.GetVacationRulesList); + } + + getVacationRules() { + this.P_PAGE_NUM = 1; + this.IsReachEnd = false; + let request: VacationRuleRequest = new VacationRuleRequest(); + request.P_PAGE_LIMIT = this.P_PAGE_LIMIT; + request.P_PAGE_NUM = this.P_PAGE_NUM; + + this.vacationRuleService.getVacationRule(request, () => { + this.getVacationRules(); + }, this.ts.trPK('general', 'retry')).subscribe((result) => { + if (this.cs.validResponse(result)) { + console.log(result); + console.log(JSON.stringify(result)); + } else { + this.cs.presentAlert(result.ErrorEndUserMessage); + } + }); + } + + deleteFunc(i) { + } + + updateFunc(i) { + } + +} diff --git a/Mohem/src/app/vacation-rule/model/VacationRuleRequest.ts b/Mohem/src/app/vacation-rule/model/VacationRuleRequest.ts new file mode 100644 index 00000000..bb65276d --- /dev/null +++ b/Mohem/src/app/vacation-rule/model/VacationRuleRequest.ts @@ -0,0 +1,7 @@ +import { Request } from '../../hmg-common/services/models/request'; + +export class VacationRuleRequest extends Request { + public static SHARED_DATA = 'vacation-request'; + public P_PAGE_NUM: number; + public P_PAGE_LIMIT: number; +} \ No newline at end of file diff --git a/Mohem/src/app/vacation-rule/service/vacation-rule-service.service.spec.ts b/Mohem/src/app/vacation-rule/service/vacation-rule-service.service.spec.ts new file mode 100644 index 00000000..a679f19b --- /dev/null +++ b/Mohem/src/app/vacation-rule/service/vacation-rule-service.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { VacationRuleServiceService } from './vacation-rule-service.service'; + +describe('VacationRuleServiceService', () => { + beforeEach(() => TestBed.configureTestingModule({})); + + it('should be created', () => { + const service: VacationRuleServiceService = TestBed.get(VacationRuleServiceService); + expect(service).toBeTruthy(); + }); +}); diff --git a/Mohem/src/app/vacation-rule/service/vacation-rule-service.service.ts b/Mohem/src/app/vacation-rule/service/vacation-rule-service.service.ts new file mode 100644 index 00000000..fd9d5e46 --- /dev/null +++ b/Mohem/src/app/vacation-rule/service/vacation-rule-service.service.ts @@ -0,0 +1,35 @@ +import { Response } from 'src/app/hmg-common/services/models/response'; +import { VacationRuleRequest } from './../model/VacationRuleRequest'; +import { AuthenticationService } from 'src/app/hmg-common/services/authentication/authentication.service'; +import { Injectable } from '@angular/core'; +import { Observable } from 'rxjs'; +import { ConnectorService } from 'src/app/hmg-common/services/connector/connector.service'; + +@Injectable({ + providedIn: 'root' +}) +export class VacationRuleServiceService { + + /* Vacation Rule Methods */ + public static getVacationRule = 'Services/ERP.svc/REST/GET_VACATION_RULES'; + public static changePassword = 'Services/ERP.svc/REST/ChangePassword_FromActiveSession'; + public static userChecking = 'Services/ERP.svc/REST/Get_BasicUserInformation'; + public static getVacationType = 'Services/ERP.svc/REST/GET_VR_ITEM_TYPES'; + public static getNotificationType = 'Services/ERP.svc/REST/GET_ITEM_TYPE_NOTIFICATIONS'; + public static createVacationRule = 'Services/ERP.svc/REST/CREATE_VACATION_RULE'; + public static deleteVacationRule = 'Services/ERP.svc/REST/DELETE_VACATION_RULE'; + public static updateVacationRule = 'Services/ERP.svc/REST/UPDATE_VACATION_RULE'; + public static respondAttributes = 'Services/ERP.svc/REST/GET_RESPOND_ATTRIBUTES'; + public static notificationReassign = 'Services/ERP.svc/REST/GET_NOTIFICATION_REASSIGN_MODE'; + + constructor(public authService: AuthenticationService, public con: ConnectorService) { } + + + public getVacationRule(vacationRuleRequest: VacationRuleRequest, onError: any, errorLabel: string): Observable { + const request = vacationRuleRequest; + console.log(request); + this.authService.authenticateRequest(request); + return this.con.post(VacationRuleServiceService.getVacationRule, request, onError, errorLabel) + } + +} diff --git a/Mohem/src/app/vacation-rule/vacation-rule.module.ts b/Mohem/src/app/vacation-rule/vacation-rule.module.ts new file mode 100644 index 00000000..2bf8e2eb --- /dev/null +++ b/Mohem/src/app/vacation-rule/vacation-rule.module.ts @@ -0,0 +1,38 @@ +import { HmgCommonModule } from './../hmg-common/hmg-common.module'; +import { HomeComponent } from './home/home.component'; +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { FormsModule } from '@angular/forms'; +import { Routes, RouterModule } from '@angular/router'; + +import { IonicModule } from '@ionic/angular'; + +import { VacationRulePage } from './vacation-rule.page'; + +const routes: Routes = [ + { + path: '', + component: VacationRulePage, + children: [ + { + path: 'home', + component: HomeComponent + } + ] + } +]; + +@NgModule({ + imports: [ + CommonModule, + FormsModule, + IonicModule, + HmgCommonModule, + RouterModule.forChild(routes) + ], + declarations: [ + VacationRulePage, + HomeComponent + ] +}) +export class VacationRulePageModule { } diff --git a/Mohem/src/app/vacation-rule/vacation-rule.page.html b/Mohem/src/app/vacation-rule/vacation-rule.page.html new file mode 100644 index 00000000..1da5b50d --- /dev/null +++ b/Mohem/src/app/vacation-rule/vacation-rule.page.html @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/Mohem/src/app/vacation-rule/vacation-rule.page.scss b/Mohem/src/app/vacation-rule/vacation-rule.page.scss new file mode 100644 index 00000000..e69de29b diff --git a/Mohem/src/app/vacation-rule/vacation-rule.page.spec.ts b/Mohem/src/app/vacation-rule/vacation-rule.page.spec.ts new file mode 100644 index 00000000..5b482f8e --- /dev/null +++ b/Mohem/src/app/vacation-rule/vacation-rule.page.spec.ts @@ -0,0 +1,27 @@ +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { VacationRulePage } from './vacation-rule.page'; + +describe('VacationRulePage', () => { + let component: VacationRulePage; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ VacationRulePage ], + schemas: [CUSTOM_ELEMENTS_SCHEMA], + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(VacationRulePage); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/Mohem/src/app/vacation-rule/vacation-rule.page.ts b/Mohem/src/app/vacation-rule/vacation-rule.page.ts new file mode 100644 index 00000000..e9c3ff3c --- /dev/null +++ b/Mohem/src/app/vacation-rule/vacation-rule.page.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-vacation-rule', + templateUrl: './vacation-rule.page.html', + styleUrls: ['./vacation-rule.page.scss'], +}) +export class VacationRulePage implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/Mohem/src/assets/icon/progress-loading.gif b/Mohem/src/assets/icon/progress-loading.gif new file mode 100644 index 00000000..df5620d4 Binary files /dev/null and b/Mohem/src/assets/icon/progress-loading.gif differ diff --git a/Mohem/src/assets/localization/i18n.json b/Mohem/src/assets/localization/i18n.json index 3467ca8a..1b030c8e 100644 --- a/Mohem/src/assets/localization/i18n.json +++ b/Mohem/src/assets/localization/i18n.json @@ -4,671 +4,700 @@ "ar", "fr" ], -"login": { "login": { - "en": "Login", - "ar": "الدخول" - }, - "username":{ - "en":"User Name", - "ar":"اسم المستخدم" - }, - "login-type": { - "en": "Login Type", - "ar": "نوع الدخول" - }, - "register": { - "en": "Register", - "ar": "التسجيل" - }, - "sign-out": { - "en": "Are you sure you want to Sign Out", - "ar": "هل أنت متأكد من إغلاق الحساب" - }, - "forgot-id": { - "en": "Forgot Patient ID", - "ar": "نسيت رقم الملف" - }, - "forgot-password": { - "en": "Forgot Password", - "ar": "نسيت كلمة المرور" - }, - "password": { - "en": "Password", - "ar": "كلمه السر" - }, - "changepassword": { - "en": "Change Password", - "ar": "غير كلمة السر" - }, - "forgot-your-id": { - "en": "Forgot Your Patient ID", - "ar": "هل نسيت رقم ملف المريض" - }, - "forgot-desc": { - "en": "Enter your mobile number to receive your patient file number via SMS", - "ar": "أدخل رقم جوالك لاستلام رقم الملف الخاص بك عن طريق الرسائل النصية" - }, - "enter-email": { - "en": "Please you need to enter your email", - "ar": "لو سمحت أدخل البريد الإلكتروني الخاص بك" - }, - "enable-biometric": { - "en": "Do you want to use biometric sensors to ease your login", - "ar": "هل ترغب في استخدام أجهزة الاستشعار البصمة لتسهيل تسجيل دخولك" - }, - "face": { - "en": "Do you want to login with face recognition", - "ar": "هل تود الدخول ببصمة الوجة" - }, - "finger": { - "en": "Do you want to login with finger print", - "ar": "هل تود الدخول ببصمة الإصبع" - }, - "signout": { - "en": "Sign Out", - "ar": "تسجيل خروج" - }, - "find-us": { - "en": "Find us on social", - "ar": "تواصل معنا" - }, - "login-register": { - "en": "Login / Register", - "ar": "دخول / تسجيل" - }, - "id-or-file": { - "en": "ID or File No", - "ar": "هوية أو رقم الملف" - }, - "national-id-or-iqama": { - "en": "National ID or Iqama", - "ar": "رقم الهوية أو الإقامة" - }, - "sms-page":{ - "en": "Verify OTP", - "ar":"تحقق مرة واحدة كلمة المرور" - } -}, -"verificationcode": -{ - "verificationcode":{ - "en":"Verification Code", - "ar":"رمز التحقق" - }, - "emptyCode":{ - "en":"Please enter the verification code", - "ar":"الرجاء ادخال رمز التحقق" - }, - "title":{ - "en":"You will receive a ", - "ar":" سوف تستلم " - }, - "by":{ - "en":" by ", - "ar":"عن طريق " - }, - "sms":{ - "en":"SMS", - "ar":" رسالة نصية " - }, - "instruct":{ - "en":" fill the code and ", - "ar":" ادخل الرمز و اضغط " - } -}, -"general": { - "birth_date": { - "en": "Birth Date", - "ar": "تاريخ الميلاد" - }, - "alert": { - "en": "Alert", - "ar": "تنبية" - }, - "details": { - "en": "Details", - "ar": "التفاصيل" - }, - "title": { - "en": "Title", - "ar": "العنوان" - }, - "info": { - "en": "Information", - "ar": "معلومات" - }, - "reset": { - "en": "Reset", - "ar": "إعادة تعيين" - }, - "ok": { - "en": "Ok", - "ar": "موافق" - }, - "confirm": { - "en": "Confirm", - "ar": "تأكيد" - }, - "cancel": { - "en": "Cancel", - "ar": "إلغاء" - }, - "done": { - "en": "Done", - "ar": "تم" - }, - "close": { - "en": "Close", - "ar": "إغلق" - }, - "back": { - "en": "Back", - "ar": "رجوع" - }, - "about": { - "en": "About", - "ar": "عن" - }, - "hide": { - "en": "Hide", - "ar": "إخفي" - }, - "select-only": { - "en": "Select", - "ar": "إختر" - }, - "select": { - "en": "Please select", - "ar": "إختر لو سمحت" - }, - "need": { - "en": "You need", - "ar": "أنت تحتاج" - }, - "hospital.location": { - "en": "Hospital Location", - "ar": "مكان المستشفي" - }, - "complaint": { - "en": "Raise Complaint", - "ar": "إرفع شكوي" - }, - "retry": { - "en": "Retry", - "ar": "أعد" - }, - "cart": { - "en": "Add to cart", - "ar": "أضف للسلة" - }, - "reminder": { - "en": "Add Reminder", - "ar": "أضف تذكير" - }, - "cancel-reminder": { - "en": "Cancel Reminder", - "ar": "الغي تذكير" - }, - "send-copy": { - "en": "Send Copy", - "ar": "أرسل نسخة" - }, - "personal-info": { - "en": "Personal Information", - "ar": "البيانات الشخصية" - }, - "qualification": { - "en": "Qualifications", - "ar": "المؤهلات" - }, - "nationality": { - "en": "Nationality", - "ar": "الجنسية" - }, - "empty": { - "en": "Sorry no data avaiable", - "ar": "لا يوجد بيانات" - }, - "no-match": { - "en": "Sorry no match", - "ar": "لا توجد نتيجة" - }, - "home": { - "en": "Home", - "ar": "الرئيسية" - }, - "date": { - "en": "Date", - "ar": "التاريخ" - }, - "num": { - "en": "No", - "ar": "الرقم" - }, - "time": { - "en": "Time", - "ar": "االوقت" - }, - "week": { - "en": "Week", - "ar": "أسبوع" - }, - "weeks": { - "en": "Weeks", - "ar": "أسابيع" - }, - "month": { - "en": "Month", - "ar": "شهر" - }, - "year": { - "en": "Year", - "ar": "سنة" - }, - "delete": { - "en": "Delete", - "ar": "إحذف" - }, - "add": { - "en": "Add", - "ar": "أضف" - }, - "edit": { - "en": "Edit", - "ar": "تعديل" - }, - "measure-unit": { - "en": "Measure unit", - "ar": "وحدة القياس" - }, - "measure-time": { - "en": "Measure time", - "ar": "وقت القياس" - }, - "save": { - "en": "Save", - "ar": "إحفظ" - }, - "success": { - "en": "Done successfully", - "ar": "تم بنجاح" - }, - "other": { - "en": "Other", - "ar": "أخري" - }, - "provide-missing": { - "en": "Please provide required information", - "ar": "لو سمحت قم بإدخال البيانات المطلوبة" - }, - "type": { - "en": "Type", - "ar": "النوع" - }, - "location": { - "en": "Location", - "ar": "المكان" - }, - "sequence": { - "en": "Sequence", - "ar": "رقم" - }, - "status": { - "en": "Status", - "ar": "الحالة" - }, - "scan": { - "en": "Scan", - "ar": "إبحث" - }, - "stop": { - "en": "Stop", - "ar": "توقف" - }, - "stop-connection": { - "en": "Stop Connection", - "ar": "وقف الإتصال" - }, - "remove-measure": { - "en": "Are you sure you want to remove this measure", - "ar": "هل متأكد تريد حذف عذة القراءة" - }, - "optional": { - "en": "Optional", - "ar": "خياري" - }, - "search": { - "en": "Search", - "ar": "إبحث" - }, - "advanced-search": { - "en": "Advanced Search", - "ar": "بحث متقدم" - }, - "email": { - "en": "Email", - "ar": "البريد الالكتروني" - }, - "filter": { - "en": "Filter", - "ar": "تفضيل" - }, - "first-name": { - "en": "First Name", - "ar": "الاسم الأول" - }, - "middle-name": { - "en": "Middle Name", - "ar": "إسم الوالد" - }, - "last-name": { - "en": "Last Name", - "ar": "إسم العائلة" - }, - "subject": { - "en": "Subject", - "ar": "موضوع" - }, - "message": { - "en": "Message", - "ar": "رسالة" - }, - "attachment": { - "en": "Attachment", - "ar": "مرفق" - }, - "select-attachment": { - "en": "Select Attachment", - "ar": "إختر مرفق" - }, - "large-file": { - "en": "Kindly select smaller file", - "ar": "لو سمحت إختر ملف أصغر" - }, - "open": { - "en": "Open", - "ar": "إفتح" - }, - "submit": { - "en": "Submit", - "ar": "أرسل" - }, - "enter-sms-code": { - "en": "Enter verification code", - "ar": "أدخل رقم التعريف" - }, - "enter-sms-enable-biometric": { - "en": "Enter verification for biometric", - "ar": "أدخل رقم التفعيل للبصمة" - }, - "enter-sms": { - "en": "Enter sms ", - "ar": "أدخل رقم الرسالة" - }, - "no-need": { - "en": "No Need", - "ar": "لا حاجة" - }, - "search-citeria": { - "en": "Select search criteria", - "ar": "إختر كيفية البحث" - }, - "search-by-complaint": { - "en": "Chaif Complaint Number", - "ar": "رقم الشكوي" - }, - "complaint-num": { - "en": "Complaint No", - "ar": "رقم الشكوي" - }, - "search-by-file": { - "en": "File Number", - "ar": "رقم الملف" - }, - "search-by-id": { - "en": "Identification Number", - "ar": "رقم الإقامة" - }, - "enter-complaint-no": { - "en": "Enter Chaif Complaint Number", - "ar": "أدخل رقم الشكوي" - }, - "enter-file-no": { - "en": "Enter File Number", - "ar": "أدخل رقم الملف" - }, - "file-no": { - "en": "File Number", - "ar": "رقم الملف" - }, - "enter-id-no": { - "en": "Enter Identification Number", - "ar": "أدخل رقم الإقامة أو الهوية" - }, - "id-no": { - "en": "Identification Number", - "ar": "رقم الإقامة أو الهوية" - }, - "enter-national-id": { - "en": "Enter National ID", - "ar": "أدخل رقم الهوية" - }, - "national-id": { - "en": "National ID", - "ar": "رقم الهوية" - }, - "enter-iqama-no": { - "en": "Enter ID Number", - "ar": "أدخل رقم الإقامة" - }, - "iqama-no": { - "en": "ID Number", - "ar": "رقم الإقامة" - }, - "complaint-no": { - "en": "Complaint No", - "ar": "رقم الشكوي" - }, - "number": { - "en": "Number", - "ar": "الرقم" - }, - "accept": { - "en": "Accept", - "ar": "موافق" - }, - "decline": { - "en": "Decline", - "ar": "أرفض" - }, - "usage-agreement": { - "en": "Usage Agreement", - "ar": "إتفاق الإستخدام" - }, - "loading": { - "en": "Loading ...", - "ar": "يتم التحميل ..." - }, - "email-sent": { - "en": "Email sent successfully", - "ar": "تم إرسال نسخة إلي البريد الإلكتروني" - }, - "send-email": { - "en": "Do you want to send copy of this examination to your personal email
[0]", - "ar": "هل تريد إرسال نسخة من هذا الاختبار إلى بريدك الإلكتروني الشخصي
[0]" - }, - "relogin": { - "en": "You need to login to use this service", - "ar": "تحتاج إلي الدخول لحسابك من أجل إستخدام هذة الخدمة" - }, - "idle-relogin": { - "en": "Your session has expired kindly relogin to use this service ", - "ar": "انتهت صلاحية جلستك يرجى التفضل بإعادة الدخول لإستخدام هذه الخدمة" - }, - "select-type": { - "en": "Select One", - "ar": "اختر فئة" - }, - "from": { - "en": "From", - "ar": "من" - }, - "to": { - "en": "To", - "ar": "الى" - }, - "result": { - "en": "Result", - "ar": "النتيجة" - }, - "select-date": { - "en": "Select Date", - "ar": "إختر ميعاد" - }, - "normal": { - "en": "Normal", - "ar": "عادي" - }, - "use-pin": { - "en": "Use Pin", - "ar": "إستخدم الرقم التعريفي" - }, - "auth-please": { - "en": "Please Authenticated", - "ar": "عرف نفسك" - }, - "dial-code": { - "en": "Dial Code", - "ar": "كود الإتصال" - }, - "country": { - "en": "Country", - "ar": "الدولة" - }, - "settings": { - "en": "Settings", - "ar": "إعدادات" - }, - "about-app": { - "en": "About the app", - "ar": "عن التطبيق" - }, - "mobile": { - "en": "Mobile No", - "ar": "رقم الجوال" - }, - "english": { - "en": "English", - "ar": "الإنجليزية" - }, - "english-change": { - "en": "الإنجليزية", - "ar": "English" - }, - "arabic": { - "en": "Arabic", - "ar": "العربية" - }, - "arabic-change": { - "en": "العربية", - "ar": "Arabic" - }, - "switch-lng": { - "en": "Do you want to change current language", - "ar": "هل تريد تغيير اللغة" - }, - "show-more": { - "en": "Show More >", - "ar": "عرض المزيد >" - }, - "read-less": { - "en": "Read Less <", - "ar": "قراءة أقل <" - }, - "read-more": { - "en": "Read More >", - "ar": "اقرأ المزيد >" - }, - "more":{ - "en": "More...", - "ar": "أكثر..." - }, - "send-email-short": { - "en": "Email", - "ar": "بريد" - }, - "hi": { - "en": "HI", - "ar": "مرحبا" - }, - "blood-type": { - "en": "blood type", - "ar": "فصيلة الدم" - }, - "sync-success": { - "en": "Data Synced Successfully", - "ar": "تمت مزامنة البيانات بنجاح" - }, - "already-synced": { - "en": "Latest data already synced", - "ar": "أحدث البيانات المتزامنة بالفعل" - }, - "weekly": { - "en": "Weekly", - "ar": "أسبوعي" - }, - "monthly": { - "en": "Monthly", - "ar": "شهريا" - }, - "yearly": { - "en": "Yearly", - "ar": "سنوي" - }, - "report-view": { - "en": "Report View", - "ar": "عرض تقرير" - }, - "graph-view": { - "en": "Graph View", - "ar": "عرض الرسم البياني" - }, - "distance-covered": { - "en": "Distance covered in KMs", - "ar": "المسافة المقطوعة بالكيلومترات" - }, - "steps-covered": { - "en": "Steps covered", - "ar": "الخطوات المغطاة" - }, - "hours-asleep": { - "en": "Time asleep in hours", - "ar": "الوقت نائم في ساعات" - }, - "bad": { - "en": "Bad", - "ar": "سيئ" - }, - "poor": { - "en": "Poor", - "ar": "ضعيف" - }, - "acceptable": { - "en": "Acceptable", - "ar": "مقبول" - }, - "good": { - "en": "Good", - "ar": "جيد" - }, - "excellent": { - "en": "Excellent", - "ar": "ممتاز" - }, - "not-allowed": { - "en": "User has no permissions", - "ar": "المستخدم ليس لدية صلاحيات" + "login": { + "en": "Login", + "ar": "الدخول" + }, + "username": { + "en": "User Name", + "ar": "اسم المستخدم" + }, + "login-type": { + "en": "Login Type", + "ar": "نوع الدخول" + }, + "register": { + "en": "Register", + "ar": "التسجيل" + }, + "sign-out": { + "en": "Are you sure you want to Sign Out", + "ar": "هل أنت متأكد من إغلاق الحساب" + }, + "forgot-id": { + "en": "Forgot Patient ID", + "ar": "نسيت رقم الملف" + }, + "forgot-password": { + "en": "Forgot Password", + "ar": "نسيت كلمة المرور" + }, + "password": { + "en": "Password", + "ar": "كلمه السر" + }, + "changepassword": { + "en": "Change Password", + "ar": "غير كلمة السر" + }, + "forgot-your-id": { + "en": "Forgot Your Patient ID", + "ar": "هل نسيت رقم ملف المريض" + }, + "forgot-desc": { + "en": "Enter your mobile number to receive your patient file number via SMS", + "ar": "أدخل رقم جوالك لاستلام رقم الملف الخاص بك عن طريق الرسائل النصية" + }, + "enter-email": { + "en": "Please you need to enter your email", + "ar": "لو سمحت أدخل البريد الإلكتروني الخاص بك" + }, + "enable-biometric": { + "en": "Do you want to use biometric sensors to ease your login", + "ar": "هل ترغب في استخدام أجهزة الاستشعار البصمة لتسهيل تسجيل دخولك" + }, + "face": { + "en": "Do you want to login with face recognition", + "ar": "هل تود الدخول ببصمة الوجة" + }, + "finger": { + "en": "Do you want to login with finger print", + "ar": "هل تود الدخول ببصمة الإصبع" + }, + "signout": { + "en": "Sign Out", + "ar": "تسجيل خروج" + }, + "find-us": { + "en": "Find us on social", + "ar": "تواصل معنا" + }, + "login-register": { + "en": "Login / Register", + "ar": "دخول / تسجيل" + }, + "id-or-file": { + "en": "ID or File No", + "ar": "هوية أو رقم الملف" + }, + "national-id-or-iqama": { + "en": "National ID or Iqama", + "ar": "رقم الهوية أو الإقامة" + }, + "sms-page": { + "en": "Verify OTP", + "ar": "تحقق مرة واحدة كلمة المرور" + } + }, + "vacation-rule": { + "main-heading": { + "en": "

You can EDIT or DELETE your current rules or CREATE RULE

", + "ar": "

يمكنك تعديل أو حذف القواعد الحالية أو إنشاء قاعدة جديدة

" + }, + "rule-Info": { + "en": "Rule Information", + "ar": "معلومات القاعدة" + }, + "rule-name": { + "en": "Rule Name", + "ar": "اسم القاعدة" + }, + "rule-type": { + "en": "Item Type", + "ar": "نوع العنصر" + }, + "notification-label": { + "en": "Notification", + "ar": "إعلام" + }, + "rule-status": { + "en": "Status", + "ar": "الحالة" + } + }, + "verificationcode": { + "verificationcode": { + "en": "Verification Code", + "ar": "رمز التحقق" + }, + "emptyCode": { + "en": "Please enter the verification code", + "ar": "الرجاء ادخال رمز التحقق" + }, + "title": { + "en": "You will receive a ", + "ar": " سوف تستلم " + }, + "by": { + "en": " by ", + "ar": "عن طريق " + }, + "sms": { + "en": "SMS", + "ar": " رسالة نصية " + }, + "instruct": { + "en": " fill the code and ", + "ar": " ادخل الرمز و اضغط " + } + }, + "general": { + "birth_date": { + "en": "Birth Date", + "ar": "تاريخ الميلاد" + }, + "alert": { + "en": "Alert", + "ar": "تنبية" + }, + "details": { + "en": "Details", + "ar": "التفاصيل" + }, + "title": { + "en": "Title", + "ar": "العنوان" + }, + "info": { + "en": "Information", + "ar": "معلومات" + }, + "reset": { + "en": "Reset", + "ar": "إعادة تعيين" + }, + "ok": { + "en": "Ok", + "ar": "موافق" + }, + "confirm": { + "en": "Confirm", + "ar": "تأكيد" + }, + "cancel": { + "en": "Cancel", + "ar": "إلغاء" + }, + "done": { + "en": "Done", + "ar": "تم" + }, + "close": { + "en": "Close", + "ar": "إغلق" + }, + "back": { + "en": "Back", + "ar": "رجوع" + }, + "about": { + "en": "About", + "ar": "عن" + }, + "hide": { + "en": "Hide", + "ar": "إخفي" + }, + "select-only": { + "en": "Select", + "ar": "إختر" + }, + "select": { + "en": "Please select", + "ar": "إختر لو سمحت" + }, + "need": { + "en": "You need", + "ar": "أنت تحتاج" + }, + "hospital.location": { + "en": "Hospital Location", + "ar": "مكان المستشفي" + }, + "complaint": { + "en": "Raise Complaint", + "ar": "إرفع شكوي" + }, + "retry": { + "en": "Retry", + "ar": "أعد" + }, + "cart": { + "en": "Add to cart", + "ar": "أضف للسلة" + }, + "reminder": { + "en": "Add Reminder", + "ar": "أضف تذكير" + }, + "cancel-reminder": { + "en": "Cancel Reminder", + "ar": "الغي تذكير" + }, + "send-copy": { + "en": "Send Copy", + "ar": "أرسل نسخة" + }, + "personal-info": { + "en": "Personal Information", + "ar": "البيانات الشخصية" + }, + "qualification": { + "en": "Qualifications", + "ar": "المؤهلات" + }, + "nationality": { + "en": "Nationality", + "ar": "الجنسية" + }, + "empty": { + "en": "Sorry no data avaiable", + "ar": "لا يوجد بيانات" + }, + "no-match": { + "en": "Sorry no match", + "ar": "لا توجد نتيجة" + }, + "home": { + "en": "Home", + "ar": "الرئيسية" + }, + "date": { + "en": "Date", + "ar": "التاريخ" + }, + "num": { + "en": "No", + "ar": "الرقم" + }, + "time": { + "en": "Time", + "ar": "االوقت" + }, + "week": { + "en": "Week", + "ar": "أسبوع" + }, + "weeks": { + "en": "Weeks", + "ar": "أسابيع" + }, + "month": { + "en": "Month", + "ar": "شهر" + }, + "year": { + "en": "Year", + "ar": "سنة" + }, + "delete": { + "en": "Delete", + "ar": "إحذف" + }, + "add": { + "en": "Add", + "ar": "أضف" + }, + "edit": { + "en": "Edit", + "ar": "تعديل" + }, + "measure-unit": { + "en": "Measure unit", + "ar": "وحدة القياس" + }, + "measure-time": { + "en": "Measure time", + "ar": "وقت القياس" + }, + "save": { + "en": "Save", + "ar": "إحفظ" + }, + "success": { + "en": "Done successfully", + "ar": "تم بنجاح" + }, + "other": { + "en": "Other", + "ar": "أخري" + }, + "provide-missing": { + "en": "Please provide required information", + "ar": "لو سمحت قم بإدخال البيانات المطلوبة" + }, + "type": { + "en": "Type", + "ar": "النوع" + }, + "location": { + "en": "Location", + "ar": "المكان" + }, + "sequence": { + "en": "Sequence", + "ar": "رقم" + }, + "status": { + "en": "Status", + "ar": "الحالة" + }, + "scan": { + "en": "Scan", + "ar": "إبحث" + }, + "stop": { + "en": "Stop", + "ar": "توقف" + }, + "stop-connection": { + "en": "Stop Connection", + "ar": "وقف الإتصال" + }, + "remove-measure": { + "en": "Are you sure you want to remove this measure", + "ar": "هل متأكد تريد حذف عذة القراءة" + }, + "optional": { + "en": "Optional", + "ar": "خياري" + }, + "search": { + "en": "Search", + "ar": "إبحث" + }, + "advanced-search": { + "en": "Advanced Search", + "ar": "بحث متقدم" + }, + "email": { + "en": "Email", + "ar": "البريد الالكتروني" + }, + "filter": { + "en": "Filter", + "ar": "تفضيل" + }, + "first-name": { + "en": "First Name", + "ar": "الاسم الأول" + }, + "middle-name": { + "en": "Middle Name", + "ar": "إسم الوالد" + }, + "last-name": { + "en": "Last Name", + "ar": "إسم العائلة" + }, + "subject": { + "en": "Subject", + "ar": "موضوع" + }, + "message": { + "en": "Message", + "ar": "رسالة" + }, + "attachment": { + "en": "Attachment", + "ar": "مرفق" + }, + "select-attachment": { + "en": "Select Attachment", + "ar": "إختر مرفق" + }, + "large-file": { + "en": "Kindly select smaller file", + "ar": "لو سمحت إختر ملف أصغر" + }, + "open": { + "en": "Open", + "ar": "إفتح" + }, + "submit": { + "en": "Submit", + "ar": "أرسل" + }, + "enter-sms-code": { + "en": "Enter verification code", + "ar": "أدخل رقم التعريف" + }, + "enter-sms-enable-biometric": { + "en": "Enter verification for biometric", + "ar": "أدخل رقم التفعيل للبصمة" + }, + "enter-sms": { + "en": "Enter sms ", + "ar": "أدخل رقم الرسالة" + }, + "no-need": { + "en": "No Need", + "ar": "لا حاجة" + }, + "search-citeria": { + "en": "Select search criteria", + "ar": "إختر كيفية البحث" + }, + "search-by-complaint": { + "en": "Chaif Complaint Number", + "ar": "رقم الشكوي" + }, + "complaint-num": { + "en": "Complaint No", + "ar": "رقم الشكوي" + }, + "search-by-file": { + "en": "File Number", + "ar": "رقم الملف" + }, + "search-by-id": { + "en": "Identification Number", + "ar": "رقم الإقامة" + }, + "enter-complaint-no": { + "en": "Enter Chaif Complaint Number", + "ar": "أدخل رقم الشكوي" + }, + "enter-file-no": { + "en": "Enter File Number", + "ar": "أدخل رقم الملف" + }, + "file-no": { + "en": "File Number", + "ar": "رقم الملف" + }, + "enter-id-no": { + "en": "Enter Identification Number", + "ar": "أدخل رقم الإقامة أو الهوية" + }, + "id-no": { + "en": "Identification Number", + "ar": "رقم الإقامة أو الهوية" + }, + "enter-national-id": { + "en": "Enter National ID", + "ar": "أدخل رقم الهوية" + }, + "national-id": { + "en": "National ID", + "ar": "رقم الهوية" + }, + "enter-iqama-no": { + "en": "Enter ID Number", + "ar": "أدخل رقم الإقامة" + }, + "iqama-no": { + "en": "ID Number", + "ar": "رقم الإقامة" + }, + "complaint-no": { + "en": "Complaint No", + "ar": "رقم الشكوي" + }, + "number": { + "en": "Number", + "ar": "الرقم" + }, + "accept": { + "en": "Accept", + "ar": "موافق" + }, + "decline": { + "en": "Decline", + "ar": "أرفض" + }, + "usage-agreement": { + "en": "Usage Agreement", + "ar": "إتفاق الإستخدام" + }, + "loading": { + "en": "Loading ...", + "ar": "يتم التحميل ..." + }, + "email-sent": { + "en": "Email sent successfully", + "ar": "تم إرسال نسخة إلي البريد الإلكتروني" + }, + "send-email": { + "en": "Do you want to send copy of this examination to your personal email
[0]", + "ar": "هل تريد إرسال نسخة من هذا الاختبار إلى بريدك الإلكتروني الشخصي
[0]" + }, + "relogin": { + "en": "You need to login to use this service", + "ar": "تحتاج إلي الدخول لحسابك من أجل إستخدام هذة الخدمة" + }, + "idle-relogin": { + "en": "Your session has expired kindly relogin to use this service ", + "ar": "انتهت صلاحية جلستك يرجى التفضل بإعادة الدخول لإستخدام هذه الخدمة" + }, + "select-type": { + "en": "Select One", + "ar": "اختر فئة" + }, + "from": { + "en": "From", + "ar": "من" + }, + "to": { + "en": "To", + "ar": "الى" + }, + "result": { + "en": "Result", + "ar": "النتيجة" + }, + "select-date": { + "en": "Select Date", + "ar": "إختر ميعاد" + }, + "normal": { + "en": "Normal", + "ar": "عادي" + }, + "use-pin": { + "en": "Use Pin", + "ar": "إستخدم الرقم التعريفي" + }, + "auth-please": { + "en": "Please Authenticated", + "ar": "عرف نفسك" + }, + "dial-code": { + "en": "Dial Code", + "ar": "كود الإتصال" + }, + "country": { + "en": "Country", + "ar": "الدولة" + }, + "settings": { + "en": "Settings", + "ar": "إعدادات" + }, + "about-app": { + "en": "About the app", + "ar": "عن التطبيق" + }, + "mobile": { + "en": "Mobile No", + "ar": "رقم الجوال" + }, + "english": { + "en": "English", + "ar": "الإنجليزية" + }, + "english-change": { + "en": "الإنجليزية", + "ar": "English" + }, + "arabic": { + "en": "Arabic", + "ar": "العربية" + }, + "arabic-change": { + "en": "العربية", + "ar": "Arabic" + }, + "switch-lng": { + "en": "Do you want to change current language", + "ar": "هل تريد تغيير اللغة" + }, + "show-more": { + "en": "Show More >", + "ar": "عرض المزيد >" + }, + "read-less": { + "en": "Read Less <", + "ar": "قراءة أقل <" + }, + "read-more": { + "en": "Read More >", + "ar": "اقرأ المزيد >" + }, + "more": { + "en": "More...", + "ar": "أكثر..." + }, + "send-email-short": { + "en": "Email", + "ar": "بريد" + }, + "hi": { + "en": "HI", + "ar": "مرحبا" + }, + "blood-type": { + "en": "blood type", + "ar": "فصيلة الدم" + }, + "sync-success": { + "en": "Data Synced Successfully", + "ar": "تمت مزامنة البيانات بنجاح" + }, + "already-synced": { + "en": "Latest data already synced", + "ar": "أحدث البيانات المتزامنة بالفعل" + }, + "weekly": { + "en": "Weekly", + "ar": "أسبوعي" + }, + "monthly": { + "en": "Monthly", + "ar": "شهريا" + }, + "yearly": { + "en": "Yearly", + "ar": "سنوي" + }, + "report-view": { + "en": "Report View", + "ar": "عرض تقرير" + }, + "graph-view": { + "en": "Graph View", + "ar": "عرض الرسم البياني" + }, + "distance-covered": { + "en": "Distance covered in KMs", + "ar": "المسافة المقطوعة بالكيلومترات" + }, + "steps-covered": { + "en": "Steps covered", + "ar": "الخطوات المغطاة" + }, + "hours-asleep": { + "en": "Time asleep in hours", + "ar": "الوقت نائم في ساعات" + }, + "bad": { + "en": "Bad", + "ar": "سيئ" + }, + "poor": { + "en": "Poor", + "ar": "ضعيف" + }, + "acceptable": { + "en": "Acceptable", + "ar": "مقبول" + }, + "good": { + "en": "Good", + "ar": "جيد" + }, + "excellent": { + "en": "Excellent", + "ar": "ممتاز" + }, + "not-allowed": { + "en": "User has no permissions", + "ar": "المستخدم ليس لدية صلاحيات" + }, + "vacation-rule": { + "en": "Vacation Rule", + "ar": "قاعدة عطلة" + } } -} } \ No newline at end of file