diff --git a/src/app/client/src/app/modules/content-search/components/index.ts b/src/app/client/src/app/modules/content-search/components/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..10b2920ce9ba524a7ed42a184bbb3bc08243a7f6
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/index.ts
@@ -0,0 +1,3 @@
+export * from './no-result/no-result.component';
+export * from './search-filter/search-filter.component';
+export * from './search-prominent-filter/search-prominent-filter.component';
diff --git a/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.html b/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..957aa776730d046b52680e8198c810c0c9dfd698
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.html
@@ -0,0 +1,15 @@
+<div class="no-content-container d-flex flex-jc-center">
+  <div class="my-48 p-16 w-100">
+    <div class="d-flex flex-dc flex-jc-center flex-ai-center text-center">
+      <div>
+        <img src="./assets/images/group.svg" width="90px" height="90px">
+      </div>
+      <div class="fmedium board-title pt-24 font-weight-bold">{{title}}</div>
+      <!-- <p class="fs-0-92 mt-8 text-center board-text"></p> -->
+      <div *ngIf="showExploreContentButton && subTitle" class="fs-0-785 sub-title py-24">{{subTitle | interpolate:'{instance}': instance}}</div>
+      <button appTelemetryInteract [telemetryInteractEdata]="exploreMoreContentEdata" *ngIf="showExploreContentButton" type="button" id="browse" class="sb-btn sb-btn-primary sb-btn-normal mb-8" (click)="handleEvent()">
+        {{buttonText}}
+      </button> 
+    </div>
+  </div>
+</div>
\ No newline at end of file
diff --git a/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.scss b/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..c9465b5df3b61d5224b6cf1c152db789bff0fe57
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.scss
@@ -0,0 +1,14 @@
+
+.no-content-container{
+    width: 100%;
+    height: 100%;
+    .board-title{
+      color: var(--gray-400);
+    }
+    .board-text{
+      color: var(--gray-300);
+    }
+    .sub-title{
+      color: var(--gray-400);
+    }
+}
\ No newline at end of file
diff --git a/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.spec.ts b/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..0202fc4512f5b111000c9c5ff7868a8221ad6b26
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.spec.ts
@@ -0,0 +1,48 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { NoResultComponent } from './no-result.component';
+import { Router } from '@angular/router';
+import { SharedModule, ResourceService, ConfigService, BrowserCacheTtlService } from '@sunbird/shared';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
+import { SuiModule } from 'ng2-semantic-ui';
+import { FormsModule } from '@angular/forms';
+import { TelemetryModule } from '@sunbird/telemetry';
+import { PlayerHelperModule } from '@sunbird/player-helper';
+import { CacheService } from 'ng2-cache-service';
+import { DeviceDetectorService } from 'ngx-device-detector';
+
+describe('NoResultComponent', () => {
+  let component: NoResultComponent;
+  let fixture: ComponentFixture<NoResultComponent>;
+
+  class RouterStub {
+    navigate = jasmine.createSpy('navigate');
+  }
+
+  beforeEach(async(() => {
+    TestBed.configureTestingModule({
+      imports: [HttpClientTestingModule, FormsModule, SharedModule.forRoot(), SuiModule, TelemetryModule.forRoot(), PlayerHelperModule],
+      declarations: [NoResultComponent],
+      providers: [ResourceService, ConfigService, CacheService, BrowserCacheTtlService, DeviceDetectorService,
+        { provide: Router, useClass: RouterStub }
+      ]
+    })
+      .compileComponents();
+  }));
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(NoResultComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+
+  it('should emit event on click of explore', () => {
+    spyOn(component.exploreMoreContent, 'emit');
+    component.handleEvent();
+    expect(component.exploreMoreContent.emit).toHaveBeenCalled();
+  });
+});
diff --git a/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.ts b/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f4c85e28e00469f2500449cfb3debe8bd842a521
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/no-result/no-result.component.ts
@@ -0,0 +1,40 @@
+import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
+import { Router, ActivatedRoute } from '@angular/router';
+import { ResourceService } from '@sunbird/shared';
+import * as _ from 'lodash-es';
+import { IInteractEventEdata } from '@sunbird/telemetry';
+
+@Component({
+  selector: 'app-no-result-found',
+  templateUrl: './no-result.component.html',
+  styleUrls: ['./no-result.component.scss']
+})
+export class NoResultComponent implements OnInit {
+
+  @Input() title: string;
+  @Input() subTitle: string;
+  @Input() buttonText: string;
+  @Input() showExploreContentButton: boolean;
+  @Input() filters;
+  @Input() telemetryInteractEdataObject;
+  @Output() exploreMoreContent = new EventEmitter();
+  instance: string;
+  exploreMoreContentEdata: IInteractEventEdata;
+
+  constructor( public router: Router, public resourceService: ResourceService  ) { }
+
+  ngOnInit() {
+    this.instance = _.upperCase(this.resourceService.instance);
+    this.exploreMoreContentEdata = {
+      ...this.telemetryInteractEdataObject,
+      extra : {
+      ...this.filters
+      }
+    };
+  }
+
+  handleEvent() {
+    this.exploreMoreContent.emit();
+  }
+
+}
diff --git a/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.html b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..4f82555e360d2b2470d3ea25e35209d2adf8f4f1
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.html
@@ -0,0 +1,38 @@
+<div *ngIf="boards.length && refresh" class="sb-header-filter-bar zindex-2">
+    <!-- State and Medium sections -->
+    <div class="d-flex state-medium-container sb-bg-color-white">
+        <div class="ui container d-flex">
+            <div class="state-medium-container__dropdown">
+                <!-- state section -->
+                <div class="sb-field mb-0">
+                    <sui-select class="selection state-selection"
+                        [placeholder]="resourceService?.messages?.stmsg?.m0126" [(ngModel)]="selectedBoard"
+                        labelField="name" (ngModelChange)="onBoardChange(selectedBoard)">
+                        <sui-select-option *ngFor="let board of boards" [value]="board" appTelemetryInteract
+                            [telemetryInteractEdata]="getBoardInteractEdata(board)"></sui-select-option>
+                    </sui-select>
+                </div>
+                <!-- state section ends -->
+            </div>
+            <!-- medium section -->
+            <div *ngIf="mediums?.length" class="state-medium-container__separator mx-8"></div>
+            <div class="state-medium-container__medium">
+                <sb-library-filters [list]="mediums" [layout]="filterLayout.SQUARE" [selectedItems]="[selectedMediumIndex]"
+                    (selectedFilter)="filterChangeEvent.next({ event: $event, type: 'medium'})" appTelemetryInteract
+                    [telemetryInteractEdata]="getMediumInteractEdata()"></sb-library-filters>
+            </div>
+            <!-- medium section ends -->
+        </div>
+    </div>
+    <!-- State and Medium sections ends-->
+
+    <!-- class section -->
+    <div class="sb-class-bar sb-bg-color-gray-0">
+        <div class="ui container">
+            <sb-library-filters [list]="gradeLevels" [layout]="filterLayout.ROUND" [selectedItems]="[selectedGradeLevelIndex]"
+                (selectedFilter)="filterChangeEvent.next({ event: $event, type: 'gradeLevel'})" appTelemetryInteract
+                [telemetryInteractEdata]="getGradeLevelInteractEdata()"></sb-library-filters>
+        </div>
+    </div>
+    <!-- class section ends -->
+</div>
\ No newline at end of file
diff --git a/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.scss b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..79f17ce9cccdce1f829fb91e33ea51cc68beec66
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.scss
@@ -0,0 +1,92 @@
+@import "variables";
+@import "mixins/mixins";
+
+.sb-header-filter-bar {
+  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
+  position: relative;
+}
+.state-medium-container {
+  position: relative;
+  z-index: 999;
+  height: 64px;
+  &__dropdown {
+    padding: ($base-block-space * 2) 0;
+    z-index: 1;
+  }
+
+  &__separator {
+    border-left: 1px solid var(--gray-200);
+    height: ($base-block-space * 3);
+    margin: auto 0px auto 0px;
+  }
+
+  &__medium {
+    overflow-x: auto;
+    overflow-y: hidden;
+    height: 64px;
+  }
+}
+
+.sb-class-bar {
+}
+
+// state dropdown css
+.ui.selection.dropdown .menu > .item {
+  font-size: 12px;
+  padding: 1em 1em !important;
+}
+
+.ui.selection.dropdown.state-medium {
+  color: var(--blue);
+  display: flex;
+  align-items: center;
+  border: none;
+  background: none;
+  min-width: 100px;
+  margin: 0;
+
+  .medium-selection {
+    min-width: 120px;
+  }
+
+  &:hover {
+    background: #e5edf5;
+  }
+}
+
+.ui.selection.dropdown.state-selection {
+  color: var(--primary-400);
+  font-weight: bold;
+  display: flex;
+  align-items: center;
+  border: calculateRem(1px) solid var(--primary-400);
+  &.active {
+    background: #E5EDF5 !important;
+    color: var(--primary-400) !important;
+    border-color: #96c8da;
+  }
+
+  &:hover {
+    color: var(--blue) !important;
+    box-sizing: border-box;
+    border-radius: calculateRem(2px);
+    background-color: #E5EDF5;
+  }
+  
+}
+
+.ui.selection.dropdown .menu {
+  max-height: 20em;
+}
+.ui.default.dropdown:not(.button) > .text,
+.ui.dropdown:not(.button) > .default.text {
+  color: red;
+}
+
+:host ::ng-deep .dropdown:not(.button) > .default.text {
+  color: var(--primary-400) !important;
+}
+
+:host ::ng-deep .sb-slider-pills-container .sb-pills-container{
+    padding: 0.5rem 0 !important;
+}
diff --git a/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.spec.data.ts b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.spec.data.ts
new file mode 100644
index 0000000000000000000000000000000000000000..1bb6650f1ce205e91671c6dd13f33f83c3dde885
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.spec.data.ts
@@ -0,0 +1,192 @@
+export const response = {
+    cutodianOrgData: {
+        'id': 'api.system.settings.get.custodianOrgId',
+        'ver': '1.0',
+        'ts': '2019-12-05T04:36:57.303Z',
+        'params': {
+            'resmsgid': '620244d0-289f-418a-a329-b5c3927bfb61',
+            'msgid': '56d3e56f-2fd7-413e-924c-adc74c055659',
+            'status': 'successful',
+            'err': null,
+            'errmsg': null
+        },
+        'responseCode': 'OK',
+        'result': {
+            'response': {
+                'id': 'custodianOrgId',
+                'field': 'custodianOrgId',
+                'value': '01285019302823526477'
+            }
+        }
+    },
+    userData: {
+        'framework': {
+            'id': '505c7c48ac6dc1edc9b08f21db5a571d',
+            'board': 'State test 2',
+            'medium': ['English'],
+            'gradeLevel': ['Class 4', 'Class 6']
+        },
+        'formatedName': 'guest',
+        'name': 'guest',
+        'createdOn': 1575441443724,
+        'updatedOn': 1575441443724,
+        '_id': '4add04b9-43e0-4f1e-81eb-03ff1a131faa',
+        'location': {
+            'state': {
+                'code': '29',
+                'name': 'test_state_1',
+                'id': '4a6d77a1-6653-4e30-9be8-93371b6b53b5',
+                'type': 'state'
+            },
+            'city': {
+                'code': '2907',
+                'name': 'test_district_1',
+                'id': 'cde02789-5803-424b-a3f5-10db347280e9',
+                'type': 'district',
+                'parentId': '4a6d77a1-6653-4e30-9be8-93371b6b53b5'
+            }
+        }
+    },
+    channelData: {
+        'id': 'api.channel.read',
+        'ver': '1.0',
+        'ts': '2019-12-05T05:10:35.812Z',
+        'params': {
+            'resmsgid': '3ef10620-f456-48b6-8c94-8bc7c9d9f00e',
+            'msgid': 'b17d8bcf-3f66-44d4-b036-6fe49462a610',
+            'status': 'successful',
+            'err': null,
+            'errmsg': null
+        },
+        'responseCode': 'OK',
+        'result': {
+            'channel': {
+                'identifier': '505c7c48ac6dc1edc9b08f21db5a571d',
+                'code': '505c7c48ac6dc1edc9b08f21db5a571d',
+                'consumerId': '0aa13c48-dda0-4259-9007-c795dacd7b9c',
+                'channel': 'test',
+                'description': 'This is test channel',
+                'suggested_frameworks': [{
+                    'identifier': 'test_k-12',
+                    'code': 'test_k-12',
+                    'name': 'Test Framework',
+                    'objectType': 'Framework'
+                }],
+                'frameworks': [{
+                    'identifier': 'as_k-12',
+                    'name': 'State Test 1',
+                    'objectType': 'Framework',
+                    'relation': 'hasSequenceMember',
+                    'description': 'as_k-12 test',
+                    'index': 3,
+                    'status': 'Live'
+                }, {
+                    'identifier': 'ka_k-12',
+                    'name': 'State test 2',
+                    'objectType': 'Framework',
+                    'relation': 'hasSequenceMember',
+                    'description': 'State test 2',
+                    'index': 13,
+                    'status': 'Live'
+                }],
+                'createdOn': '2018-02-12T11:38:44.292+0000',
+                'versionKey': '1518435524292',
+                'appId': 'sunbird_portal',
+                'name': 'sunbird',
+                'lastUpdatedOn': '2018-02-12T11:38:44.292+0000',
+                'defaultFramework': 'TEST',
+                'status': 'Live'
+            }
+        }
+    },
+    frameWorkData: {
+        'id': 'api.framework.read',
+        'ver': '1.0',
+        'ts': '2019-12-05T05:16:44.720Z',
+        'params': {
+            'resmsgid': '96e5758a-3111-4fac-8b3f-985d924eebb4',
+            'msgid': 'd632dcef-eaff-4802-8ad6-2ce05dbc2545',
+            'status': 'successful',
+            'err': null,
+            'errmsg': null
+        },
+        'responseCode': 'OK',
+        'result': {
+            'framework': {
+                'identifier': 'ka_k-12',
+                'code': 'ka_k-12',
+                'name': 'State (Test 1)',
+                'description': 'State (Test 1)',
+                'categories': [{
+                    'identifier': 'ka_k-12_board',
+                    'code': 'board',
+                    'terms': [{
+                        'associations': [{
+                            'identifier': 'ka_k-12_topic_e42568e0c6a050c1baf66eb391bcc4d5fc7a7226',
+                            'code': 'e42568e0c6a050c1baf66eb391bcc4d5fc7a7226',
+                            'translations': null,
+                            'name': 'Light',
+                            'description': 'Light',
+                            'category': 'topic',
+                            'status': 'Live'
+                        }]
+                    }],
+                    'translations': null,
+                    'name': 'Board',
+                    'description': 'Board',
+                    'index': 1,
+                    'status': 'Live'
+                }, {
+                    'identifier': 'ka_k-12_medium',
+                    'code': 'medium',
+                    'terms': [{
+                        'associations': [{
+                            'identifier': 'ka_k-12_topic_1a94dc890ceb6b19695bf72108cbb64d1e2ba89b',
+                            'code': '1a94dc890ceb6b19695bf72108cbb64d1e2ba89b',
+                            'translations': null,
+                            'name': 'English',
+                            'description': 'English',
+                            'category': 'medium',
+                            'status': 'Live'
+                        }]
+                    }],
+                    'translations': null,
+                    'name': 'Medium',
+                    'description': 'Medium',
+                    'index': 2,
+                    'status': 'Live'
+                }, {
+                    'identifier': 'ka_k-12_gradelevel',
+                    'code': 'gradeLevel',
+                    'terms': [{
+                        'associations': [{
+                            'identifier': 'ka_k-12_topic_1a94dc890ceb6b19695bf72108cbb64d1e2ba89b',
+                            'code': '1a94dc890ceb6b19695bf72108cbb64d1e2ba89b',
+                            'translations': null,
+                            'name': 'Class 5',
+                            'description': 'class 5',
+                            'category': 'gradeLevel',
+                            'status': 'Live'
+                        }]
+                    }],
+                    'translations': null,
+                    'name': 'Grade',
+                    'description': 'Grade',
+                    'index': 3,
+                    'status': 'Live'
+                }],
+                'type': 'K-12',
+                'objectType': 'Framework'
+            }
+        }
+    },
+    selectedBoard: {
+        'identifier': 'ka_k-12',
+        'name': 'State test 2',
+        'objectType': 'Framework',
+        'relation': 'hasSequenceMember',
+        'description': 'State test 2',
+        'index': 13,
+        'status': 'Live'
+    }
+};
diff --git a/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.spec.ts b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..1ae0a8be8a9724bc56278382e760e7c0559d0bcd
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.spec.ts
@@ -0,0 +1,59 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import { SearchFilterComponent } from './search-filter.component';
+import { CommonConsumptionModule } from '@project-sunbird/common-consumption';
+import { TelemetryModule } from '@sunbird/telemetry';
+import { SuiModule } from 'ng2-semantic-ui';
+import { ResourceService, ConfigService, BrowserCacheTtlService, ToasterService } from '@sunbird/shared';
+import { CacheService } from 'ng2-cache-service';
+import { OrgDetailsService, TenantService, ChannelService } from '@sunbird/core';
+import { HttpClientModule } from '@angular/common/http';
+import { NO_ERRORS_SCHEMA } from '@angular/core';
+import { RouterModule } from '@angular/router';
+import { response } from './search-filter.component.spec.data';
+import { of as observableOf } from 'rxjs';
+
+
+describe('SearchFilterComponent', () => {
+    let component: SearchFilterComponent;
+    let fixture: ComponentFixture<SearchFilterComponent>;
+    const resourceBundle = {
+        'messages': {
+            'stmsg': {
+                'm0007': 'Search for something else',
+                'm0006': 'No result'
+            },
+            'fmsg': {
+                'm0077': 'Fetching search result failed',
+                'm0051': 'Fetching other courses failed, please try again later...'
+            }
+        }
+    };
+
+    beforeEach(async(() => {
+        TestBed.configureTestingModule({
+            declarations: [SearchFilterComponent],
+            imports: [CommonConsumptionModule, TelemetryModule.forRoot(), SuiModule, HttpClientModule, RouterModule.forRoot([])],
+            providers: [
+                { provide: ResourceService, useValue: resourceBundle },
+                CacheService,
+                ConfigService,
+                OrgDetailsService,
+                CacheService,
+                BrowserCacheTtlService,
+                TenantService,
+                ToasterService,
+                ChannelService
+            ],
+            schemas: [NO_ERRORS_SCHEMA]
+        }).compileComponents();
+    }));
+
+    beforeEach(() => {
+        fixture = TestBed.createComponent(SearchFilterComponent);
+        component = fixture.componentInstance;
+        fixture.detectChanges();
+    });
+    it('should create', () => {
+        expect(component).toBeTruthy();
+    });
+});
diff --git a/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.ts b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..821e8c8ac84394313cbe2e5f457702185fb5179c
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-filter/search-filter.component.ts
@@ -0,0 +1,205 @@
+import { Component, Output, EventEmitter, Input, OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
+import * as _ from 'lodash-es';
+import { LibraryFiltersLayout } from '@project-sunbird/common-consumption';
+import { ResourceService } from '@sunbird/shared';
+import { IInteractEventEdata } from '@sunbird/telemetry';
+import { Router, ActivatedRoute } from '@angular/router';
+import { Subject, combineLatest, of } from 'rxjs';
+import { takeUntil, debounceTime, map, mergeMap, filter, tap } from 'rxjs/operators';
+import { ContentSearchService } from './../../services';
+
+@Component({
+  selector: 'app-search-filter',
+  templateUrl: './search-filter.component.html',
+  styleUrls: ['./search-filter.component.scss']
+})
+export class SearchFilterComponent implements OnInit, OnDestroy {
+  public filterLayout = LibraryFiltersLayout;
+  public initialized = false;
+  public refresh = true;
+  private unsubscribe$ = new Subject<void>();
+
+  private filters;
+  private queryFilters: any = {};
+  public selectedBoard: any = {};
+  public selectedMediumIndex = 0;
+  public selectedGradeLevelIndex = 0;
+
+  public boards: any[] = [];
+  public mediums: any[] = [];
+  public gradeLevels: any[] = [];
+  private selectedBoardLocalCopy: any = {};
+  filterChangeEvent =  new Subject();
+  @Input() defaultFilters;
+  @Input() pageId = _.get(this.activatedRoute, 'snapshot.data.telemetry.pageid');
+  @Output() filterChange: EventEmitter<any> = new EventEmitter();
+  constructor(public resourceService: ResourceService, private router: Router, private contentSearchService: ContentSearchService,
+    private activatedRoute: ActivatedRoute, private cdr: ChangeDetectorRef) {
+  }
+  ngOnInit() {
+    this.fetchSelectedFilterAndFilterOption();
+    this.handleFilterChange();
+  }
+  private fetchSelectedFilterAndFilterOption() {
+    this.activatedRoute.queryParams.pipe(map((queryParams) => {
+      const queryFilters: any = {};
+      _.forIn(queryParams, (value, key) => {
+        if (['medium', 'gradeLevel', 'board'].includes(key)) {
+          queryFilters[key] = _.isArray(value) ? value : [value];
+        }
+      });
+      return queryFilters;
+    }),
+    filter((queryFilters) => {
+      const selectedFilters = this.getSelectedFilter();
+      if (_.isEqual(queryFilters, selectedFilters) && this.initialized) { // same filter change, no need to fetch filter again
+        return false;
+      }
+      this.initialized = true;
+      return true;
+    }),
+    mergeMap((queryParams) => {
+      this.queryFilters = _.cloneDeep(queryParams);
+      const boardName = _.get(queryParams, 'board[0]') || _.get(this.boards, '[0]');
+      return this.contentSearchService.fetchFilter(boardName);
+    }))
+    .subscribe(filters => {
+      this.filters = filters;
+      this.updateBoardList();
+      this.updateMediumAndGradeLevelList();
+      this.selectedBoardLocalCopy = this.selectedBoard;
+      this.emitFilterChangeEvent(true);
+      this.hardRefreshFilter();
+    }, error => {
+      console.error('fetching filter data failed', error);
+    });
+  }
+  private handleFilterChange() {
+    this.filterChangeEvent.pipe(filter(({type, event}) => {
+      if (type === 'medium' && this.selectedMediumIndex !== event.data.index) {
+        this.selectedMediumIndex = event.data.index;
+        return true;
+      } else if (type === 'gradeLevel' && this.selectedGradeLevelIndex !== event.data.index) {
+        this.selectedGradeLevelIndex = event.data.index;
+        return true;
+      }
+      return false;
+    }), debounceTime(1000)).subscribe(({type, event}) => {
+      this.emitFilterChangeEvent();
+    });
+  }
+  private updateBoardList() {
+    this.boards = this.filters.board || [];
+    if (this.boards.length) {
+      this.selectedBoard = _.find(this.boards, {name: _.get(this.queryFilters, 'board[0]')}) ||
+        _.find(this.boards, {name: _.get(this.defaultFilters, 'board[0]')}) || this.boards[0];
+    }
+  }
+  private updateMediumAndGradeLevelList() {
+    this.mediums = _.map(this.filters.medium, medium => medium.name);
+    if (this.mediums.length) {
+      let mediumIndex = -1;
+      if (_.get(this.queryFilters, 'medium[0]')) {
+        mediumIndex = this.mediums.findIndex((medium) => medium === this.queryFilters.medium[0]);
+      }
+      if (_.get(this.defaultFilters, 'medium[0]') && mediumIndex === -1) {
+        mediumIndex = this.mediums.findIndex((medium) => medium === this.defaultFilters.medium[0]);
+      }
+      mediumIndex = mediumIndex === -1 ? 0 : mediumIndex;
+      this.selectedMediumIndex = mediumIndex;
+    }
+    this.gradeLevels = _.map(this.filters.gradeLevel, gradeLevel => gradeLevel.name);
+    if (this.gradeLevels.length) {
+      let gradeLevelIndex = -1;
+      if (_.get(this.queryFilters, 'gradeLevel[0]')) {
+        gradeLevelIndex = this.gradeLevels.findIndex((gradeLevel) => gradeLevel === this.queryFilters.gradeLevel[0]);
+      }
+      if (_.get(this.defaultFilters, 'gradeLevel[0]') && gradeLevelIndex === -1) {
+        gradeLevelIndex = this.gradeLevels.findIndex((gradeLevel) => gradeLevel === this.defaultFilters.gradeLevel[0]);
+      }
+      gradeLevelIndex = gradeLevelIndex === -1 ? 0 : gradeLevelIndex;
+      this.selectedGradeLevelIndex = gradeLevelIndex;
+    }
+  }
+  public onBoardChange(option) {
+    if (this.selectedBoardLocalCopy.name === option.name) {
+      return;
+    }
+    this.selectedBoardLocalCopy = option;
+    this.mediums = [];
+    this.gradeLevels = [];
+    this.contentSearchService.fetchFilter(option.name).subscribe((filters) => {
+      this.filters.medium = filters.medium || [];
+      this.filters.gradeLevel = filters.gradeLevel || [];
+      this.updateMediumAndGradeLevelList();
+      this.emitFilterChangeEvent();
+    }, error => {
+      console.error('fetching filters on board change error', error);
+    });
+  }
+  private getSelectedFilter() {
+    return {
+      board: _.get(this.selectedBoard, 'name') ? [this.selectedBoard.name] : [],
+      medium: this.mediums[this.selectedMediumIndex] ? [this.mediums[this.selectedMediumIndex]] : [],
+      gradeLevel: this.gradeLevels[this.selectedGradeLevelIndex] ? [this.gradeLevels[this.selectedGradeLevelIndex]] : []
+    };
+  }
+  private emitFilterChangeEvent(skipUrlUpdate = false) {
+    const filters = this.getSelectedFilter();
+    this.filterChange.emit(filters);
+    if (!skipUrlUpdate) {
+      this.router.navigate([], { queryParams: this.getSelectedFilter(),
+        relativeTo: this.activatedRoute.parent
+      });
+    }
+  }
+  public getBoardInteractEdata(selectedBoard: any = {}) {
+    const selectBoardInteractEdata: IInteractEventEdata = {
+      id: 'apply-filter',
+      type: 'click',
+      pageid: this.activatedRoute.snapshot.data.telemetry.pageid
+    };
+    const appliedFilter: any = this.getSelectedFilter() || {};
+    appliedFilter.board = selectedBoard.name ? selectedBoard.name : appliedFilter.board;
+    selectBoardInteractEdata['extra'] = {
+      filters: appliedFilter
+    };
+    return selectBoardInteractEdata;
+  }
+
+  public getMediumInteractEdata() {
+    const selectBoardInteractEdata: IInteractEventEdata = {
+      id: 'apply-filter',
+      type: 'click',
+      pageid: this.activatedRoute.snapshot.data.telemetry.pageid
+    };
+    const appliedFilter = this.getSelectedFilter();
+    selectBoardInteractEdata['extra'] = {
+      filters: appliedFilter
+    };
+    return selectBoardInteractEdata;
+  }
+
+  public getGradeLevelInteractEdata() {
+    const selectBoardInteractEdata: IInteractEventEdata = {
+      id: 'apply-filter',
+      type: 'click',
+      pageid: this.activatedRoute.snapshot.data.telemetry.pageid
+    };
+    const appliedFilter = this.getSelectedFilter();
+    selectBoardInteractEdata['extra'] = {
+      filters: appliedFilter
+    };
+    return selectBoardInteractEdata;
+  }
+
+  ngOnDestroy() {
+    this.unsubscribe$.next();
+    this.unsubscribe$.complete();
+  }
+  private hardRefreshFilter() {
+    this.refresh = false;
+    this.cdr.detectChanges();
+    this.refresh = true;
+  }
+}
diff --git a/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.html b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..97016d27fec1eea3ffa76d0a074e66346167fc93
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.html
@@ -0,0 +1,32 @@
+<div class="sb-prominent-filter sb-bg-color-gray-0 pb-0 pt-16" *ngIf="refresh">
+    <div class="ui container">
+
+        <span class="sb-filter-label pb-8 fmedium">
+            {{resourceService.frmelmnts?.lbl?.filterContentBy}}
+        </span>
+
+        <div class="ui active sb-prominent-filter-container" [suiCollapse]="collapse" *ngIf="formFieldProperties">
+
+            <div class="sb-prominent-filter-field" *ngFor="let field of formFieldProperties">
+                <ng-container *ngIf="field.inputType==='select' || field.inputType==='multi-select'">
+                    <app-custom-multi-select [inputData]="formInputData[field.code]" [field]="field"
+                        (selectedValue)="selectedValue($event, field.code);setFilterInteractData()">
+                    </app-custom-multi-select>
+                </ng-container>
+            </div>
+
+            <div class="sb-prominent-filter-field">
+                <button class="sb-btn sb-btn-normal sb-btn-outline-primary" appTelemetryInteract
+                    [telemetryInteractEdata]="resetFilterInteractEdata" (click)="resetFilters()">
+                    {{resourceService?.frmelmnts?.btn?.reset}}
+                </button>
+                <button class="sb-btn sb-btn-normal sb-btn-primary ml-8" appTelemetryInteract
+                    [telemetryInteractEdata]="applyFilterInteractEdata" (click)="applyFilters()">
+                    {{resourceService?.frmelmnts?.btn?.submit}}
+                </button>
+            </div>
+
+        </div>
+
+    </div>
+</div>
diff --git a/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.scss b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.spec.data.ts b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.spec.data.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3d79343cdd23c52e4ea40ea853975a63c7f9e426
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.spec.data.ts
@@ -0,0 +1,250 @@
+export const formatedFilterDetails = [
+    {
+        'code': 'board',
+        'dataType': 'text',
+        'name': 'Board',
+        'label': 'Board',
+        'description': 'Education Board (Like MP Board, NCERT, etc)',
+        'editable': true,
+        'inputType': 'select',
+        'required': false,
+        'displayProperty': 'Editable',
+        'visible': true,
+        'renderingHints': {
+            'semanticColumnWidth': 'three'
+        },
+        'index': 1,
+        'range': [
+            {
+                'identifier': 'test_board_1',
+                'code': 'test_board',
+                'translations': null,
+                'name': 'TEST_BOARD',
+                'description': '',
+                'index': 1,
+                'category': 'board',
+                'status': 'Live'
+            }
+        ]
+    },
+    {
+        'code': 'medium',
+        'dataType': 'text',
+        'name': 'Medium',
+        'label': 'Medium',
+        'description': 'Medium of instruction',
+        'editable': true,
+        'inputType': 'select',
+        'required': false,
+        'displayProperty': 'Editable',
+        'visible': true,
+        'renderingHints': {
+            'semanticColumnWidth': 'three'
+        },
+        'index': 2,
+        'range': [
+            {
+                'identifier': 'test_medium_assamese',
+                'code': 'test_medium',
+                'translations': null,
+                'name': 'TEST_MEDIUM',
+                'description': '',
+                'index': 1,
+                'category': 'medium',
+                'status': 'Live'
+            }
+        ]
+    },
+    {
+        'code': 'gradeLevel',
+        'dataType': 'text',
+        'name': 'Class',
+        'label': 'Class',
+        'description': 'Grade',
+        'editable': true,
+        'inputType': 'select',
+        'required': false,
+        'displayProperty': 'Editable',
+        'visible': true,
+        'renderingHints': {
+            'semanticColumnWidth': 'three'
+        },
+        'index': 3,
+        'range': [
+            {
+                'identifier': 'test_gradelevel_kindergarten',
+                'code': 'kindergarten',
+                'translations': null,
+                'name': 'KG',
+                'description': 'KG',
+                'index': 1,
+                'category': 'gradelevel',
+                'status': 'Live'
+            }
+        ]
+    },
+    {
+        'code': 'subject',
+        'dataType': 'text',
+        'name': 'Subject',
+        'label': 'Subject',
+        'description': 'Subject of the Content to use to teach',
+        'editable': true,
+        'inputType': 'select',
+        'required': false,
+        'displayProperty': 'Editable',
+        'visible': true,
+        'renderingHints': {
+            'semanticColumnWidth': 'three'
+        },
+        'index': 4,
+        'range': [
+            {
+                'identifier': 'test_subject_accountancy',
+                'code': 'accountancy',
+                'translations': null,
+                'name': 'Accountancy',
+                'description': 'Accountancy',
+                'index': 1,
+                'category': 'subject',
+                'status': 'Live'
+            }
+        ]
+    }
+];
+
+export const frameworkDetails = {
+    'err': null,
+    'frameworkdata': {
+        'defaultFramework': {
+            'identifier': 'TEST',
+            'code': 'TEST',
+            'name': 'TEST framework',
+            'description': 'TEST Framework',
+            'graph_id': 'domain',
+            'nodeType': 'DATA_NODE',
+            'type': 'K-12',
+            'node_id': 254434,
+            'objectType': 'Framework',
+            'categories': [
+                {
+                    'identifier': 'test_board',
+                    'code': 'board',
+                    'terms': [
+                        {
+                            'identifier': 'test_board_1',
+                            'code': 'test_board',
+                            'translations': null,
+                            'name': 'TEST_BOARD',
+                            'description': '',
+                            'index': 1,
+                            'category': 'board',
+                            'status': 'Live'
+                        }
+                    ],
+                    'translations': null,
+                    'name': 'Board',
+                    'description': '',
+                    'index': 1,
+                    'status': 'Live'
+                },
+                {
+                    'identifier': 'test_medium',
+                    'code': 'medium',
+                    'terms': [
+                        {
+                            'identifier': 'test_medium_assamese',
+                            'code': 'test_medium',
+                            'translations': null,
+                            'name': 'TEST_MEDIUM',
+                            'description': '',
+                            'index': 1,
+                            'category': 'medium',
+                            'status': 'Live'
+                        }
+                    ],
+                    'translations': null,
+                    'name': 'Medium',
+                    'description': '',
+                    'index': 2,
+                    'status': 'Live'
+                },
+                {
+                    'identifier': 'test_gradelevel',
+                    'code': 'gradeLevel',
+                    'terms': [
+                        {
+                            'identifier': 'test_gradelevel_kindergarten',
+                            'code': 'kindergarten',
+                            'translations': null,
+                            'name': 'KG',
+                            'description': 'KG',
+                            'index': 1,
+                            'category': 'gradelevel',
+                            'status': 'Live'
+                        }
+                    ],
+                    'translations': null,
+                    'name': 'Class',
+                    'description': '',
+                    'index': 3,
+                    'status': 'Live'
+                },
+                {
+                    'identifier': 'test_subject',
+                    'code': 'subject',
+                    'terms': [
+                        {
+                            'identifier': 'test_subject_accountancy',
+                            'code': 'accountancy',
+                            'translations': null,
+                            'name': 'Accountancy',
+                            'description': 'Accountancy',
+                            'index': 1,
+                            'category': 'subject',
+                            'status': 'Live'
+                        }
+                    ],
+                    'translations': null,
+                    'name': 'Subject',
+                    'description': '',
+                    'index': 4,
+                    'status': 'Live'
+                },
+                {
+                    'identifier': 'test_topic',
+                    'code': 'topic',
+                    'terms': [
+                        {
+                            'identifier': 'test_topic_da698168fcfe00dff93f32e7f42dc3ddce03c082',
+                            'code': 'da698168fcfe00dff93f32e7f42dc3ddce03c082',
+                            'children': [
+                                {
+                                    'identifier': 'test_topic_d01d9205a153e0d27b2cf8505d2faaa0ae63cb25',
+                                    'code': 'd01d9205a153e0d27b2cf8505d2faaa0ae63cb25',
+                                    'translations': null,
+                                    'name': 'Family Members',
+                                    'description': 'Family Members',
+                                    'index': 1,
+                                    'category': 'topic',
+                                    'status': 'Live'
+                                }
+                            ],
+                            'translations': null,
+                            'name': 'My Family and me',
+                            'description': 'My Family and me',
+                            'index': 1,
+                            'category': 'topic',
+                            'status': 'Live'
+                        }
+                    ],
+                    'translations': null,
+                    'name': 'Topic',
+                    'description': 'Concepts',
+                    'index': 5,
+                    'status': 'Live'
+                }
+            ]
+        }
+    }
+};
diff --git a/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.spec.ts b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..ed5fe5054d58f19c3bf961e72ebfc4f4baa34498
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.spec.ts
@@ -0,0 +1,253 @@
+import { formatedFilterDetails, frameworkDetails } from './search-prominent-filter.component.spec.data';
+import { async, ComponentFixture, TestBed, fakeAsync, tick } from '@angular/core/testing';
+
+import { SearchProminentFilterComponent } from './search-prominent-filter.component';
+import { CoreModule, FrameworkService, PublicDataService, FormService, OrgDetailsService } from '@sunbird/core';
+import { SharedModule, ConfigService, ResourceService, BrowserCacheTtlService, UtilService } from '@sunbird/shared';
+import { TelemetryModule } from '@sunbird/telemetry';
+import { RouterModule, ActivatedRoute } from '@angular/router';
+import { SuiModule } from 'ng2-semantic-ui';
+
+import { of, throwError } from 'rxjs';
+describe('SearchProminentFilterComponent', () => {
+    let component: SearchProminentFilterComponent;
+    let fixture: ComponentFixture<SearchProminentFilterComponent>;
+    let frameworkService, resourceService, utilService, publicDataService, formService, orgDetailsService;
+    let mockHashTagId: string, mockFrameworkInput: string;
+    let mockFrameworkCategories: Array<any> = [];
+    let mockFormFields: Array<any> = [];
+    let makeChannelReadSuc, makeFrameworkReadSuc, makeFormReadSuc = true;
+    const resourceBundle = {
+        messages: {
+            fmsg: {
+                m0004: 'Fetching data failed, please try again later...'
+            }
+        }
+    };
+
+    const fakeActivatedRoute = {
+        queryParams: of({ key: 'test' })
+    };
+
+    beforeEach(async(() => {
+        TestBed.configureTestingModule({
+            declarations: [SearchProminentFilterComponent],
+            imports: [
+                CoreModule,
+                SharedModule,
+                TelemetryModule,
+                RouterModule.forRoot([]),
+                SuiModule,
+                TelemetryModule.forRoot()],
+            providers: [
+                ResourceService,
+                BrowserCacheTtlService,
+                ConfigService,
+                UtilService,
+                FrameworkService,
+                PublicDataService,
+                FormService,
+                OrgDetailsService,
+                { provide: ActivatedRoute, useValue: fakeActivatedRoute },
+            ]
+        })
+            .compileComponents();
+    }));
+
+    beforeEach(() => {
+        fixture = TestBed.createComponent(SearchProminentFilterComponent);
+        component = fixture.componentInstance;
+        resourceService = TestBed.get(ResourceService);
+        frameworkService = TestBed.get(FrameworkService);
+        utilService = TestBed.get(UtilService);
+        fixture.detectChanges();
+    });
+
+    it('should call ngOnInit', () => {
+        spyOn(frameworkService, 'initialize').and.returnValue([]);
+        mockHashTagId = undefined;
+        mockFrameworkInput = undefined;
+        mockFrameworkCategories = [];
+        mockFormFields = [];
+        makeChannelReadSuc = true;
+        makeFrameworkReadSuc = true;
+        makeFormReadSuc = true;
+
+        publicDataService = TestBed.get(PublicDataService);
+        formService = TestBed.get(FormService);
+        orgDetailsService = TestBed.get(OrgDetailsService);
+
+        spyOn(publicDataService, 'get').and.callFake((options) => {
+            if (options.url === 'channel/v1/read/' + mockHashTagId && makeChannelReadSuc) {
+                return of({ result: { channel: { defaultFramework: mockFrameworkInput } } });
+            } else if (options.url === 'framework/v1/read/' + mockFrameworkInput && makeFrameworkReadSuc) {
+                return of({ result: { framework: { code: mockFrameworkInput, categories: mockFrameworkCategories } } });
+            }
+            return throwError({});
+        });
+        spyOn(publicDataService, 'post').and.callFake((options) => {
+            if (makeFormReadSuc) {
+                return of({ result: { form: { data: { fields: mockFormFields } } } });
+            }
+            return throwError({});
+        });
+
+
+        resourceService._languageSelected.next({ value: 'en', label: 'English', dir: 'ltr' });
+        spyOn(component, 'getFormatedFilterDetails').and.returnValue(of(formatedFilterDetails));
+        spyOn(component.prominentFilter, 'emit');
+        component.ngOnInit();
+        expect(frameworkService.initialize).toHaveBeenCalled();
+        expect(component.formFieldProperties).toEqual(formatedFilterDetails);
+        expect(component.prominentFilter.emit).toHaveBeenCalledWith(formatedFilterDetails);
+    });
+
+    it('should change form field Properties', () => {
+        component.formFieldProperties = formatedFilterDetails;
+        resourceService._languageSelected.next({ value: 'hi', label: 'Hindi', dir: 'ltr' });
+        spyOn(utilService, 'convertSelectedOption');
+        component.ngOnInit();
+        expect(component.filtersDetails).toEqual(formatedFilterDetails);
+    });
+
+    it('should reset filters when ignoreQuery input present', () => {
+        component.formInputData = formatedFilterDetails;
+        component.ignoreQuery = ['key'];
+        spyOn(component.filterChange, 'emit');
+        spyOn<any>(component, 'hardRefreshFilter');
+        spyOn<any>(component, 'setFilterInteractData');
+        component.resetFilters();
+
+        expect(component.filterChange.emit).toHaveBeenCalled();
+        expect(component['hardRefreshFilter']).toHaveBeenCalled();
+        expect(component.formInputData).toEqual({});
+        expect(component['setFilterInteractData']).toHaveBeenCalled();
+
+    });
+
+    it('should reset filters', () => {
+        component.ignoreQuery = [];
+        spyOn(component.filterChange, 'emit');
+        spyOn<any>(component, 'hardRefreshFilter');
+        spyOn<any>(component, 'setFilterInteractData');
+        component.resetFilters();
+
+        expect(component.filterChange.emit).toHaveBeenCalled();
+        expect(component['hardRefreshFilter']).toHaveBeenCalled();
+        expect(component.formInputData).toEqual({});
+        expect(component['setFilterInteractData']).toHaveBeenCalled();
+
+    });
+
+    it('should set formInputData', () => {
+        component.selectedValue({}, 'board');
+        expect(component.formInputData['board']).toEqual({});
+    });
+
+    it('should apply Filters', () => {
+        component.formInputData = { key: 'test' };
+        component.formFieldProperties = formatedFilterDetails;
+        component.selectedLanguage = 'en';
+        component.queryParams = { key: 'test' };
+        spyOn<any>(component, 'setFilterInteractData');
+        spyOn(utilService, 'convertSelectedOption').and.returnValue({ key: 'test' });
+
+        component.applyFilters();
+
+        expect(utilService.convertSelectedOption).toHaveBeenCalledWith({ key: 'test' }, formatedFilterDetails, 'en', 'en');
+        expect(component['setFilterInteractData']).toHaveBeenCalled();
+        expect(component.isFiltered).toBe(true);
+    });
+
+    it('should emit filterChange Event', () => {
+        component.formInputData = { channel: '1d121d3343434fs' };
+        component.formFieldProperties = formatedFilterDetails;
+        component.selectedLanguage = 'en';
+
+        spyOn<any>(component, 'setFilterInteractData');
+        spyOn(utilService, 'convertSelectedOption').and.returnValue({ channel: '1d121d3343434fs' });
+        spyOn<any>(component, 'populateChannelData');
+
+        component.applyFilters();
+
+        expect(utilService.convertSelectedOption).toHaveBeenCalledWith({ channel: '1d121d3343434fs' }, formatedFilterDetails, 'en', 'en');
+        expect(component['setFilterInteractData']).toHaveBeenCalled();
+        expect(component.isFiltered).toBe(false);
+        expect(component['populateChannelData']).toHaveBeenCalled();
+    });
+
+    it('should set InteractData', fakeAsync(() => {
+        component.formFieldProperties = formatedFilterDetails;
+        component.pageId = 'explore-page';
+        component['setFilterInteractData']();
+        tick(500);
+        expect(component.applyFilterInteractEdata).toEqual({
+            id: 'apply-filter',
+            type: 'click',
+            pageid: 'explore-page',
+            extra: { filters: {} }
+        });
+        expect(component.resetFilterInteractEdata).toEqual({
+            id: 'reset-filter',
+            type: 'click',
+            pageid: 'explore-page',
+            extra: { filters: {} }
+        });
+    }));
+
+    it('fetchFrameWorkDetails', () => {
+        frameworkService._frameworkData$.next(frameworkDetails);
+        const returnValue = component['fetchFrameWorkDetails']();
+        returnValue.subscribe((data) => {
+            expect(Object.keys(data).length).toBe(2);
+        });
+    });
+
+    it('should return form configurations', () => {
+        const formServiceInputParams = {
+            contentType: 'explore',
+            formAction: 'search',
+            formType: 'content',
+            framework: undefined
+        };
+        component.hashTagId = '5s3d23hgsd232';
+        const formConfig = spyOn(formService, 'getFormConfig').and.returnValue(of({}));
+        component['getFormDetails']();
+        expect(formConfig).toBeTruthy();
+    });
+
+    it('hardRefreshFilter', () => {
+        const spy = spyOn((component as any).cdr, 'detectChanges');
+        component['hardRefreshFilter']();
+        expect(component.refresh).toBe(true);
+        expect(spy).toHaveBeenCalled();
+    });
+
+    it('should return org details', () => {
+        spyOn(orgDetailsService, 'searchOrg').and.returnValue(of({ data: { content: 'some content' } }));
+        const returnValue = component['getOrgSearch']();
+        expect(returnValue).toBeDefined();
+        expect(returnValue).toBeTruthy();
+    });
+
+    xit('should return channel data', () => {
+        component.formFieldProperties = formatedFilterDetails;
+        const returnValue = component['populateChannelData']({ code: 'channel' });
+        expect(returnValue).toEqual([]);
+    });
+
+    it('should handle error for orgDetailsSearch', () => {
+        spyOn(orgDetailsService, 'searchOrg').and.returnValue(throwError(''));
+        const returnValue = component['getOrgSearch']();
+        expect(returnValue).toBeDefined();
+        expect(returnValue).toBeTruthy();
+    });
+
+    it('should unsubscribe subject', () => {
+        spyOn(component.unsubscribe$, 'next');
+        spyOn(component.unsubscribe$, 'complete');
+        component.ngOnDestroy();
+        expect(component.unsubscribe$.next).toHaveBeenCalled();
+        expect(component.unsubscribe$.complete).toHaveBeenCalled();
+    });
+});
diff --git a/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.ts b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..85f7da0c51cd71e5b6d8a7b199a7c6b92d43b40e
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/components/search-prominent-filter/search-prominent-filter.component.ts
@@ -0,0 +1,255 @@
+import { Component, OnInit, Input, Output, EventEmitter, ChangeDetectorRef, OnDestroy } from '@angular/core';
+import { Router, ActivatedRoute } from '@angular/router';
+import { Subscription, of, throwError, Observable, Subject } from 'rxjs';
+import { first, mergeMap, map, catchError, filter, takeUntil } from 'rxjs/operators';
+import * as _ from 'lodash-es';
+
+import { IInteractEventEdata } from '@sunbird/telemetry';
+import {
+    ConfigService, ResourceService, Framework, ToasterService, UtilService,
+} from '@sunbird/shared';
+import { FrameworkService, FormService, PermissionService, OrgDetailsService } from '@sunbird/core';
+@Component({
+    selector: 'app-search-prominent-filter',
+    templateUrl: './search-prominent-filter.component.html',
+    styleUrls: ['./search-prominent-filter.component.scss']
+})
+export class SearchProminentFilterComponent implements OnInit, OnDestroy {
+
+    @Input() filterEnv: string;
+    @Input() hashTagId = '';
+    @Input() ignoreQuery = [];
+    @Input() pageId: string;
+    @Input() frameworkName: string;
+
+    @Output() prominentFilter = new EventEmitter();
+    @Output() filterChange: EventEmitter<any> = new EventEmitter();
+
+    public filterType: string;
+    public formFieldProperties: any;
+    public filtersDetails: any;
+    public categoryMasterList: any;
+    public framework: string;
+    public isCachedDataExists: boolean;
+    public formType = 'content';
+    public queryParams: any;
+    public formInputData: any;
+    public unsubscribe$ = new Subject<void>();
+    refresh = true;
+    isFiltered = true;
+
+    public resetFilterInteractEdata: IInteractEventEdata;
+    public applyFilterInteractEdata: IInteractEventEdata;
+    public selectedLanguage: string;
+
+    constructor(
+        public resourceService: ResourceService,
+        public router: Router,
+        private activatedRoute: ActivatedRoute,
+        private cdr: ChangeDetectorRef,
+        public frameworkService: FrameworkService,
+        public formService: FormService,
+        public toasterService: ToasterService,
+        public permissionService: PermissionService,
+        private utilService: UtilService,
+        private orgDetailsService: OrgDetailsService,
+        public configService: ConfigService
+    ) {
+        this.formInputData = {};
+        this.router.onSameUrlNavigation = 'reload';
+    }
+
+    ngOnInit() {
+        this.resourceService.languageSelected$
+            .pipe(takeUntil(this.unsubscribe$))
+            .subscribe(item => {
+                this.selectedLanguage = item.value;
+                if (this.formFieldProperties && this.formFieldProperties.length) {
+                    _.forEach(this.formFieldProperties, (data, index) => {
+                        this.formFieldProperties[index] = this.utilService.translateLabel(data, this.selectedLanguage);
+                        this.formFieldProperties[index].range = this.utilService.translateValues(data.range, this.selectedLanguage);
+                    });
+                    this.filtersDetails = _.cloneDeep(this.formFieldProperties);
+                    this.formInputData = this.utilService.convertSelectedOption(this.formInputData,
+                        this.formFieldProperties, 'en', this.selectedLanguage);
+                }
+            });
+        this.frameworkService.initialize(this.frameworkName, this.hashTagId);
+        this.getFormatedFilterDetails()
+            .pipe(takeUntil(this.unsubscribe$))
+            .subscribe((formFieldProperties) => {
+                this.formFieldProperties = formFieldProperties;
+                this.prominentFilter.emit(formFieldProperties);
+            }, (err) => {
+                this.prominentFilter.emit([]);
+            });
+        this.setFilterInteractData();
+    }
+
+    private setFilterInteractData() {
+        setTimeout(() => { // wait for model to change
+            const filters = _.pickBy(this.formInputData, (val, key) =>
+                (!_.isEmpty(val) || typeof val === 'number')
+                && _.map(this.formFieldProperties, field => field.code).includes(key));
+            this.applyFilterInteractEdata = {
+                id: 'apply-filter',
+                type: 'click',
+                pageid: this.pageId,
+                extra: { filters: filters }
+            };
+            this.resetFilterInteractEdata = {
+                id: 'reset-filter',
+                type: 'click',
+                pageid: this.pageId,
+                extra: { filters: filters }
+            };
+        }, 5);
+    }
+
+    getFormatedFilterDetails(): Observable<any> {
+        return this.fetchFrameWorkDetails().pipe(
+            mergeMap((frameworkDetails: any) => {
+                this.categoryMasterList = frameworkDetails.categoryMasterList;
+                this.framework = frameworkDetails.code;
+                return this.getFormDetails();
+            }),
+            mergeMap((formData: any) => {
+                if (_.find(formData, { code: 'channel' })) {
+                    return this.getOrgSearch().pipe(map((channelData: any) => {
+                        const data = _.filter(channelData, 'hashTagId');
+                        return { formData: formData, channelData: data };
+                    }));
+                } else {
+                    return of({ formData: formData });
+                }
+            }),
+            map((formData: any) => {
+                let formFieldProperties = _.filter(formData.formData, (formFieldCategory) => {
+                    if (formFieldCategory.code === 'channel') {
+                        formFieldCategory.range = _.map(formData.channelData, (value) => {
+                            return {
+                                category: 'channel',
+                                identifier: value.hashTagId,
+                                name: value.orgName,
+                            };
+                        });
+                    } else {
+                        const frameworkTerms = _.get(_.find(this.categoryMasterList, { code: formFieldCategory.code }), 'terms');
+                        formFieldCategory.range = _.union(formFieldCategory.range, frameworkTerms);
+                    }
+                    if (this.selectedLanguage !== 'en') {
+                        formFieldCategory = this.utilService.translateLabel(formFieldCategory, this.selectedLanguage);
+                        formFieldCategory.range = this.utilService.translateValues(formFieldCategory.range, this.selectedLanguage);
+                    }
+                    return true;
+                });
+                formFieldProperties = _.sortBy(_.uniqBy(formFieldProperties, 'code'), 'index');
+                return formFieldProperties;
+            }));
+    }
+
+    private fetchFrameWorkDetails() {
+        return this.frameworkService.frameworkData$.pipe(filter((frameworkDetails: any) => {
+            if (!frameworkDetails.err) {
+                const framework = this.frameworkName ? this.frameworkName : 'defaultFramework';
+                return Boolean(_.get(frameworkDetails.frameworkdata, framework));
+            }
+            return true;
+        }), first(),
+            mergeMap((frameworkDetails: Framework) => {
+                if (!frameworkDetails.err) {
+                    const framework = this.frameworkName ? this.frameworkName : 'defaultFramework';
+                    const frameworkData = _.get(frameworkDetails.frameworkdata, framework);
+                    if (frameworkData) {
+                        return of({ categoryMasterList: frameworkData.categories, framework: frameworkData.code });
+                    } else {
+                        return throwError('no result for ' + this.frameworkName); // framework error need to handle this
+                    }
+                } else {
+                    return throwError(frameworkDetails.err); // framework error
+                }
+            }));
+    }
+
+    private getFormDetails() {
+        const formServiceInputParams = {
+            formType: 'content',
+            formAction: 'search',
+            contentType: this.filterEnv,
+            framework: this.framework
+        };
+        return this.formService.getFormConfig(formServiceInputParams, this.hashTagId);
+    }
+
+    resetFilters() {
+        if (!_.isEmpty(this.ignoreQuery)) {
+            this.formInputData = _.pick(this.formInputData, this.ignoreQuery);
+        } else {
+            this.formInputData = {};
+        }
+        this.filterChange.emit([]);
+        this.hardRefreshFilter();
+        this.setFilterInteractData();
+    }
+
+    selectedValue(event, code) {
+        this.formInputData[code] = event;
+    }
+
+    applyFilters() {
+        this.formInputData = this.utilService.convertSelectedOption(
+            this.formInputData, this.formFieldProperties, this.selectedLanguage, 'en');
+        if (_.isEqual(this.formInputData, this.queryParams)) {
+            this.isFiltered = true;
+        } else {
+            this.isFiltered = false;
+            const data: any = {};
+            const filters: any = {};
+            _.forIn(this.formInputData, (eachInputs: Array<any | object>, key) => {
+                const formatedValue = typeof eachInputs === 'string' ? eachInputs :
+                    _.compact(_.map(eachInputs, value => typeof value === 'string' ? value : _.get(value, 'identifier')));
+                if (formatedValue.length) {
+                    filters[key] = formatedValue;
+                }
+                if (key === 'channel') {
+                    filters[key] = this.populateChannelData(formatedValue);
+                }
+            });
+            if (!_.isEmpty(filters)) {
+                data.filters = filters;
+                data.filters.appliedFilters = true;
+                this.filterChange.emit(data);
+            }
+        }
+        this.setFilterInteractData();
+    }
+
+    private populateChannelData(data) {
+        const channel = [];
+        _.forEach(data, (value, key) => {
+            const orgDetails = _.find(this.formFieldProperties, { code: 'channel' });
+            const range = _.find(orgDetails['range'], { name: value });
+            channel.push(range['identifier']);
+        });
+        return channel;
+    }
+
+    private hardRefreshFilter() {
+        this.refresh = false;
+        this.cdr.detectChanges();
+        this.refresh = true;
+    }
+
+    private getOrgSearch() {
+        return this.orgDetailsService.searchOrg().pipe(map((data: any) => (data.content)),
+            catchError(err => {
+                return [];
+            }));
+    }
+
+    ngOnDestroy() {
+        this.unsubscribe$.next();
+        this.unsubscribe$.complete();
+    }
+}
+
diff --git a/src/app/client/src/app/modules/content-search/content-search.module.ts b/src/app/client/src/app/modules/content-search/content-search.module.ts
new file mode 100644
index 0000000000000000000000000000000000000000..7f5d5fddc93af83e95981f66d6b7000840de628c
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/content-search.module.ts
@@ -0,0 +1,28 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { NoResultComponent, SearchProminentFilterComponent, SearchFilterComponent } from './components';
+import { SharedModule } from '@sunbird/shared';
+import {
+  SuiModalModule, SuiProgressModule, SuiAccordionModule,
+  SuiTabsModule, SuiSelectModule, SuiDimmerModule, SuiCollapseModule, SuiDropdownModule
+} from 'ng2-semantic-ui';
+import { TelemetryModule } from '@sunbird/telemetry';
+import { ReactiveFormsModule } from '@angular/forms';
+import { FormsModule } from '@angular/forms';
+import { CommonConsumptionModule } from '@project-sunbird/common-consumption';
+
+@NgModule({
+  declarations: [NoResultComponent, SearchProminentFilterComponent, SearchFilterComponent],
+  imports: [
+    ReactiveFormsModule,
+    FormsModule,
+    TelemetryModule,
+    CommonModule,
+    CommonConsumptionModule,
+    SharedModule,
+    SuiModalModule, SuiProgressModule, SuiAccordionModule,
+  SuiTabsModule, SuiSelectModule, SuiDimmerModule, SuiCollapseModule, SuiDropdownModule
+  ],
+  exports: [NoResultComponent, SearchProminentFilterComponent, SearchFilterComponent]
+})
+export class ContentSearchModule { }
diff --git a/src/app/client/src/app/modules/content-search/index.ts b/src/app/client/src/app/modules/content-search/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f33dfe83194be912a4aac65b74d7c60fa100e6a8
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/index.ts
@@ -0,0 +1,5 @@
+export * from './content-search.module';
+export * from './components';
+export * from './services';
+
+
diff --git a/src/app/client/src/app/modules/content-search/services/content-search/content-search.service.spec.ts b/src/app/client/src/app/modules/content-search/services/content-search/content-search.service.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d94afc042df9767b314de25456d712d116436797
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/services/content-search/content-search.service.spec.ts
@@ -0,0 +1,17 @@
+import { TestBed } from '@angular/core/testing';
+import { FrameworkService, UserService, CoreModule, PublicDataService } from '@sunbird/core';
+import { ContentSearchService } from './content-search.service';
+import { SharedModule } from '@sunbird/shared';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
+import { RouterModule, ActivatedRoute } from '@angular/router';
+
+describe('ContentSearchService', () => {
+  beforeEach(() =>  TestBed.configureTestingModule({
+    imports: [HttpClientTestingModule, SharedModule.forRoot(), CoreModule, RouterModule.forRoot([])],
+  }));
+
+  it('should be created', () => {
+    const service: ContentSearchService = TestBed.get(ContentSearchService);
+    expect(service).toBeTruthy();
+  });
+});
diff --git a/src/app/client/src/app/modules/content-search/services/content-search/content-search.service.ts b/src/app/client/src/app/modules/content-search/services/content-search/content-search.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..6b42831892dc5f5e0fad01bf771b7079e0b0cdbe
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/services/content-search/content-search.service.ts
@@ -0,0 +1,87 @@
+import { Injectable, EventEmitter } from '@angular/core';
+import { OrgDetailsService, FrameworkService, ChannelService } from '@sunbird/core';
+import { Observable, BehaviorSubject, of } from 'rxjs';
+import { skipWhile, mergeMap, first, map } from 'rxjs/operators';
+import * as _ from 'lodash-es';
+
+@Injectable({ providedIn: 'root' })
+export class ContentSearchService {
+  private channelId: string;
+  public _frameworkId = '';
+  get frameworkId() {
+    return this._frameworkId;
+  }
+  private defaultBoard: string;
+  private custodianOrg: boolean;
+  private _filters = {
+    board: [],
+    medium: [],
+    gradeLevel: [],
+    subject: []
+  };
+  get filters() {
+    return _.cloneDeep(this._filters);
+  }
+  private _searchResults$ = new BehaviorSubject<any>(undefined);
+  get searchResults$(): Observable<any[]> {
+    return this._searchResults$.asObservable()
+      .pipe(skipWhile(data => data === undefined || data === null));
+  }
+
+  constructor(private frameworkService: FrameworkService, private orgDetailsService: OrgDetailsService,
+    private channelService: ChannelService) { }
+
+  public initialize(channelId: string, custodianOrg = false, defaultBoard: string) {
+    this.channelId = channelId;
+    this.custodianOrg = custodianOrg;
+    this.defaultBoard = defaultBoard;
+    this._searchResults$.complete(); // to flush old subscription
+    this._searchResults$ = new BehaviorSubject<any>(undefined);
+    return this.fetchChannelData();
+  }
+  private fetchChannelData() {
+    return this.channelService.getFrameWork(this.channelId)
+    .pipe(mergeMap((channelDetails) => {
+      if (this.custodianOrg) {
+        this._filters.board = _.get(channelDetails, 'result.channel.frameworks') || [{
+          name: _.get(channelDetails, 'result.channel.defaultFramework'),
+          identifier: _.get(channelDetails, 'result.channel.defaultFramework')
+        }]; // framework array is empty assigning defaultFramework as only board
+        const selectedBoard = this._filters.board.find((board) => board.name === this.defaultBoard) || this._filters.board[0];
+        this._frameworkId = _.get(selectedBoard, 'identifier');
+      } else {
+        this._frameworkId = _.get(channelDetails, 'result.channel.defaultFramework');
+      }
+      return this.frameworkService.getFrameworkCategories(this._frameworkId);
+    }), map(frameworkDetails => {
+      const frameworkCategories: any[] = _.get(frameworkDetails, 'result.framework.categories');
+      frameworkCategories.forEach(category => {
+        if (['medium', 'gradeLevel', 'subject'].includes(category.code)) {
+          this._filters[category.code] = category.terms || [];
+        } else if (!this.custodianOrg && category.code === 'board') {
+          this._filters[category.code] = category.terms || [];
+        }
+      });
+      return true;
+    }), first());
+  }
+  public fetchFilter(boardName?) {
+    if (!this.custodianOrg || !boardName) {
+      return of(this.filters);
+    }
+    const selectedBoard = this._filters.board.find((board) => board.name === boardName)
+      || this._filters.board.find((board) => board.name === this.defaultBoard) || this._filters.board[0];
+    this._frameworkId = this._frameworkId = _.get(selectedBoard, 'identifier');
+    return this.frameworkService.getFrameworkCategories(this._frameworkId).pipe(map(frameworkDetails => {
+      const frameworkCategories: any[] = _.get(frameworkDetails, 'result.framework.categories');
+      frameworkCategories.forEach(category => {
+        if (['medium', 'gradeLevel', 'subject'].includes(category.code)) {
+          this._filters[category.code] = category.terms || [];
+        } else if (category.code === 'board' && !this.custodianOrg) {
+          this._filters[category.code] = category.terms || [];
+        }
+      });
+      return this.filters;
+    }), first());
+  }
+}
diff --git a/src/app/client/src/app/modules/content-search/services/index.ts b/src/app/client/src/app/modules/content-search/services/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..06bb28bbfebec4689d7c77892d1907ad9cb65363
--- /dev/null
+++ b/src/app/client/src/app/modules/content-search/services/index.ts
@@ -0,0 +1 @@
+export * from './content-search/content-search.service';
diff --git a/src/app/client/src/app/modules/core/components/data-driven-filter/data-driven-filter.component.ts b/src/app/client/src/app/modules/core/components/data-driven-filter/data-driven-filter.component.ts
index c8fe35e7300888666005ad0bcec2acdf5929440c..e8d3ab64e6bf2bf5565b6c28156183140bf8c6ae 100644
--- a/src/app/client/src/app/modules/core/components/data-driven-filter/data-driven-filter.component.ts
+++ b/src/app/client/src/app/modules/core/components/data-driven-filter/data-driven-filter.component.ts
@@ -253,6 +253,10 @@ export class DataDrivenFilterComponent implements OnInit, OnChanges, OnDestroy {
     }
   }
   private enrichFiltersOnInputChange() {
+    if (this.activatedRoute.snapshot.queryParams.appliedFilters === 'false') {
+      this.filtersDetails = this.formFieldProperties; // show all filters as implicit filters are applied
+      return;
+    }
     this.filtersDetails = _.map(this.formFieldProperties, (eachFields) => {
       const enrichField = _.cloneDeep(eachFields);
       if (!_.includes(['channel', 'contentType', 'topic'], enrichField.code)) {
diff --git a/src/app/client/src/app/modules/core/components/main-footer/main-footer.component.html b/src/app/client/src/app/modules/core/components/main-footer/main-footer.component.html
index fe3289ee218259c7a9874febb29e0a8a9017fad3..24442709e80d187d1d4f3c6d3772fcaed71f3a6c 100644
--- a/src/app/client/src/app/modules/core/components/main-footer/main-footer.component.html
+++ b/src/app/client/src/app/modules/core/components/main-footer/main-footer.component.html
@@ -22,18 +22,27 @@
     <div class="ui grid stackable">
       <div class="four wide column footerMenu mr-auto">
         <ul class="p-0 m-0">
-          <!-- <li class="mb-15">
+          <!-- <li class="mb-16">
             <a href="/verticals/profile-registry/">
               {{resourceService.frmelmnts?.lnk?.footerDikshaVerticals}}
             </a>
           </li> -->
-          <li class="mb-15">
+          <li class="mb-16">
             <a appTelemetryInteract [telemetryInteractEdata]="setTelemetryInteractEdata('help-center')"
               href="/help/getting-started/explore-diksha/index.html">
               {{resourceService.frmelmnts?.lnk?.footerHelpCenter}}
             </a>
           </li>
-          <!-- <li class="mb-15">
+  <li>
+            <label class="d-block mb-0">
+              {{resourceService.frmelmnts?.lnk?.footerContact}}
+            </label>
+            <a appTelemetryInteract [telemetryInteractEdata]="setTelemetryInteractEdata('fresh-desk')" class="d-block mb-0"
+            href="mailto:support@diksha-ncte.freshdesk.com">
+            support@diksha-ncte.freshdesk.com
+          </a>
+          </li>
+          <!-- <li class="mb-16">
             <a href="/partners/">
               {{resourceService.frmelmnts?.lnk?.footerPartners}}
             </a>
@@ -61,14 +70,7 @@
         </div>
       </div>
       <div class="four wide column contantDetails">
-        <label class="d-block mb-10">
-          {{resourceService.frmelmnts?.lnk?.footerContact}}
-        </label>
-        <a appTelemetryInteract [telemetryInteractEdata]="setTelemetryInteractEdata('fresh-desk')" class="d-block mb-30"
-          href="mailto:support@diksha-ncte.freshdesk.com">
-          support@diksha-ncte.freshdesk.com
-        </a>
-        <label class="d-block">
+        <label class="d-block mb-16">
           <a appTelemetryInteract [telemetryInteractEdata]="setTelemetryInteractEdata('t&c')" href="/term-of-use.html">
             {{resourceService.frmelmnts?.lnk?.footerTnC}}
           </a>
diff --git a/src/app/client/src/app/modules/core/components/main-footer/main-footer.component.ts b/src/app/client/src/app/modules/core/components/main-footer/main-footer.component.ts
index 57fd66f3b3581a0077eff2193725446814a61c72..562a7a1d1f891d8795b3e81d8203ff5da75dd871 100644
--- a/src/app/client/src/app/modules/core/components/main-footer/main-footer.component.ts
+++ b/src/app/client/src/app/modules/core/components/main-footer/main-footer.component.ts
@@ -1,4 +1,4 @@
-import { Component, OnInit, ViewChild, ElementRef, Renderer2, AfterViewInit } from '@angular/core';
+import { Component, OnInit, ViewChild, ElementRef, Renderer2, ChangeDetectorRef,  HostListener} from '@angular/core';
 import { ResourceService, ConfigService } from '@sunbird/shared';
 import { environment } from '@sunbird/environment';
 import { Router, ActivatedRoute, NavigationEnd } from '@angular/router';
@@ -10,7 +10,7 @@ import * as _ from 'lodash-es';
   selector: 'app-footer',
   templateUrl: './main-footer.component.html'
 })
-export class MainFooterComponent implements OnInit, AfterViewInit {
+export class MainFooterComponent implements OnInit {
   @ViewChild('footerFix') footerFix: ElementRef;
   /**
    * reference of resourceService service.
@@ -29,29 +29,42 @@ export class MainFooterComponent implements OnInit, AfterViewInit {
   instance: string;
   bodyPaddingBottom: string;
   constructor(resourceService: ResourceService, public router: Router, public activatedRoute: ActivatedRoute,
-    public configService: ConfigService, private renderer: Renderer2) {
+    public configService: ConfigService, private renderer: Renderer2, private cdr: ChangeDetectorRef
+    ) {
     this.resourceService = resourceService;
   }
 
   ngOnInit() {
     this.instance = _.upperCase(this.resourceService.instance);
   }
+ ngAfterViewInit() {
+    this.footerAlign();
+  }
+ @HostListener('window:resize', ['$event'])
+  onResize(event) {
+    console.log('event', event);
+    this.footerAlign();
+  }
+// footer dynamic height
+footerAlign() {
+    $('.footerfix').css('height', 'auto');
+    const footerHeight = $('footer').outerHeight();
+    $('.footerfix').css('height', footerHeight);
+    if (window.innerWidth <= 767) {
+      (document.querySelector('.download-mobile-app') as HTMLElement).style.minHeight = 0 + 'px';
+      (document.querySelector('.download-mobile-app') as HTMLElement).style.bottom = footerHeight + 'px';
+      (document.querySelector('body') as HTMLElement).style.paddingBottom = footerHeight + 178 + 'px';
+    } else {
+      (document.querySelector('.download-mobile-app') as HTMLElement).style.minHeight = 200 + 'px';
+      (document.querySelector('.download-mobile-app') as HTMLElement).style.bottom = 0 + 'px';
+      (document.querySelector('body') as HTMLElement).style.paddingBottom = footerHeight + 67 + 'px';
+    }
+  }
   checkRouterPath() {
     this.showDownloadmanager = this.router.url.includes('/profile') || this.router.url.includes('/play/collection') ||
       this.router.url.includes('/play/content');
   }
-  ngAfterViewInit() {
-    setTimeout(() => {
-      if (this.footerFix && this.footerFix.nativeElement) {
-        this.bodyPaddingBottom = this.footerFix.nativeElement.offsetHeight + 'px';
-        this.renderer.setStyle(
-          document.body,
-          'padding-bottom',
-          this.bodyPaddingBottom
-        );
-      }
-    }, 500);
-  }
+
 
   redirectToDikshaApp() {
     let applink = this.configService.appConfig.UrlLinks.downloadDikshaApp;
diff --git a/src/app/client/src/app/modules/core/services/framework/framework.service.spec.ts b/src/app/client/src/app/modules/core/services/framework/framework.service.spec.ts
index 86a6a55fafe6f6a343abbe136c0c99a4f44184d9..6e1020a9cb16bdb1543a7482449a4c5110c4fed3 100644
--- a/src/app/client/src/app/modules/core/services/framework/framework.service.spec.ts
+++ b/src/app/client/src/app/modules/core/services/framework/framework.service.spec.ts
@@ -8,7 +8,7 @@ import { CacheService } from 'ng2-cache-service';
 import { mockFrameworkData } from './framework.mock.spec.data';
 
 describe('FrameworkService', () => {
-  let userService, publicDataService, frameworkService;
+  let userService, publicDataService, frameworkService, cacheService;
   let mockHashTagId: string, mockFrameworkInput: string;
   let mockFrameworkCategories: Array<any> = [];
   let makeChannelReadSuc, makeFrameworkReadSuc  = true;
@@ -17,9 +17,11 @@ describe('FrameworkService', () => {
       imports: [HttpClientTestingModule, SharedModule.forRoot(), CoreModule],
       providers: [CacheService]
     });
+    cacheService = TestBed.get(CacheService);
     userService = TestBed.get(UserService);
     publicDataService = TestBed.get(PublicDataService);
     frameworkService = TestBed.get(FrameworkService);
+    spyOn(cacheService, 'get').and.returnValue(undefined);
     spyOn(publicDataService, 'get').and.callFake((options) => {
       if (options.url === 'channel/v1/read/' + mockHashTagId && makeChannelReadSuc) {
         return of({result: {channel: {defaultFramework: mockFrameworkInput}}});
@@ -83,7 +85,7 @@ describe('FrameworkService', () => {
     mockFrameworkInput = 'NCF';
     mockFrameworkCategories = [];
     makeChannelReadSuc = true;
-    makeFrameworkReadSuc = false;
+    makeFrameworkReadSuc = true;
     frameworkService.initialize('NCF');
     frameworkService.frameworkData$.subscribe((data) => {
       expect(data.frameworkdata).toEqual({'NCF': {'code': 'NCF', 'categories': []}});
diff --git a/src/app/client/src/app/modules/core/services/framework/framework.service.ts b/src/app/client/src/app/modules/core/services/framework/framework.service.ts
index e308cf2e24856319c448edd6e094d5b5e9dd05ac..847abf612009db4c8b44c88b221dd295d0466f73 100644
--- a/src/app/client/src/app/modules/core/services/framework/framework.service.ts
+++ b/src/app/client/src/app/modules/core/services/framework/framework.service.ts
@@ -5,11 +5,12 @@ import {
   ConfigService, ToasterService, ResourceService, ServerResponse, Framework, FrameworkData,
   BrowserCacheTtlService
 } from '@sunbird/shared';
-import { Observable, BehaviorSubject } from 'rxjs';
-import { skipWhile, mergeMap } from 'rxjs/operators';
+import { Observable, BehaviorSubject, of } from 'rxjs';
+import { skipWhile, mergeMap, tap } from 'rxjs/operators';
 import { PublicDataService } from './../public-data/public-data.service';
 import * as _ from 'lodash-es';
 import { CacheService } from 'ng2-cache-service';
+const frameWorkPrefix = 'framework_';
 @Injectable({
   providedIn: 'root'
 })
@@ -81,11 +82,20 @@ export class FrameworkService {
     };
     return this.publicDataService.get(channelOptions);
   }
-  public getFrameworkCategories(framework: string) {
+  public getFrameworkCategories(frameworkId: string) {
     const frameworkOptions = {
-      url: this.configService.urlConFig.URLS.FRAMEWORK.READ + '/' + framework
+      url: this.configService.urlConFig.URLS.FRAMEWORK.READ + '/' + frameworkId
     };
-    return this.publicDataService.get(frameworkOptions);
+    const cachedFrameworkData = this.cacheService.get(frameWorkPrefix + frameworkId);
+    if (cachedFrameworkData) {
+      return of(cachedFrameworkData);
+    }
+    return this.publicDataService.get(frameworkOptions).pipe(tap((frameworkData) => {
+      if (_.get(frameworkData, 'result.framework')) {
+        this.cacheService.set(frameWorkPrefix + frameworkId, frameworkData,
+          { maxAge: this.browserCacheTtlService.browserCacheTtl });
+      }
+    }));
   }
 
   private setFrameWorkData(framework?: any) {
diff --git a/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.html b/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.html
index a05020884d0c1f06642200b1fa4adc9b8718ab87..e65919fa43d265aeed9171ccf47c133a1a840c17 100644
--- a/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.html
+++ b/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.html
@@ -1,17 +1,17 @@
 <app-data-driven-filter [pageId]="'explore-search'" *ngIf="initFilters && !isOffline" [filterEnv]="filterType"
-  [enrichFilters]="facetsList" [ignoreQuery]="['key']" [accordionDefaultOpen]=true
-  [isShowFilterLabel]=true [hashTagId]="hashTagId" [showSearchedParam]=true (dataDrivenFilter)="getFilters($event)"></app-data-driven-filter>
-  
-<app-prominent-filter [pageId]="'explore-page'" *ngIf="initFilters && isOffline" [filterEnv]="filterType" [ignoreQuery]="['key']"
-  [accordionDefaultOpen]=true [isShowFilterLabel]=true [showSearchedParam]=true [isShowFilterLabel]=true
-  [hashTagId]="hashTagId" (prominentFilter)="getFilters($event)"></app-prominent-filter>
+  [enrichFilters]="facetsList" [ignoreQuery]="['key']" [accordionDefaultOpen]=true [isShowFilterLabel]=true
+  [hashTagId]="hashTagId" [showSearchedParam]=true (dataDrivenFilter)="getFilters($event)"></app-data-driven-filter>
+
+<app-prominent-filter [pageId]="'explore-page'" *ngIf="initFilters && isOffline" [filterEnv]="filterType"
+  [ignoreQuery]="['key']" [accordionDefaultOpen]=true [isShowFilterLabel]=true [showSearchedParam]=true
+  [isShowFilterLabel]=true [hashTagId]="hashTagId" (prominentFilter)="getFilters($event)"></app-prominent-filter>
 
 <div class="ui container">
   <div class="content-grid mt-24">
     <div class="sb-pageSection" *ngIf="!showLoader && contentList.length && this.queryParams.key">
       <div class="sb-pageSection-header">
         <div class="">
-          <h4 class="sb-pageSection-title m-0 mr-5" [innerHTML] ="resourceService.frmelmnts?.lbl?.showingResultsFor |
+          <h4 class="sb-pageSection-title m-0 mr-5" [innerHTML]="resourceService.frmelmnts?.lbl?.showingResultsFor |
           interpolate:'{searchString}':this.queryParams.key "></h4>
         </div>
       </div>
@@ -19,31 +19,27 @@
 
     <div [appTelemetryImpression]="telemetryImpression" class="twelve wide column" in-view-container
       (inview)="inView($event)" *ngIf="!showLoader && contentList.length">
-      <div class="masonry-grid dynamic-section-card">
-        <div in-view-item [id]="i" [data]="content" class="masonry-item"
+      <div class="sb-grid">
+        <div in-view-item [id]="i" [data]="content" class="sb-grid--item"
           *ngFor="let content of contentList;let i = index;">
-
-          <app-card *ngIf="!isOffline" appContentDirection [data]="content" appTelemetryInteract [telemetryInteractEdata]="cardIntractEdata"
-            [telemetryInteractObject]="{id:content.metaData.identifier,type:content.metaData.contentType || 'content',ver:content.metaData.pkgVersion ? content.metaData.pkgVersion.toString():'1.0'}" (clickEvent)="playContent($event)"
-            [data]="content"></app-card>
-
-          <app-offline-card *ngIf="isOffline" appContentDirection [data]="content" appTelemetryInteract [telemetryInteractEdata]="cardIntractEdata"
-            [telemetryInteractObject]="{id:content.metaData.identifier,type:content.metaData.contentType || 'content',ver:content.metaData.pkgVersion ? content.metaData.pkgVersion.toString():'1.0'}" [telemetryInteractCdata]="[{id:content.metaData.identifier,type:content.metaData.contentType}]" (clickEvent)="playContent($event)"
-            [data]="content"></app-offline-card>
-            
+          <sb-library-card appTelemetryInteract [telemetryInteractEdata]="cardIntractEdata"
+          [telemetryInteractObject]="{id:content.identifier,type:content.contentType || 'content',ver:content.pkgVersion ? content.pkgVersion.toString():'1.0'}"
+           (cardClick)="playContent($event)" [content]="content" [cardImg]="content?.cardImg || 'assets/images/book.png'">
+          </sb-library-card>
         </div>
       </div>
     </div>
     <div [appTelemetryImpression]="telemetryImpression" class="twelve wide column"
       *ngIf="contentList.length === 0 && !showLoader">
-      <app-no-result [data]="noResultMessage"></app-no-result>
+      <app-no-result-found [title]="noResultMessage?.title" [subTitle]="noResultMessage?.subTitle" 
+      [buttonText]="noResultMessage?.buttonText" [showExploreContentButton]="noResultMessage?.showExploreContentButton"></app-no-result-found>
     </div>
     <div class="twelve wide column" *ngIf="showLoader">
       <app-loader [data]='loaderMessage'></app-loader>
     </div>
-    <div class="twelve wide column right aligned py-0"
+    <div class="twelve wide column right aligned"
       *ngIf="paginationDetails.totalItems > configService.appConfig.SEARCH.PAGE_LIMIT && !showLoader && !isOffline">
-      <div class="sb-pagination-container flex-jc-flex-end" *ngIf="paginationDetails.pages.length">
+      <div class="sb-pagination-container flex-jc-flex-end mt-16" *ngIf="paginationDetails.pages.length">
         <div class="sb-pagination my-0">
           <a [ngClass]="{disabled:paginationDetails.currentPage===1 }" class="sb-item "
             (click)="navigateToPage(1) ">&laquo;</a>
@@ -58,24 +54,24 @@
         </div>
       </div>
     </div>
-    <div class="twelve wide column right aligned py-0"
-    *ngIf="paginationDetails.totalItems > configService.appConfig.SEARCH.PAGE_LIMIT && !showLoader && (isOffline && router.url.includes('browse'))">
-    <div class="sb-pagination-container flex-jc-flex-end" *ngIf="paginationDetails.pages.length">
-      <div class="sb-pagination my-0">
-        <a [ngClass]="{disabled:paginationDetails.currentPage===1 }" class="sb-item "
-          (click)="navigateToPage(1) ">&laquo;</a>
-        <a [ngClass]="{disabled:paginationDetails.currentPage===1 }" class="sb-item "
-          (click)="navigateToPage(paginationDetails.currentPage - 1)">&lt;</a>
-        <a *ngFor="let page of paginationDetails.pages" [ngClass]="{active:paginationDetails.currentPage===page}"
-          (click)="navigateToPage(page)" class="sb-item">{{page}}</a>
-        <a [ngClass]="{disabled:paginationDetails.currentPage=== paginationDetails.totalPages}"
-          (click)="navigateToPage(paginationDetails.currentPage + 1)" class="sb-item">&gt;</a>
-        <a [ngClass]="{disabled:paginationDetails.currentPage=== paginationDetails.totalPages}"
-          (click)="navigateToPage(paginationDetails.totalPages)" class="sb-item ">&raquo;</a>
+    <div class="twelve wide column right aligned"
+      *ngIf="paginationDetails.totalItems > configService.appConfig.SEARCH.PAGE_LIMIT && !showLoader && (isOffline && router.url.includes('browse'))">
+      <div class="sb-pagination-container flex-jc-flex-end mt-16" *ngIf="paginationDetails.pages.length">
+        <div class="sb-pagination my-0">
+          <a [ngClass]="{disabled:paginationDetails.currentPage===1 }" class="sb-item "
+            (click)="navigateToPage(1) ">&laquo;</a>
+          <a [ngClass]="{disabled:paginationDetails.currentPage===1 }" class="sb-item "
+            (click)="navigateToPage(paginationDetails.currentPage - 1)">&lt;</a>
+          <a *ngFor="let page of paginationDetails.pages" [ngClass]="{active:paginationDetails.currentPage===page}"
+            (click)="navigateToPage(page)" class="sb-item">{{page}}</a>
+          <a [ngClass]="{disabled:paginationDetails.currentPage=== paginationDetails.totalPages}"
+            (click)="navigateToPage(paginationDetails.currentPage + 1)" class="sb-item">&gt;</a>
+          <a [ngClass]="{disabled:paginationDetails.currentPage=== paginationDetails.totalPages}"
+            (click)="navigateToPage(paginationDetails.totalPages)" class="sb-item ">&raquo;</a>
+        </div>
       </div>
     </div>
   </div>
-  </div>
 </div>
 <sui-modal [mustScroll]="true" [isClosable]="true" [transitionDuration]="0" [size]="'small'" class="sb-modal"
   appBodyScroll (dismissed)="showLoginModal = false" #modal *ngIf="showLoginModal">
diff --git a/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.scss b/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..3d0d4869cd67b5ab5424f3979f1b11e17944b7a8
--- /dev/null
+++ b/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.scss
@@ -0,0 +1,9 @@
+.sb-grid {
+    display: grid;
+    grid-template-columns: repeat(auto-fill,minmax(292px,1fr));
+    grid-gap: 1rem;
+    grid-row-gap: 1.5rem;
+    &--item{
+        
+    }
+}
\ No newline at end of file
diff --git a/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.spec.ts b/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.spec.ts
index 926fa560112fb7a6c21855356940b0de4296e4f8..7b555c939e5d59e55b2400e9aaf0c6ecdc66bce6 100644
--- a/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.spec.ts
+++ b/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.spec.ts
@@ -38,6 +38,9 @@ describe('ExploreContentComponent', () => {
         'm0139': 'DOWNLOADED',
       },
       'emsg': {},
+    },
+    frmelmnts: {
+      lbl: {}
     }
   };
   class FakeActivatedRoute {
diff --git a/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.ts b/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.ts
index 0c4d5372dd26d2ce565c4d9e5665b9fe486f8720..e1baada37f462930a51bc7ec1248edf4aec76727 100644
--- a/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.ts
+++ b/src/app/client/src/app/modules/public/module/explore/components/explore-content/explore-content.component.ts
@@ -18,14 +18,15 @@ import {
 } from './../../../../../../../../projects/desktop/src/app/modules/offline/services/content-manager/content-manager.service';
 
 @Component({
-  templateUrl: './explore-content.component.html'
+  templateUrl: './explore-content.component.html',
+  styleUrls: ['./explore-content.component.scss']
 })
 export class ExploreContentComponent implements OnInit, OnDestroy, AfterViewInit {
 
   public showLoader = true;
   public showLoginModal = false;
   public baseUrl: string;
-  public noResultMessage: INoResultMessage;
+  public noResultMessage;
   public filterType: string;
   public queryParams: any;
   public hashTagId: string;
@@ -46,7 +47,7 @@ export class ExploreContentComponent implements OnInit, OnDestroy, AfterViewInit
   showExportLoader = false;
   contentName: string;
   showDownloadLoader = false;
-
+  frameworkId;
   constructor(public searchService: SearchService, public router: Router,
     public activatedRoute: ActivatedRoute, public paginationService: PaginationService,
     public resourceService: ResourceService, public toasterService: ToasterService,
@@ -59,6 +60,11 @@ export class ExploreContentComponent implements OnInit, OnDestroy, AfterViewInit
     this.filterType = this.configService.appConfig.explore.filterType;
   }
   ngOnInit() {
+    this.frameworkService.channelData$.pipe(takeUntil(this.unsubscribe$)).subscribe((channelData) => {
+      if (!channelData.err) {
+        this.frameworkId = _.get(channelData, 'channelData.defaultFramework');
+      }
+    });
     this.orgDetailsService.getOrgDetails(this.activatedRoute.snapshot.params.slug).pipe(
       mergeMap((orgDetails: any) => {
         this.hashTagId = orgDetails.hashTagId;
@@ -113,47 +119,36 @@ export class ExploreContentComponent implements OnInit, OnDestroy, AfterViewInit
       });
   }
   private fetchContents() {
-    let filters = _.pickBy(this.queryParams, (value: Array<string> | string) => value && value.length);
-    filters = _.omit(filters, ['key', 'sort_by', 'sortType', 'appliedFilters']);
-    const softConstraintData: any = {
-      filters: {
-        channel: this.hashTagId,
-      },
-      softConstraints: _.get(this.activatedRoute.snapshot, 'data.softConstraints'),
-      mode: 'soft'
-    };
-    if (this.dataDrivenFilters.board) {
-      softConstraintData.board = [this.dataDrivenFilters.board];
-    }
-    const manipulatedData = this.utilService.manipulateSoftConstraint(_.get(this.queryParams,
-      'appliedFilters'), softConstraintData);
-    const option = {
-      filters: _.get(this.queryParams, 'appliedFilters') ? filters : manipulatedData.filters,
+    const filters: any = _.omit(this.queryParams, ['key', 'sort_by', 'sortType', 'appliedFilters', 'softConstraints']);
+    filters.channel = this.hashTagId;
+    filters.contentType = filters.contentType || this.configService.appConfig.CommonSearch.contentType;
+    const option: any = {
+      filters: filters,
       limit: this.configService.appConfig.SEARCH.PAGE_LIMIT,
       pageNumber: this.paginationDetails.currentPage,
       query: this.queryParams.key,
-      mode: _.get(manipulatedData, 'mode'),
+      mode: 'soft',
+      softConstraints: _.get(this.activatedRoute.snapshot, 'data.softConstraints') || {},
       facets: this.facets,
-      params: this.configService.appConfig.ExplorePage.contentApiQueryParams
+      params: this.configService.appConfig.ExplorePage.contentApiQueryParams || {}
     };
-    option.filters.contentType = filters.contentType ||
-    this.configService.appConfig.CommonSearch.contentType;
-    if (manipulatedData.filters) {
-      option['softConstraints'] = _.get(manipulatedData, 'softConstraints');
-    }
-    this.frameworkService.channelData$.subscribe((channelData) => {
-      if (!channelData.err) {
-        option.params.framework = _.get(channelData, 'channelData.defaultFramework');
+    if (this.queryParams.softConstraints) {
+      try {
+        option.softConstraints = JSON.parse(this.queryParams.softConstraints);
+      } catch {
+
       }
-    });
+    }
+    if (this.frameworkId) {
+      option.params.framework = this.frameworkId;
+    }
     this.searchService.contentSearch(option)
       .subscribe(data => {
         this.showLoader = false;
         this.facetsList = this.searchService.processFilterData(_.get(data, 'result.facets'));
         this.paginationDetails = this.paginationService.getPager(data.result.count, this.paginationDetails.currentPage,
           this.configService.appConfig.SEARCH.PAGE_LIMIT);
-        const { constantData, metaData, dynamicFields } = this.configService.appConfig.LibrarySearch;
-        this.contentList = this.utilService.getDataForCard(data.result.content, constantData, dynamicFields, metaData);
+        this.contentList = data.result.content || [];
       }, err => {
         this.showLoader = false;
         this.contentList = [];
@@ -222,11 +217,11 @@ export class ExploreContentComponent implements OnInit, OnDestroy, AfterViewInit
   }
   public inView(event) {
     _.forEach(event.inview, (elem, key) => {
-      const obj = _.find(this.inViewLogs, { objid: elem.data.metaData.identifier });
+      const obj = _.find(this.inViewLogs, { objid: elem.data.identifier });
       if (!obj) {
         this.inViewLogs.push({
-          objid: elem.data.metaData.identifier,
-          objtype: elem.data.metaData.contentType || 'content',
+          objid: elem.data.identifier,
+          objtype: elem.data.contentType || 'content',
           index: elem.id
         });
       }
@@ -251,12 +246,14 @@ export class ExploreContentComponent implements OnInit, OnDestroy, AfterViewInit
     if (this.isOffline && !(this.router.url.includes('/browse'))) {
       this.noResultMessage = {
         'message': 'messages.stmsg.m0007',
-        'messageText': 'messages.stmsg.m0133'
+        'title': 'messages.stmsg.m0133'
       };
     } else {
       this.noResultMessage = {
-        'message': 'messages.stmsg.m0007',
-        'messageText': 'messages.stmsg.m0006'
+        'title': this.resourceService.frmelmnts.lbl.noBookfoundTitle,
+        'subTitle': this.resourceService.frmelmnts.lbl.noBookfoundSubTitle,
+        'buttonText': this.resourceService.frmelmnts.lbl.noBookfoundButtonText,
+        'showExploreContentButton': false
       };
     }
   }
diff --git a/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.html b/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.html
index 63379d10e384e8feaf042b5559fb4c38e1be727a..c401e572298abdc449fcdd11d924231f55e6bdf6 100644
--- a/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.html
+++ b/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.html
@@ -1,56 +1,23 @@
 <div [appTelemetryImpression]="telemetryImpression">
-  <app-prominent-filter [pageId]="'explore-page'" *ngIf="initFilters" [filterEnv]="filterType" [ignoreQuery]="['key']"
-    [accordionDefaultOpen]=true [isShowFilterLabel]=true [showSearchedParam]=true [isShowFilterLabel]=true
-    [hashTagId]="hashTagId" (prominentFilter)="getFilters($event)"></app-prominent-filter>
-  <div class="ui container mt-24">
-    <div class="ui grid">
-      <div class="twelve wide column" *ngFor="let section of pageSections;let last = last"
+  <app-search-filter *ngIf="initFilter" (filterChange)="getFilters($event)" [pageId]="'explore-page'" [defaultFilters]="defaultFilters">
+  </app-search-filter>
+  <div class="ui container mt-24 sb-library-cards">
+    <div class="ui grid py-16">    
+      <div class="twelve wide column pb-0 pt-0" *ngFor="let section of pageSections;let last = last"
         [ngClass]="{'last mb-0':last}">
-        <app-page-section (visits)="prepareVisits($event)" (playEvent)="playContent($event)" [section]="section"
-          (viewAll)="viewAll($event)"></app-page-section>
+        <sb-library-cards-grid 
+        [type]="'infinite_card_grid'" [title]="section.name" [contentList]="section.contents"
+          [maxCardCount]="4" (viewMoreClick)="viewAll(section)" (cardClick)="playContent($event); getInteractEdata($event, section.name)">
+        </sb-library-cards-grid>
       </div>
       <div class="twelve wide column" *ngIf="showLoader">
-        <app-loader [data]='loaderMessage'></app-loader>
+        <app-loader></app-loader>
       </div>
-      <div class="twelve wide column" *ngIf="carouselMasterData.length === 0 && !showLoader">
-        <app-no-result [data]="noResultMessage"></app-no-result>
+      <div class="twelve wide column" *ngIf="apiContentList.length === 0 && !showLoader">
+        <app-no-result-found (exploreMoreContent)="navigateToExploreContent()" [filters]="selectedFilters" [title]="noResultMessage?.title" [subTitle]="noResultMessage?.subTitle" 
+[buttonText]="noResultMessage?.buttonText" [showExploreContentButton]="noResultMessage?.showExploreContentButton" [telemetryInteractEdataObject]="exploreMoreButtonEdata"></app-no-result-found>
       </div>
     </div>
   </div>
 </div>
-<sui-modal [mustScroll]="true" [isClosable]="true" [transitionDuration]="0" [size]="'small'" class="sb-modal"
-  appBodyScroll (dismissed)="showLoginModal = false" #modal *ngIf="showLoginModal">
-
-  <!--Header-->
-  <div class="sb-modal-header">
-    {{resourceService?.frmelmnts?.lbl?.signinenrollTitle}}
-  </div>
-  <!--/Header-->
-  <!--Content-->
-  <div class="sb-modal-content">
-    <div class="ui center aligned segment">
-      <p>{{resourceService?.frmelmnts?.lbl?.signinenrollTitle}}</p>
-    </div>
-  </div>
-  <!--/Content-->
-
-  <!--Actions-->
-  <div class="sb-modal-actions">
-    <a href={{baseUrl}} class="sb-btn sb-btn-normal sb-btn-primary">
-      {{resourceService.frmelmnts?.btn?.signin}}
-    </a>
-  </div>
-  <!--/Actions-->
-</sui-modal>
-
-<sui-dimmer *ngIf="isOffline" class="page offline content" [isDimmed]="showExportLoader" [isClickable]="false">
-  <div class="ui active centered inline loader"></div>
-  <h2 class="mt-8"> {{resourceService.frmelmnts?.lbl?.exportingContent | interpolate:'{contentName}':contentName}}
-  </h2>
-</sui-dimmer>
-<sui-dimmer *ngIf="isOffline" class="page offline content" [isDimmed]="showDownloadLoader" [isClickable]="false">
-  <div class="ui active centered inline loader"></div>
-  <h2 class="mt-8"> {{resourceService.frmelmnts?.lbl?.downloadingContent | interpolate:'{contentName}':contentName}}
-  </h2>
-</sui-dimmer>
-<app-offline-banner [slug]="slug"></app-offline-banner>
\ No newline at end of file
+<app-offline-banner [slug]="activatedRoute.snapshot.params.slug"></app-offline-banner>
\ No newline at end of file
diff --git a/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.spec.data.ts b/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.spec.data.ts
index e25fac04285f338f314705edc383540e29beb8e4..71319f33c0180f0230477abf5cfd896bc178532c 100644
--- a/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.spec.data.ts
+++ b/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.spec.data.ts
@@ -1,169 +1,439 @@
-export const Response = {
+export const RESPONSE = {
+  searchResult: {
+    'id': 'api.content.search',
+    'ver': '1.0',
+    'ts': '2020-03-05T05:11:37.162Z',
+    'params': {
+      'resmsgid': 'ca1842a0-5e9f-11ea-9c40-61a751c55653',
+      'msgid': '97f24610-32e5-2aff-1dd7-30a586680455',
+      'status': 'successful',
+      'err': null,
+      'errmsg': null
+    },
+    'responseCode': 'OK',
+    'result': {
+      'count': 2,
+      'content': [
+        {
+          'ownershipType': [
+            'createdBy'
+          ],
+          'copyright': 'SAP',
+          'keywords': [
+            'hgh',
+            'testing lessons',
+            'key'
+          ],
+          'subject': 'English',
+          'channel': '012530141516660736208',
+          'downloadUrl': 'https://ntpstagingr_fi1/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+          'organisation': [
+            'SAP'
+          ],
+          'language': [
+            'English'
+          ],
+          'mimeType': 'application/vnd.ekstep.content-collection',
+          'variants': {
+            'online': {
+              'ecarUrl': 'https://_files/do_212916581536096256131/assam-text-book_1576731344224_do_212916581536096256131_1.0_online.ecar',
+              'size': 11806
+            },
+            'spine': {
+              'ecarUrl': 'https://ntpsiles/do_212916581536096256131/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+              'size': 1021747
+            }
+          },
+          'leafNodes': [
+            'do_212848119817945088185',
+            'do_2123178641611407361570',
+            'do_2125388336945070081193',
+            'do_2128458481719705601144',
+            'do_2125392680404008961221',
+            'do_2125392907628953601223'
+          ],
+          'objectType': 'Content',
+          'gradeLevel': [
+            'Class 5',
+            'Class 6',
+            'Class 7'
+          ],
+          'appIcon': 'https://ntpstagingall.blob.core.windows.act/api2_1530687542792.thumb.png',
+          'children': [
+            'do_212848119817945088185',
+            'do_2128458481719705601144',
+            'do_2123178641611407361570',
+            'do_2125393116783165441232'
+          ],
+          'appId': 'staging.diksha.portal',
+          'contentEncoding': 'gzip',
+          'lockKey': 'c98ba06f-cd7c-4507-b286-68d5aa960b60',
+          'mimeTypesCount': '',
+          'totalCompressedSize': 11089779,
+          'contentType': 'TextBook',
+          'identifier': 'do_212916581536096256131',
+          'audience': [
+            'Learner'
+          ],
+          'visibility': 'Default',
+          'toc_url': 'htt536096256131/artifact/do_212916581536096256131_toc.json',
+          'contentTypesCount': '{\'TextBookUnit\':2,\'Resource\':8,\'Collection\':2}',
+          'consumerId': '56ff6913-abcc-4a88-b247-c976e47cbfb4',
+          'childNodes': [
+            'do_212848119817945088185',
+            'do_2125393116783165441232',
+            'do_2123178641611407361570',
+            'do_21291658181889228811065',
+            'do_2125388336945070081193',
+            'do_21291658181888409611064',
+            'do_2128458481719705601144',
+            'do_2125393105532600321231',
+            'do_2125392680404008961221',
+            'do_2125392907628953601223'
+          ],
+          'mediaType': 'content',
+          'osId': 'org.ekstep.quiz.app',
+          'ageGroup': [
+            '<5',
+            '>10'
+          ],
+          'graph_id': 'domain',
+          'nodeType': 'DATA_NODE',
+          'lastPublishedBy': '93ef4d2c-c8ad-487e-833c-1f7ffb4ac346',
+          'version': 2,
+          'license': 'CC BY 4.0',
+          'prevState': 'Review',
+          'qrCodeProcessId': '1f3621d4-983a-4324-a30c-af512135c0d6',
+          'size': 1021747,
+          'lastPublishedOn': '2019-12-19T04:55:43.684+0000',
+          'IL_FUNC_OBJECT_TYPE': 'Content',
+          'domain': [
+            'Biology'
+          ],
+          'name': 'Assam text book',
+          'status': 'Live',
+          'code': 'org.sunbird.6gMOb5',
+          'description': 'Enter description for TextBook',
+          'medium': 'English',
+          'idealScreenSize': 'normal',
+          'posterImage': 'https://198721383/artifact/api2_1530687542792.png',
+          'createdOn': '2019-12-19T04:52:24.549+0000',
+          'reservedDialcodes': '{\'F5M5M7\':2,\'V1E7I2\':1,\'K8D3T7\':0}',
+          'contentDisposition': 'inline',
+          'lastUpdatedOn': '2019-12-19T04:55:43.369+0000',
+          'SYS_INTERNAL_LAST_UPDATED_ON': '2019-12-19T04:55:44.316+0000',
+          'dialcodeRequired': 'No',
+          'creator': 'azam m',
+          'createdFor': [
+            '012530141516660736208'
+          ],
+          'lastStatusChangedOn': '2019-12-19T04:55:44.308+0000',
+          'IL_SYS_NODE_TYPE': 'DATA_NODE',
+          'os': [
+            'All'
+          ],
+          'pkgVersion': 1,
+          'versionKey': '1576731343369',
+          'idealScreenDensity': 'hdpi',
+          'framework': 'NCF',
+          'depth': 0,
+          'dialcodes': [
+            'K8D3T7'
+          ],
+          's3Key': 'ecar_files/do_212916581536096256131/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+          'lastSubmittedOn': '2019-12-19T04:54:20.014+0000',
+          'createdBy': '5936c4ee-7e44-4a1b-9211-1c17fc8601e7',
+          'compatibilityLevel': 1,
+          'leafNodesCount': 6,
+          'IL_UNIQUE_ID': 'do_212916581536096256131',
+          'board': 'State (Assam)',
+          'resourceType': 'Book',
+          'node_id': 521312,
+          'orgDetails': {
+            'email': null,
+            'orgName': 'SAP'
+          }
+        },
+        {
+          'ownershipType': [
+            'createdBy'
+          ],
+          'copyright': 'Chhattisgarh',
+          'subject': 'English',
+          'downloadUrl': 'https://ntpstagido_21285725285052416011433/test-k12-book_1569489359437_do_21285725285052416011433_1.0_spine.ecar',
+          'channel': '01258043108936908899',
+          'organisation': [
+            'Chhattisgarh'
+          ],
+          'language': [
+            'English'
+          ],
+          'variants': {
+            'online': {
+              'ecarUrl': 'https://ntpsta/do_21285725285052416011433/test-k12-book_1569489359599_do_21285725285052416011433_1.0_online.ecar',
+              'size': 4629
+            },
+            'spine': {
+              'ecarUrl': 'https://ntpstagingal725285052416011433/test-k12-book_1569489359437_do_21285725285052416011433_1.0_spine.ecar',
+              'size': 59795
+            }
+          },
+          'mimeType': 'application/vnd.ekstep.content-collection',
+          'leafNodes': [
+            'do_21285718979780608011405'
+          ],
+          'objectType': 'Content',
+          'gradeLevel': [
+            'Class 5',
+            'Class 6',
+            'Class 7',
+            'Class 8'
+          ],
+          'appIcon': 'https://ntpsta1285725285052416011433/artifact/1_1565067478206.thumb.png',
+          'appId': 'staging.diksha.portal',
+          'contentEncoding': 'gzip',
+          'lockKey': '93e020b8-de57-45ad-9863-737ad82e51d2',
+          'totalCompressedSize': 50594,
+          'mimeTypesCount': '{\'application/vnd.ekstep.content-collection\':1,\'application/vnd.ekstep.ecml-archive\':1}',
+          'contentType': 'TextBook',
+          'identifier': 'do_21285725285052416011433',
+          'audience': [
+            'Learner'
+          ],
+          'toc_url': 'https://ntpst_21285725285052416011433/artifact/do_21285725285052416011433_toc.json',
+          'visibility': 'Default',
+          'contentTypesCount': '{\'TextBookUnit\':1,\'Resource\':1}',
+          'author': 'Umesh',
+          'childNodes': [
+            'do_21285725355311104011435',
+            'do_21285718979780608011405'
+          ],
+          'consumerId': 'a9cb3a83-a164-4bf0-aa49-b834cebf1c07',
+          'mediaType': 'content',
+          'osId': 'org.ekstep.quiz.app',
+          'lastPublishedBy': '6c2f53fb-ae8d-49c5-b0c0-125c4d390634',
+          'graph_id': 'domain',
+          'nodeType': 'DATA_NODE',
+          'version': 2,
+          'license': 'CC BY 4.0',
+          'prevState': 'Review',
+          'lastPublishedOn': '2019-09-26T09:15:59.387+0000',
+          'size': 59795,
+          'name': 'Test k12 book',
+          'status': 'Live',
+          'code': 'org.sunbird.IYLpFa',
+          'description': 'Enter description for TextBook',
+          'medium': 'English',
+          'posterImage': 'https://nnt/do_21282103277991526412038/artifact/1_1565067478206.png',
+          'idealScreenSize': 'normal',
+          'createdOn': '2019-09-26T09:07:53.354+0000',
+          'copyrightYear': 2019,
+          'contentDisposition': 'inline',
+          'lastUpdatedOn': '2019-09-26T09:15:59.202+0000',
+          'SYS_INTERNAL_LAST_UPDATED_ON': '2019-09-26T09:15:59.676+0000',
+          'dialcodeRequired': 'No',
+          'createdFor': [
+            '01258043108936908899'
+          ],
+          'lastStatusChangedOn': '2019-09-26T09:15:59.669+0000',
+          'creator': 'Bcreator',
+          'os': [
+            'All'
+          ],
+          'pkgVersion': 1,
+          'versionKey': '1569489359202',
+          'idealScreenDensity': 'hdpi',
+          's3Key': 'ecar_files/do_21285725285052416011433/test-k12-book_1569489359437_do_21285725285052416011433_1.0_spine.ecar',
+          'depth': 0,
+          'framework': 'as_k-12',
+          'lastSubmittedOn': '2019-09-26T09:15:26.046+0000',
+          'createdBy': 'b15441a6-7095-45c1-829d-ec167879ab52',
+          'leafNodesCount': 1,
+          'compatibilityLevel': 1,
+          'board': 'State (Assam)',
+          'resourceType': 'Book',
+          'node_id': 497769,
+          'orgDetails': {
+            'email': null,
+            'orgName': 'Chhattisgarh'
+          }
+        }
+      ]
+    }
+  },
   successData: {
-     ' id': 'api.page.assemble',
-     ' params': {
-          'err': null,
-          'errmsg' : null,
-          'msgid' : '31df557d-ce56-e489-9cf3-27b74c90a920',
-          'resmsgid' : null,
-          'status' : 'success'},
-     'responseCode': 'OK',
-     'result': {
-         'response': {
-              'id': '0122838911932661768',
-              'name': 'Resources',
-              'sections': [
-                   {
-                      'name': 'Story',
-                      'length': 1,
-                      'contents': [
-                          { 'name': 'Test1182016-02',
-                          'description': 'Test',
-                          'me_averageRating': 3,
-                          'resourceType': 'story',
-                          'leafNodesCount': 10,
-                          'progress': 3,
-                          'appIcon': 'https://ekstep-public-qa.s3-ap-south-1.amazonaws.com/content/monologue_1463065145952.thumb.png',
-                          'action': { 'right': {'displayType': 'button' ,
-                          'classes': 'ui blue basic button' ,
-                          'text': 'Resume' },
-                          'left': { 'displayType': 'rating' }
-                         }}
-                      ]
-                   }
-                  ]
+    ' id': 'api.page.assemble',
+    ' params': {
+      'err': null,
+      'errmsg': null,
+      'msgid': '31df557d-ce56-e489-9cf3-27b74c90a920',
+      'resmsgid': null,
+      'status': 'success'
+    },
+    'responseCode': 'OK',
+    'result': {
+      'response': {
+        'id': '0122838911932661768',
+        'name': 'Resources',
+        'sections': [
+          {
+            'name': 'Story',
+            'length': 1,
+            'contents': [
+              {
+                'name': 'Test1182016-02',
+                'description': 'Test',
+                'me_averageRating': 3,
+                'resourceType': 'story',
+                'leafNodesCount': 10,
+                'progress': 3,
+                'appIcon': 'https://ekstep-public-qa.s3-ap-south-1.amazonaws.com/content/monologue_1463065145952.thumb.png',
+                'action': {
+                  'right': {
+                    'displayType': 'button',
+                    'classes': 'ui blue basic button',
+                    'text': 'Resume'
+                  },
+                  'left': { 'displayType': 'rating' }
+                }
+              }
+            ]
           }
+        ]
       }
+    }
   },
   secondData: {
-      'id': 'api.page.assemble',
-      'ver': 'v1',
-      'ts': '2018-06-18 12:21:09:081+0000',
-      'params': {
-        'resmsgid': null,
-        'msgid': 'a18cba71-1334-3439-47a2-ba03901d8119',
-        'err': null,
-        'status': 'success',
-        'errmsg': null
-      },
-      'responseCode': 'OK',
-      'result': {
-        'response': {
-          'name': 'Resource',
-          'id': '0122838909618585607',
-          'sections': [
-            {
-              'display': '{\'name\':{\'en\':\'Popular Worksheet\',\'hi\':\'लोकप्रिय वर्कशीट\'}}',
-              'alt': null,
-              'count': 0,
-              'description': null,
-              'index': 1,
-              'sectionDataType': 'content',
-              'imgUrl': null,
-              'resmsgId': '14bd6a10-72f2-11e8-92f3-b11fa246a9f9',
-              'contents': null,
-              'name': 'Popular Worksheet',
-              'id': '01228383082462412826',
-              'apiId': 'api.v1.search',
-              'group': 1
-            },
-            {
-              'display': '{\'name\':{\'en\':\'Popular Story\',\'hi\':\'लोकप्रिय कहानी\'}}',
-              'alt': null,
-              'count': 0,
-              'description': null,
-              'index': 1,
-              'sectionDataType': 'content',
-              'imgUrl': null,
-              'resmsgId': '14c30f60-72f2-11e8-81ab-411a3b021e96',
-              'contents': null,
-              'name': 'Popular Story',
-              'id': '01228383384379392023',
-              'apiId': 'api.v1.search',
-              'group': 2
-            }
-          ]
-        }
+    'id': 'api.page.assemble',
+    'ver': 'v1',
+    'ts': '2018-06-18 12:21:09:081+0000',
+    'params': {
+      'resmsgid': null,
+      'msgid': 'a18cba71-1334-3439-47a2-ba03901d8119',
+      'err': null,
+      'status': 'success',
+      'errmsg': null
+    },
+    'responseCode': 'OK',
+    'result': {
+      'response': {
+        'name': 'Resource',
+        'id': '0122838909618585607',
+        'sections': [
+          {
+            'display': '{\'name\':{\'en\':\'Popular Worksheet\',\'hi\':\'लोकप्रिय वर्कशीट\'}}',
+            'alt': null,
+            'count': 0,
+            'description': null,
+            'index': 1,
+            'sectionDataType': 'content',
+            'imgUrl': null,
+            'resmsgId': '14bd6a10-72f2-11e8-92f3-b11fa246a9f9',
+            'contents': null,
+            'name': 'Popular Worksheet',
+            'id': '01228383082462412826',
+            'apiId': 'api.v1.search',
+            'group': 1
+          },
+          {
+            'display': '{\'name\':{\'en\':\'Popular Story\',\'hi\':\'लोकप्रिय कहानी\'}}',
+            'alt': null,
+            'count': 0,
+            'description': null,
+            'index': 1,
+            'sectionDataType': 'content',
+            'imgUrl': null,
+            'resmsgId': '14c30f60-72f2-11e8-81ab-411a3b021e96',
+            'contents': null,
+            'name': 'Popular Story',
+            'id': '01228383384379392023',
+            'apiId': 'api.v1.search',
+            'group': 2
+          }
+        ]
       }
+    }
+  },
+  thirdData: {
+    ' id': 'api.page.assemble',
+    ' params': {
+      'err': null,
+      'errmsg': null,
+      'msgid': '31df557d-ce56-e489-9cf3-27b74c90a920',
+      'resmsgid': null,
+      'status': 'success'
     },
-    thirdData: {
-      ' id': 'api.page.assemble',
-      ' params': {
-           'err': null,
-           'errmsg' : null,
-           'msgid' : '31df557d-ce56-e489-9cf3-27b74c90a920',
-           'resmsgid' : null,
-           'status' : 'success'},
-      'responseCode': 'OK',
-      'result': {
-          'response': {
-               'id': '0122838911932661768',
-               'name': 'Resources',
-               'sections': [
-                    {
-                       'name': 'Multiple Data',
-                       'length': 1,
-                    }
-                   ]
-           }
-       }
-   },
-   error: {'id':  'api.page.assemble', 'params': {
+    'responseCode': 'OK',
+    'result': {
+      'response': {
+        'id': '0122838911932661768',
+        'name': 'Resources',
+        'sections': [
+          {
+            'name': 'Multiple Data',
+            'length': 1,
+          }
+        ]
+      }
+    }
+  },
+  error: {
+    'id': 'api.page.assemble', 'params': {
       'resmsgid': 'UnAutorized', 'msgid': 'c9099093-7305-8258-9781-014df666da36',
       'status': 'UnAutorized', 'err': 'UnAutorized', 'errmsg': 'UnAutorized'
-  }, 'responseCode': 'Err',
-  'result': { }
+    }, 'responseCode': 'Err',
+    'result': {}
   },
   event: [
-      {
-        'name': 'flag test',
-        'image': 'https://ekstep-public-dev.s32.thumb.jpeg',
-        'description': '',
-        'rating': '0',
-        'action': {
-          'right': {
-            'class': 'ui blue basic button',
-            'eventName': 'Resume',
-            'displayType': 'button',
-            'text': 'Resume'
-          },
-          'onImage': {
-            'eventName': 'onImage'
-          }
-        },
-        'metaData': {
-          'batchId': '01250987188871168027',
-          'courseId': 'do_112499049696583680148'
+    {
+      'name': 'flag test',
+      'image': 'https://ekstep-public-dev.s32.thumb.jpeg',
+      'description': '',
+      'rating': '0',
+      'action': {
+        'right': {
+          'class': 'ui blue basic button',
+          'eventName': 'Resume',
+          'displayType': 'button',
+          'text': 'Resume'
         },
-        'maxCount': 0,
-        'progress': 0,
-        'section': 'My Trainings'
+        'onImage': {
+          'eventName': 'onImage'
+        }
       },
-      {
-        'name': 'AAAA',
-        'image': 'https://ekstep-publit/short_stories_lionandmouse3_1467102846349.thumb.jpg',
-        'description': 'Untitled Collection',
-        'rating': '0',
-        'action': {
-          'right': {
-            'class': 'ui blue basic button',
-            'eventName': 'Resume',
-            'displayType': 'button',
-            'text': 'Resume'
-          },
-          'onImage': {
-            'eventName': 'onImage'
-          }
-        },
-        'metaData': {
-          'batchId': '01251320263126220811',
-          'courseId': 'do_1125131909441945601309'
+      'metaData': {
+        'batchId': '01250987188871168027',
+        'courseId': 'do_112499049696583680148'
+      },
+      'maxCount': 0,
+      'progress': 0,
+      'section': 'My Trainings'
+    },
+    {
+      'name': 'AAAA',
+      'image': 'https://ekstep-publit/short_stories_lionandmouse3_1467102846349.thumb.jpg',
+      'description': 'Untitled Collection',
+      'rating': '0',
+      'action': {
+        'right': {
+          'class': 'ui blue basic button',
+          'eventName': 'Resume',
+          'displayType': 'button',
+          'text': 'Resume'
         },
-        'maxCount': 4,
-        'progress': 0,
-        'section': 'My Trainings'
-      }
-    ],
+        'onImage': {
+          'eventName': 'onImage'
+        }
+      },
+      'metaData': {
+        'batchId': '01251320263126220811',
+        'courseId': 'do_1125131909441945601309'
+      },
+      'maxCount': 4,
+      'progress': 0,
+      'section': 'My Trainings'
+    }
+  ],
   filters: [
     {
       'code': 'board',
@@ -322,24 +592,24 @@ export const Response = {
   requestParam: {
     source: 'web',
     name: 'Explore',
-    filters: {subject: ['English'], board: undefined, 'channel': '0123166367624478721'},
-    softConstraints: { badgeAssertions: 98, board: 99,  channel: 100 },
+    filters: { subject: ['English'], board: undefined, 'channel': '0123166367624478721' },
+    softConstraints: { badgeAssertions: 98, board: 99, channel: 100 },
     mode: 'soft',
     exists: []
   },
   requestParam2: {
     source: 'web',
     name: 'Explore',
-    filters: {subject: ['English'], board: 'CBSE', 'channel': '0123166367624478721'},
-    softConstraints: { badgeAssertions: 98, board: 99,  channel: 100 },
+    filters: { subject: ['English'], board: 'CBSE', 'channel': '0123166367624478721' },
+    softConstraints: { badgeAssertions: 98, board: 99, channel: 100 },
     mode: 'soft',
     exists: []
   },
   requestParam3: {
     source: 'web',
     name: 'Explore',
-    filters: {subject: ['English'], board: ['NCERT', 'ICSE'], 'channel': '0123166367624478721'},
-    softConstraints: { badgeAssertions: 98, board: 99,  channel: 100 },
+    filters: { subject: ['English'], board: ['NCERT', 'ICSE'], 'channel': '0123166367624478721' },
+    softConstraints: { badgeAssertions: 98, board: 99, channel: 100 },
     mode: 'soft',
     exists: []
   },
@@ -349,112 +619,1026 @@ export const Response = {
     'data': {
       'action':
       {
-        'onImage': {'eventName': 'onImage'}
+        'onImage': { 'eventName': 'onImage' }
       },
-    'addedToLibrary': true,
-    'completionPercentage': 0,
-    'contentType': 'Resource',
-    'description': 'Math-Magic_7_Jugs and Mugs_Bunny and Banno celebrate their Wedding Anniversary_Introduction to volume',
-    'gradeLevel': 'Class 4',
-    // tslint:disable-next-line:max-line-length
-    'image': 'https://ekstep-public-prod.s3-ap-south-1.amazonaws.com/content/do_312579855868370944110877/artifact/1n4jfaogvexvuuff6knjagpzmavlvdxk2.thumb.png',
-    'medium': 'English',
-    // tslint:disable-next-line:max-line-length
-    'metaData': {'identifier': 'do_312579855868370944110877', 'mimeType': 'video/x-youtube', 'framework': 'ekstep_ncert_k-12', 'contentType': 'Resource'},
-    'name': 'Jugs and Mugs_Bunny and Banno celebrate their Wedding Anniversary_2',
-    'orgDetails': {},
-    'rating': 3,
-    'ribbon': {
-      'left': {
-        'class': 'ui circular label  card-badges-image',
-        'image': 'https://ntpproduction.blob.core.windows.net/badgr/uploads/badges/739851bf8ecd6203aa5dd2d9de155f31.png'
-      },
-      'right': {
-        'class': 'ui black right ribbon label',
-        'name': 'Learn'
+      'addedToLibrary': true,
+      'completionPercentage': 0,
+      'contentType': 'Resource',
+      'description': 'Math-Magic_7_Jugs and Mugs_Bunny and Banno celebrate their Wedding Anniversary_Introduction to volume',
+      'gradeLevel': 'Class 4',
+      // tslint:disable-next-line:max-line-length
+      'image': 'https://ekstep-public-prod.s3-ap-south-1.amazonaws.com/content/do_312579855868370944110877/artifact/1n4jfaogvexvuuff6knjagpzmavlvdxk2.thumb.png',
+      'medium': 'English',
+      // tslint:disable-next-line:max-line-length
+      'metaData': { 'identifier': 'do_312579855868370944110877', 'mimeType': 'video/x-youtube', 'framework': 'ekstep_ncert_k-12', 'contentType': 'Resource' },
+      'name': 'Jugs and Mugs_Bunny and Banno celebrate their Wedding Anniversary_2',
+      'orgDetails': {},
+      'rating': 3,
+      'ribbon': {
+        'left': {
+          'class': 'ui circular label  card-badges-image',
+          'image': 'https://ntpproduction.blob.core.windows.net/badgr/uploads/badges/739851bf8ecd6203aa5dd2d9de155f31.png'
+        },
+        'right': {
+          'class': 'ui black right ribbon label',
+          'name': 'Learn'
+        },
       },
+      'subTopic': '',
+      'subject': 'Mathematics',
+      'topic': 'Volumes and Capacity'
     },
-    'subTopic': '',
-    'subject': 'Mathematics',
-    'topic': 'Volumes and Capacity'
-  },
     'section': 'Featured Content'
+  },
+  download_list: {
+    id: 'api.content.download.list',
+    ver: '1.0',
+    ts: '2019-08-22T05:07:39.363Z',
+    params: {
+      resmsgid: 'f2da2305-75c9-4b54-a454-72cfe6433ebe',
+      msgid: '2025a654-e573-4546-b87d-0a293f2f6564',
+      status: 'successful',
+      err: null,
+      errmsg: null,
     },
-  download_list : {
-      id: 'api.content.download.list',
-      ver: '1.0',
-      ts: '2019-08-22T05:07:39.363Z',
-      params: {
-        resmsgid: 'f2da2305-75c9-4b54-a454-72cfe6433ebe',
-        msgid: '2025a654-e573-4546-b87d-0a293f2f6564',
-        status: 'successful',
-        err: null,
-        errmsg: null,
-      },
-      responseCode: 'OK',
-      result: {
-        response: {
-          downloads: {
-            submitted: [],
-            inprogress: [],
-            failed: [],
-            completed: [],
-          },
+    responseCode: 'OK',
+    result: {
+      response: {
+        downloads: {
+          submitted: [],
+          inprogress: [],
+          failed: [],
+          completed: [],
         },
       },
     },
-  download_success : {
-      id: 'api.content.download',
-      ver: '1.0',
-      ts: '2019-08-16T04:54:02.569Z',
-      params: {
-        resmsgid: 'efe1bb13-a3a4-4458-baf1-234b1a109ea0',
-        msgid: 'c1932b9d-2a36-4036-ba57-2b80be4b3355',
-        status: 'successful',
-        err: null,
-        errmsg: null,
-      },
-      responseCode: 'OK',
-      result: { downloadId: '5e1ae60e-ecd8-459e-9e13-fe8ecf7c9487' },
+  },
+  download_success: {
+    id: 'api.content.download',
+    ver: '1.0',
+    ts: '2019-08-16T04:54:02.569Z',
+    params: {
+      resmsgid: 'efe1bb13-a3a4-4458-baf1-234b1a109ea0',
+      msgid: 'c1932b9d-2a36-4036-ba57-2b80be4b3355',
+      status: 'successful',
+      err: null,
+      errmsg: null,
     },
-  download_error : {
-      id: 'api.content.download',
-      ver: '1.0',
-      ts: '2019-08-16T12:28:15.856Z',
-      params: {
-        resmsgid: 'dbbf8bd4-4da8-492b-bc5b-6c73351f1161',
-        msgid: '845ee75b-72e9-4d33-a0a2-1b38bf132b83',
-        status: 'failed',
-        err: 'ERR_INTERNAL_SERVER_ERROR',
-        errmsg: 'Error while processing the request',
-      },
-      responseCode: 'INTERNAL_SERVER_ERROR',
-      result: {},
+    responseCode: 'OK',
+    result: { downloadId: '5e1ae60e-ecd8-459e-9e13-fe8ecf7c9487' },
+  },
+  download_error: {
+    id: 'api.content.download',
+    ver: '1.0',
+    ts: '2019-08-16T12:28:15.856Z',
+    params: {
+      resmsgid: 'dbbf8bd4-4da8-492b-bc5b-6c73351f1161',
+      msgid: '845ee75b-72e9-4d33-a0a2-1b38bf132b83',
+      status: 'failed',
+      err: 'ERR_INTERNAL_SERVER_ERROR',
+      errmsg: 'Error while processing the request',
     },
+    responseCode: 'INTERNAL_SERVER_ERROR',
+    result: {},
+  },
+  result: {
+    id: 'api.content.read',
+    ver: '1.0',
+    ts: '2018-05-03T10:51:12.648Z',
+    params: 'params',
+    responseCode: 'OK',
     result: {
-      id: 'api.content.read',
-      ver: '1.0',
-      ts: '2018-05-03T10:51:12.648Z',
-      params: 'params',
-      responseCode: 'OK',
-      result: {
-          content: {
-              downloadStatus: '',
-              mimeType: 'application/vnd.ekstep.ecml-archive',
-              body: 'body',
-              identifier: 'domain_66675',
-              versionKey: '1497028761823',
-              status: 'Live',
-              me_averageRating: '4',
-              description: 'ffgg',
-              name: 'ffgh',
-              concepts: ['AI', 'ML'],
-              contentType: '',
-              code: '',
-              framework: '',
-              userId: '',
-              userName: '',
-          }
+      content: {
+        downloadStatus: '',
+        mimeType: 'application/vnd.ekstep.ecml-archive',
+        body: 'body',
+        identifier: 'domain_66675',
+        versionKey: '1497028761823',
+        status: 'Live',
+        me_averageRating: '4',
+        description: 'ffgg',
+        name: 'ffgh',
+        concepts: ['AI', 'ML'],
+        contentType: '',
+        code: '',
+        framework: '',
+        userId: '',
+        userName: '',
+      }
+    }
+  },
+  withoutSlugGetChannelResponse: {
+    'id': 'api.system.settings.get.custodianOrgId',
+    'ver': 'v1',
+    'ts': '2020-03-09 06:20:21:443+0000',
+    'params': {
+      'resmsgid': null,
+      'msgid': null,
+      'err': null,
+      'status': 'success',
+      'errmsg': null
+    },
+    'responseCode': 'OK',
+    'result': {
+      'response': {
+        'id': 'custodianOrgId',
+        'field': 'custodianOrgId',
+        'value': '0126632859575746566'
       }
+    }
+  },
+  withSlugGetChannelResponse: {
+    'dateTime': null,
+    'preferredLanguage': 'te',
+    'approvedBy': null,
+    'channel': 'tn',
+    'description': 'THURIKAI (  Tamilnadu Heuristic Ultimate Repository of Information, Knowledge, Assessment and Innovation ) - தூரிகை',
+    'updatedDate': '2018-11-15 13:30:53:806+0000',
+    'addressId': null,
+    'orgType': null,
+    'provider': null,
+    'orgCode': null,
+    'theme': null,
+    'id': '012339869533921280170',
+    'communityId': null,
+    'isApproved': null,
+    'slug': 'tn',
+    'identifier': '012339869533921280170',
+    'thumbnail': null,
+    'orgName': 'THURIKAI (Tamilnadu Heuristic Ultimate Repository of Information, Knowledge, Assessment and Innovation) - தூரிகை',
+    'updatedBy': '9d92839b-6f7e-447e-a1a2-505af40ea40f',
+    'locationIds': [
+      'd6e20d69-f597-4749-8d68-c37481f4ae7e'
+    ],
+    'externalId': null,
+    'isRootOrg': true,
+    'rootOrgId': 'ORG_001',
+    'approvedDate': null,
+    'imgUrl': null,
+    'homeUrl': null,
+    'isDefault': null,
+    'contactDetail': [],
+    'createdDate': '2017-09-25 09:13:47:740+0000',
+    'createdBy': 'e9280b815c0e41972bf754e9409b66d778b8e11bb91844892869a1e828d7d2f2a',
+    'parentOrgId': null,
+    'hashTagId': '012339869533921280170',
+    'noOfMembers': null,
+    'status': 1
+  },
+  selectedFilters: {
+    'board': [
+      'State (Assam)'
+    ],
+    'medium': [
+      'English'
+    ],
+    'gradeLevel': [
+      'Class 5'
+    ]
+  },
+  contentSearchSuccessResponse: [
+    {
+      'name': 'English',
+      'contents': [
+        {
+          'ownershipType': [
+            'createdBy'
+          ],
+          'copyright': 'SAP',
+          'keywords': [
+            'hgh',
+            'testing lessons',
+            'key'
+          ],
+          'subject': 'English',
+          'channel': '012530141516660736208',
+          // tslint:disable-next-line:max-line-length
+          'downloadUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212916581536096256131/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+          'organisation': [
+            'SAP'
+          ],
+          'language': [
+            'English'
+          ],
+          'mimeType': 'application/vnd.ekstep.content-collection',
+          'variants': {
+            'online': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212916581536096256131/assam-text-book_1576731344224_do_212916581536096256131_1.0_online.ecar',
+              'size': 11806
+            },
+            'spine': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212916581536096256131/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+              'size': 1021747
+            }
+          },
+          'leafNodes': [
+            'do_212848119817945088185',
+            'do_2123178641611407361570',
+            'do_2125388336945070081193',
+            'do_2128458481719705601144',
+            'do_2125392680404008961221',
+            'do_2125392907628953601223'
+          ],
+          'objectType': 'Content',
+          'gradeLevel': [
+            'Class 5',
+            'Class 6',
+            'Class 7'
+          ],
+          // tslint:disable-next-line:max-line-length
+          'appIcon': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212916581536096256131/artifact/api2_1530687542792.thumb.png',
+          'children': [
+            'do_212848119817945088185',
+            'do_2128458481719705601144',
+            'do_2123178641611407361570',
+            'do_2125393116783165441232'
+          ],
+          'appId': 'staging.diksha.portal',
+          'contentEncoding': 'gzip',
+          'lockKey': 'c98ba06f-cd7c-4507-b286-68d5aa960b60',
+          // tslint:disable-next-line:max-line-length
+          'mimeTypesCount': '{\'application/vnd.ekstep.content-collection\':4,\'application/vnd.ekstep.ecml-archive\':7,\'video/x-youtube\':1}',
+          'totalCompressedSize': 11089779,
+          'contentType': 'TextBook',
+          'identifier': 'do_212916581536096256131',
+          'audience': [
+            'Learner'
+          ],
+          'visibility': 'Default',
+          // tslint:disable-next-line:max-line-length
+          'toc_url': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212916581536096256131/artifact/do_212916581536096256131_toc.json',
+          'contentTypesCount': '{\'TextBookUnit\':2,\'Resource\':8,\'Collection\':2}',
+          'consumerId': '56ff6913-abcc-4a88-b247-c976e47cbfb4',
+          'childNodes': [
+            'do_212848119817945088185',
+            'do_2125393116783165441232',
+            'do_2123178641611407361570',
+            'do_21291658181889228811065',
+            'do_2125388336945070081193',
+            'do_21291658181888409611064',
+            'do_2128458481719705601144',
+            'do_2125393105532600321231',
+            'do_2125392680404008961221',
+            'do_2125392907628953601223'
+          ],
+          'mediaType': 'content',
+          'osId': 'org.ekstep.quiz.app',
+          'ageGroup': [
+            '<5',
+            '>10'
+          ],
+          'graph_id': 'domain',
+          'nodeType': 'DATA_NODE',
+          'lastPublishedBy': '93ef4d2c-c8ad-487e-833c-1f7ffb4ac346',
+          'version': 2,
+          'license': 'CC BY 4.0',
+          'prevState': 'Review',
+          'qrCodeProcessId': '1f3621d4-983a-4324-a30c-af512135c0d6',
+          'size': 1021747,
+          'lastPublishedOn': '2019-12-19T04:55:43.684+0000',
+          'IL_FUNC_OBJECT_TYPE': 'Content',
+          'domain': [
+            'Biology'
+          ],
+          'name': 'Assam text book',
+          'status': 'Live',
+          'code': 'org.sunbird.6gMOb5',
+          'description': 'Enter description for TextBook',
+          'medium': 'English',
+          'idealScreenSize': 'normal',
+          // tslint:disable-next-line:max-line-length
+          'posterImage': 'https://ekstep-public-qa.s3-ap-south-1.amazonaws.com/content/do_2125393923495198721383/artifact/api2_1530687542792.png',
+          'createdOn': '2019-12-19T04:52:24.549+0000',
+          'reservedDialcodes': '{\'F5M5M7\':2,\'V1E7I2\':1,\'K8D3T7\':0}',
+          'contentDisposition': 'inline',
+          'lastUpdatedOn': '2019-12-19T04:55:43.369+0000',
+          'SYS_INTERNAL_LAST_UPDATED_ON': '2019-12-19T04:55:44.316+0000',
+          'dialcodeRequired': 'No',
+          'creator': 'azam m',
+          'createdFor': [
+            '012530141516660736208'
+          ],
+          'lastStatusChangedOn': '2019-12-19T04:55:44.308+0000',
+          'IL_SYS_NODE_TYPE': 'DATA_NODE',
+          'os': [
+            'All'
+          ],
+          'pkgVersion': 1,
+          'versionKey': '1576731343369',
+          'idealScreenDensity': 'hdpi',
+          'framework': 'NCF',
+          'depth': 0,
+          'dialcodes': [
+            'K8D3T7'
+          ],
+          's3Key': 'ecar_files/do_212916581536096256131/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+          'lastSubmittedOn': '2019-12-19T04:54:20.014+0000',
+          'createdBy': '5936c4ee-7e44-4a1b-9211-1c17fc8601e7',
+          'compatibilityLevel': 1,
+          'leafNodesCount': 6,
+          'IL_UNIQUE_ID': 'do_212916581536096256131',
+          'board': 'State (Assam)',
+          'resourceType': 'Book',
+          'node_id': 521312,
+          'orgDetails': {
+            'email': null,
+            'orgName': 'SAP'
+          },
+          // tslint:disable-next-line:max-line-length
+          'cardImg': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212916581536096256131/artifact/api2_1530687542792.thumb.png'
+        },
+        {
+          'ownershipType': [
+            'createdBy'
+          ],
+          'copyright': 'Chhattisgarh',
+          'subject': 'English',
+          // tslint:disable-next-line:max-line-length
+          'downloadUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21286012130068070412543/test-copy-feature_1569839071542_do_21286012130068070412543_1.0_spine.ecar',
+          'channel': '01258043108936908899',
+          'organisation': [
+            'Chhattisgarh',
+            'Chhattisgarh',
+            'Chhattisgarh'
+          ],
+          'language': [
+            'English'
+          ],
+          'variants': {
+            'online': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21286012130068070412543/test-copy-feature_1569839071590_do_21286012130068070412543_1.0_online.ecar',
+              'size': 4473
+            },
+            'spine': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21286012130068070412543/test-copy-feature_1569839071542_do_21286012130068070412543_1.0_spine.ecar',
+              'size': 63634
+            }
+          },
+          'mimeType': 'application/vnd.ekstep.content-collection',
+          'leafNodes': [
+            'do_212848119817945088185'
+          ],
+          'objectType': 'Content',
+          // tslint:disable-next-line:max-line-length
+          'appIcon': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21286012130068070412543/artifact/1_1565067478206.thumb.png',
+          'gradeLevel': [
+            'Class 5'
+          ],
+          'children': [
+            'do_212848119817945088185'
+          ],
+          'appId': 'staging.diksha.portal',
+          'contentEncoding': 'gzip',
+          'lockKey': '9a50546f-683c-417d-96fc-6a7969f34a58',
+          'totalCompressedSize': 7757867,
+          'mimeTypesCount': '{\'application/vnd.ekstep.content-collection\':1,\'application/vnd.ekstep.ecml-archive\':1}',
+          'contentType': 'TextBook',
+          'identifier': 'do_21286012130068070412543',
+          'audience': [
+            'Learner'
+          ],
+          // tslint:disable-next-line:max-line-length
+          'toc_url': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21286012130068070412543/artifact/do_21286012130068070412543_toc.json',
+          'visibility': 'Default',
+          'contentTypesCount': '{\'TextBookUnit\':1,\'Resource\':1}',
+          'author': 'Umesh',
+          'childNodes': [
+            'do_212848119817945088185',
+            'do_21286012139116953612544'
+          ],
+          'consumerId': 'a9cb3a83-a164-4bf0-aa49-b834cebf1c07',
+          'mediaType': 'content',
+          'osId': 'org.ekstep.quiz.app',
+          'lastPublishedBy': '6c2f53fb-ae8d-49c5-b0c0-125c4d390634',
+          'graph_id': 'domain',
+          'nodeType': 'DATA_NODE',
+          'version': 2,
+          'license': 'CC BY 4.0',
+          'prevState': 'Review',
+          'lastPublishedOn': '2019-09-30T10:24:31.502+0000',
+          'size': 63634,
+          'name': 'Test copy feature',
+          'status': 'Live',
+          'code': 'org.sunbird.nD9MmY',
+          'description': 'Enter description for TextBook',
+          'medium': 'English',
+          // tslint:disable-next-line:max-line-length
+          'posterImage': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21282103277991526412038/artifact/1_1565067478206.png',
+          'idealScreenSize': 'normal',
+          'createdOn': '2019-09-30T10:23:45.962+0000',
+          'copyrightYear': 2019,
+          'contentDisposition': 'inline',
+          'lastUpdatedOn': '2019-09-30T10:24:31.202+0000',
+          'SYS_INTERNAL_LAST_UPDATED_ON': '2019-09-30T10:24:31.665+0000',
+          'dialcodeRequired': 'No',
+          'lastStatusChangedOn': '2019-09-30T10:24:31.657+0000',
+          'createdFor': [
+            '01258043108936908899'
+          ],
+          'creator': 'Bcreator',
+          'os': [
+            'All'
+          ],
+          'pkgVersion': 1,
+          'versionKey': '1569839071202',
+          'idealScreenDensity': 'hdpi',
+          's3Key': 'ecar_files/do_21286012130068070412543/test-copy-feature_1569839071542_do_21286012130068070412543_1.0_spine.ecar',
+          'depth': 0,
+          'framework': 'as_k-12',
+          'lastSubmittedOn': '2019-09-30T10:24:16.168+0000',
+          'createdBy': 'b15441a6-7095-45c1-829d-ec167879ab52',
+          'leafNodesCount': 1,
+          'compatibilityLevel': 1,
+          'board': 'State (Assam)',
+          'resourceType': 'Book',
+          'node_id': 380403,
+          'orgDetails': {
+            'email': null,
+            'orgName': 'Chhattisgarh'
+          },
+          // tslint:disable-next-line:max-line-length
+          'cardImg': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21286012130068070412543/artifact/1_1565067478206.thumb.png'
+        },
+        {
+          'ownershipType': [
+            'createdBy'
+          ],
+          'copyright': 'Chhattisgarh',
+          'subject': 'English',
+          // tslint:disable-next-line:max-line-length
+          'downloadUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21285725285052416011433/test-k12-book_1569489359437_do_21285725285052416011433_1.0_spine.ecar',
+          'channel': '01258043108936908899',
+          'organisation': [
+            'Chhattisgarh'
+          ],
+          'language': [
+            'English'
+          ],
+          'variants': {
+            'online': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21285725285052416011433/test-k12-book_1569489359599_do_21285725285052416011433_1.0_online.ecar',
+              'size': 4629
+            },
+            'spine': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21285725285052416011433/test-k12-book_1569489359437_do_21285725285052416011433_1.0_spine.ecar',
+              'size': 59795
+            }
+          },
+          'mimeType': 'application/vnd.ekstep.content-collection',
+          'leafNodes': [
+            'do_21285718979780608011405'
+          ],
+          'objectType': 'Content',
+          'gradeLevel': [
+            'Class 5',
+            'Class 6',
+            'Class 7',
+            'Class 8'
+          ],
+          // tslint:disable-next-line:max-line-length
+          'appIcon': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21285725285052416011433/artifact/1_1565067478206.thumb.png',
+          'appId': 'staging.diksha.portal',
+          'contentEncoding': 'gzip',
+          'lockKey': '93e020b8-de57-45ad-9863-737ad82e51d2',
+          'totalCompressedSize': 50594,
+          'mimeTypesCount': '{\'application/vnd.ekstep.content-collection\':1,\'application/vnd.ekstep.ecml-archive\':1}',
+          'contentType': 'TextBook',
+          'identifier': 'do_21285725285052416011433',
+          'audience': [
+            'Learner'
+          ],
+          // tslint:disable-next-line:max-line-length
+          'toc_url': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21285725285052416011433/artifact/do_21285725285052416011433_toc.json',
+          'visibility': 'Default',
+          'contentTypesCount': '{\'TextBookUnit\':1,\'Resource\':1}',
+          'author': 'Umesh',
+          'childNodes': [
+            'do_21285725355311104011435',
+            'do_21285718979780608011405'
+          ],
+          'consumerId': 'a9cb3a83-a164-4bf0-aa49-b834cebf1c07',
+          'mediaType': 'content',
+          'osId': 'org.ekstep.quiz.app',
+          'lastPublishedBy': '6c2f53fb-ae8d-49c5-b0c0-125c4d390634',
+          'graph_id': 'domain',
+          'nodeType': 'DATA_NODE',
+          'version': 2,
+          'license': 'CC BY 4.0',
+          'prevState': 'Review',
+          'lastPublishedOn': '2019-09-26T09:15:59.387+0000',
+          'size': 59795,
+          'name': 'Test k12 book',
+          'status': 'Live',
+          'code': 'org.sunbird.IYLpFa',
+          'description': 'Enter description for TextBook',
+          'medium': 'English',
+          // tslint:disable-next-line:max-line-length
+          'posterImage': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21282103277991526412038/artifact/1_1565067478206.png',
+          'idealScreenSize': 'normal',
+          'createdOn': '2019-09-26T09:07:53.354+0000',
+          'copyrightYear': 2019,
+          'contentDisposition': 'inline',
+          'lastUpdatedOn': '2019-09-26T09:15:59.202+0000',
+          'SYS_INTERNAL_LAST_UPDATED_ON': '2019-09-26T09:15:59.676+0000',
+          'dialcodeRequired': 'No',
+          'createdFor': [
+            '01258043108936908899'
+          ],
+          'lastStatusChangedOn': '2019-09-26T09:15:59.669+0000',
+          'creator': 'Bcreator',
+          'os': [
+            'All'
+          ],
+          'pkgVersion': 1,
+          'versionKey': '1569489359202',
+          'idealScreenDensity': 'hdpi',
+          's3Key': 'ecar_files/do_21285725285052416011433/test-k12-book_1569489359437_do_21285725285052416011433_1.0_spine.ecar',
+          'depth': 0,
+          'framework': 'as_k-12',
+          'lastSubmittedOn': '2019-09-26T09:15:26.046+0000',
+          'createdBy': 'b15441a6-7095-45c1-829d-ec167879ab52',
+          'leafNodesCount': 1,
+          'compatibilityLevel': 1,
+          'board': 'State (Assam)',
+          'resourceType': 'Book',
+          'node_id': 497769,
+          'orgDetails': {
+            'email': null,
+            'orgName': 'Chhattisgarh'
+          },
+          // tslint:disable-next-line:max-line-length
+          'cardImg': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21285725285052416011433/artifact/1_1565067478206.thumb.png'
+        }
+      ]
+    },
+    {
+      'name': 'Assamese',
+      'contents': [
+        {
+          'ownershipType': [
+            'createdBy'
+          ],
+          'copyright': '345 org',
+          'me_hierarchyLevel': 1,
+          'year': '2010',
+          'subject': 'Assamese',
+          'channel': '01231711180382208027',
+          // tslint:disable-next-line:max-line-length
+          'downloadUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212877700863836160117/qr-check-profile_1571986683127_do_212877700863836160117_2.0_spine.ecar',
+          'organisation': [
+            '345 org'
+          ],
+          'language': [
+            'English'
+          ],
+          'mimeType': 'application/vnd.ekstep.content-collection',
+          'variants': {
+            'online': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212877700863836160117/qr-check-profile_1571986683831_do_212877700863836160117_2.0_online.ecar',
+              'size': 5316
+            },
+            'spine': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212877700863836160117/qr-check-profile_1571986683127_do_212877700863836160117_2.0_spine.ecar',
+              'size': 30664
+            }
+          },
+          'leafNodes': [
+            'do_2126724652597657601590'
+          ],
+          'objectType': 'Content',
+          'gradeLevel': [
+            'Class 5'
+          ],
+          // tslint:disable-next-line:max-line-length
+          'appIcon': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212877700863836160117/artifact/english-short-stories-for-beginners-workbook-2_1024x1024_1530456979685.thumb.png',
+          'me_totalDialcodeAttached': 2,
+          'children': [
+            'do_2126724652597657601590'
+          ],
+          'appId': 'staging.diksha.portal',
+          'contentEncoding': 'gzip',
+          'lockKey': '7b8401fc-f37b-4e2d-bab5-bf7ab801563a',
+          'mimeTypesCount': '{\'application/vnd.ekstep.content-collection\':2,\'application/vnd.ekstep.ecml-archive\':1}',
+          'totalCompressedSize': 10414,
+          'contentType': 'TextBook',
+          'contentCredits': '[{\'id\':\'01231711180382208027\',\'name\':\'345 org\',\'type\':\'user\'}]',
+          'identifier': 'do_212877700863836160117',
+          'lastUpdatedBy': '4ecf1cf7-0e31-4a53-97ea-aae1683309ce',
+          'audience': [
+            'Learner'
+          ],
+          'visibility': 'Default',
+          // tslint:disable-next-line:max-line-length
+          'toc_url': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212877700863836160117/artifact/do_212877700863836160117_toc.json',
+          'contentTypesCount': '{\'TextBookUnit\':2,\'Resource\':1}',
+          'consumerId': 'a9cb3a83-a164-4bf0-aa49-b834cebf1c07',
+          'childNodes': [
+            'do_212877701169332224119',
+            'do_212877701005647872118',
+            'do_2126724652597657601590'
+          ],
+          'author': 'Umesh',
+          'mediaType': 'content',
+          'osId': 'org.ekstep.quiz.app',
+          'graph_id': 'domain',
+          'nodeType': 'DATA_NODE',
+          'lastPublishedBy': '44917d6c-629f-4911-b4c5-1ff0e910bc0e',
+          'version': 2,
+          'license': 'CC BY 4.0',
+          'prevState': 'Processing',
+          'qrCodeProcessId': '2149cd01-e69c-433e-a0d2-7a47c6addbd8',
+          'size': 30664,
+          'lastPublishedOn': '2019-10-25T06:58:01.140+0000',
+          'IL_FUNC_OBJECT_TYPE': 'Content',
+          'name': 'QR check profile',
+          'publisher': 'ekstep',
+          'me_totalDialcodeLinkedToContent': 2,
+          'attributions': [
+            'test'
+          ],
+          'status': 'Live',
+          'me_totalDialcode': [
+            {
+              'dialcodeId': 'G8F3B8',
+              'contentLinked': 1
+            },
+            {
+              'dialcodeId': 'M7I5T4',
+              'contentLinked': 1
+            }
+          ],
+          'code': 'org.sunbird.leTUn3',
+          'description': 'Enter description for TextBook',
+          'medium': 'English',
+          'idealScreenSize': 'normal',
+          // tslint:disable-next-line:max-line-length
+          'posterImage': 'https://ekstep-public-qa.s3-ap-south-1.amazonaws.com/content/do_21253750356809318411895/artifact/english-short-stories-for-beginners-workbook-2_1024x1024_1530456979685.png',
+          'createdOn': '2019-10-25T06:29:28.729+0000',
+          'reservedDialcodes': '{\'M7I5T4\':1,\'G8F3B8\':0}',
+          'copyrightYear': 2019,
+          'contentDisposition': 'inline',
+          'lastUpdatedOn': '2019-10-25T06:57:57.978+0000',
+          'SYS_INTERNAL_LAST_UPDATED_ON': '2019-10-30T05:57:13.170+0000',
+          'dialcodeRequired': 'Yes',
+          'creator': 'JPBook Creator user',
+          'createdFor': [
+            '01231711180382208027'
+          ],
+          'lastStatusChangedOn': '2019-10-25T06:57:20.660+0000',
+          'IL_SYS_NODE_TYPE': 'DATA_NODE',
+          'os': [
+            'All'
+          ],
+          'pkgVersion': 2,
+          'versionKey': '1571986679124',
+          'idealScreenDensity': 'hdpi',
+          'framework': 'NCF',
+          'depth': 0,
+          'dialcodes': [
+            'M7I5T4'
+          ],
+          's3Key': 'ecar_files/do_212877700863836160117/qr-check-profile_1571986683127_do_212877700863836160117_2.0_spine.ecar',
+          'lastSubmittedOn': '2019-10-25T06:57:05.535+0000',
+          'createdBy': '4ecf1cf7-0e31-4a53-97ea-aae1683309ce',
+          'compatibilityLevel': 1,
+          'leafNodesCount': 1,
+          'IL_UNIQUE_ID': 'do_212877700863836160117',
+          'board': 'State (Assam)',
+          'resourceType': 'Book',
+          'node_id': 502679,
+          'orgDetails': {
+            'orgName': '345 org'
+          },
+          // tslint:disable-next-line:max-line-length
+          'cardImg': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212877700863836160117/artifact/english-short-stories-for-beginners-workbook-2_1024x1024_1530456979685.thumb.png'
+        }
+      ]
+    },
+    {
+      'name': 'Mathematics',
+      'contents': [
+        {
+          'ownershipType': [
+            'createdBy'
+          ],
+          'copyright': 'PINUT, NCERT, United States',
+          'keywords': [
+            'koua',
+            'pyasa',
+            'pratham camal',
+            '20-40 words',
+            'para level',
+            'Camp - 1 (Basic)',
+            'camal story',
+            'pyasa kaua',
+            'pratham',
+            'kaua',
+            'Story-2',
+            'para',
+            'record and play',
+            'hindi stories',
+            'record',
+            'Story - 2',
+            'thirsty crow',
+            'camal',
+            'camal story#3',
+            'Study material',
+            'story level',
+            'hindi story',
+            'story'
+          ],
+          'subject': 'Mathematics',
+          'channel': '0125196778210263043',
+          // tslint:disable-next-line:max-line-length
+          'downloadUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21291536190681907211/test-ncert-book_1576665058611_do_21291536190681907211_3.0_spine.ecar',
+          'organisation': [
+            'PINUT',
+            'NCERT',
+            'United States'
+          ],
+          'language': [
+            'English'
+          ],
+          'mimeType': 'application/vnd.ekstep.content-collection',
+          'variants': {
+            'online': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21291536190681907211/test-ncert-book_1576665058688_do_21291536190681907211_3.0_online.ecar',
+              'size': 5293
+            },
+            'spine': {
+              // tslint:disable-next-line:max-line-length
+              'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_21291536190681907211/test-ncert-book_1576665058611_do_21291536190681907211_3.0_spine.ecar',
+              'size': 53792
+            }
+          },
+          'leafNodes': [
+            'do_212848119817945088185'
+          ],
+          'objectType': 'Content',
+          'gradeLevel': [
+            'Class 5'
+          ],
+          // tslint:disable-next-line:max-line-length
+          'appIcon': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21291536190681907211/artifact/download-1_1572434951636.thumb.png',
+          'children': [
+            'do_212848119817945088185'
+          ],
+          'appId': 'staging.diksha.portal',
+          'contentEncoding': 'gzip',
+          'lockKey': '52064784-2f88-40b3-80a7-4e29dab94f13',
+          'mimeTypesCount': '{\'application/vnd.ekstep.content-collection\':1,\'application/vnd.ekstep.ecml-archive\':1}',
+          'totalCompressedSize': 7757867,
+          'contentType': 'TextBook',
+          'contentCredits': '[{\'id\':\'0e0ea1db-dbad-4202-bc73-dfc8b122296f\',\'name\':\'Helington N\',\'type\':\'user\'}]',
+          'identifier': 'do_21291536190681907211',
+          'lastUpdatedBy': 'db57c107-9f77-4730-9b0c-24b240ae5b87',
+          'audience': [
+            'Learner'
+          ],
+          'visibility': 'Default',
+          // tslint:disable-next-line:max-line-length
+          'toc_url': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21291536190681907211/artifact/do_21291536190681907211_toc.json',
+          'contentTypesCount': '{\'TextBookUnit\':1,\'Resource\':1}',
+          'consumerId': '56ff6913-abcc-4a88-b247-c976e47cbfb4',
+          'childNodes': [
+            'do_212848119817945088185',
+            'do_21291536204079104011021'
+          ],
+          'author': 'um',
+          'mediaType': 'content',
+          'osId': 'org.ekstep.quiz.app',
+          'ageGroup': [
+            '6-7',
+            '7-8',
+            '5-6'
+          ],
+          'graph_id': 'domain',
+          'nodeType': 'DATA_NODE',
+          'lastPublishedBy': 'Ekstep',
+          'version': 2,
+          'license': 'CC BY 4.0',
+          'prevState': 'Draft',
+          'size': 53792,
+          'lastPublishedOn': '2019-12-18T10:30:58.557+0000',
+          'IL_FUNC_OBJECT_TYPE': 'Content',
+          'domain': [
+            'literacy'
+          ],
+          'name': 'Test ncert book',
+          'status': 'Live',
+          'code': 'org.sunbird.NaHNzV',
+          'description': 'Enter description for TextBook',
+          'medium': 'English',
+          'idealScreenSize': 'normal',
+          // tslint:disable-next-line:max-line-length
+          'posterImage': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_2128813871216476161192/artifact/download-1_1572434951636.png',
+          'createdOn': '2019-12-17T11:31:04.049+0000',
+          'copyrightYear': 2019,
+          'contentDisposition': 'inline',
+          'genre': [
+            'Fiction'
+          ],
+          'lastUpdatedOn': '2019-12-18T10:30:58.236+0000',
+          'SYS_INTERNAL_LAST_UPDATED_ON': '2019-12-18T10:30:58.771+0000',
+          'dialcodeRequired': 'No',
+          'creator': 'Diksha Test',
+          'createdFor': [
+            '0125196778210263043',
+            '012337869197770752697',
+            '012544321582800896123'
+          ],
+          'lastStatusChangedOn': '2019-12-18T10:30:58.224+0000',
+          'IL_SYS_NODE_TYPE': 'DATA_NODE',
+          'os': [
+            'All'
+          ],
+          'pkgVersion': 3,
+          'versionKey': '1576665058333',
+          'idealScreenDensity': 'hdpi',
+          'framework': 'NCF',
+          'depth': 0,
+          'dialcodes': [
+            '0759CH17'
+          ],
+          's3Key': 'ecar_files/do_21291536190681907211/test-ncert-book_1576665058611_do_21291536190681907211_3.0_spine.ecar',
+          'lastSubmittedOn': '2019-12-17T12:39:02.573+0000',
+          'createdBy': 'db57c107-9f77-4730-9b0c-24b240ae5b87',
+          'compatibilityLevel': 1,
+          'leafNodesCount': 1,
+          'IL_UNIQUE_ID': 'do_21291536190681907211',
+          'board': 'State (Assam)',
+          'resourceType': 'Book',
+          'node_id': 520783,
+          'orgDetails': {
+            'email': null,
+            'orgName': 'NCERT'
+          },
+          // tslint:disable-next-line:max-line-length
+          'cardImg': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_21291536190681907211/artifact/download-1_1572434951636.thumb.png'
+        }
+      ]
+    }
+  ],
+  playContentEvent: {
+    'event': {
+      'isTrusted': true
+    },
+    'data': {
+      'ownershipType': [
+        'createdBy'
+      ],
+      'copyright': 'SAP',
+      'keywords': [
+        'hgh',
+        'testing lessons',
+        'key'
+      ],
+      'subject': 'English',
+      'channel': '012530141516660736208',
+      // tslint:disable-next-line:max-line-length
+      'downloadUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212916581536096256131/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+      'organisation': [
+        'SAP'
+      ],
+      'language': [
+        'English'
+      ],
+      'mimeType': 'application/vnd.ekstep.content-collection',
+      'variants': {
+        'online': {
+          // tslint:disable-next-line:max-line-length
+          'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212916581536096256131/assam-text-book_1576731344224_do_212916581536096256131_1.0_online.ecar',
+          'size': 11806
+        },
+        'spine': {
+          // tslint:disable-next-line:max-line-length
+          'ecarUrl': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/ecar_files/do_212916581536096256131/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+          'size': 1021747
+        }
+      },
+      'leafNodes': [
+        'do_212848119817945088185',
+        'do_2123178641611407361570',
+        'do_2125388336945070081193',
+        'do_2128458481719705601144',
+        'do_2125392680404008961221',
+        'do_2125392907628953601223'
+      ],
+      'objectType': 'Content',
+      'gradeLevel': [
+        'Class 5',
+        'Class 6',
+        'Class 7'
+      ],
+      // tslint:disable-next-line:max-line-length
+      'appIcon': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212916581536096256131/artifact/api2_1530687542792.thumb.png',
+      'children': [
+        'do_212848119817945088185',
+        'do_2128458481719705601144',
+        'do_2123178641611407361570',
+        'do_2125393116783165441232'
+      ],
+      'appId': 'staging.diksha.portal',
+      'contentEncoding': 'gzip',
+      'lockKey': 'c98ba06f-cd7c-4507-b286-68d5aa960b60',
+      'mimeTypesCount': '{\'application/vnd.ekstep.content-collection\':4,\'application/vnd.ekstep.ecml-archive\':7,\'video/x-youtube\':1}',
+      'totalCompressedSize': 11089779,
+      'contentType': 'TextBook',
+      'identifier': 'do_212916581536096256131',
+      'audience': [
+        'Learner'
+      ],
+      'visibility': 'Default',
+      // tslint:disable-next-line:max-line-length
+      'toc_url': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212916581536096256131/artifact/do_212916581536096256131_toc.json',
+      'contentTypesCount': '{\'TextBookUnit\':2,\'Resource\':8,\'Collection\':2}',
+      'consumerId': '56ff6913-abcc-4a88-b247-c976e47cbfb4',
+      'childNodes': [
+        'do_212848119817945088185',
+        'do_2125393116783165441232',
+        'do_2123178641611407361570',
+        'do_21291658181889228811065',
+        'do_2125388336945070081193',
+        'do_21291658181888409611064',
+        'do_2128458481719705601144',
+        'do_2125393105532600321231',
+        'do_2125392680404008961221',
+        'do_2125392907628953601223'
+      ],
+      'mediaType': 'content',
+      'osId': 'org.ekstep.quiz.app',
+      'ageGroup': [
+        '<5',
+        '>10'
+      ],
+      'graph_id': 'domain',
+      'nodeType': 'DATA_NODE',
+      'lastPublishedBy': '93ef4d2c-c8ad-487e-833c-1f7ffb4ac346',
+      'version': 2,
+      'license': 'CC BY 4.0',
+      'prevState': 'Review',
+      'qrCodeProcessId': '1f3621d4-983a-4324-a30c-af512135c0d6',
+      'size': 1021747,
+      'lastPublishedOn': '2019-12-19T04:55:43.684+0000',
+      'IL_FUNC_OBJECT_TYPE': 'Content',
+      'domain': [
+        'Biology'
+      ],
+      'name': 'Assam text book',
+      'status': 'Live',
+      'code': 'org.sunbird.6gMOb5',
+      'description': 'Enter description for TextBook',
+      'medium': 'English',
+      'idealScreenSize': 'normal',
+      // tslint:disable-next-line:max-line-length
+      'posterImage': 'https://ekstep-public-qa.s3-ap-south-1.amazonaws.com/content/do_2125393923495198721383/artifact/api2_1530687542792.png',
+      'createdOn': '2019-12-19T04:52:24.549+0000',
+      'reservedDialcodes': '{\'F5M5M7\':2,\'V1E7I2\':1,\'K8D3T7\':0}',
+      'contentDisposition': 'inline',
+      'lastUpdatedOn': '2019-12-19T04:55:43.369+0000',
+      'SYS_INTERNAL_LAST_UPDATED_ON': '2019-12-19T04:55:44.316+0000',
+      'dialcodeRequired': 'No',
+      'creator': 'azam m',
+      'createdFor': [
+        '012530141516660736208'
+      ],
+      'lastStatusChangedOn': '2019-12-19T04:55:44.308+0000',
+      'IL_SYS_NODE_TYPE': 'DATA_NODE',
+      'os': [
+        'All'
+      ],
+      'pkgVersion': 1,
+      'versionKey': '1576731343369',
+      'idealScreenDensity': 'hdpi',
+      'framework': 'NCF',
+      'depth': 0,
+      'dialcodes': [
+        'K8D3T7'
+      ],
+      's3Key': 'ecar_files/do_212916581536096256131/assam-text-book_1576731343811_do_212916581536096256131_1.0_spine.ecar',
+      'lastSubmittedOn': '2019-12-19T04:54:20.014+0000',
+      'createdBy': '5936c4ee-7e44-4a1b-9211-1c17fc8601e7',
+      'compatibilityLevel': 1,
+      'leafNodesCount': 6,
+      'IL_UNIQUE_ID': 'do_212916581536096256131',
+      'board': 'State (Assam)',
+      'resourceType': 'Book',
+      'node_id': 521312,
+      'orgDetails': {
+        'email': null,
+        'orgName': 'SAP'
+      },
+      // tslint:disable-next-line:max-line-length
+      'cardImg': 'https://ntpstagingall.blob.core.windows.net/ntp-content-staging/content/do_212916581536096256131/artifact/api2_1530687542792.thumb.png'
+    }
   }
 };
diff --git a/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.spec.ts b/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.spec.ts
index cbd81ba6ccd5341db34995c53c72fb3a32fc55d4..6d9f6fa78c20ec8f0fa5461db985223a3870ff3d 100644
--- a/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.spec.ts
+++ b/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.spec.ts
@@ -2,23 +2,23 @@ import { BehaviorSubject, throwError, of} from 'rxjs';
 import { async, ComponentFixture, TestBed, tick, fakeAsync } from '@angular/core/testing';
 import { ResourceService, ToasterService, SharedModule, ConfigService, UtilService, BrowserCacheTtlService
 } from '@sunbird/shared';
-import { PageApiService, OrgDetailsService, CoreModule, UserService} from '@sunbird/core';
+import { SearchService, OrgDetailsService, CoreModule, UserService} from '@sunbird/core';
 import { HttpClientTestingModule } from '@angular/common/http/testing';
 import { PublicPlayerService } from './../../../../services';
 import { SuiModule } from 'ng2-semantic-ui';
 import * as _ from 'lodash-es';
 import { NO_ERRORS_SCHEMA } from '@angular/core';
-import { Response } from './explore.component.spec.data';
+import { RESPONSE } from './explore.component.spec.data';
 import { ActivatedRoute, Router } from '@angular/router';
 import { TelemetryModule } from '@sunbird/telemetry';
 import { ExploreComponent } from './explore.component';
-import { ContentManagerService } from '@sunbird/offline';
+import { ContentSearchService } from '@sunbird/content-search';
 
 describe('ExploreComponent', () => {
   let component: ExploreComponent;
   let fixture: ComponentFixture<ExploreComponent>;
   let toasterService, userService, pageApiService, orgDetailsService;
-  const mockPageSection: Array<any> = Response.successData.result.response.sections;
+  const mockPageSection: any = RESPONSE.searchResult;
   let sendOrgDetails = true;
   let sendPageApi = true;
   class RouterStub {
@@ -30,7 +30,8 @@ describe('ExploreComponent', () => {
       'fmsg': {
         'm0027': 'Something went wrong',
         'm0090': 'Could not download. Try again later',
-        'm0091': 'Could not copy content. Try again later'
+        'm0091': 'Could not copy content. Try again later',
+        'm0004': 'Could not fetch date, try again later...'
       },
       'stmsg': {
         'm0009': 'error',
@@ -39,6 +40,9 @@ describe('ExploreComponent', () => {
         'm0139': 'DOWNLOADED',
       },
       'emsg': {},
+    },
+    frmelmnts: {
+      lbl: {}
     }
   };
   class FakeActivatedRoute {
@@ -57,7 +61,7 @@ describe('ExploreComponent', () => {
     TestBed.configureTestingModule({
       imports: [SharedModule.forRoot(), CoreModule, HttpClientTestingModule, SuiModule, TelemetryModule.forRoot()],
       declarations: [ExploreComponent],
-      providers: [PublicPlayerService, ContentManagerService, { provide: ResourceService, useValue: resourceBundle },
+      providers: [PublicPlayerService, { provide: ResourceService, useValue: resourceBundle },
       { provide: Router, useClass: RouterStub },
       { provide: ActivatedRoute, useClass: FakeActivatedRoute }],
       schemas: [NO_ERRORS_SCHEMA]
@@ -69,7 +73,7 @@ describe('ExploreComponent', () => {
     component = fixture.componentInstance;
     toasterService = TestBed.get(ToasterService);
     userService = TestBed.get(UserService);
-    pageApiService = TestBed.get(PageApiService);
+    pageApiService = TestBed.get(SearchService);
     orgDetailsService = TestBed.get(OrgDetailsService);
     sendOrgDetails = true;
     sendPageApi = true;
@@ -79,127 +83,105 @@ describe('ExploreComponent', () => {
       }
       return throwError({});
     });
-    spyOn(pageApiService, 'getPageData').and.callFake((options) => {
+    spyOn(pageApiService, 'contentSearch').and.callFake((options) => {
       if (sendPageApi) {
-        return of({sections: mockPageSection});
+        return of(mockPageSection);
       }
       return throwError({});
     });
   });
-  it('should emit filter data when getFilters is called with data', () => {
-    spyOn(component.dataDrivenFilterEvent, 'emit');
-    component.getFilters([{ code: 'board', range: [{index: 0, name: 'NCRT'}, {index: 1, name: 'CBSC'}]}]);
-    expect(component.dataDrivenFilterEvent.emit).toHaveBeenCalledWith({ board: 'NCRT'});
-  });
-  it('should emit filter data when getFilters is called with no data', () => {
-    spyOn(component.dataDrivenFilterEvent, 'emit');
-    component.getFilters([]);
-    expect(component.dataDrivenFilterEvent.emit).toHaveBeenCalledWith({});
-  });
-  it('should fetch hashTagId from API and filter details from data driven filter component', () => {
-    component.ngOnInit();
-    component.getFilters([{ code: 'board', range: [{index: 0, name: 'NCRT'}, {index: 1, name: 'CBSC'}]}]);
-    expect(component.hashTagId).toEqual('123');
-    expect(component.dataDrivenFilters).toEqual({ board: 'NCRT'});
-  });
-  it('should navigate to landing page if fetching org details fails and data driven filter dint returned data', () => {
-    sendOrgDetails = false;
-    component.ngOnInit();
-    expect(component.router.navigate).toHaveBeenCalledWith(['']);
-  });
-  it('should navigate to landing page if fetching org details fails and data driven filter returns data', () => {
-    sendOrgDetails = false;
-    component.ngOnInit();
-    component.getFilters([]);
-    expect(component.router.navigate).toHaveBeenCalledWith(['']);
-  });
-  it('should fetch content after getting hashTagId and filter data and set carouselData if api returns data', () => {
+  it('should get channel id if slug is not available', () => {
+    const contentSearchService = TestBed.get(ContentSearchService);
+    component.activatedRoute.snapshot.params.slug = '';
+    spyOn<any>(orgDetailsService, 'getCustodianOrg').and.returnValue(of(RESPONSE.withoutSlugGetChannelResponse));
+    spyOn<any>(contentSearchService, 'initialize').and.returnValues(of({}));
+    spyOn<any>(component, 'setNoResultMessage').and.callThrough();
     component.ngOnInit();
-    component.getFilters([{ code: 'board', range: [{index: 0, name: 'NCRT'}, {index: 1, name: 'CBSC'}]}]);
-    expect(component.hashTagId).toEqual('123');
-    expect(component.dataDrivenFilters).toEqual({ board: 'NCRT'});
-    expect(component.showLoader).toBeFalsy();
-    expect(component.carouselMasterData.length).toEqual(1);
+    expect(component['setNoResultMessage']).toHaveBeenCalled();
+    expect(component.initFilter).toBe(true);
   });
-  it('should fetch content after getting hashTagId and filter data and throw error if page api fails', () => {
-    sendPageApi = false;
-    spyOn(toasterService, 'error').and.callFake(() => {});
+
+  it('should get channel id if slug is available', () => {
+    const contentSearchService = TestBed.get(ContentSearchService);
+    component.activatedRoute.snapshot.params.slug = 'tn';
+    sendOrgDetails = true;
+    spyOn<any>(contentSearchService, 'initialize').and.returnValues(of({}));
+    spyOn<any>(component, 'setNoResultMessage').and.callThrough();
     component.ngOnInit();
-    component.getFilters([{ code: 'board', range: [{index: 0, name: 'NCRT'}, {index: 1, name: 'CBSC'}]}]);
-    expect(component.hashTagId).toEqual('123');
-    expect(component.dataDrivenFilters).toEqual({ board: 'NCRT'});
-    expect(component.showLoader).toBeFalsy();
-    expect(component.carouselMasterData.length).toEqual(0);
-    expect(toasterService.error).toHaveBeenCalled();
+    expect(component['setNoResultMessage']).toHaveBeenCalled();
+    expect(component.initFilter).toBe(true);
   });
-  it('should unsubscribe from all observable subscriptions', () => {
+
+  it('should show error if contentSearchService is not initialized and slug is not available', fakeAsync(() => {
+    const contentSearchService = TestBed.get(ContentSearchService);
+    component.activatedRoute.snapshot.params.slug = '';
+    const router = TestBed.get(Router);
+    spyOn<any>(orgDetailsService, 'getCustodianOrg').and.callFake(() => throwError({}));
+    spyOn<any>(contentSearchService, 'initialize').and.returnValues(of({}));
+    spyOn<any>(component, 'setNoResultMessage').and.callThrough();
+    spyOn<any>(toasterService, 'error');
     component.ngOnInit();
-    spyOn(component.unsubscribe$, 'complete');
-    component.ngOnDestroy();
-    expect(component.unsubscribe$.complete).toHaveBeenCalled();
-  });
-  it('should call inview method for visits data', fakeAsync(() => {
-    spyOn(component, 'prepareVisits').and.callThrough();
+    tick(5000);
+    expect(toasterService.error).toHaveBeenCalledWith('Fetching content failed. Please try again later.');
+    expect(router.navigate).toHaveBeenCalledWith(['']);
+  }));
+
+  it('should show error if contentSearchService is not initialized and slug is available', fakeAsync(() => {
+    const contentSearchService = TestBed.get(ContentSearchService);
+    component.activatedRoute.snapshot.params.slug = 'ap';
+    sendOrgDetails = false;
+    const router = TestBed.get(Router);
+    spyOn<any>(contentSearchService, 'initialize').and.returnValues(of({}));
+    spyOn<any>(component, 'setNoResultMessage').and.callThrough();
+    spyOn<any>(toasterService, 'error');
     component.ngOnInit();
-    component.ngAfterViewInit();
-    tick(100);
-    component.prepareVisits(Response.event);
-    expect(component.prepareVisits).toHaveBeenCalled();
-    expect(component.inViewLogs).toBeDefined();
+    tick(5000);
+    expect(toasterService.error).toHaveBeenCalledWith('Fetching content failed. Please try again later.');
+    expect(router.navigate).toHaveBeenCalledWith(['']);
   }));
-  it('should call playcontent when user is not loggedIn and content type is course', () => {
-    const event = { data: { contentType : 'Course', metaData: { identifier: '0122838911932661768' } } };
-    userService._authenticated = false;
-    component.playContent(event);
-    expect(component.showLoginModal).toBeTruthy();
-    expect(component.baseUrl).toEqual('/learn/course/0122838911932661768');
-  });
-  it('should call playcontent when user is loggedIn', () => {
-    const playerService = TestBed.get(PublicPlayerService);
-    const event = { data: { metaData: { batchId: '0122838911932661768' } } };
-    spyOn(component, 'playContent').and.callThrough();
-    spyOn(playerService, 'playContent').and.callThrough();
-    component.playContent(event);
-    playerService.playContent(event);
-    expect(playerService.playContent).toHaveBeenCalled();
-    expect(component.showLoginModal).toBeFalsy();
-  });
-  it('showDownloadLoader to be true' , () => {
-    spyOn(component, 'startDownload');
-    component.isOffline = true;
-    expect(component.showDownloadLoader).toBeFalsy();
-    component.playContent(Response.download_event);
-    expect(component.showDownloadLoader).toBeTruthy();
-  });
 
-  it('should call updateDownloadStatus when updateCardData is called' , () => {
-    const playerService = TestBed.get(PublicPlayerService);
-    spyOn(playerService, 'updateDownloadStatus').and.callFake(() => {});
-    component.pageSections = mockPageSection;
-    component.updateCardData(Response.download_list);
-    expect(playerService.updateDownloadStatus).toHaveBeenCalled();
+  it('should fetch the filters and set to default values', () => {
+    spyOn<any>(component, 'fetchContents');
+    component.getFilters(RESPONSE.selectedFilters);
+    expect(component.showLoader).toBe(true);
+    expect(component.apiContentList).toEqual([]);
+    expect(component.pageSections).toEqual([]);
+    expect(component['fetchContents']).toHaveBeenCalled();
   });
 
-  it('should call content manager service on when startDownload()', () => {
-    const contentManagerService = TestBed.get(ContentManagerService);
-    const resourceService = TestBed.get(ResourceService);
-    resourceService.messages = resourceBundle.messages;
-    spyOn(contentManagerService, 'startDownload').and.returnValue(of(Response.download_success));
-    component.startDownload(Response.result.result.content);
-    expect(contentManagerService.startDownload).toHaveBeenCalled();
+  it('should navigate to search page', () => {
+    component.selectedFilters = RESPONSE.selectedFilters;
+    const router = TestBed.get(Router);
+    component.navigateToExploreContent();
+    expect(router.navigate).toHaveBeenCalledWith(['explore', 1], {
+      queryParams: {
+        ...component.selectedFilters,
+        appliedFilters: false,
+        softConstraints: JSON.stringify({ badgeAssertions: 100, channel: 99, gradeLevel: 98, medium: 97, board: 96 })
+      }
+    });
   });
 
-  it('startDownload should fail', () => {
-    const contentManagerService = TestBed.get(ContentManagerService);
-    const resourceService = TestBed.get(ResourceService);
-    toasterService = TestBed.get(ToasterService);
-    resourceService.messages = resourceBundle.messages;
-    component.pageSections = mockPageSection;
-    spyOn(contentManagerService, 'startDownload').and.returnValue(throwError(Response.download_error));
-    component.startDownload(Response.result.result.content);
-    expect(contentManagerService.startDownload).toHaveBeenCalled();
-    expect(component.showDownloadLoader).toBeFalsy();
+  it('should fetch contents and disable loader', () => {
+    sendPageApi = true;
+    component.getFilters(RESPONSE.selectedFilters);
+    expect(component.showLoader).toBe(false);
   });
 
+  it('should fetch contents, disable the loader and set values to default', () => {
+    sendPageApi = false;
+    spyOn<any>(toasterService, 'error');
+    component.getFilters(RESPONSE.selectedFilters);
+    expect(component.showLoader).toBe(false);
+    expect(component.pageSections).toEqual([]);
+    expect(component.apiContentList).toEqual([]);
+    expect(toasterService.error).toHaveBeenCalledWith(resourceBundle.messages.fmsg.m0004);
+  });
 
+  it('should play content', () => {
+    const publicPlayerService = TestBed.get(PublicPlayerService);
+    spyOn<any>(publicPlayerService, 'playContent');
+    component.playContent(RESPONSE.playContentEvent);
+    expect(publicPlayerService.playContent).toHaveBeenCalledWith(RESPONSE.playContentEvent);
+  });
 });
diff --git a/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.ts b/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.ts
index af0a43bee0dada44098aa2fbced3e72cb70cb681..a13f85f9617e5c10b80996c85f093cc14d0b260a 100644
--- a/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.ts
+++ b/src/app/client/src/app/modules/public/module/explore/components/explore/explore.component.ts
@@ -1,186 +1,149 @@
 import { combineLatest, Subject } from 'rxjs';
-import { PageApiService, OrgDetailsService, UserService } from '@sunbird/core';
+import { OrgDetailsService, UserService, SearchService, FrameworkService } from '@sunbird/core';
 import { PublicPlayerService } from './../../../../services';
 import { Component, OnInit, OnDestroy, EventEmitter, HostListener, AfterViewInit } from '@angular/core';
 import {
-  ResourceService, ToasterService, INoResultMessage, ConfigService, UtilService, ICaraouselData,
-  BrowserCacheTtlService, NavigationHelperService
+  ResourceService, ToasterService, ConfigService, NavigationHelperService
 } from '@sunbird/shared';
 import { Router, ActivatedRoute } from '@angular/router';
 import * as _ from 'lodash-es';
-import { IInteractEventEdata, IImpressionEventInput } from '@sunbird/telemetry';
-import { takeUntil, map, mergeMap, first, filter, tap } from 'rxjs/operators';
-import { CacheService } from 'ng2-cache-service';
-import { environment } from '@sunbird/environment';
-import {
-  ContentManagerService
-} from './../../../../../../../../projects/desktop/src/app/modules/offline/services/content-manager/content-manager.service';
-
-
+import { IInteractEventEdata, IImpressionEventInput, TelemetryService } from '@sunbird/telemetry';
+import { takeUntil, map, mergeMap, first, filter, tap, skip } from 'rxjs/operators';
+import { ContentSearchService } from '@sunbird/content-search';
+const DEFAULT_FRAMEWORK = 'CBSE';
 @Component({
   selector: 'app-explore-component',
   templateUrl: './explore.component.html'
 })
 export class ExploreComponent implements OnInit, OnDestroy, AfterViewInit {
-
+  public initFilter = false;
   public showLoader = true;
-  public showLoginModal = false;
-  public baseUrl: string;
-  public noResultMessage: INoResultMessage;
-  public carouselMasterData: Array<ICaraouselData> = [];
-  public filterType: string;
-  public queryParams: any;
-  public hashTagId: string;
-  public unsubscribe$ = new Subject<void>();
+  public noResultMessage;
+  public apiContentList: Array<any> = [];
+  private unsubscribe$ = new Subject<void>();
   public telemetryImpression: IImpressionEventInput;
-  public inViewLogs = [];
-  public sortIntractEdata: IInteractEventEdata;
-  public dataDrivenFilters: any = {};
-  public dataDrivenFilterEvent = new EventEmitter();
-  public initFilters = false;
-  public loaderMessage;
-  public pageSections: Array<ICaraouselData> = [];
-  isOffline: boolean = environment.isOffline;
-  showExportLoader = false;
-  contentName: string;
-  public slug: string;
-  organisationId: string;
-  showDownloadLoader = false;
-
+  private inViewLogs = [];
+  public pageSections: Array<any> = [];
+  public defaultFilters = {
+    board: [DEFAULT_FRAMEWORK],
+    gradeLevel: ['Class 10'],
+    medium: []
+  };
+  public selectedFilters = {};
+  exploreMoreButtonEdata: IInteractEventEdata;
 
   @HostListener('window:scroll', []) onScroll(): void {
     if ((window.innerHeight + window.scrollY) >= (document.body.offsetHeight * 2 / 3)
-      && this.pageSections.length < this.carouselMasterData.length) {
-      this.pageSections.push(this.carouselMasterData[this.pageSections.length]);
+      && this.pageSections.length < this.apiContentList.length) {
+      this.pageSections.push(this.apiContentList[this.pageSections.length]);
     }
   }
-  constructor(private pageApiService: PageApiService, private toasterService: ToasterService,
-    public resourceService: ResourceService, private configService: ConfigService, private activatedRoute: ActivatedRoute,
-    public router: Router, private utilService: UtilService, private orgDetailsService: OrgDetailsService,
-    private publicPlayerService: PublicPlayerService, private cacheService: CacheService,
-    private browserCacheTtlService: BrowserCacheTtlService, private userService: UserService,
-    public navigationhelperService: NavigationHelperService, public contentManagerService: ContentManagerService) {
-    this.router.onSameUrlNavigation = 'reload';
-    this.filterType = this.configService.appConfig.explore.filterType;
+  constructor(private searchService: SearchService, private toasterService: ToasterService,
+    public resourceService: ResourceService, private configService: ConfigService, public activatedRoute: ActivatedRoute,
+    private router: Router, private orgDetailsService: OrgDetailsService, private publicPlayerService: PublicPlayerService,
+    private contentSearchService: ContentSearchService, private navigationhelperService: NavigationHelperService,
+    public telemetryService: TelemetryService) {
   }
-
   ngOnInit() {
-    this.orgDetailsService.getOrgDetails(this.activatedRoute.snapshot.params.slug).pipe(
-      mergeMap((orgDetails: any) => {
-        this.slug = orgDetails.slug;
-        this.hashTagId = orgDetails.hashTagId;
-        this.initFilters = true;
-        this.organisationId = orgDetails.id;
-        return this.dataDrivenFilterEvent;
-      }), first()
-    ).subscribe((filters: any) => {
-      this.dataDrivenFilters = filters;
-      this.fetchContentOnParamChange();
-      this.setNoResultMessage();
-    },
-      error => {
-        this.router.navigate(['']);
-      }
-    );
-
-    if (this.isOffline) {
-      this.contentManagerService.downloadListEvent.pipe(
-        takeUntil(this.unsubscribe$)).subscribe((data) => {
-        this.updateCardData(data);
-      });
-      this.contentManagerService.completeEvent.pipe(
-        takeUntil(this.unsubscribe$)).subscribe((data) => {
-          if (this.router.url === '/') {
-            this.fetchPageData();
-          }
+    this.getChannelId().pipe(
+      mergeMap(({ channelId, custodianOrg }) =>
+        this.contentSearchService.initialize(channelId, custodianOrg, this.defaultFilters.board[0])),
+      takeUntil(this.unsubscribe$))
+      .subscribe(() => {
+        this.setNoResultMessage();
+        this.initFilter = true;
+      }, (error) => {
+        this.toasterService.error('Fetching content failed. Please try again later.');
+        setTimeout(() => this.router.navigate(['']), 5000);
+        console.error('init search filter failed', error);
       });
-      this.contentManagerService.downloadEvent.pipe(tap(() => {
-        this.showDownloadLoader = false;
-      }), takeUntil(this.unsubscribe$)).subscribe(() => {});
+  }
+  private getChannelId() {
+    if (this.activatedRoute.snapshot.params.slug) {
+      return this.orgDetailsService.getOrgDetails(this.activatedRoute.snapshot.params.slug)
+        .pipe(map(((orgDetails: any) => ({ channelId: orgDetails.hashTagId, custodianOrg: false }))));
+    } else {
+      return this.orgDetailsService.getCustodianOrg()
+        .pipe(map(((custOrgDetails: any) => ({ channelId: _.get(custOrgDetails, 'result.response.value'), custodianOrg: true }))));
     }
   }
-
   public getFilters(filters) {
-    const defaultFilters = _.reduce(filters, (collector: any, element) => {
-      if (element.code === 'board') {
-        collector.board = _.get(_.orderBy(element.range, ['index'], ['asc']), '[0].name') || '';
-      }
-      return collector;
-    }, {});
-    this.dataDrivenFilterEvent.emit(defaultFilters);
-  }
-  private fetchContentOnParamChange() {
-    combineLatest(this.activatedRoute.params, this.activatedRoute.queryParams).pipe(
-      takeUntil(this.unsubscribe$))
-      .subscribe((result) => {
-        this.showLoader = true;
-        this.queryParams = { ...result[1] };
-        this.carouselMasterData = [];
-        this.pageSections = [];
-        this.fetchPageData();
-      });
-  }
-  private fetchPageData() {
-    const filters = _.pickBy(this.queryParams, (value: Array<string> | string, key) => {
-      if (_.includes(['sort_by', 'sortType', 'appliedFilters'], key)) {
-        return false;
-      }
-      return value.length;
-    });
-    const softConstraintData = {
-      filters: {
-        channel: this.hashTagId,
-        board: [this.dataDrivenFilters.board]
-      },
-      softConstraints: _.get(this.activatedRoute.snapshot, 'data.softConstraints'),
-      mode: 'soft'
-    };
-    const manipulatedData = this.utilService.manipulateSoftConstraint(_.get(this.queryParams, 'appliedFilters'),
-      softConstraintData);
+    this.selectedFilters = _.pick(filters, ['board', 'medium', 'gradeLevel']);
+    this.showLoader = true;
+    this.apiContentList = [];
+    this.pageSections = [];
+    this.fetchContents();
+  }
+  private getSearchRequest() {
+    let filters = this.selectedFilters;
+    filters = _.omit(filters, ['key', 'sort_by', 'sortType', 'appliedFilters']);
+    filters['contentType'] = ['TextBook']; // ['Collection', 'TextBook', 'LessonPlan', 'Resource'];
     const option = {
-      organisationId: this.organisationId,
-      source: 'web',
-      name: 'Explore',
-      filters: _.get(this.queryParams, 'appliedFilters') ? filters : _.get(manipulatedData, 'filters'),
-      mode: _.get(manipulatedData, 'mode'),
-      exists: [],
-      params: this.configService.appConfig.ExplorePage.contentApiQueryParams
+      limit: 100 || this.configService.appConfig.SEARCH.PAGE_LIMIT,
+      filters: filters,
+      // mode: 'soft',
+      // facets: facets,
+      params: _.cloneDeep(this.configService.appConfig.ExplorePage.contentApiQueryParams),
     };
-    if (_.get(manipulatedData, 'filters')) {
-      option['softConstraints'] = _.get(manipulatedData, 'softConstraints');
+    if (this.contentSearchService.frameworkId) {
+      option.params.framework = this.contentSearchService.frameworkId;
     }
-    this.pageApiService.getPageData(option)
+    return option;
+  }
+  private fetchContents() {
+    const option = this.getSearchRequest();
+    this.searchService.contentSearch(option).pipe(
+      map((response) => {
+        const filteredContents = _.omit(_.groupBy(_.get(response, 'result.content'), 'subject'), ['undefined']);
+        for (const [key, value] of Object.entries(filteredContents)) {
+          const isMultipleSubjects = key.split(',').length > 1;
+          if (isMultipleSubjects) {
+            const subjects = key.split(',');
+            subjects.forEach((subject) => {
+              if (filteredContents[subject]) {
+                filteredContents[subject] = _.uniqBy(filteredContents[subject].concat(value), 'identifier');
+              } else {
+                filteredContents[subject] = value;
+              }
+            });
+            delete filteredContents[key];
+          }
+        }
+        const sections = [];
+        for (const section in filteredContents) {
+          if (section) {
+            sections.push({
+              name: section,
+              contents: filteredContents[section]
+            });
+          }
+        }
+        return _.map(sections, (section) => {
+          _.forEach(section.contents, contents => {
+            contents.cardImg = contents.appIcon || 'assets/images/book.png';
+          });
+          return section;
+        });
+      }))
       .subscribe(data => {
         this.showLoader = false;
-        this.carouselMasterData = this.prepareCarouselData(_.get(data, 'sections'));
-        if (!this.carouselMasterData.length) {
+        this.apiContentList = data;
+        if (!this.apiContentList.length) {
           return; // no page section
         }
-        if (this.carouselMasterData.length >= 2) {
-          this.pageSections = [this.carouselMasterData[0], this.carouselMasterData[1]];
-        } else if (this.carouselMasterData.length >= 1) {
-          this.pageSections = [this.carouselMasterData[0]];
+        if (this.apiContentList.length >= 2) {
+          this.pageSections = [this.apiContentList[0], this.apiContentList[1]];
+        } else if (this.apiContentList.length >= 1) {
+          this.pageSections = [this.apiContentList[0]];
         }
       }, err => {
         this.showLoader = false;
-        this.carouselMasterData = [];
+        this.apiContentList = [];
         this.pageSections = [];
         this.toasterService.error(this.resourceService.messages.fmsg.m0004);
       });
   }
-  private prepareCarouselData(sections = []) {
-    const { constantData, metaData, dynamicFields, slickSize } = this.configService.appConfig.ExplorePage;
-    const carouselData = _.reduce(sections, (collector, element) => {
-      const contents = _.slice(_.get(element, 'contents'), 0, slickSize) || [];
-      element.contents = this.utilService.getDataForCard(contents, constantData, dynamicFields, metaData);
-      if (element.contents && element.contents.length) {
-        collector.push(element);
-      }
-      return collector;
-    }, []);
-    return carouselData;
-  }
-  public prepareVisits(event) {
+  private prepareVisits(event) {
     _.forEach(event, (inView, index) => {
       if (inView.metaData.identifier) {
         this.inViewLogs.push({
@@ -196,47 +159,7 @@ export class ExploreComponent implements OnInit, OnDestroy, AfterViewInit {
     this.telemetryImpression = Object.assign({}, this.telemetryImpression);
   }
   public playContent(event) {
-
-    // For offline environment content will only play when event.action is open
-    if (event.action === 'download' && this.isOffline) {
-      this.startDownload(event.data.metaData.identifier);
-      this.showDownloadLoader = true;
-      this.contentName = event.data.name;
-      return false;
-    } else if (event.action === 'export' && this.isOffline) {
-      this.showExportLoader = true;
-      this.contentName = event.data.name;
-      this.exportOfflineContent(event.data.metaData.identifier);
-      return false;
-    }
-
-    if (!this.userService.loggedIn && event.data.contentType === 'Course') {
-      this.showLoginModal = true;
-      this.baseUrl = '/' + 'learn' + '/' + 'course' + '/' + event.data.metaData.identifier;
-    } else {
-      if (_.includes(this.router.url, 'browse') && this.isOffline) {
-        this.publicPlayerService.playContentForOfflineBrowse(event);
-      } else {
-        this.publicPlayerService.playContent(event);
-      }
-    }
-  }
-  public viewAll(event) {
-    const searchQuery = JSON.parse(event.searchQuery);
-    const softConstraintsFilter = {
-      board: [this.dataDrivenFilters.board],
-      channel: this.hashTagId,
-    };
-    if (_.includes(this.router.url, 'browse') || !this.isOffline) {
-      searchQuery.request.filters.defaultSortBy = JSON.stringify(searchQuery.request.sort_by);
-      searchQuery.request.filters.softConstraintsFilter = JSON.stringify(softConstraintsFilter);
-      searchQuery.request.filters.exists = searchQuery.request.exists;
-    }
-    this.cacheService.set('viewAllQuery', searchQuery.request.filters);
-    this.cacheService.set('pageSection', event, { maxAge: this.browserCacheTtlService.browserCacheTtl });
-    const queryParams = { ...searchQuery.request.filters, ...this.queryParams };
-    const sectionUrl = this.router.url.split('?')[0] + '/view-all/' + event.name.replace(/\s/g, '-');
-    this.router.navigate([sectionUrl, 1], { queryParams: queryParams });
+    this.publicPlayerService.playContent(event);
   }
   ngAfterViewInit() {
     setTimeout(() => {
@@ -248,6 +171,11 @@ export class ExploreComponent implements OnInit, OnDestroy, AfterViewInit {
     this.unsubscribe$.complete();
   }
   private setTelemetryData() {
+    this.exploreMoreButtonEdata = {
+      id: 'explore-more-content-button' ,
+      type: 'click' ,
+      pageid: this.activatedRoute.snapshot.data.telemetry.pageid
+    };
     this.telemetryImpression = {
       context: {
         env: this.activatedRoute.snapshot.data.telemetry.env
@@ -260,60 +188,48 @@ export class ExploreComponent implements OnInit, OnDestroy, AfterViewInit {
         duration: this.navigationhelperService.getPageLoadTime()
       }
     };
-    this.sortIntractEdata = {
-      id: 'sort',
-      type: 'click',
-      pageid: this.activatedRoute.snapshot.data.telemetry.pageid
-    };
   }
   private setNoResultMessage() {
-    if (this.isOffline && !(this.router.url.includes('/browse'))) {
-      this.noResultMessage = {
-        'message': 'messages.stmsg.m0007',
-        'messageText': 'messages.stmsg.m0133'
-      };
-    } else {
-      this.noResultMessage = {
-        'message': 'messages.stmsg.m0007',
-        'messageText': 'messages.stmsg.m0006'
-      };
-    }
-  }
-
-  startDownload (contentId) {
-    this.contentManagerService.downloadContentId = contentId;
-    this.contentManagerService.startDownload({}).subscribe(data => {
-      this.contentManagerService.downloadContentId = '';
-    }, error => {
-      this.contentManagerService.downloadContentId = '';
-      this.showDownloadLoader = false;
-      _.each(this.pageSections, (pageSection) => {
-        _.each(pageSection.contents, (pageData) => {
-          pageData['downloadStatus'] = this.resourceService.messages.stmsg.m0138;
-        });
-      });
-      this.toasterService.error(this.resourceService.messages.fmsg.m0090);
-    });
+    this.noResultMessage = {
+      'title': this.resourceService.frmelmnts.lbl.noBookfoundTitle,
+      'subTitle': this.resourceService.frmelmnts.lbl.noBookfoundSubTitle,
+      'buttonText': this.resourceService.frmelmnts.lbl.noBookfoundButtonText,
+      'showExploreContentButton': true
+    };
   }
 
-  exportOfflineContent(contentId) {
-    this.contentManagerService.exportContent(contentId).subscribe(data => {
-      this.showExportLoader = false;
-      this.toasterService.success(this.resourceService.messages.smsg.m0059);
-    }, error => {
-      this.showExportLoader = false;
-      if (error.error.responseCode !== 'NO_DEST_FOLDER') {
-        this.toasterService.error(this.resourceService.messages.fmsg.m0091);
+  public navigateToExploreContent() {
+    this.router.navigate(['explore', 1], {
+      queryParams: {
+        ...this.selectedFilters, appliedFilters: false,
+        softConstraints: JSON.stringify({ badgeAssertions: 100, channel: 99, gradeLevel: 98, medium: 97, board: 96 })
       }
     });
   }
 
-  updateCardData(downloadListdata) {
-    _.each(this.pageSections, (pageSection) => {
-      _.each(pageSection.contents, (pageData) => {
-        this.publicPlayerService.updateDownloadStatus(downloadListdata, pageData);
-      });
-    });
+  getInteractEdata(event, sectionName) {
+    const telemetryCdata = [{
+      type: 'section',
+      id: sectionName
+    }];
+
+    const cardClickInteractData = {
+      context: {
+        cdata: telemetryCdata,
+        env: this.activatedRoute.snapshot.data.telemetry.env,
+      },
+      edata: {
+        id: 'content-card',
+        type: 'click',
+        pageid: this.activatedRoute.snapshot.data.telemetry.pageid
+      },
+      object: {
+        id: event.data.identifier,
+        type: event.data.contentType || 'content',
+        ver: event.data.pkgVersion ? event.data.pkgVersion.toString() : '1.0'
+      }
+    };
+    this.telemetryService.interact(cardClickInteractData);
   }
 
 }
diff --git a/src/app/client/src/app/modules/public/module/explore/explore.module.ts b/src/app/client/src/app/modules/public/module/explore/explore.module.ts
index 3ca59915dee45ed2effecffee73a4c5ef7123b1d..b09c598d9eabb41a776515049b371c99abb4344e 100644
--- a/src/app/client/src/app/modules/public/module/explore/explore.module.ts
+++ b/src/app/client/src/app/modules/public/module/explore/explore.module.ts
@@ -11,6 +11,8 @@ import {SharedFeatureModule} from '@sunbird/shared-feature';
 import { SuiSelectModule, SuiModalModule, SuiAccordionModule, SuiPopupModule, SuiDropdownModule, SuiProgressModule,
   SuiRatingModule, SuiCollapseModule, SuiDimmerModule } from 'ng2-semantic-ui';
 import { WebExtensionModule } from '@project-sunbird/web-extensions';
+import { CommonConsumptionModule } from '@project-sunbird/common-consumption';
+import { ContentSearchModule } from '@sunbird/content-search';
 
 @NgModule({
   imports: [
@@ -22,7 +24,8 @@ import { WebExtensionModule } from '@project-sunbird/web-extensions';
     ExploreRoutingModule,
     SharedFeatureModule,
     SuiSelectModule, SuiModalModule, SuiAccordionModule, SuiPopupModule, SuiDropdownModule, SuiProgressModule,
-    SuiRatingModule, SuiCollapseModule, SuiDimmerModule, WebExtensionModule
+    SuiRatingModule, SuiCollapseModule, SuiDimmerModule, WebExtensionModule,
+    CommonConsumptionModule, ContentSearchModule
   ],
   declarations: [ ExploreContentComponent, ExploreComponent],
   exports: [ExploreComponent]
diff --git a/src/app/client/src/app/modules/public/services/public-player/public-player.service.ts b/src/app/client/src/app/modules/public/services/public-player/public-player.service.ts
index b4f6feaf64ee822fe30b6eb4f39c69816d1087f8..1219257c7df5d98e9ea4c6796b14fd157294b34e 100644
--- a/src/app/client/src/app/modules/public/services/public-player/public-player.service.ts
+++ b/src/app/client/src/app/modules/public/services/public-player/public-player.service.ts
@@ -149,18 +149,19 @@ export class PublicPlayerService {
   }
 
   public playContent(event) {
+    const metaData = event.data || event.data.metaData;
     this.navigationHelperService.storeResourceCloseUrl();
     setTimeout(() => {
-      if (event.data.metaData.mimeType === this.configService.appConfig.PLAYER_CONFIG.MIME_TYPE.collection) {
-        if (event.data.contentType === 'Course') {
-          this.router.navigate(['learn/course', event.data.metaData.identifier]);
+      if (metaData.mimeType === this.configService.appConfig.PLAYER_CONFIG.MIME_TYPE.collection) {
+        if (metaData.contentType === 'Course') {
+          this.router.navigate(['learn/course', metaData.identifier]);
         } else {
-          this.router.navigate(['play/collection', event.data.metaData.identifier],
-          {queryParams: {contentType: event.data.metaData.contentType}});
+          this.router.navigate(['play/collection', metaData.identifier],
+          {queryParams: {contentType: metaData.contentType}});
         }
       } else {
-        this.router.navigate(['play/content', event.data.metaData.identifier],
-        {queryParams: {contentType: event.data.metaData.contentType}});
+        this.router.navigate(['play/content', metaData.identifier],
+        {queryParams: {contentType: metaData.contentType}});
       }
     }, 0);
   }
diff --git a/src/app/client/src/app/modules/resource/components/resource/resource.component.html b/src/app/client/src/app/modules/resource/components/resource/resource.component.html
index 183bcd99afc0aaffd7d963b5f88beba372e03970..66d2ba0a05bd885589084a93fa768b521627e482 100644
--- a/src/app/client/src/app/modules/resource/components/resource/resource.component.html
+++ b/src/app/client/src/app/modules/resource/components/resource/resource.component.html
@@ -1,21 +1,21 @@
-<app-prominent-filter [pageId]="'resource-page'" *ngIf="initFilters" [filterEnv]="filterType" [ignoreQuery]="['key']"
-  [accordionDefaultOpen]=true [isShowFilterLabel]=true [showSearchedParam]=true [isShowFilterLabel]=true
-  [hashTagId]="hashTagId" (prominentFilter)="getFilters($event)"></app-prominent-filter>
-
-<div class="ui container mt-8">
-  <div [appTelemetryImpression]="telemetryImpression" *ngIf="!showLoader" class="ui grid stackable my-0">
-    <div class="twelve wide column" *ngFor="let section of pageSections;let last = last"
-      [ngClass]="{'last mb-0':last}">
-      <app-page-section (visits)="prepareVisits($event)" (playEvent)="playContent($event)" [section]="section"
-        (viewAll)="viewAll($event)"></app-page-section>
-    </div>
-    <div class="twelve wide column" *ngIf="carouselMasterData.length === 0 && !showLoader">
-      <app-no-result [data]="noResultMessage"></app-no-result>
-    </div>
-  </div>
-  <div *ngIf="showLoader" class="ui grid stackable my-0">
-    <div class="twelve wide column">
-      <app-loader [data]='loaderMessage'></app-loader>
+<div [appTelemetryImpression]="telemetryImpression">
+  <app-search-filter *ngIf="initFilter" (filterChange)="getFilters($event)" [pageId]="'resource-page'" [defaultFilters]="defaultFilters">
+  </app-search-filter>
+  <div class="ui container mt-24 sb-library-cards">
+    <div class="ui grid">
+      <div class="twelve wide column pb-0 pt-0" *ngFor="let section of pageSections;let last = last"
+        [ngClass]="{'last mb-0':last}">
+        <sb-library-cards-grid [type]="'infinite_card_grid'" [title]="section.name" [contentList]="section.contents"
+          [maxCardCount]="4" (viewMoreClick)="viewAll(section)" (cardClick)="playContent($event); getInteractEdata($event, section.name)">
+        </sb-library-cards-grid>
+      </div>
+      <div class="twelve wide column" *ngIf="showLoader">
+        <app-loader></app-loader>
+      </div>
+      <div class="twelve wide column" *ngIf="apiContentList.length === 0 && !showLoader">
+        <app-no-result-found [telemetryInteractEdataObject]="exploreMoreButtonEdata" (exploreMoreContent)="navigateToExploreContent()" [filters]="selectedFilters" [title]="noResultMessage?.title" [subTitle]="noResultMessage?.subTitle" 
+[buttonText]="noResultMessage?.buttonText" [showExploreContentButton]="noResultMessage?.showExploreContentButton"></app-no-result-found>
+      </div>
     </div>
   </div>
-</div> 
\ No newline at end of file
+</div>
diff --git a/src/app/client/src/app/modules/resource/components/resource/resource.component.spec.ts b/src/app/client/src/app/modules/resource/components/resource/resource.component.spec.ts
index ad22d54f8dff0d3645f002ce8e2223c0a8852317..dfd18393a96f8c430bd80aeb023c09c280967e52 100644
--- a/src/app/client/src/app/modules/resource/components/resource/resource.component.spec.ts
+++ b/src/app/client/src/app/modules/resource/components/resource/resource.component.spec.ts
@@ -1,27 +1,46 @@
-import { ResourceComponent } from './resource.component';
-import { BehaviorSubject, throwError, of } from 'rxjs';
-import { async, ComponentFixture, TestBed } from '@angular/core/testing';
-import { ResourceService, ToasterService, SharedModule } from '@sunbird/shared';
-import { PageApiService, CoreModule, UserService} from '@sunbird/core';
+import { BehaviorSubject, throwError, of} from 'rxjs';
+import { async, ComponentFixture, TestBed, tick, fakeAsync } from '@angular/core/testing';
+import { ResourceService, ToasterService, SharedModule, ConfigService, UtilService, BrowserCacheTtlService
+} from '@sunbird/shared';
+import { SearchService, OrgDetailsService, CoreModule, UserService, PlayerService} from '@sunbird/core';
 import { HttpClientTestingModule } from '@angular/common/http/testing';
 import { SuiModule } from 'ng2-semantic-ui';
 import * as _ from 'lodash-es';
 import { NO_ERRORS_SCHEMA } from '@angular/core';
-import { Response } from './resource.component.spec.data';
 import { ActivatedRoute, Router } from '@angular/router';
 import { TelemetryModule } from '@sunbird/telemetry';
+import { ResourceComponent } from './resource.component';
 
 describe('ResourceComponent', () => {
   let component: ResourceComponent;
   let fixture: ComponentFixture<ResourceComponent>;
-  let toasterService, userService, pageApiService, resourceService;
-  const mockPageSection: Array<any> = Response.successData.result.response.sections;
+  let toasterService, userService, pageApiService, orgDetailsService;
+  const mockPageSection: any = {};
+  let sendOrgDetails = true;
   let sendPageApi = true;
   class RouterStub {
     navigate = jasmine.createSpy('navigate');
     url = jasmine.createSpy('url');
   }
-
+  const resourceBundle = {
+    'messages': {
+      'fmsg': {
+        'm0027': 'Something went wrong',
+        'm0090': 'Could not download. Try again later',
+        'm0091': 'Could not copy content. Try again later'
+      },
+      'stmsg': {
+        'm0009': 'error',
+        'm0140': 'DOWNLOADING',
+        'm0138': 'FAILED',
+        'm0139': 'DOWNLOADED',
+      },
+      'emsg': {},
+    },
+    frmelmnts: {
+      lbl: {}
+    }
+  };
   class FakeActivatedRoute {
     queryParamsMock = new BehaviorSubject<any>({ subject: ['English'] });
     params = of({});
@@ -38,7 +57,7 @@ describe('ResourceComponent', () => {
     TestBed.configureTestingModule({
       imports: [SharedModule.forRoot(), CoreModule, HttpClientTestingModule, SuiModule, TelemetryModule.forRoot()],
       declarations: [ResourceComponent],
-      providers: [ ResourceService,
+      providers: [{ provide: ResourceService, useValue: resourceBundle },
       { provide: Router, useClass: RouterStub },
       { provide: ActivatedRoute, useClass: FakeActivatedRoute }],
       schemas: [NO_ERRORS_SCHEMA]
@@ -50,53 +69,24 @@ describe('ResourceComponent', () => {
     component = fixture.componentInstance;
     toasterService = TestBed.get(ToasterService);
     userService = TestBed.get(UserService);
-    resourceService = TestBed.get(ResourceService);
-    pageApiService = TestBed.get(PageApiService);
+    pageApiService = TestBed.get(SearchService);
+    orgDetailsService = TestBed.get(OrgDetailsService);
+    sendOrgDetails = true;
     sendPageApi = true;
-    spyOn(pageApiService, 'getPageData').and.callFake((options) => {
+    spyOn(orgDetailsService, 'getOrgDetails').and.callFake((options) => {
+      if (sendOrgDetails) {
+        return of({hashTagId: '123'});
+      }
+      return throwError({});
+    });
+    spyOn(pageApiService, 'contentSearch').and.callFake((options) => {
       if (sendPageApi) {
-        return of({sections: mockPageSection});
+        return of(mockPageSection);
       }
       return throwError({});
     });
   });
-  it('should emit filter data when getFilters is called with data', () => {
-    spyOn(component.dataDrivenFilterEvent, 'emit');
-    component.getFilters([{ code: 'board', range: [{index: 0, name: 'NCRT'}, {index: 1, name: 'CBSC'}]}]);
-    expect(component.dataDrivenFilterEvent.emit).toHaveBeenCalledWith({ board: 'NCRT'});
-  });
-  it('should emit filter data when getFilters is called with no data', () => {
-    spyOn(component.dataDrivenFilterEvent, 'emit');
-    component.getFilters([]);
-    expect(component.dataDrivenFilterEvent.emit).toHaveBeenCalledWith({});
-  });
-  xit('should fetch hashTagId from API and filter details from data driven filter component', () => {
-    component.ngOnInit();
-    component.getFilters([{ code: 'board', range: [{index: 0, name: 'NCRT'}, {index: 1, name: 'CBSC'}]}]);
-    expect(component.dataDrivenFilters).toEqual({ board: 'NCRT'});
-  });
-  xit('should fetch content after getting hashTagId and filter data and set carouselData if api returns data', () => {
-    resourceService._languageSelected.next({value: 'en', label: 'English', dir: 'ltr'});
-    component.ngOnInit();
-    component.getFilters([{ code: 'board', range: [{index: 0, name: 'NCRT'}, {index: 1, name: 'CBSC'}]}]);
-    expect(component.dataDrivenFilters).toEqual({ board: 'NCRT'});
-    expect(component.showLoader).toBeFalsy();
-    expect(component.carouselMasterData.length).toEqual(1);
-  });
-  xit('should fetch content after getting hashTagId and filter data and throw error if page api fails', () => {
-    sendPageApi = false;
-    spyOn(toasterService, 'error').and.callFake(() => {});
-    component.ngOnInit();
-    component.getFilters([{ code: 'board', range: [{index: 0, name: 'NCRT'}, {index: 1, name: 'CBSC'}]}]);
-    expect(component.dataDrivenFilters).toEqual({ board: 'NCRT'});
-    expect(component.showLoader).toBeFalsy();
-    expect(component.carouselMasterData.length).toEqual(0);
-    expect(toasterService.error).toHaveBeenCalled();
-  });
-  xit('should unsubscribe from all observable subscriptions', () => {
-    component.ngOnInit();
-    spyOn(component.unsubscribe$, 'complete');
-    component.ngOnDestroy();
-    expect(component.unsubscribe$.complete).toHaveBeenCalled();
+  it('should create', () => {
+    expect(component).toBeTruthy();
   });
 });
diff --git a/src/app/client/src/app/modules/resource/components/resource/resource.component.ts b/src/app/client/src/app/modules/resource/components/resource/resource.component.ts
index 32fd0998089a87d8145aca4b7d8c71b693655b9b..d44dcd146c66bfe0efd93404a7c75f0940a382ad 100644
--- a/src/app/client/src/app/modules/resource/components/resource/resource.component.ts
+++ b/src/app/client/src/app/modules/resource/components/resource/resource.component.ts
@@ -1,166 +1,150 @@
 import { combineLatest, Subject } from 'rxjs';
-import { PageApiService, PlayerService, UserService, ISort } from '@sunbird/core';
-import { Component, OnInit, OnDestroy, EventEmitter, ChangeDetectorRef, AfterViewInit, HostListener } from '@angular/core';
+import { OrgDetailsService, UserService, SearchService, FrameworkService, PlayerService } from '@sunbird/core';
+import { Component, OnInit, OnDestroy, EventEmitter, HostListener, AfterViewInit } from '@angular/core';
 import {
-  ResourceService, ToasterService, INoResultMessage, ConfigService, UtilService, ICaraouselData,
-  BrowserCacheTtlService, NavigationHelperService
-} from '@sunbird/shared';
+  ResourceService, ToasterService, ConfigService, NavigationHelperService } from '@sunbird/shared';
 import { Router, ActivatedRoute } from '@angular/router';
 import * as _ from 'lodash-es';
-import { IInteractEventEdata, IImpressionEventInput } from '@sunbird/telemetry';
-import { takeUntil, map, mergeMap, first, filter, delay, tap } from 'rxjs/operators';
-import { CacheService } from 'ng2-cache-service';
+import { IInteractEventEdata, IImpressionEventInput, TelemetryService } from '@sunbird/telemetry';
+import { takeUntil, map, mergeMap, first, filter, tap, skip } from 'rxjs/operators';
+import { ContentSearchService } from '@sunbird/content-search';
+const DEFAULT_FRAMEWORK = 'CBSE';
 @Component({
   templateUrl: './resource.component.html'
 })
 export class ResourceComponent implements OnInit, OnDestroy, AfterViewInit {
-
+  public initFilter = false;
   public showLoader = true;
-  public baseUrl: string;
-  public noResultMessage: INoResultMessage;
-  public carouselMasterData: Array<ICaraouselData> = [];
-  public filterType: string;
-  public hashTagId: string;
-  public sortingOptions: Array<ISort>;
-  public queryParams: any;
-  public unsubscribe$ = new Subject<void>();
+  public noResultMessage;
+  public apiContentList: Array<any> = [];
+  private unsubscribe$ = new Subject<void>();
   public telemetryImpression: IImpressionEventInput;
-  public inViewLogs = [];
-  public sortIntractEdata: IInteractEventEdata;
-  public dataDrivenFilters: any = {};
-  public frameworkData: object;
-  public dataDrivenFilterEvent = new EventEmitter();
-  public initFilters = false;
-  public loaderMessage;
-  public redirectUrl;
-  public pageSections: Array<ICaraouselData> = [];
+  private inViewLogs = [];
+  public pageSections: Array<any> = [];
+  public defaultFilters = {
+    board: [DEFAULT_FRAMEWORK],
+    gradeLevel: [],
+    medium: []
+  };
+  public selectedFilters = {};
+  exploreMoreButtonEdata: IInteractEventEdata;
 
   @HostListener('window:scroll', []) onScroll(): void {
     if ((window.innerHeight + window.scrollY) >= (document.body.offsetHeight * 2 / 3)
-    && this.pageSections.length < this.carouselMasterData.length) {
-        this.pageSections.push(this.carouselMasterData[this.pageSections.length]);
+      && this.pageSections.length < this.apiContentList.length) {
+      this.pageSections.push(this.apiContentList[this.pageSections.length]);
     }
   }
-  constructor(private pageApiService: PageApiService, private toasterService: ToasterService, private cdr: ChangeDetectorRef,
-    public resourceService: ResourceService, private configService: ConfigService, private activatedRoute: ActivatedRoute,
-    public router: Router, private utilService: UtilService,
-    private playerService: PlayerService, private cacheService: CacheService,
-    private browserCacheTtlService: BrowserCacheTtlService, private userService: UserService,
-    public navigationhelperService: NavigationHelperService) {
-    window.scroll({
-      top: 0,
-      left: 0,
-      behavior: 'smooth'
-    });
-    this.sortingOptions = this.configService.dropDownConfig.FILTER.RESOURCES.sortingOptions;
-    this.router.onSameUrlNavigation = 'reload';
-    this.filterType = this.configService.appConfig.library.filterType;
-    this.redirectUrl = this.configService.appConfig.library.inPageredirectUrl;
+  constructor(private searchService: SearchService, private toasterService: ToasterService, private userService: UserService,
+    public resourceService: ResourceService, private configService: ConfigService, public activatedRoute: ActivatedRoute,
+    private router: Router, private orgDetailsService: OrgDetailsService, private playerService: PlayerService,
+    private contentSearchService: ContentSearchService, private navigationhelperService: NavigationHelperService,
+    public telemetryService: TelemetryService) {
   }
-
   ngOnInit() {
-    this.userService.userData$.subscribe(userData => {
-      if (userData && !userData.err) {
-          this.frameworkData = _.get(userData.userProfile, 'framework');
-      }
-    });
-    this.initFilters = true;
-    this.hashTagId = this.userService.hashTagId;
-    this.dataDrivenFilterEvent.pipe(first())
-    .subscribe((filters: any) => {
-      this.dataDrivenFilters = filters;
-      this.fetchContentOnParamChange();
-      this.setNoResultMessage();
-    });
-  }
-  public getFilters(filters) {
-    const defaultFilters = _.reduce(filters, (collector: any, element) => {
-        if (element.code === 'board') {
-          collector.board = _.get(_.orderBy(element.range, ['index'], ['asc']), '[0].name') || '';
-        }
-        return collector;
-      }, {});
-    this.dataDrivenFilterEvent.emit(defaultFilters);
-  }
-  private fetchContentOnParamChange() {
-    combineLatest(this.activatedRoute.params, this.activatedRoute.queryParams)
-    .pipe(
-      tap(data => this.prepareVisits([])), // trigger pageexit if last filter resulted 0 contents
-      delay(1), // to trigger telemetry pageexit event
-      tap(data => {
-        this.showLoader = true;
-        this.setTelemetryData();
-      }),
+    if (this.userService.userProfile.framework) {
+      const userFrameWork = _.pick(this.userService.userProfile.framework, ['medium', 'gradeLevel', 'board']);
+      this.defaultFilters = { ...this.defaultFilters, ...userFrameWork, };
+    }
+    this.getChannelId().pipe(
+      mergeMap(({channelId, custodianOrg}) =>
+        this.contentSearchService.initialize(channelId, custodianOrg, this.defaultFilters.board[0])),
       takeUntil(this.unsubscribe$))
-    .subscribe((result) => {
-      this.queryParams = { ...result[0], ...result[1] };
-      this.carouselMasterData = [];
-      this.pageSections = [];
-      this.fetchPageData();
+      .subscribe(() => {
+        this.setNoResultMessage();
+        this.initFilter = true;
+      }, (error) => {
+        this.toasterService.error('Fetching content failed. Please try again later.');
+        setTimeout(() => this.router.navigate(['']), 5000);
+        console.error('init search filter failed', error);
     });
   }
-  private fetchPageData() {
-    const filters = _.pickBy(this.queryParams, (value: Array<string> | string, key) => {
-      if (_.includes(['sort_by', 'sortType', 'appliedFilters'], key)) {
-        return false;
+  private getChannelId() {
+    return this.orgDetailsService.getCustodianOrgDetails().pipe(map(custodianOrg => {
+      if (this.userService.hashTagId === _.get(custodianOrg, 'result.response.value')) {
+        return { channelId: this.userService.hashTagId, custodianOrg: true};
+      } else {
+        return { channelId: this.userService.hashTagId, custodianOrg: false };
       }
-      return value.length;
-    });
-    const softConstraintData = {
-      filters: {channel: this.userService.hashTagId,
-      board: [this.dataDrivenFilters.board]},
-      softConstraints: _.get(this.activatedRoute.snapshot, 'data.softConstraints'),
-      mode: 'soft'
-    };
-    const manipulatedData = this.utilService.manipulateSoftConstraint( _.get(this.queryParams, 'appliedFilters'),
-    softConstraintData, this.frameworkData );
-    const option: any = {
-      source: 'web',
-      name: 'Resource',
-      filters: _.get(this.queryParams, 'appliedFilters') ?  filters : _.get(manipulatedData, 'filters'),
-      mode: _.get(manipulatedData, 'mode'),
-      exists: [],
-      params : this.configService.appConfig.Library.contentApiQueryParams
+    }));
+  }
+  public getFilters(filters) {
+    this.selectedFilters = _.pick(filters, ['board', 'medium', 'gradeLevel']);
+    this.showLoader = true;
+    this.apiContentList = [];
+    this.pageSections = [];
+    this.fetchContents();
+  }
+  private getSearchRequest() {
+    let filters = this.selectedFilters;
+    filters = _.omit(filters, ['key', 'sort_by', 'sortType', 'appliedFilters']);
+    filters['contentType'] = ['TextBook']; // ['Collection', 'TextBook', 'LessonPlan', 'Resource'];
+    const option = {
+        limit: 100 || this.configService.appConfig.SEARCH.PAGE_LIMIT,
+        filters: filters,
+        // mode: 'soft',
+        // facets: facets,
+        params: _.cloneDeep(this.configService.appConfig.ExplorePage.contentApiQueryParams),
     };
-    if (_.get(manipulatedData, 'filters')) {
-      option.softConstraints = _.get(manipulatedData, 'softConstraints');
-    }
-    if (this.queryParams.sort_by) {
-      option.sort_by = {[this.queryParams.sort_by]: this.queryParams.sortType  };
+    if (this.contentSearchService.frameworkId) {
+      option.params.framework = this.contentSearchService.frameworkId;
     }
-    this.pageApiService.getPageData(option)
+    return option;
+  }
+  private fetchContents() {
+    const option = this.getSearchRequest();
+    this.searchService.contentSearch(option).pipe(
+      map((response) => {
+        const filteredContents = _.omit(_.groupBy(_.get(response, 'result.content'), 'subject'), ['undefined']);
+      for (const [key, value] of Object.entries(filteredContents)) {
+        const isMultipleSubjects = key.split(',').length > 1;
+        if (isMultipleSubjects) {
+            const subjects = key.split(',');
+            subjects.forEach((subject) => {
+                if (filteredContents[subject]) {
+                    filteredContents[subject] = _.uniqBy(filteredContents[subject].concat(value), 'identifier');
+                } else {
+                    filteredContents[subject] = value;
+                }
+            });
+            delete filteredContents[key];
+        }
+      }
+      const sections = [];
+      for (const section in filteredContents) {
+        if (section) {
+            sections.push({
+                name: section,
+                contents: filteredContents[section]
+            });
+        }
+      }
+      return _.map(sections, (section) => {
+        _.forEach(section.contents, contents => {
+          contents.cardImg = contents.appIcon || 'assets/images/book.png';
+        });
+        return section;
+      });
+    }))
       .subscribe(data => {
         this.showLoader = false;
-        this.carouselMasterData = this.prepareCarouselData(_.get(data, 'sections'));
-        if (!this.carouselMasterData.length) {
+        this.apiContentList = data;
+        if (!this.apiContentList.length) {
           return; // no page section
         }
-        if (this.carouselMasterData.length >= 2) {
-          this.pageSections = [this.carouselMasterData[0], this.carouselMasterData[1]];
-        } else if (this.carouselMasterData.length >= 1) {
-          this.pageSections = [this.carouselMasterData[0]];
+        if (this.apiContentList.length >= 2) {
+          this.pageSections = [this.apiContentList[0], this.apiContentList[1]];
+        } else if (this.apiContentList.length >= 1) {
+          this.pageSections = [this.apiContentList[0]];
         }
-        this.cdr.detectChanges();
       }, err => {
         this.showLoader = false;
-        this.carouselMasterData = [];
+        this.apiContentList = [];
         this.pageSections = [];
         this.toasterService.error(this.resourceService.messages.fmsg.m0004);
-    });
-  }
-  private prepareCarouselData(sections = []) {
-    const { constantData, metaData, dynamicFields, slickSize } = this.configService.appConfig.Library;
-    const carouselData = _.reduce(sections, (collector, element) => {
-      const contents = _.slice(_.get(element, 'contents'), 0, slickSize) || [];
-      element.contents = this.utilService.getDataForCard(contents, constantData, dynamicFields, metaData);
-      if (element.contents && element.contents.length) {
-        collector.push(element);
-      }
-      return collector;
-    }, []);
-    return carouselData;
+      });
   }
-  public prepareVisits(event) {
+  private prepareVisits(event) {
     _.forEach(event, (inView, index) => {
       if (inView.metaData.identifier) {
         this.inViewLogs.push({
@@ -171,59 +155,81 @@ export class ResourceComponent implements OnInit, OnDestroy, AfterViewInit {
         });
       }
     });
-    if (this.telemetryImpression) {
-      this.telemetryImpression.edata.visits = this.inViewLogs;
-      this.telemetryImpression.edata.subtype = 'pageexit';
-      this.telemetryImpression = Object.assign({}, this.telemetryImpression);
-    }
+    this.telemetryImpression.edata.visits = this.inViewLogs;
+    this.telemetryImpression.edata.subtype = 'pageexit';
+    this.telemetryImpression = Object.assign({}, this.telemetryImpression);
   }
   public playContent(event) {
-    this.playerService.playContent(event.data.metaData);
+    this.playerService.playContent(event.data);
   }
-  public viewAll(event) {
-    const searchQuery = JSON.parse(event.searchQuery);
-    const softConstraintsFilter = {
-      board : [this.dataDrivenFilters.board],
-      channel: this.hashTagId,
-    };
-    searchQuery.request.filters.softConstraintsFilter = JSON.stringify(softConstraintsFilter);
-    searchQuery.request.filters.defaultSortBy = JSON.stringify(searchQuery.request.sort_by);
-    searchQuery.request.filters.exists = searchQuery.request.exists;
-    this.cacheService.set('viewAllQuery', searchQuery.request.filters);
-    this.cacheService.set('pageSection', event, { maxAge: this.browserCacheTtlService.browserCacheTtl });
-    const queryParams = { ...searchQuery.request.filters, ...this.queryParams}; // , ...this.queryParams
-    const sectionUrl = 'resources/view-all/' + event.name.replace(/\s/g, '-');
-    this.router.navigate([sectionUrl, 1], {queryParams: queryParams});
+  ngAfterViewInit() {
+    setTimeout(() => {
+      this.setTelemetryData();
+    });
   }
   ngOnDestroy() {
     this.unsubscribe$.next();
     this.unsubscribe$.complete();
   }
   private setTelemetryData() {
-    this.inViewLogs = []; // set to empty every time filter or page changes
+    this.exploreMoreButtonEdata = {
+      id: 'explore-more-content-button' ,
+      type: 'click' ,
+      pageid: this.activatedRoute.snapshot.data.telemetry.pageid
+    };
+    this.telemetryImpression = {
+      context: {
+        env: this.activatedRoute.snapshot.data.telemetry.env
+      },
+      edata: {
+        type: this.activatedRoute.snapshot.data.telemetry.type,
+        pageid: this.activatedRoute.snapshot.data.telemetry.pageid,
+        uri: this.router.url,
+        subtype: this.activatedRoute.snapshot.data.telemetry.subtype,
+        duration: this.navigationhelperService.getPageLoadTime()
+      }
+    };
+  }
+  private setNoResultMessage() {
+    this.noResultMessage = {
+      'title': this.resourceService.frmelmnts.lbl.noBookfoundTitle,
+      'subTitle': this.resourceService.frmelmnts.lbl.noBookfoundSubTitle,
+      'buttonText': this.resourceService.frmelmnts.lbl.noBookfoundButtonText,
+      'showExploreContentButton': true
+    };
   }
 
-  ngAfterViewInit () {
-    setTimeout(() => {
-      this.telemetryImpression = {
-        context: {
-          env: this.activatedRoute.snapshot.data.telemetry.env
-        },
-        edata: {
-          type: this.activatedRoute.snapshot.data.telemetry.type,
-          pageid: this.activatedRoute.snapshot.data.telemetry.pageid,
-          uri: this.router.url,
-          subtype: this.activatedRoute.snapshot.data.telemetry.subtype,
-          duration: this.navigationhelperService.getPageLoadTime()
-        }
-      };
+  public navigateToExploreContent() {
+    this.router.navigate(['search/Library', 1], {
+      queryParams: {
+        ...this.selectedFilters, appliedFilters: false
+      }
     });
   }
 
-  private setNoResultMessage() {
-      this.noResultMessage = {
-        'message': 'messages.stmsg.m0007',
-        'messageText': 'messages.stmsg.m0006'
-      };
+  getInteractEdata(event, sectionName) {
+    const telemetryCdata = [{
+      type: 'section',
+      id: sectionName
+    }];
+
+    const cardClickInteractData = {
+      context: {
+        cdata: telemetryCdata,
+        env: this.activatedRoute.snapshot.data.telemetry.env,
+      },
+      edata: {
+        id: 'content-card',
+        type: 'click',
+        pageid: this.activatedRoute.snapshot.data.telemetry.pageid
+      },
+      object: {
+        id: event.data.identifier,
+        type: event.data.contentType || 'content',
+        ver: event.data.pkgVersion ? event.data.pkgVersion.toString() : '1.0'
+      }
+    };
+    this.telemetryService.interact(cardClickInteractData);
   }
+
 }
diff --git a/src/app/client/src/app/modules/resource/resource.module.ts b/src/app/client/src/app/modules/resource/resource.module.ts
index 0cfc608b1663222ca11b4996de51a481245e5780..9228d85f471723e8c986d6cb10345542e80dd0f6 100644
--- a/src/app/client/src/app/modules/resource/resource.module.ts
+++ b/src/app/client/src/app/modules/resource/resource.module.ts
@@ -10,6 +10,8 @@ import { CoreModule } from '@sunbird/core';
 import { NgInviewModule } from 'angular-inport';
 import { TelemetryModule } from '@sunbird/telemetry';
 import { SharedFeatureModule } from '@sunbird/shared-feature';
+import { CommonConsumptionModule } from '@project-sunbird/common-consumption';
+import { ContentSearchModule } from '@sunbird/content-search';
 @NgModule({
   imports: [
     CommonModule,
@@ -21,7 +23,9 @@ import { SharedFeatureModule } from '@sunbird/shared-feature';
     CoreModule,
     TelemetryModule,
     NgInviewModule,
-    SharedFeatureModule
+    SharedFeatureModule,
+    CommonConsumptionModule,
+    ContentSearchModule
   ],
   declarations: [ResourceComponent]
 })
diff --git a/src/app/client/src/app/modules/search/components/library-search/library-search.component.html b/src/app/client/src/app/modules/search/components/library-search/library-search.component.html
index 63377f173d53a7b270c43017964fa245bd736cec..7e914abef527f82964b7659d78bb82a65e01c5ac 100644
--- a/src/app/client/src/app/modules/search/components/library-search/library-search.component.html
+++ b/src/app/client/src/app/modules/search/components/library-search/library-search.component.html
@@ -13,18 +13,19 @@
         </div>
 
         <div class="twelve wide column">
-            <div  [appTelemetryImpression]="telemetryImpression" in-view-container (inview)="inView($event)"  *ngIf="!showLoader && contentList.length" class="masonry-grid dynamic-section-card ">
-                <div in-view-item [id]="i" [data]="content" class="masonry-item" *ngFor="let content of contentList;let i = index;">
-                    <app-card appContentDirection appTelemetryInteract [telemetryInteractEdata]="cardIntractEdata" 
-                    [telemetryInteractObject]="{id:content.metaData.identifier,type:content.metaData.contentType || 'Content',ver:'1.0'}"
-                    (clickEvent)="playContent($event)" [data]="content"></app-card>
+            <div  [appTelemetryImpression]="telemetryImpression" in-view-container (inview)="inView($event)"  *ngIf="!showLoader && contentList.length" class="sb-grid">
+                <div in-view-item [id]="i" [data]="content" class="sb-grid--item" *ngFor="let content of contentList;let i = index;">
+                    <sb-library-card appTelemetryInteract [telemetryInteractEdata]="cardIntractEdata" 
+                    [telemetryInteractObject]="{id:content.identifier,type:content.contentType || 'Content',ver:'1.0'}" (cardClick)="playContent($event)" [content]="content" [cardImg]="content?.cardImg || './assets/images/book.png'">
+                    </sb-library-card>
                 </div>
             </div>
         </div>
         <div class="twelve wide column" [appTelemetryImpression]="telemetryImpression" *ngIf="contentList.length === 0 && !showLoader">
-            <app-no-result [data]="noResultMessage"></app-no-result>
+            <app-no-result-found [title]="noResultMessage?.title" [subTitle]="noResultMessage?.subTitle" 
+[buttonText]="noResultMessage?.buttonText" [showExploreContentButton]="noResultMessage?.showExploreContentButton"></app-no-result-found>
         </div>
-        <div class="twelve wide column right aligned">
+        <div class="twelve wide column right aligned pt-16">
             <div class="sb-pagination-container flex-jc-flex-end">
                 <div class="sb-pagination" *ngIf="paginationDetails.totalItems > configService.appConfig.SEARCH.PAGE_LIMIT && !showLoader">
                     <div class="menu" *ngIf="paginationDetails.pages.length">
diff --git a/src/app/client/src/app/modules/search/components/library-search/library-search.component.scss b/src/app/client/src/app/modules/search/components/library-search/library-search.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..1841d589c5c59963776f4c5ffe1e415e2cf0bf78
--- /dev/null
+++ b/src/app/client/src/app/modules/search/components/library-search/library-search.component.scss
@@ -0,0 +1,8 @@
+.sb-grid {
+    display: grid;
+    grid-template-columns: repeat(auto-fill,minmax(292px,1fr));
+    grid-gap: 1rem;
+    grid-row-gap: 1.5rem;
+    &--item{
+    }
+} 
\ No newline at end of file
diff --git a/src/app/client/src/app/modules/search/components/library-search/library-search.component.spec.ts b/src/app/client/src/app/modules/search/components/library-search/library-search.component.spec.ts
index 45ec7b3eecc2a2c9cb2c1220d3fdc2fa6107ff4d..1940e5c3c1b12347c3afc87cff6cddbeb324a3b1 100644
--- a/src/app/client/src/app/modules/search/components/library-search/library-search.component.spec.ts
+++ b/src/app/client/src/app/modules/search/components/library-search/library-search.component.spec.ts
@@ -27,6 +27,9 @@ describe('LibrarySearchComponent', () => {
       'fmsg': {},
       'emsg': {},
       'stmsg': {}
+    },
+    frmelmnts: {
+      lbl: {}
     }
   };
   class FakeActivatedRoute {
diff --git a/src/app/client/src/app/modules/search/components/library-search/library-search.component.ts b/src/app/client/src/app/modules/search/components/library-search/library-search.component.ts
index 84e635dc4c1ab2acde3704e397639bdac15b4967..34e1e9e424262295eeaf8fd72bdfe7c576260c97 100644
--- a/src/app/client/src/app/modules/search/components/library-search/library-search.component.ts
+++ b/src/app/client/src/app/modules/search/components/library-search/library-search.component.ts
@@ -12,12 +12,13 @@ import { IInteractEventEdata, IImpressionEventInput } from '@sunbird/telemetry';
 import { takeUntil, map, mergeMap, first, filter, debounceTime, tap, delay } from 'rxjs/operators';
 import { CacheService } from 'ng2-cache-service';
 @Component({
-    templateUrl: './library-search.component.html'
+    templateUrl: './library-search.component.html',
+    styleUrls: ['./library-search.component.scss']
 })
 export class LibrarySearchComponent implements OnInit, OnDestroy, AfterViewInit {
 
     public showLoader = true;
-    public noResultMessage: INoResultMessage;
+    public noResultMessage;
     public filterType: string;
     public queryParams: any;
     public hashTagId: string;
@@ -37,6 +38,7 @@ export class LibrarySearchComponent implements OnInit, OnDestroy, AfterViewInit
     public sortingOptions;
     public redirectUrl;
     public frameworkData: object;
+    public frameworkId;
     public closeIntractEdata;
 
     constructor(public searchService: SearchService, public router: Router, private playerService: PlayerService,
@@ -52,6 +54,11 @@ export class LibrarySearchComponent implements OnInit, OnDestroy, AfterViewInit
         this.sortingOptions = this.configService.dropDownConfig.FILTER.RESOURCES.sortingOptions;
     }
     ngOnInit() {
+        this.frameworkService.channelData$.pipe(takeUntil(this.unsubscribe$)).subscribe((channelData) => {
+            if (!channelData.err) {
+              this.frameworkId = _.get(channelData, 'channelData.defaultFramework');
+            }
+          });
         this.userService.userData$.subscribe(userData => {
             if (userData && !userData.err) {
                 this.frameworkData = _.get(userData.userProfile, 'framework');
@@ -94,45 +101,31 @@ export class LibrarySearchComponent implements OnInit, OnDestroy, AfterViewInit
             });
     }
     private fetchContents() {
-        let filters = _.pickBy(this.queryParams, (value: Array<string> | string) => value && value.length);
-        filters = _.omit(filters, ['key', 'sort_by', 'sortType', 'appliedFilters']);
-        const softConstraintData = {
-            filters: {channel: this.userService.hashTagId,
-            board: [this.dataDrivenFilters.board]},
-            softConstraints: _.get(this.activatedRoute.snapshot, 'data.softConstraints'),
-            mode: 'soft'
-          };
-          const manipulatedData = this.utilService.manipulateSoftConstraint( _.get(this.queryParams, 'appliedFilters'),
-          softConstraintData, this.frameworkData );
-        const option = {
-            filters: _.get(this.queryParams, 'appliedFilters') ?  filters :
-            (_.get(manipulatedData, 'filters') ? _.get(manipulatedData, 'filters') : {}),
-            limit: this.configService.appConfig.SEARCH.PAGE_LIMIT,
-            pageNumber: this.paginationDetails.currentPage,
-            query: this.queryParams.key,
-            sort_by: { [this.queryParams.sort_by]: this.queryParams.sortType },
-            mode: _.get(manipulatedData, 'mode'),
-            facets: this.facets,
-            params: this.configService.appConfig.Library.contentApiQueryParams
+        let filters: any = _.omit(this.queryParams, ['key', 'sort_by', 'sortType', 'appliedFilters', 'softConstraints']);
+        if (_.isEmpty(filters)) {
+            filters = _.omit(this.frameworkData, ['id']);
+        }
+        filters.channel = this.hashTagId;
+        filters.contentType = filters.contentType || this.configService.appConfig.CommonSearch.contentType;
+        const option: any = {
+          filters: filters,
+          limit: this.configService.appConfig.SEARCH.PAGE_LIMIT,
+          pageNumber: this.paginationDetails.currentPage,
+          query: this.queryParams.key,
+          mode: 'soft',
+          facets: this.facets,
+          params: this.configService.appConfig.ExplorePage.contentApiQueryParams || {}
         };
-        option.filters.contentType = filters.contentType ||
-        this.configService.appConfig.CommonSearch.contentType;
-        if (_.get(manipulatedData, 'filters')) {
-            option['softConstraints'] = _.get(manipulatedData, 'softConstraints');
-          }
-        this.frameworkService.channelData$.subscribe((channelData) => {
-            if (!channelData.err) {
-               option.params.framework = _.get(channelData, 'channelData.defaultFramework');
-            }
-        });
+        if (this.frameworkId) {
+          option.params.framework = this.frameworkId;
+        }
         this.searchService.contentSearch(option)
             .subscribe(data => {
                 this.showLoader = false;
                 this.facetsList = this.searchService.processFilterData(_.get(data, 'result.facets'));
                 this.paginationDetails = this.paginationService.getPager(data.result.count, this.paginationDetails.currentPage,
                     this.configService.appConfig.SEARCH.PAGE_LIMIT);
-                const { constantData, metaData, dynamicFields } = this.configService.appConfig.LibrarySearch;
-                this.contentList = this.utilService.getDataForCard(data.result.content, constantData, dynamicFields, metaData);
+                this.contentList = data.result.content || [];
             }, err => {
                 this.showLoader = false;
                 this.contentList = [];
@@ -173,15 +166,15 @@ export class LibrarySearchComponent implements OnInit, OnDestroy, AfterViewInit
         };
     }
     public playContent(event) {
-        this.playerService.playContent(event.data.metaData);
+        this.playerService.playContent(event.data);
     }
     public inView(event) {
         _.forEach(event.inview, (elem, key) => {
-            const obj = _.find(this.inViewLogs, { objid: elem.data.metaData.identifier });
+            const obj = _.find(this.inViewLogs, { objid: elem.data.identifier });
             if (!obj) {
                 this.inViewLogs.push({
-                    objid: elem.data.metaData.identifier,
-                    objtype: elem.data.metaData.contentType || 'content',
+                    objid: elem.data.identifier,
+                    objtype: elem.data.contentType || 'content',
                     index: elem.id
                 });
             }
@@ -213,9 +206,11 @@ export class LibrarySearchComponent implements OnInit, OnDestroy, AfterViewInit
         this.unsubscribe$.complete();
     }
     private setNoResultMessage() {
-      this.noResultMessage = {
-        'message': 'messages.stmsg.m0007',
-        'messageText': 'messages.stmsg.m0006'
-      };
+        this.noResultMessage = {
+            'title': this.resourceService.frmelmnts.lbl.noBookfoundTitle,
+            'subTitle': this.resourceService.frmelmnts.lbl.noBookfoundSubTitle,
+            'buttonText': this.resourceService.frmelmnts.lbl.noBookfoundButtonText,
+            'showExploreContentButton': false
+          };
     }
 }
diff --git a/src/app/client/src/app/modules/search/search.module.ts b/src/app/client/src/app/modules/search/search.module.ts
index d17d80e1932e7397fd1ce456d2cae59480844066..9ceb7bf75830de7d13f839c83f66371cfbe875f4 100644
--- a/src/app/client/src/app/modules/search/search.module.ts
+++ b/src/app/client/src/app/modules/search/search.module.ts
@@ -14,6 +14,8 @@ import { NgInviewModule } from 'angular-inport';
 import { AvatarModule } from 'ngx-avatar';
 import {SharedFeatureModule} from '@sunbird/shared-feature';
 // import { Angular2CsvModule } from 'angular2-csv'; Angular2CsvModule removed TODO: use Blob object to generate csv file
+import { CommonConsumptionModule } from '@project-sunbird/common-consumption';
+import { ContentSearchModule } from '@sunbird/content-search';
 
 @NgModule({
   imports: [
@@ -28,7 +30,9 @@ import {SharedFeatureModule} from '@sunbird/shared-feature';
     NgInviewModule,
     AvatarModule,
     SharedFeatureModule,
-    ReactiveFormsModule
+    ReactiveFormsModule,
+    CommonConsumptionModule,
+    ContentSearchModule
   ],
   declarations: [ UserSearchComponent, CourseSearchComponent, LibrarySearchComponent,
   UserFilterComponent, UserEditComponent, UserDeleteComponent, OrgSearchComponent, OrgFilterComponent,
diff --git a/src/app/client/src/app/modules/shared-feature/components/profile-framework-popup/profile-framework-popup.component.spec.ts b/src/app/client/src/app/modules/shared-feature/components/profile-framework-popup/profile-framework-popup.component.spec.ts
index e1eb0b3bd6be737a6cbb438fd7321808668ba446..6aff4dfd3b9df735e184da5c40ab55b46c5b801f 100644
--- a/src/app/client/src/app/modules/shared-feature/components/profile-framework-popup/profile-framework-popup.component.spec.ts
+++ b/src/app/client/src/app/modules/shared-feature/components/profile-framework-popup/profile-framework-popup.component.spec.ts
@@ -41,6 +41,7 @@ describe('ProfileFrameworkPopupComponent', () => {
     formService = TestBed.get(FormService);
     cacheService = TestBed.get(CacheService);
     userService = TestBed.get(UserService);
+    spyOn(cacheService, 'get').and.returnValue(undefined);
     publicDataService = TestBed.get(PublicDataService);
     orgDetailsService = TestBed.get(OrgDetailsService);
     toasterService = TestBed.get(ToasterService);
diff --git a/src/app/client/src/assets/styles/global.scss b/src/app/client/src/assets/styles/global.scss
index 9baf13924fe5075bfa9a51c266014d3a82e4b89c..d69bd67f5bc081a5e4453f98bec1f51dee09e616 100644
--- a/src/app/client/src/assets/styles/global.scss
+++ b/src/app/client/src/assets/styles/global.scss
@@ -27,35 +27,12 @@ body {
     }
   }
 }
-@include respond-above(lg) {
-  body {
-    .footer-fix {
-      padding-bottom: 56px;
-    }
-  }
-}
-@include respond-between(md, lg) {
-  body {
-    .footer-fix {
-      padding-bottom: 64px;
-    }
-  }
-}
-@include respond-between(sm, md) {
-  body {
-    .footer-fix {
-      padding-bottom: 112px;
-    }
-  }
-}
+
 @include respond-above(sm) {
   body {
-    padding-bottom: 168px;
     .pusher {
       padding-bottom: 240px !important;
-    }
-    .footer-fix {
-      min-height: calc(100vh - 168px);
+    
     }
     .sb-mid-container-min-height {
       min-height: calc(100vh - 288px);
@@ -64,16 +41,13 @@ body {
   }
 }
 @include respond-below(sm) {
-  .footer-fix {
-    min-height: calc(100vh - 336px);
-    padding-bottom: $base-block-space * 3;
+ .download-mobile-app .download-mobile-app-logo{
+    min-height: 116px;
   }
 }
 .sb-offline {
   padding-bottom: 0px;
-  // .footer-fix {
-  //   min-height: calc(100vh - 180px);
-  // }
+
 }
 
 *[lang="en"] body {
@@ -106,8 +80,12 @@ body {
       border-left: 1px solid rgba(51, 51, 51, 0.1);
     }
   }
+  @include respond-above(sm) {
+    .download-mobile-app .download-mobile-app-logo{
+      min-height: 168px;
+      }
+    }
 }
-
 [dir="ltr"] {
   .sb-explore-qr-container {
     .dial-section-column {
@@ -242,4 +220,25 @@ app-workspace {
       max-width: 100%;
     }
   }
+}
+.sb-workspace-bg{
+  position: relative;
+  bottom: -35px;
+  height: auto;
+  margin-top: -35px;
+}
+
+// common consumption cards for library
+.sb-library-cards{
+  .ui.grid{
+    padding: 1rem 0;
+    sb-library-cards-grid{
+      .header{
+        margin:0 0 1rem;
+      }
+      .cards-container .item{
+        margin: 0 0 1.5rem 0;
+      }
+    }
+  }
 }
\ No newline at end of file
diff --git a/src/app/client/src/assets/styles/layout/_footer.scss b/src/app/client/src/assets/styles/layout/_footer.scss
index c3896c1c84fdb63a50e9952e8cc5abb3b1a65633..2c8fe0be75bb22f01c56bb5500dde8d57e6010c9 100644
--- a/src/app/client/src/assets/styles/layout/_footer.scss
+++ b/src/app/client/src/assets/styles/layout/_footer.scss
@@ -152,17 +152,22 @@
   }
 
 }
-
+@media screen and (max-width: 900px) {
+  .footer{
+    padding: 20px 0;
+  }
+}
 @media screen and (max-width: 767px) {
 
   .download-mobile-app {
-    bottom: 206px;
     margin: 0 auto;
     right: 0;
     left: 0;
     z-index: inherit;
     box-shadow: 0 -5px 20px 5px rgba(0, 0, 0, 0.2);
-
+ .app-download{
+      padding-top: 12px;
+    }
     a {
       padding-bottom: 0 !important;
     }
@@ -182,11 +187,11 @@
     }
 
   .footer {
-    max-height: 206px;
+    max-height: 230px;
     .footerMenu {
       ul {
         margin-top: 0 !important;
-        margin-bottom: 24px !important;
+        margin-bottom: 0px !important;
       }
 
       li {
diff --git a/src/app/client/src/tsconfig.app.json b/src/app/client/src/tsconfig.app.json
index 062e4ca17a5c6a71800833cc69ef09118c80eb67..e128d71c4c440156a361ff53a8158299c542ba26 100644
--- a/src/app/client/src/tsconfig.app.json
+++ b/src/app/client/src/tsconfig.app.json
@@ -70,6 +70,9 @@
       ],
       "@sunbird/offline" : [
         "./../projects/desktop/src/app/modules/offline"
+      ],
+      "@sunbird/content-search": [
+        "app/modules/content-search"
       ]
     },
     "module": "es2015",
diff --git a/src/app/client/src/tsconfig.spec.json b/src/app/client/src/tsconfig.spec.json
index ea0fa21f9b0f2d383f6450dd2606e46f78b574f3..2c5ff90e780ef19e71b1a97197ab20c31117f2a8 100644
--- a/src/app/client/src/tsconfig.spec.json
+++ b/src/app/client/src/tsconfig.spec.json
@@ -69,6 +69,9 @@
       ],
       "@sunbird/offline" : [
         "./../projects/desktop/src/app/modules/offline"
+      ],
+      "@sunbird/content-search": [
+        "app/modules/content-search"
       ]
     },
     "module": "es2015",
diff --git a/src/app/resourcebundles/data/consumption/en.properties b/src/app/resourcebundles/data/consumption/en.properties
index cf3bd74b42d732872eeea430cb88748bb4e97a9d..c586a402eb529be98717ff9801de20280c7cbea5 100644
--- a/src/app/resourcebundles/data/consumption/en.properties
+++ b/src/app/resourcebundles/data/consumption/en.properties
@@ -1148,6 +1148,8 @@ frmelmnts.lbl.noResultFoundFor = No results found for "{query}" from
 frmelmnts.lbl.content.COPYRIGHT = COPYRIGHT
 frmelmnts.desktop.btn.completing = completing
 messages.emsg.m0076= No data available to download 
-messages.desktop.emsg.termsOfUse = Unable to display Terms Of Use. Try again \
-    later
-messages.desktop.emsg.noConnectionTerms = Connect to the Internet to view the Terms of Use
\ No newline at end of file
+frmelmnts.lbl.noBookfoundTitle= Board is adding books
+frmelmnts.lbl.noBookfoundSubTitle= Your board is yet to add more books. Tap the button to see more books and content on {instance}
+frmelmnts.lbl.noBookfoundButtonText= See more books and contents
+messages.desktop.emsg.termsOfUse = Unable to display Terms Of Use. Try again \ later
+messages.desktop.emsg.noConnectionTerms = Connect to the Internet to view the Terms of Use
diff --git a/src/app/resourcebundles/json/bn.json b/src/app/resourcebundles/json/bn.json
index 6509c4f1fd219f16fc85d64e413a41449a0d56d0..18b7ecc64cfe872f01a0716bdcf4ab6331d311c6 100644
--- a/src/app/resourcebundles/json/bn.json
+++ b/src/app/resourcebundles/json/bn.json
@@ -1 +1 @@
-{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"এই ব্যাচ এ কোন অংশগ্রহণকারী নেই ","Mobile":"মোবাইল","SearchIn":"অনুসন্ধান করুন   {searchContentType}","Select":"নির্বাচন করুন","aboutthecourse":"কোর্স সম্পর্কিত","active":"সক্রিয়","addDistrict":"জেলা যুক্ত করুন","addEmailID":"ইমেল আই ডি যুক্ত করুন","addPhoneNo":"মোবাইল নম্বর যুক্ত করুন","addState":"রাজ্য যুক্ত করুন","addlInfo":"বাড়তি  তথ্য","addnote":"নোট যুক্ত করুন","addorgtype":"প্রতিষ্ঠানের প্রকার যুক্ত করুন","address":"ঠিকানা","addressline1":"ঠিকানার প্রথম লাইন","addressline2":"ঠিকানার দ্বিতীয় লাইন","anncmnt":"ঘোষণা","anncmntall":"সব ঘোষণা","anncmntcancelconfirm":"আপনি কি নিশ্চিত ,যে আপনি  এই ঘোষণাটি দেখানো বন্ধ করতে চান?","anncmntcancelconfirmdescrption":"ব্যবহারকারীগণ এই প্রক্রিয়ার পরে এই ঘোষণাটি দেখতে সক্ষম হবেন না","anncmntcreate":"ঘোষণা তৈরি করুন","anncmntdtlsattachments":"সংযুক্তিসমূহ","anncmntdtlssenton":"পাঠানো","anncmntdtlsview":"দেখুন","anncmntdtlsweblinks":"ওয়েব লিংক","anncmntinboxannmsg":"ঘোষণা","anncmntinboxseeall":"সবগুলো দেখুন","anncmntlastupdate":"ব্যবহৃত তথ্য শেষ আপডেট হয়েছে","anncmntmine":"আমার ঘোষণা","anncmntnotfound":"কোন ঘোষণা খুঁজে পাওয়া যায়নি!","anncmntoutboxdelete":"মুছে ফেলুন","anncmntoutboxresend":"আবার পাঠান","anncmntplzcreate":"অনুগ্রহ করে ঘোষণা তৈরি করুন","anncmntreadmore":"... আরো পড়ুন","anncmntsent":"সব পাঠানো ঘোষণা দেখানো হচ্ছে","anncmnttblactions":"ক্রিয়াকলাপ","anncmnttblname":"নাম","anncmnttblpublished":"প্রকাশিত","anncmnttblreceived":"গৃহীত","anncmnttblseen":"দৃষ্ট","anncmnttblsent":"পাঠান","attributions":"গুণাবলী","author":"লেখক","badgeassignconfirmation":"আপনি কি নিশ্চিত ভাবে এই বিষয়বস্তুতে ব্যাজটি ইস্যু করতে চান?","batchdescription":"ব্যাচ এর বর্ণনা","batchdetails":"ব্যাচের বিবরণ","batchenddate":"শেষ তারিখ","batches":"ব্যাচগুলি","batchmembers":"ব্যাচের সদস্যরা","batchstartdate":"শুরুর তারিখ","birthdate":"জন্মদিন (dd / mm / yyyy)","block":"ব্লক","blocked":"অবরুদ্ধ","blockedUserError":"ব্যবহারকারীর অ্যাকাউন্ট অবরুদ্ধ করা হয়েছে। অ্যাডমিনের সাথে যোগাযোগ করুন।","blog":"ব্লগ","board":"বোর্ড / বিশ্ববিদ্যালয়","boards":"পর্ষদ","browserSuggestions":"আরও ভালো অভিজ্ঞতার জন্য  আপগ্রেড বা ইনস্টল করতে আপনাকে প্রস্তাব জানাচ্ছি","certificateIssuedTo":"এর প্রতি শংসাপত্র জারি করা হয়েছে","certificatesIssued":"শংসাপত্র জারি করা হয়েছে ","certificationAward":"সার্টিফিকেশন এবং পুরস্কার","channel":"চ্যানেল","chkuploadsts":"আপলোডের অবস্থান পরীক্ষা  করুন","chooseAll":"সব গুলি পছন্দ করুন","city":"শহর","class":"শ্রেণী","classes":"শ্রেণী","clickHere":"এখানে ক্লিক করুন","completed":"সম্পন্ন","completedCourse":"প্রশিক্ষণ সম্পন্ন","completingCourseSuccessfully":"প্রশিক্ষণটি সফলভাবে সম্পন্ন করার জন্য ","concept":"ধারণা","confirmPassword":"পাসওয়ার্ড টি সুনিশ্চিত করুন","confirmblock":"আপনি কি নিশ্চিতভাবে অবরোধ করতে চান?","connectInternet":"বিষয়বস্তুটি দেখতে দয়া করে ইন্টারনেট সংযোগ করুন","contactStateAdmin":"এই ব্যাচে  আরও অংশগ্রহণকারী যুক্ত করার জন্য আপনার  রাজ্যের অ্যাডমিনের সাথে যোগাযোগ করুন","contentCredits":"বিষয়বস্তুর কৃতিত্ব","contentcopiedtitle":"এই বিষয়বস্তুটি এর থেকে প্রাপ্ত","contentinformation":"বিষয়বস্তুর তথ্য","contentname":"বিষয়বস্তুর নাম","contents":"বিষয়বস্তু গুলি","contentsUploaded":"বিষয়বস্তু আপলোড করা হচ্ছে","contenttype":"বিষয়বস্তু","continue":"চালু রাখুন","contributors":"অবদানকারিগণ ","copy":"কপি","copyRight":"কপিরাইট","copycontent":"বিষয়বস্তু কপি করা হচ্ছে ...","country":"দেশ","countryCode":"দেশের কোড","courseCreatedBy":"এর দ্বারা সৃষ্টি","courseCredits":"ক্রেডিট সমূহ","coursecreatedon":"তৈরি করা হয়েছে এই তারিখে","coursestructure":"কোর্সের গঠন","createUserSuccessWithEmail":"আপনার ই-মেইল আই ডি টি যাচাই করা হয়েছে। অগ্রসর হতে সাইন ইন করুন।","createUserSuccessWithPhone":"আপনার ফোন নম্বর টি যাচাই করা হয়েছে। অগ্রসর হতে সাইন ইন করুন।","createdInstanceName":"{দৃষ্টান্ত} এ সৃষ্ট এর দ্বারা","createdon":"তৈরী হয়েছে ","creationdataset":"সৃষ্টি","creator":"স্রষ্টা","creators":"স্রষ্টাগণ","credits":"কৃতিত্ব","current":"বর্তমান","currentlocation":"বর্তমান অবস্থান","curriculum":"পাঠ্যক্রম","dashboardcertificateStatus":"শংসাপত্রের স্থিতি","dashboardfiveweeksfilter":"গত ৫ সপ্তাহ","dashboardfourteendaysfilter":"গত  ১৪ দিন","dashboardfrombeginingfilter":"শুরু থেকে","dashboardnobatchselected":"কোন ব্যাচ নির্বাচিত হয়নি!","dashboardnobatchselecteddesc":"উপরের তালিকা থেকে একটি ব্যাচ নির্বাচন করুন","dashboardnocourseselected":"কোন কোর্স নির্বাচিত হয়নি","dashboardnocourseselecteddesc":"উপরের তালিকা থেকে একটি কোর্স নির্বাচন করুন","dashboardnoorgselected":"কোন প্রতিষ্ঠান নির্বাচিত করেননি!","dashboardnoorgselecteddesc":"অনুগ্রহ করে উপরের তালিকা থেকে একটি প্রতিষ্ঠান নির্বাচন করুন","dashboardselectorg":"প্রতিষ্ঠান নির্বাচন করুন","dashboardsevendaysfilter":"গত ৭ দিন","dashboardsortbybatchend":"ব্যাচ শেষ এই তারিখে","dashboardsortbyenrolledon":"নিবন্ধিত হয়েছে এই তারিখে","dashboardsortbyorg":"প্রতিষ্ঠান","dashboardsortbystatus":"অবস্থা","dashboardsortbyusername":"ব্যবহারকারীর নাম","degree":"ডিগ্রী","delete":"মুছে ফেলুন ","deletenote":"নোট মুছুন","description":"বিবরণ","designation":"উপাধি","desktopAppDescription":"ডাউনলোড  করা  বিষয়বস্তু অন্বেষণ করতে বা বহিরাগত ডিভাইস থেকে বিষয়বস্তু চালাতে DIKSHA ডেস্কটপ অ্যাপ্লিকেশন ইনস্টল করুন। DIKSHA ডেস্কটপ অ্যাপ প্রদান করে","desktopAppFeature001":"বিনামূল্যে অপরিমিত বিষয়বস্তু","desktopAppFeature002":"একাধিক ভাষা সমর্থন করে","desktopAppFeature003":"বিষয়বস্তু গুলি  অফলাইন  থাকাকালীন  চালান","deviceId":"ডিভাইস আইডি","dialCode":"ডায়াল কোড","dialCodeDescription":"QR কোডটি আপনার পাঠ্য বইয়ের QR কোড চিত্রের নীচে দেওয়া ৬ সংখ্যার আলফা-নিউমেরিক কোড","dialCodeDescriptionGetPage":"QR কোড ৬ সংখ্যার আলফা-নিউমেরিক কোড যা আপনার পাঠ্য বইতে QR  কোড চিত্রের নিচে দেখতে পাবেন","dikshaForMobile":"মোবাইলের জন্য DIKSHA","district":"জেলা","dob":"জন্ম তারিখ","done":"সম্পন্ন","downloadCourseQRCode":"কোর্সের কিউআর কোড ডাউনলোড করুন ","downloadDikshaForMobile":"মোবাইলের জন্য DIKSHA  ডাউনলোড করুন","downloadQRCode":{"tooltip":"কিউআর কোড ডাউনলোড করতে হলে ক্লিক করুন এবং প্রকাশিত কোর্সের  সাথে লিংক করুন "},"downloadThe":"এই হিসাবে ডাউনলোড করুন","downloadingContent":"{বিষয়বস্তুর নাম} ডাউনলোড করার প্রস্তুতি নেওয়া হচ্ছে ...","dropcomment":"একটি মন্তব্য যুক্ত করুন","ecmlarchives":"ইসিএমএল আর্কাইভ","edit":"এডিট করুন","editPersonalDetails":"ব্যক্তিগত বিবরণের এডিট  করুন","editUserDetails":"ব্যবহারকারীর বিবরণ এডিট করুন","education":"শিক্ষা","eightCharacters":"৮ বা তার বেশি অক্ষর ব্যবহার করুন","email":"ইমেইল আইডি","emailPhonenotRegistered":"ইমেইল আইডি / ফোন {দৃষ্টান্ত} এর সাথে নিবন্ধিত নেই","emptycomments":"কোন মন্তব্য নেই","enddate":"শেষ তারিখ","enjoyedContent":"এই বিষয়বস্তুটি উপভোগ করেছেন?","enrollcourse":"কোর্সে ভর্তি হন","enrollmentenddate":"নথিভুক্তির জন্য শেষ তারিখ","enterCertificateCode":"শংসাপত্রের কোডটি এখানে লিখুন","enterDialCode":"৬ অঙ্কের  QR কোড  টি  টাইপ করুন","enterEightCharacters":"কমপক্ষে ৮ টি অক্ষর লিখুন","enterEmailID":"ইমেইল আইডি লিখুন","enterEmailPhoneAsRegisteredInAccount":"{দৃষ্টান্ত} এর সাথে নিবন্ধিত ইমেইল ঠিকানা / ফোন নম্বর লিখুন","enterName":"নাম লিখুন","enterNameNotMatch":"এন্ট্রিটি {দৃষ্টান্ত} এর সাথে নিবন্ধিত নামের সাথে মিলছে না","enterOTP":"OTP লিখুন","enterQrCode":"QR কোড  টাইপ করুন","enterValidCertificateCode":"দয়া করে বৈধ শংসাপত্র কোড লিখুন","enternameAsRegisteredInAccount":"এবং নাম যা {দৃষ্টান্ত} এর অ্যাকাউন্টে আছে ","epubarchives":"ই-পাব আর্কাইভস","errorConfirmPassword":"পাসওয়ার্ড মিলছে না","experience":"অভিজ্ঞতা","expiredBatchWarning":"ব্যাচটি এ শেষ হয়েছে  {EndDate}, তাই আপনার অগ্রগতি আপডেট করা  যাবে না","explore":"অন্বেষণ করুন","exploreContentOn":"বিষয়বস্তু অন্বেষণ করুন {instance}","explorecontentfrom":"বিষয়বস্তু অন্বেষণ করুন এখান থেকে","exportingContent":"কপি করার জন্য প্রস্তুত হচ্ছে {ContentName}  ...","exprdbtch":"মেয়াদ শেষ হয়ে গেছে","extlid":"প্রতিষ্ঠান বহিরাগত আই ডি ","facebook":"ফেসবুক","failres":"ব্যর্থতার ফলাফল","fetchingBlocks":"আমরা ব্লক আনয়ন করছি,  দয়া করে অপেক্ষা করুন","fetchingSchools":"আমরা বিদ্যালয় আনয়ন করছি ।অনুগ্রহ করে অপেক্ষা করুন","filterby":"দ্বারা ফিল্টার","filters":"ফিল্টার","first":"প্রথম","firstName":"নামের প্রথম অংশ","flaggedby":"দ্বারা পতাকাঙ্কিত","flaggeddescription":"পতাকাঙ্কিত বিবরণ","flaggedreason":"পতাকাঙ্কিত কারণ","fnameLname":"আপনার প্রথম এবং শেষ নাম লিখুন","for":"জন্য","forDetails":"বিস্তারিত জানার জন্য","forMobile":"মোবাইলের জন্য","forSearch":"এর জন্য  {searchString}","fullName":"পুরো নাম","gender":"লিঙ্গ","getUnlimitedAccess":"আপনার মোবাইল ফোনে অফলাইন পাঠ্যপুস্তক, পাঠ এবং প্রশিক্ষণের সীমাহীন সন্ধান পান।","goback":"বাতিল করা","grade":"শ্রেণী","grades":"শ্রেণী","graphStat":"লেখচিত্রের পরিসংখ্যান","h5parchives":"H5p আর্কাইভ","homeUrl":"হোম ইউ আরএল","howToUseDiksha":"কিভাবে  DIKSHA ডেস্কটপ অ্যাপ্লিকেশন ব্যবহার করবেন","howToVideo":"কিভাবে করা যায়ে তার ভিডিও","htmlarchives":"এইচটিএমএল আর্কাইভ","imagecontents":"ছবির বিষয়বস্তু","inAll":"সবগুলিতেই","inUsers":"ব্যবহারকারীদের মধ্যে","inactive":"নিষ্ক্রিয়","institute":"প্রতিষ্ঠানের নাম","isRootOrg":"মূল প্রতিষ্ঠান ","iscurrentjob":"এই টি কি আপনার বর্তমান কাজ?","itis":"এটাই","keywords":"কী-ওয়ার্ডস","language":"ভাষা (গুলির) পরিচিত","last":"সর্বশেষ","lastAccessed":"সর্বশেষে প্রবিষ্ট করা হয়েছে:","lastName":"পদবি","lastupdate":"সর্বশেষ আপডেট","learners":"শিক্ষার্থীগণ","licenseTerms":"অনুমতিপত্রের শর্তাবলী","limitsOfArtificialIntell":"কৃত্রিম বুদ্ধিমত্তার সীমাবদ্ধতা","linkCopied":"লিঙ্ক কপি করা হয়েছে  ","linkedContents":"লিঙ্কযুক্ত বিষয়বস্তু","linkedIn":"লিঙ্কডইন","location":"অবস্থান","lockPopupTitle":"{collaborator}বর্তমানে {contentName} এ কাজ করছে। পরে আবার চেষ্টা করুন।","markas":"চিহ্নিত করুন এই  হিসাবে","medium":"মাধ্যম","mentors":"পরামর্শদাতা","mergeAccount":"অ্যাকাউন্টগুলি একত্রিত করুন","mobileEmailInfoText":"DIKSHA  তে সাইন ইন করতে আপনার মোবাইল নম্বর বা ইমেল আইডি লিখুন","mobileNumber":"মোবাইল নম্বর","mobileNumberInfoText":"DIKSHA তে লগইন করার জন্য আপনার মোবাইল নাম্বার দিন","more":"অধিক","myBadges":"আমার ব্যাজ ","mynotebook":"আমার খাতা","mynotes":"আমার নোট","name":"নাম","nameRequired":"নাম প্রয়োজন","newPassword":"নতুন পাসওয়ার্ড","next":"পরবর্তী","noContentToPlay":"চালানোর জন্যে কোনো বিষয়বস্তু নেই ","noDataFound":"কোনো ডেটা পাওয়া যায় নি","offline":"আপনি অফলাইন হয়ে গেছেন","onDiksha":"{দৃষ্টান্ত} এর উপরে","online":"আপনি অনলাইন আছেন","opndbtch":"ব্যাচ খুলুন","orgCode":"প্রতিষ্ঠানের কোড","orgId":"প্রতিষ্ঠানের আইডি ","orgType":"সংস্থার প্রকার","organization":"সংগঠন","orgname":"প্রতিষ্ঠানের নাম","orgtypes":"সংস্থার প্রকার","originalAuthor":"মূল লেখক","otpMandatory":"ওটিপি বাধ্যতামূলক","otpSentTo":"ওটিপি পাঠানো হয়েছে","otpValidated":"ওটিপি সফলভাবে যাচাই করা হয়েছে","ownership":"মালিকানা","participants":"অংশগ্রহণকারিগণ","password":"পাসওয়ার্ড","passwordMismatch":"পাসওয়ার্ড মিলছে না, দয়া করে সঠিক পাসওয়ার্ড লিখুন","pdfcontents":"পিডিএফ এর বিষয়বস্তু","percentage":"শতাংশ","permanent":"স্থায়ী","phone":"ফোন নম্বর","phoneNumber":"ফোন নম্বর","phoneOrEmail":"ফোন নম্বর বা ইমেইল আইডি লিখুন","phoneRequired":"ফোন নম্বরের প্রয়োজন আছে","phoneVerfied":"ফোন  নম্বর টি যাচাইকৃত","phonenumber":"ফোন নম্বর","pincode":"পিনকোড","playContent":"বিষয়বস্তু চালান","plslgn":"এই অধিবেশনের মেয়াদ শেষ হয়ে গেছে। ব্যবহার চালিয়ে যেতে আবার লগইন করুন $ {instance} এর সাহায্যে","position":"পদ","preferredLanguage":"পছন্দসই ভাষা","previous":"আগের","processid":"প্রক্রিয়া আই ডি","profilePopup":"আপনার জন্যে প্রাসঙ্গিক বিষয়বস্তু আবিষ্কার করতে, নিম্নলিখিত বিবরণ আপডেট করুন:","provider":"প্রদানকারী প্রতিষ্ঠান","publicFooterGetAccess":"দীক্ষা প্ল্যাটফর্মে শিক্ষক, ছাত্র এবং অভিভাবকদের নির্ধারিত স্কুল পাঠ্যক্রমের প্রাসঙ্গিক শিক্ষার আকর্ষক উপাদান উপলব্ধ করানো হয়। আপনার পাঠ্যের সহজ সন্ধানের জন্য দীক্ষা অ্যাপ্লিকেশনটি ডাউনলোড করুন এবং আপনার পাঠ্যবইগুলিতে দেওয়া কিউ আর কোড স্ক্যান করুন।","publishedBy":"দ্বারা প্রকাশিত","publishedOnInstanceName":"তারিখে {দৃষ্টান্ত} এর দ্বারা প্রকাশিত","reEnterPassword":"পাসওয়ার্ড টি পুনরায় লিখুন","readless":"কম করে পড়ুন ...","readmore":"... আরো পড়ুন","receiveOTP":"আপনি কোথায় ওটিপি পেতে চান?","recoverAccount":"অ্যাকাউন্ট পুনরুদ্ধার করুন","redirectMsg":"বিষয়বস্তুটি বহির্দেশে প্রদর্শিত করা হয়েছে","redirectWaitMsg":"বিষয়বস্তু লোড হওয়ার সময় অনুগ্রহ করে অপেক্ষা করুন","removeAll":"সব মুছে ফেলুন","reportUpdatedOn":"এই রিপোর্টটি সর্বশেষে আপডেট করা হয়েছে","resendOTP":"OTP পুনরায় পাঠান","resentOTP":"OTP পুনরায় পাঠানো হয়েছে। OTP টি লিখুন","resourcetype":"সংস্থানের প্রকার","retired":"অবসরপ্রাপ্ত","returnToCourses":"প্রশিক্ষণে ফিরে আসুন","role":"ভূমিকা","roles":"ভূমিকা গুলি","rootOrg":"মূল প্রতিষ্ঠান","sameEmailId":"এই ইমেল আইডিটি  আর আপনার প্রোফাইলে যুক্ত আপনার ইমেল আইডিটি এক ","samePhoneNo":"এই মোবাইল নাম্বারটি  আর আপনার প্রোফাইলে যুক্ত নম্বরটি  এক ","school":"বিদ্যালয়","search":"অনুসন্ধান","searchForContent":"৬ অঙ্কের  QR কোড  টি  টাইপ করুন","searchUserName":"ব্যবহারকারীর নাম অনুসন্ধান করুন","seladdresstype":"ঠিকানার প্রকার নির্বাচন করুন","selectAll":"সব নির্বাচন করুন","selectBlock":"ব্লক নির্বাচন করুন","selectDistrict":"জেলা নির্বাচন করুন","selectSchool":"স্কুল নির্বাচন করুন","selectState":"রাষ্ট্র নির্বাচন করুন","selected":"নির্বাচিত","selectreason":"একটি কারণ নির্বাচন করুন","sesnexrd":"অধিবেশনটির মেয়াদ সমাপ্ত","setRole":"ব্যবহারকারীর তথ্য এডিট করুন","share":"শেয়ার করুন ","sharelink":"লিঙ্ক ব্যবহার করে শেয়ার করুন -","showLess":"কম প্রদর্শন করুন","showingResults":"ফলাফল দেখানো হচ্ছে","showingResultsFor":"ফলাফল দেখানো হচ্ছে {searchString}","signUp":"নিবন্ধন করুন","signinenrollHeader":"প্রশিক্ষণগুলি নিবন্ধিত ব্যবহারকারীদের জন্য। কোর্স অ্যাক্সেস করতে লগইন করুন।","signinenrollTitle":"এই কোর্সে ভর্তির জন্য সাইন ইন করুন","skillTags":"দক্ষতা ট্যাগ ","sltBtch":"অগ্রসর হতে  একটি ব্যাচ নির্বাচন করুন","socialmedialinks":"সোশ্যাল মিডিয়া লিংকস ","sortby":"ক্রমানুসারে","startExploringContent":"QR কোড  টাইপ করে বিষয়বস্তু অনুসন্ধান শুরু করুন","startExploringContentBySearch":"কিউআর কোড ব্যবহার করে বিষয়বস্তু অন্বেষণ করুন","startdate":"শুরুর তারিখ","state":"রাষ্ট্র","stateRecord":"রাষ্ট্রের রেকর্ড অনুযায়ী","subject":"বিষয়","subjects":"বিষয়গুলি","subjectstaught":"বিষয় (গুলি) শেখানো হয়েছে","submitOTP":"OTP জমা দিন","subtopic":"উপ-প্রসঙ্গ","successres":"সাফল্যের ফলাফল","summary":"সারাংশ","supportedLanguages":"সমর্থিত ভাষা:","tableNotAvailable":"টেবিল ভিউ এই রিপোর্টের জন্য উপলব্ধ নয়","takenote":"নোট নিন","tcfrom":"থেকে","tcno":"না","tcto":"অবধি","tcyes":"হাঁ","tenDigitPhone":"১0 ডিজিট মোবাইল নম্বর","termsAndCond":"শর্তাবলী গুলি","termsAndCondAgree":"আমি ব্যবহারের শর্তাবলীতে সম্মত","theme":"চালচিত্র","title":"খেতাব","toTryAgain":"আবার চেষ্টা করতে ","topic":"বিষয়","topics":"বিষয়","trainingAttended":"প্রশিক্ষণের উপস্থিতি","twitter":"টুইটার","unableToUpdateEmail":"ইমেইল আইডি আপডেট করতে অক্ষম?","unableToUpdateMobile":"মোবাইল নম্বর আপডেট করতে অক্ষম?","unableToVerifyEmail":"ইমেইল আইডি যাচাই  করতে অক্ষম?","unableToVerifyPhone":"ফোন নম্বর যাচাই করতে অক্ষম?","unenrollMsg":"আপনি কি এই ব্যাচ থেকে অনথিভুক্ত হতে চান?","unenrollTitle":"ব্যাচ অনথিভুক্তকরণ","uniqueEmail":"আপনার ই-মেইল আই ডি ইতিমধ্যে নিবন্ধিত","uniqueEmailId":"এই ইমেইল আইডি টি ইতিমধ্যে ব্যবহার করা হয়ে গেছে। দয়া করে অন্য ইমেইল আইডি প্রদান করুন","uniqueMobile":"এই মোবাইল নম্বরটি  ইতিমধ্যে নিবন্ধভুক্ত। অন্য কোন মোবাইল নম্বর প্রদান করুন।","uniquePhone":"আপনার ফোন নম্বর ইতিমধ্যে নিবন্ধিত","updateEmailId":"ইমেইল আইডি আপডেট করুন","updatePhoneNo":"মোবাইল নম্বর আপডেট করুন","updatecollection":"সব আপডেট করুন","updatecontent":"বিষয়বস্তু আপডেট করুন","updatedon":"আপডেট করা হয়েছে এই তারিখে ","updateorgtype":"প্রতিষ্ঠানের প্রকার আপডেট করুন","upldfile":"আপলোড করা ফাইল","uploadContent":"বিষয়বস্তু আপলোড করুন","uploadEcarFromPd":"আপনার পেন ড্রাইভ থেকে {instance} ফাইল আপলোড করুন (উদাহরণ: MATHS_01.ecar)","userFilterForm":"ব্যবহারকারীদের অনুসন্ধান করুন","userID":"ব্যবহারকারীর আই ডি ","userId":"ব্যবহারকারীর আইডি ","userType":"ব্যবহারকারীর প্রকার","username":"ব্যবহারকারীর নাম","validEmail":"একটি বৈধ ইমেইল আইডি লিখুন","validFor":"৩০ মিনিটের জন্য বৈধ","validPassword":"একটি বৈধ পাসওয়ার্ড লিখুন","validPhone":"একটি বৈধ ১০ অঙ্কের ফোন নম্বর লিখুন","verifyingCertificate":"আপনার শংসাপত্র যাচাই করা হচ্ছে","versionKey":"সংস্করণ:","videos":"ভিডিও","view":"দেখুন","viewless":"কম করে দেখুন","viewmore":"আরো দেখুন","viewworkspace":"আপনার কর্মক্ষেত্র দেখুন","watchCourseVideo":"ভিডিও দেখুন","watchVideo":"ভিডিও দেখুন","whatsQRCode":"QR কোড কি?","whatwentwrong":"কি ভুল হয়েছে?","whatwentwrongdesc":"কি ভুল হয়েছে জানাবেন। দয়া করে সঠিক কারণ উল্লেখ করুন যাতে আমরা যত তাড়াতাড়ি সম্ভব এর পর্যালোচনা করে এই সমস্যাটির সমাধান করতে পারি। আপনার প্রতিক্রিয়ার জন্য ধন্যবাদ!","willsendOTP":"আমরা আপনাকে একটি ওটিপি পাঠাবো, এবং ওটিপির বৈধতা যাচাই করার পরে, আপনি আপনার অ্যাকাউন্টটি পুনরুদ্ধার করতে সক্ষম হবেন।","worktitle":"পেশা / কাজের শিরোনাম","wrongEmailOTP":"আপনি একটি ভুল OTP লিপিবদ্ধ করেছেন। আপনার ইমেইল আই ডি তে প্রাপ্ত OTP লিপিবদ্ধ করুন। OTP টি শুধুমাত্র ৩০ মিনিটের জন্য বৈধ।","wrongPhoneOTP":"আপনি একটি ভুল ওটিপি লিপিবদ্ধ করেছেন। আপনার ফোন নম্বরে প্রাপ্ত ওটিপি লিপিবদ্ধ করুন। ওটিপি টি শুধুমাত্র 30 মিনিটের জন্য বৈধ।","yop":"পাসের সন","indPhoneCode":91,"manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","noCreditsAvailable":"No credits available","errorMessage":"Error message","externalId":"External Id","lang":"Language","recentlyAdded":"Recently Added","contentType":"Content Type","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","releaseDateKey":"Release Date:","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from"},"btn":{"add":"যুক্ত করুন","addToLibrary":"আমার লাইব্রেরিতে ডাউনলোড করুন","addedToLibrary":"গ্রন্থাগারে সংযুক্ত করা হয়েছে","addingToLibrary":"গ্রন্থাগারে যুক্ত করা হচ্ছে","apply":"প্রয়োগ করুন","browse":"অনলাইন ব্রাউজ করুন","cancel":"বাতিল","cancelCapitalize":"বাতিল","clear":"পরিষ্কার করুন","close":"বন্ধ করুন","contentImport":"ফাইল গুলি আপলোড করুন","copyLink":"লিংক কপি করুন","create":"সৃষ্টি করুন","download":"ডাউনলোড","downloadCertificate":"শংসাপত্র ডাউনলোড করুন","downloadCompleted":"ডাউনলোড সম্পন্ন হয়েছে","downloadDikshaForWindows":"Window (64-bit) এর জন্য ডাউনলোড করুন","downloadFailed":"ডাউনলোড ব্যর্থ হয়েছে","downloadInstruction":"ডাউনলোডের নির্দেশাবলী দেখুন","downloadManager":"আমার ডাউনলোডসমূহ ","downloadPdf":"সাহায্য","downloadPending":"ডাউনলোড মুলতুবি রয়েছে","edit":"সম্পাদন করা","enroll":"প্রশিক্ষণে যোগ দিন","export":"পেন ড্রাইভে কপি করুন","login":"লগ ইন করুন ","merge":"একত্রিত করুন ","myLibrary":"আমার গ্রন্থাগার","next":"পরবর্তী","no":"না","ok":"ঠিক আছে","previous":"আগের","remove":"সরিয়ে ফেলুন","reset":"পুনরায় স্থাপন করুন","resume":"জীবনবৃত্তান্ত","resumecourse":"কোর্স পুনরায় শুরু করুন","save":"সংরক্ষণ করুন","selectContentFiles":"ফাইল (গুলি) নির্বাচন করুন","selectLanguage":"ভাষা নির্বাচন করুন ","selrole":"ভূমিকা নির্বাচন করুন","signin":"প্রবেশ করুন","signup":"নিবন্ধন করুন","smplcsv":"নমুনা সিএসভি ডাউনলোড করুন","submit":"জমা দিন","submitbtn":"জমা দিন","tryagain":"আবার চেষ্টা করুন","unenroll":"অনথিভুক্ত করুন","update":"আপডেট","uploadorgscsv":"প্রতিষ্ঠানের সিএসভি ফাইল আপলোড করুন","uploadusrscsv":"ব্যবহারকারীর সিএসভি আপলোড করুন","verify":"যাচাই করুন","viewCourseStatsDashboard":"প্রশিক্ষণের ড্যাশবোর্ড দেখুন","viewcoursestats":"কোর্সের পরিসংখ্যান দেখুন","viewless":"কম করে দেখুন","viewmore":"আরো দেখুন","yes":"হাঁ","yesiamsure":"ব্যাজ প্রদান করুন ","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"মহিলা","male":"পুরুষ","transgender":"ট্রান্স-জেন্ডার "},"instn":{"t0002":"আপনি একটি সিএসভি ফাইলে একসঙ্গে ১৯৯ টি সংগঠনের বিবরণ যুক্ত বা আপলোড করতে পারেন","t0007":"প্রতিষ্ঠানের নাম কলামটি বাধ্যতামূলক। এই কলামে প্রতিষ্ঠানের নাম লিপিবদ্ধ করুন","t0011":"আপনি প্রক্রিয়া আইডি ব্যবহার করে অগ্রগতি অনুসরণ করতে পারেন","t0012":"আপনার রেফারেন্সের জন্য প্রক্রিয়া আইডি টি সংরক্ষণ করুন।  আপনি  এই প্রক্রিয়া আইডি টি দিয়ে অগ্রগতি ট্র্যাক করতে পারেন","t0013":"রেফারেন্সের জন্য csv ফাইল ডাউনলোড করুন","t0015":"প্রতিষ্ঠান আপলোড করুন","t0016":"ব্যবহারকারী দের আপলোড করুন","t0020":"একটি দক্ষতা যুক্ত করতে টাইপ করতে শুরু করুন","t0021":"প্রতিটি প্রতিষ্ঠানের নাম পৃথক সারিতে লিপিবদ্ধ করুন","t0022":"অন্যান্য সকল কলামে বিস্তারিত লিপিবদ্ধ করা ঐচ্ছিক:","t0023":"মূল প্রতিষ্ঠান: এই কলামের জন্য বৈধ মান সত্য/ মিথ্যা","t0024":"চ্যানেল: মাস্টার সংগঠনের সৃষ্টির সময় প্রদান করা অনন্য আইডি","t0025":"বহিরাগত আই ডি: প্রতিটি প্রতিষ্ঠানের সংগ্রহস্থলের প্রশাসনিক পরিচালনার জন্যে প্রতিষ্ঠানের সাথে যুক্ত অনন্য আই ডি","t0026":"প্রদানকারী: প্রশাসক প্রতিষ্ঠানের চ্যানেল আইডি","t0027":"বিবরণ: প্রতিষ্ঠানের বিশদ বর্ণনা","t0028":"হোম ইউআরএল: প্রতিষ্ঠানের হোম পেজের ইউআরএল","t0029":"অর্গ কোড: সংস্থার অনন্য কোড, যদি থাকে,","t0030":"অর্গ টাইপ: প্রতিষ্ঠানের প্রকার, যেমন এনজিও, প্রাথমিক বিদ্যালয়, মাধ্যমিক স্কুল ইত্যাদি","t0031":"পছন্দসই ভাষা: প্রতিষ্ঠানের জন্য পছন্দ করা ভাষা, যদি থাকে","t0032":"বিশদ যোগাযোগ: প্রতিষ্ঠানের ফোন নম্বর এবং ইমেল আই ডি। বিস্তারিত বিবরণ কোঁকড়ানো বন্ধনীর মধ্যে একক উদ্ধৃতি দিয়ে লিপিবদ্ধ করা উচিত। উদাহরণস্বরূপ: [{'ফোন নম্বর': '১২৩৪৫৬৭৮৯০'}]","t0049":"রুট অর্গ কলামের মান সত্য হলে চ্যানেল আবশ্যিক ","t0050":"বহিরাগত আইডি এবং প্রদানকারী পারস্পরিক বাধ্যতামূলক","t0055":"ওহ্ ,ঘোষণার  বিশদ বিবরণ পাওয়া যাচ্ছে না!","t0056":"অনুগ্রহ করে আবার চেষ্টা করুন.","t0058":"ডাউনলোড করুন এই হিসাবে:","t0059":"CSV","t0060":"ধন্যবাদ!","t0061":"ওহো ...","t0062":"আপনি এখনো এই কোর্সের জন্য একটি ব্যাচ ও তৈরি করেননি। নতুন ব্যাচ তৈরি করুন এবং আবার ড্যাশবোর্ড চেক করুন।","t0063":"আপনি এখনো কোন কোর্স তৈরি করেনি। নতুন কোর্স তৈরি করুন এবং আবার ড্যাশবোর্ড চেক করুন।","t0064":"একই প্রকারের একাধিক ঠিকানা নির্বাচিত করেছেন। দয়া করে কোন একটির পরিবর্তন করুন।","t0065":"ডাউনলোড","t0070":"সিএসভি ফাইল ডাউনলোড করুন। এক একটি নির্দিষ্ট প্রতিষ্ঠানের ব্যবহারকারীগণদের একটি সি এস ভি ফাইলের মধ্যে একসাথে আপলোড করা যেতে পারে।","t0071":"ব্যবহারকারী অ্যাকাউন্টের নিম্নলিখিত বাধ্যতামূলক বিবরণ লিখুন:","t0072":"প্রথম নাম: ব্যবহারকারীর নামের প্রথমাংশ, বর্ণমালা মান।","t0073":"ফোন বা ইমেইল: ব্যবহারকারীর ফোন নম্বর (দশ অঙ্কের মোবাইল নম্বর) অথবা ইমেল আই ডি। উভয়ের একটি অবশ্যই প্রদান করতে হবে, তবে, দুটিই উপলব্ধ থাকলে তা প্রদান করা সমীচীন হবে। ","t0074":"ব্যবহারকারীর নাম: প্রতিষ্ঠানের দ্বারা ব্যবহারকারী কে  একটি  আলফা নিউমেরিক প্রকারের অনন্য নাম বরাদ্দ  করা হয়েছে।","t0076":"দ্রষ্টব্য: সিএসভি ফাইলের অন্যান্য কলামগুলি ঐচ্ছিক, এইগুলি পূরণ করার বিশদ বিবরণের জন্য এই টি পরুন","t0077":"ব্যবহারকারী নিবন্ধন করুন।","t0078":"অবস্থান আই ডি: একটি আই ডি যা একটি নির্দিষ্ট প্রতিষ্ঠানের জন্য একটি ঘোষণার বিষয় চিহ্নিত করে","t0079":"অবস্থান কোড: কমা-দ্বারা পৃথক অবস্থান-কোডের তালিকা","t0081":"DIKSHA তে সাইন আপ করার জন্য আপনাকে ধন্যবাদ। আমরা  আপনার ফোন নম্বর যাচাই করার জন্য একটি  OTP  এসএমএস করেছি। রেজিস্ট্রেশান সম্পূর্ণ করার জন্য OTP টির সাহায্যে আপনার ফোন নম্বরের সত্যতা প্রতিপন্ন করুন।","t0082":"DIKSHA তে সাইন আপ করার জন্য আপনাকে ধন্যবাদ। আমরা আপনার ইমেইল আইডি যাচাইয়ের জন্য একটি ইমেইল ওটিপি পাঠিয়েছি। রেজিস্ট্রেশন প্রক্রিয়াটি সম্পূর্ণ করতে ওটিপি টির সাহায্যে আপনার ইমেইল ঠিকানাটি যাচাই করুন।","t0083":"আপনি মোবাইল নম্বর যাচাইকরণের জন্য ওটিপি  সহকারে একটি এসএমএস পাবেন।","t0084":"আপনি ইমেল আইডি যাচাইকরণের জন্য OTP  সহকারে একটি ইমেল পাবেন।","t0085":"রিপোর্ট প্রথম ১0,000 অংশগ্রহণকারীদের  তথ্য দেখায়। ব্যাচের সকল অংশগ্রহণকারীদের অগ্রগতি দেখতে ডাউনলোডের উপর ক্লিক করুন।","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"নোট বা শিরোনামের জন্য অনুসন্ধান করুন","t0002":"আপনার মন্তব্য যুক্ত করুন","t0005":"ব্যাচের পরামর্শদাতা নির্বাচন করুন","t0006":"ব্যাচের সদস্য নির্বাচন করুন"},"lnk":{"announcement":"ঘোষণার ড্যাশবোর্ড","assignedToMe":"আমার জন্য বরাদ্দ ","contentProgressReport":"বিষয়বস্তুর অগ্রগতি রিপোর্ট","contentStatusReport":"বিষয়বস্তুর  স্ট্যাটাস রিপোর্ট","createdByMe":"আমার দ্বারা সৃষ্ট","dashboard":"প্রশাসকের ড্যাশবোর্ড","detailedConsumptionMatrix":"বিস্তারিত খরচের ম্যাট্রিক্স","detailedConsumptionReport":"বিস্তারিত খরচের রিপোর্ট","footerContact":"প্রশ্নের জন্য যোগাযোগ করুন:","footerDIKSHAForMobile":"মোবাইলের জন্য DIKSHA","footerDikshaVerticals":"দীক্ষা ভার্টিক্যালস","footerHelpCenter":"সাহায্য কেন্দ্র","footerPartners":"অংশীদার","footerTnC":"ব্যবহারের শর্তাবলী","logout":"প্রস্থান","myactivity":"আমার কার্যকলাপ","profile":"প্রোফাইল","textbookProgressReport":"পাঠ্যপুস্তকের অগ্রগতি রিপোর্ট","viewall":"সব দেখুন ","workSpace":"কর্মস্থান"},"pgttl":{"takeanote":"একটি নোট নিন"},"prmpt":{"deletenote":"আপনি কি নিশ্চিত ভাবে এই নোট মুছে ফেলতে চান?","enteremailID":"আপনার ইমেইল আইডি লিখুন","enterphoneno":"১0 ডিজিট মোবাইল ফোন নম্বর লিখুন","search":"অনুসন্ধান করুন","userlocation":"অবস্থান"},"scttl":{"blkuser":"ব্যবহারকারীকে অবরুদ্ধ করুন","contributions":"অবদানকারী(গণ)","instructions":"নির্দেশাবলী:","signup":"নিবন্ধন করুন","todo":"করণীয়","error":"Error:"},"snav":{"shareViaLink":"লিংকের মাধ্যমে শেয়ার করা হয়েছে ","submittedForReview":"পর্যালোচনার জন্য জমা দেওয়া হয়েছে"},"tab":{"all":"সব","community":"শ্রেণী","courses":"কোর্সসমূহ ","help":"সাহায্য","home":"মূল ","profile":"প্রোফাইল","resources":"গ্রন্থাগার","users":"ব্যবহারকারীগণ","workspace":"কর্মস্থান","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"প্রশিক্ষণ সম্পন্ন হয়েছে","messages":{"emsg":{"m0001":"এখন নথিভুক্ত করা যাবে না। পরে আবার চেষ্টা করুন","m0003":"আপনার প্রদানকারীর  আই ডি এবং বহিরাগত আই ডি বা সংস্থার আই ডি লিপিবদ্ধ করা উচিত","m0005":"কিছু ভুল হয়েছে, দয়া করে কিছু সময় পরে চেষ্টা করুন ....","m0007":"আয়তন কম হতে হবে এর থেকে","m0008":"বিষয়বস্তু কপি করতে অক্ষম। পরে আবার চেষ্টা করুন","m0009":"এখন অনথিভুক্ত করা যাচ্ছে না। পরে আবার চেষ্টা করুন","m0014":"মোবাইল নম্বর আপডেট করা ব্যর্থ হয়েছে","m0015":"ইমেল আইডি আপডেট করা ব্যর্থ হয়েছে","m0016":"রাজ্যের আনয়ন ব্যর্থ হয়েছে। কিছু পরে আবার চেষ্টা করুন","m0017":"জেলার আনয়ন ব্যর্থ হয়েছে। পরে আবার চেষ্টা করুন","m0018":"প্রোফাইল আপডেট করা ব্যর্থ হয়েছে","m0019":"রিপোর্ট ডাউনলোড করতে অক্ষম, পরে আবার চেষ্টা করুন","m0020":"ব্যবহারকারীর আপডেট ব্যর্থ হয়েছে। পরে আবার চেষ্টা করুন","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"নথিভুক্ত প্রশিক্ষণ আনয়ন ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0002":"অন্যান্য কোর্স আনয়ন ব্যর্থ হয়েছে, পরে আবার চেষ্টা করুন...","m0003":"কোর্স সময়সূচীর বিস্তারিত প্রাপ্তিতে অক্ষম।","m0004":"তথ্যাদি আনয়ন ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0030":"নোট তৈরি করা ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0032":"নোটটিকে সরিয়ে দেওয়া ব্যর্থ হয়েছে, অনুগ্রহ করে পরে আবার চেষ্টা করুন ...","m0033":"নোট আনয়ন ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0034":"নোট আপডেট করা ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0041":"শিক্ষা মুছে ফেলা ব্যর্থ হয়েছে। অনুগ্রহ করে একটু পরে আবার চেষ্টা করুন...","m0042":"অভিজ্ঞতা মুছে ফেলা ব্যর্থ হয়েছে। ","m0043":"ঠিকানা মুছে ফেলতে ব্যর্থ হয়েছে। অনুগ্রহ করে একটু পরে আবার চেষ্টা করুন...","m0048":"ব্যবহারকারীর প্রোফাইল আপডেট করা ব্যর্থ হয়েছে, দয়া করে কিছু পরে আবার চেষ্টা করুন ...","m0049":"তথ্য লোড করতে অক্ষম।","m0050":"অনুরোধ জমা দেওয়া ব্যর্থ হয়েছে, অনুগ্রহ করে পরে আবার চেষ্টা করুন ...","m0051":"কিছু ভুল হয়েছে। দয়া করে পরে আবার চেষ্টা করুন...","m0054":"ব্যাচের বিস্তারিত আনয়ন ব্যর্থ হয়েছে, কিছু পরে আবার চেষ্টা করুন...","m0056":"ব্যবহারকারীর তালিকা আনয়ন ব্যর্থ হয়েছে, কিছু পরে আবার চেষ্টা করুন...","m0076":"দয়া করে বাধ্যতামূলক ক্ষেত্র লিপিবদ্ধ করুন","m0077":"অনুসন্ধান ফলাফল আনয়ন ব্যর্থ হয়েছে ..","m0079":"ব্যাজ বরাদ্দ করা ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0080":"ব্যাজ আনয়ন ব্যর্থ হয়েছে, অনুগ্রহ করে পরে আবার চেষ্টা করুন ...","m0082":"এই কোর্সটি ভর্তির জন্য খোলা হয়নি","m0085":"একটি প্রযুক্তিগত  ত্রুটি   ছিল। আবার চেষ্টা করুন ","m0086":"এই কোর্সটি লেখক দ্বারা অবসৃত করা হয়েছে অতএব এটি আর উপলব্ধ নেই","m0087":"অনুগ্রহ করে অপেক্ষা করুন","m0088":"আমরা বিস্তারিত বিবরণ আনয়ন করছি।","m0089":"কোন বিষয় / উপ-বিষয় খুঁজে পাওয়া যায়নি","m0090":"ডাউনলোড ব্যর্থ হয়েছে। অনুগ্রহ করে একটু পরে আবার চেষ্টা করুন।","m0091":"কন্টেন্ট  কপি করা যায়নি। পরে আবার চেষ্টা করুন","m0093":"{FailedContentLength} বিষয়বস্তু (গুলির) আপলোড ব্যর্থ হয়েছে","m0094":"ডাউনলোড করা যায়নি, পরে আবার চেষ্টা করুন ...","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"এই প্রশিক্ষণটি অনুপযুক্ত হিসাবে পতাকাঙ্কিত এবং বর্তমানে পর্যালোচনার অধীন। দয়া করে আবার পরে পরীক্ষণ করুন।","m0005":"দয়া করে একটি বৈধ চিত্রের ফাইল আপলোড করুন। সমর্থিত ফাইলের প্রকার: jpeg, jpg, png। সর্বোচ্চ আয়তন: ৪ এমবি","m0017":"প্রোফাইল এর সম্পূর্ণতা।","m0022":"বিগত ৭ দিনের পরিসংখ্যান","m0023":"বিগত ১৪ দিনের পরিসংখ্যান","m0024":"বিগত ৫ সপ্তাহের পরিসংখ্যান","m0025":"শুরু থেকে পরিসংখ্যান","m0026":"এই কোর্সটি এখন আপাতত উপলব্ধ নয়। সম্ভবত এর সৃষ্টা এতে কিছু পরিবর্তন করেছেন।","m0027":"এই বিষয়বস্তুটি এখন উপলব্ধ নয়। এটির সৃষ্টা সম্ভবত বিষয়বস্তুতে কিছু পরিবর্তন করেছেন।","m0034":"যেহেতু বিষয়বস্তুটি একটি বহিরাগত উৎস থেকে, এটি  একটু পর খোলা হবে।","m0035":"অননুমোদিত প্রবেশ","m0036":"বিষয়বস্তুটি বাহ্যিকভাবে হোস্ট করা হয়েছে, বিষয়বস্তুটি দেখতে দয়া করে এর পূর্বরূপ এ ক্লিক করুন","m0040":"ক্রিয়াপ্রণালী এখনও চলছে, দয়া করে কিছু সময় পরে চেষ্টা করুন।","m0041":"আপনার প্রোফাইল","m0042":"% সম্পূর্ণ","m0043":"আপনার প্রোফাইলে কোনো বৈধ ইমেইল আই ডি নেই। আপনার ইমেইল আই ডি আপডেট করুন।","m0044":"ডাউনলোড ব্যর্থ হয়েছে","m0045":"ডাউনলোড ব্যর্থ হয়েছে। দয়া করে কিছুক্ষণ পরে আবার চেষ্টা করুন।","m0047":"আপনি শুধুমাত্র 100  জন অংশগ্রহণকারীদের নির্বাচন করতে পারেন","m0060":"আপনার যদি {দৃষ্টান্ত} এর সাথে দুটি অ্যাকাউন্ট থাকে তবে ক্লিক করুন","m0061":"প্রতি","m0062":"অন্যথায়, ক্লিক করুন","m0063":"উভয় অ্যাকাউন্টের ব্যবহারের বিশদ একত্রিত করুন, এবং","m0064":"অন্য অ্যাকাউন্টটি বাদ দিন","m0065":"অ্যাকাউন্টের একত্রীকরণ সফলভাবে শুরু হয়েছে","m0066":"এটি সম্পূর্ণ হয়ে গেলে আপনাকে অবহিত করা হবে","m0067":"অ্যাকাউন্টের একত্রীকরণ শুরু হয়নি। দয়া করে পরে আবার চেষ্টা করুন","m0072":"ভুল পাসওয়ার্ড লেখার কারণে অ্যাকাউন্টগুলির একত্রীকরণ করা যায়নি","m0073":"নতুন {দৃষ্টান্ত} অ্যাকাউন্ট বানাতে হলে 'ওকে' তে ক্লিক করুন ","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"নোট সফলভাবে তৈরি হয়েছে ...","m0013":"নোট সফলভাবে আপডেট করা হয়েছে ...","m0014":"শিক্ষা সফলভাবে মুছে ফেলা হয়েছে","m0015":"অভিজ্ঞতা সফলভাবে মুছে ফেলা হয়েছে","m0016":"ঠিকানা সফলভাবে মুছে ফেলা হয়েছে","m0018":"প্রোফাইল চিত্র সফলভাবে আপডেট করা হয়েছে","m0019":"বিবরণ সফলভাবে আপডেট করা হয়েছে","m0020":"শিক্ষা সফলভাবে আপডেট করা হয়েছে","m0021":"অভিজ্ঞতা সফলভাবে আপডেট করা হয়েছে","m0022":"অতিরিক্ত তথ্য সফলভাবে আপডেট করা হয়েছে","m0023":"ঠিকানা সফলভাবে আপডেট করা হয়েছে ","m0024":"নতুন শিক্ষা সফলভাবে যুক্ত করা হয়েছে","m0025":"নতুন অভিজ্ঞতা সফলভাবে যুক্ত করা হয়েছে","m0026":"নতুন ঠিকানা সফলভাবে যুক্ত করা হয়েছে","m0028":"ভূমিকা সফলভাবে আপডেট করা হয়েছে","m0029":"ব্যবহারকারী সফলভাবে মুছে ফেলা হয়েছে","m0030":"ব্যবহারকারী সফলভাবে আপলোড করা হয়েছে ","m0031":"প্রতিষ্ঠান সফলভাবে আপলোড করা হয়েছে","m0032":"অবস্থা সফলভাবে আনীত","m0035":"প্রতিষ্ঠানের প্রকার সফলভাবে যুক্ত করা হয়েছে","m0036":"ব্যাচ টি সফলভাবে এই কোর্সে ভর্তি হয়েছে","m0037":"সফলভাবে আপডেট করা হয়েছে","m0038":"দক্ষতা সফলভাবে আপডেট করা হয়েছে","m0039":"সাইন আপ সফলভাবে হয়েছে, দয়া করে লগ ইন করুন...","m0040":"প্রোফাইল ক্ষেত্রের দৃশ্যমানতা সফলভাবে আপডেট করা হয়েছে ","m0042":"বিষয়বস্তু সফলভাবে কপি করা হয়েছে","m0043":"অনুমোদন সফল","m0044":"ব্যাজ সফলভাবে নির্ধারিত হয়েছে ...","m0045":"ব্যবহারকারী সফলভাবে ব্যাচ থেকে অনথিভুক্ত হয়েছে ...","m0046":"প্রোফাইল সফলভাবে আপডেট করা হয়েছে...","m0047":"আপনার মোবাইল নম্বর আপডেট করা হয়েছে।","m0048":"আপনার ইমেইল আইডি আপডেট করা হয়েছে","m0049":"ব্যবহারকারী সফলভাবে আপডেট করা হয়েছে","m0050":"এই বিষয়বস্তু টির মান নির্ধারণ করার জন্য ধন্যবাদ!","m0053":"ডাউনলোড করা হচ্ছে ...","m0054":"{UploadedContentLength} বিষয়বস্তু (গুলি) সফলভাবে আপলোড করা হয়েছে","m0055":"আপডেট করা হচ্ছে ...","m0056":"বিষয়বস্তুটি আপডেট করার জন্য আপনাকে অনলাইন থাকতে হবে","moo41":"ঘোষণা সফলভাবে বাতিল করা হয়েছে ...","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"কোন ফলাফল পাওয়া যায়নি","m0007":"আপনার অনুসন্ধান পরিমার্জন করুন","m0008":"কোন ফলাফল নেই","m0009":"চালাতে অক্ষম, আবার চেষ্টা করুন অথবা বন্ধ করুন।","m0022":"পর্যালোচনার জন্য আপনার যেকোনো একটি খসড়া জমা দিন। বিষয়বস্তু শুধুমাত্র পর্যালোচনার পরে প্রকাশিত হয়","m0024":"একটি নথি, ভিডিও, বা অন্য কোন সমর্থিত বিন্যাসের ফাইল আপলোড করুন। আপনি এখনো কিছু আপলোড করেননি ","m0033":"পর্যালোচনার জন্য আপনার খসড়াগুলির  মধ্যেযে কোন একটি জমা দিন। আপনি এখনও পর্যন্ত পর্যালোচনার জন্য কোন বিষয়বস্তু জমা দেননি","m0035":"পর্যালোচনা করার জন্য কোন বিষয়বস্তু নেই","m0060":"আপনার প্রোফাইল  মজবুত করুন","m0062":"বৈধ ডিগ্রী লিখুন","m0063":"বৈধ ঠিকানার প্রথম লাইন লিখুন","m0064":"শহরের নাম লিখুন","m0065":"বৈধ পিন কোড লিখুন","m0066":"নামের প্রথমাংশ লিখুন","m0067":"অনুগ্রহ করে বৈধ ফোন নম্বর দিন","m0069":"ভাষা নির্বাচন করুন","m0070":"প্রতিষ্ঠানের নাম লিখুন","m0072":"বৈধ জীবিকা / কাজের শিরোনাম লিখুন","m0073":"বৈধ প্রতিষ্ঠান লিখুন","m0077":"আমরা আপনার অনুরোধ জমা দিচ্ছি ...","m0080":"দয়া করে শুধুমাত্র csv ফরম্যাটের ফাইল আপলোড করুন","m0081":"কোন ব্যাচ খুঁজে পাওয়া যায়নি","m0083":"আপনি এখনও বিষয়বস্তুটি কারো সাথে  ভাগ  করেননি","m0087":"একটি বৈধ ব্যবহারকারী নাম লিখুন, অন্তত ৫ অক্ষর থাকতে হবে","m0088":"দয়া করে একটি বৈধ পাসওয়ার্ড প্রদান করুন","m0089":"দয়া করে একটি বৈধ ইমেইল প্রদান করুন","m0090":"ভাষা নির্বাচন করুন","m0091":"দয়া করে একটি বৈধ ফোন নম্বর প্রদান করুন","m0094":"বৈধ শতাংশ লিখুন","m0095":"আপনার অনুরোধ সফলভাবে গৃহীত হয়েছে। ফাইল কিছু পরেই আপনার নিবন্ধিত ইমেইল এ পাঠানো হবে। দয়া করে, নিয়মিত আপনার ইমেইল চেক করুন।","m0104":"বৈধ শ্রেণী লিখুন","m0108":"আপনার অগ্রগতি","m0113":"একটি বৈধ সূচনার তারিখ প্রদান করুন","m0116":"নির্বাচিত নোট মুছে ফেলা হচ্ছে ...","m0120":"চালানোর জন্য কোন বিষয়বস্তু নেই","m0121":"শীঘ্রই আসছে!","m0122":"আমরা এই জন্য বিষয়বস্তু গুলি তৈরি করছি।","m0123":"আপনাকে একজন সহযোগী হিসাবে যুক্ত করতে কোন এক বন্ধু কে অনুরোধ করুন। আপনাকে ইমেলের মাধ্যমে এই সম্মন্ধে বিজ্ঞাপিত করা হবে।","m0125":"পাঠ্য-সম্পদ, বই, কোর্স, সংগ্রহ, বা আপলোড  তৈরিকরা শুরু করুন। এই মুহুর্তে আপনার কোন কাজের অগ্রগতির খসড়া নেই","m0126":"অনুগ্রহ করে পর্ষদ নির্বাচন করুন","m0127":"অনুগ্রহ করে মাধ্যম নির্বাচন করুন","m0128":"অনুগ্রহ করে শ্রেণী নির্বাচন করুন","m0129":"শর্তাবলী লোড হচ্ছে।","m0130":"আমরা জেলা আনয়ন করছি","m0131":"কোন রিপোর্ট পাওয়া যায়নি","m0132":"আমরা আপনার অনুরোধ পেয়েছি। ফাইল শীঘ্রই আপনার নিবন্ধিত ইমেইল আই ডিতে পাঠানো হবে","m0133":"ডেস্কটপ অ্যাপ্লিকেশন  টি ব্যবহার করতে বিষয়বস্তু  ব্রাউজ, ডাউনলোড, অথবা  আপলোড করুন ","m0134":"নিয়োগ","m0135":"একটি বৈধ তারিখ লিখুন","m0136":"নথিভুক্তির জন্য শেষ তারিখ:","m0138":"ব্যর্থ হয়েছে","m0139":"ডাউনলোড করা হয়েছে","m0140":"ডাউনলোড করা হচ্ছে","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"}},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"প্রতিষ্ঠানের নাম","participants":"অংশগ্রহণকারিগণ","resourceService":{"frmelmnts":{"lbl":{"userId":"ব্যবহারকারীর আই ডি "}}},"t0065":"ফাইল ডাউনলোড করুন"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"You don't have any published content...","m0023":"We are fetching uploaded content...","m0024":"You don't have any uploaded content...","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"You don't have any content for review...","m0034":"We are deleting the content...","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You don't have any limited publish content...","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"You are not collaborating on any content yet","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"No content to display. Start Creating Now","m0035":"There is no content to review","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
+{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"এই ব্যাচ এ কোন অংশগ্রহণকারী নেই ","Mobile":"মোবাইল","SearchIn":"অনুসন্ধান করুন   {searchContentType}","Select":"নির্বাচন করুন","aboutthecourse":"কোর্স সম্পর্কিত","active":"সক্রিয়","addDistrict":"জেলা যুক্ত করুন","addEmailID":"ইমেল আই ডি যুক্ত করুন","addPhoneNo":"মোবাইল নম্বর যুক্ত করুন","addState":"রাজ্য যুক্ত করুন","addlInfo":"বাড়তি  তথ্য","addnote":"নোট যুক্ত করুন","addorgtype":"প্রতিষ্ঠানের প্রকার যুক্ত করুন","address":"ঠিকানা","addressline1":"ঠিকানার প্রথম লাইন","addressline2":"ঠিকানার দ্বিতীয় লাইন","anncmnt":"ঘোষণা","anncmntall":"সব ঘোষণা","anncmntcancelconfirm":"আপনি কি নিশ্চিত ,যে আপনি  এই ঘোষণাটি দেখানো বন্ধ করতে চান?","anncmntcancelconfirmdescrption":"ব্যবহারকারীগণ এই প্রক্রিয়ার পরে এই ঘোষণাটি দেখতে সক্ষম হবেন না","anncmntcreate":"ঘোষণা তৈরি করুন","anncmntdtlsattachments":"সংযুক্তিসমূহ","anncmntdtlssenton":"পাঠানো","anncmntdtlsview":"দেখুন","anncmntdtlsweblinks":"ওয়েব লিংক","anncmntinboxannmsg":"ঘোষণা","anncmntinboxseeall":"সবগুলো দেখুন","anncmntlastupdate":"ব্যবহৃত তথ্য শেষ আপডেট হয়েছে","anncmntmine":"আমার ঘোষণা","anncmntnotfound":"কোন ঘোষণা খুঁজে পাওয়া যায়নি!","anncmntoutboxdelete":"মুছে ফেলুন","anncmntoutboxresend":"আবার পাঠান","anncmntplzcreate":"অনুগ্রহ করে ঘোষণা তৈরি করুন","anncmntreadmore":"... আরো পড়ুন","anncmntsent":"সব পাঠানো ঘোষণা দেখানো হচ্ছে","anncmnttblactions":"ক্রিয়াকলাপ","anncmnttblname":"নাম","anncmnttblpublished":"প্রকাশিত","anncmnttblreceived":"গৃহীত","anncmnttblseen":"দৃষ্ট","anncmnttblsent":"পাঠান","attributions":"গুণাবলী","author":"লেখক","badgeassignconfirmation":"আপনি কি নিশ্চিত ভাবে এই বিষয়বস্তুতে ব্যাজটি ইস্যু করতে চান?","batchdescription":"ব্যাচ এর বর্ণনা","batchdetails":"ব্যাচের বিবরণ","batchenddate":"শেষ তারিখ","batches":"ব্যাচগুলি","batchmembers":"ব্যাচের সদস্যরা","batchstartdate":"শুরুর তারিখ","birthdate":"জন্মদিন (dd / mm / yyyy)","block":"ব্লক","blocked":"অবরুদ্ধ","blockedUserError":"ব্যবহারকারীর অ্যাকাউন্ট অবরুদ্ধ করা হয়েছে। অ্যাডমিনের সাথে যোগাযোগ করুন।","blog":"ব্লগ","board":"বোর্ড / বিশ্ববিদ্যালয়","boards":"পর্ষদ","browserSuggestions":"আরও ভালো অভিজ্ঞতার জন্য  আপগ্রেড বা ইনস্টল করতে আপনাকে প্রস্তাব জানাচ্ছি","certificateIssuedTo":"এর প্রতি শংসাপত্র জারি করা হয়েছে","certificatesIssued":"শংসাপত্র জারি করা হয়েছে ","certificationAward":"সার্টিফিকেশন এবং পুরস্কার","channel":"চ্যানেল","chkuploadsts":"আপলোডের অবস্থান পরীক্ষা  করুন","chooseAll":"সব গুলি পছন্দ করুন","city":"শহর","class":"শ্রেণী","classes":"শ্রেণী","clickHere":"এখানে ক্লিক করুন","completed":"সম্পন্ন","completedCourse":"প্রশিক্ষণ সম্পন্ন","completingCourseSuccessfully":"প্রশিক্ষণটি সফলভাবে সম্পন্ন করার জন্য ","concept":"ধারণা","confirmPassword":"পাসওয়ার্ড টি সুনিশ্চিত করুন","confirmblock":"আপনি কি নিশ্চিতভাবে অবরোধ করতে চান?","connectInternet":"বিষয়বস্তুটি দেখতে দয়া করে ইন্টারনেট সংযোগ করুন","contactStateAdmin":"এই ব্যাচে  আরও অংশগ্রহণকারী যুক্ত করার জন্য আপনার  রাজ্যের অ্যাডমিনের সাথে যোগাযোগ করুন","contentCredits":"বিষয়বস্তুর কৃতিত্ব","contentcopiedtitle":"এই বিষয়বস্তুটি এর থেকে প্রাপ্ত","contentinformation":"বিষয়বস্তুর তথ্য","contentname":"বিষয়বস্তুর নাম","contents":"বিষয়বস্তু গুলি","contentsUploaded":"বিষয়বস্তু আপলোড করা হচ্ছে","contenttype":"বিষয়বস্তু","continue":"চালু রাখুন","contributors":"অবদানকারিগণ ","copy":"কপি","copyRight":"কপিরাইট","copycontent":"বিষয়বস্তু কপি করা হচ্ছে ...","country":"দেশ","countryCode":"দেশের কোড","courseCreatedBy":"এর দ্বারা সৃষ্টি","courseCredits":"ক্রেডিট সমূহ","coursecreatedon":"তৈরি করা হয়েছে এই তারিখে","coursestructure":"কোর্সের গঠন","createUserSuccessWithEmail":"আপনার ই-মেইল আই ডি টি যাচাই করা হয়েছে। অগ্রসর হতে সাইন ইন করুন।","createUserSuccessWithPhone":"আপনার ফোন নম্বর টি যাচাই করা হয়েছে। অগ্রসর হতে সাইন ইন করুন।","createdInstanceName":"{দৃষ্টান্ত} এ সৃষ্ট এর দ্বারা","createdon":"তৈরী হয়েছে ","creationdataset":"সৃষ্টি","creator":"স্রষ্টা","creators":"স্রষ্টাগণ","credits":"কৃতিত্ব","current":"বর্তমান","currentlocation":"বর্তমান অবস্থান","curriculum":"পাঠ্যক্রম","dashboardcertificateStatus":"শংসাপত্রের স্থিতি","dashboardfiveweeksfilter":"গত ৫ সপ্তাহ","dashboardfourteendaysfilter":"গত  ১৪ দিন","dashboardfrombeginingfilter":"শুরু থেকে","dashboardnobatchselected":"কোন ব্যাচ নির্বাচিত হয়নি!","dashboardnobatchselecteddesc":"উপরের তালিকা থেকে একটি ব্যাচ নির্বাচন করুন","dashboardnocourseselected":"কোন কোর্স নির্বাচিত হয়নি","dashboardnocourseselecteddesc":"উপরের তালিকা থেকে একটি কোর্স নির্বাচন করুন","dashboardnoorgselected":"কোন প্রতিষ্ঠান নির্বাচিত করেননি!","dashboardnoorgselecteddesc":"অনুগ্রহ করে উপরের তালিকা থেকে একটি প্রতিষ্ঠান নির্বাচন করুন","dashboardselectorg":"প্রতিষ্ঠান নির্বাচন করুন","dashboardsevendaysfilter":"গত ৭ দিন","dashboardsortbybatchend":"ব্যাচ শেষ এই তারিখে","dashboardsortbyenrolledon":"নিবন্ধিত হয়েছে এই তারিখে","dashboardsortbyorg":"প্রতিষ্ঠান","dashboardsortbystatus":"অবস্থা","dashboardsortbyusername":"ব্যবহারকারীর নাম","degree":"ডিগ্রী","delete":"মুছে ফেলুন ","deletenote":"নোট মুছুন","description":"বিবরণ","designation":"উপাধি","desktopAppDescription":"ডাউনলোড  করা  বিষয়বস্তু অন্বেষণ করতে বা বহিরাগত ডিভাইস থেকে বিষয়বস্তু চালাতে DIKSHA ডেস্কটপ অ্যাপ্লিকেশন ইনস্টল করুন। DIKSHA ডেস্কটপ অ্যাপ প্রদান করে","desktopAppFeature001":"বিনামূল্যে অপরিমিত বিষয়বস্তু","desktopAppFeature002":"একাধিক ভাষা সমর্থন করে","desktopAppFeature003":"বিষয়বস্তু গুলি  অফলাইন  থাকাকালীন  চালান","deviceId":"ডিভাইস আইডি","dialCode":"ডায়াল কোড","dialCodeDescription":"QR কোডটি আপনার পাঠ্য বইয়ের QR কোড চিত্রের নীচে দেওয়া ৬ সংখ্যার আলফা-নিউমেরিক কোড","dialCodeDescriptionGetPage":"QR কোড ৬ সংখ্যার আলফা-নিউমেরিক কোড যা আপনার পাঠ্য বইতে QR  কোড চিত্রের নিচে দেখতে পাবেন","dikshaForMobile":"মোবাইলের জন্য DIKSHA","district":"জেলা","dob":"জন্ম তারিখ","done":"সম্পন্ন","downloadCourseQRCode":"কোর্সের কিউআর কোড ডাউনলোড করুন ","downloadDikshaForMobile":"মোবাইলের জন্য DIKSHA  ডাউনলোড করুন","downloadQRCode":{"tooltip":"কিউআর কোড ডাউনলোড করতে হলে ক্লিক করুন এবং প্রকাশিত কোর্সের  সাথে লিংক করুন "},"downloadThe":"এই হিসাবে ডাউনলোড করুন","downloadingContent":"{বিষয়বস্তুর নাম} ডাউনলোড করার প্রস্তুতি নেওয়া হচ্ছে ...","dropcomment":"একটি মন্তব্য যুক্ত করুন","ecmlarchives":"ইসিএমএল আর্কাইভ","edit":"এডিট করুন","editPersonalDetails":"ব্যক্তিগত বিবরণের এডিট  করুন","editUserDetails":"ব্যবহারকারীর বিবরণ এডিট করুন","education":"শিক্ষা","eightCharacters":"৮ বা তার বেশি অক্ষর ব্যবহার করুন","email":"ইমেইল আইডি","emailPhonenotRegistered":"ইমেইল আইডি / ফোন {দৃষ্টান্ত} এর সাথে নিবন্ধিত নেই","emptycomments":"কোন মন্তব্য নেই","enddate":"শেষ তারিখ","enjoyedContent":"এই বিষয়বস্তুটি উপভোগ করেছেন?","enrollcourse":"কোর্সে ভর্তি হন","enrollmentenddate":"নথিভুক্তির জন্য শেষ তারিখ","enterCertificateCode":"শংসাপত্রের কোডটি এখানে লিখুন","enterDialCode":"৬ অঙ্কের  QR কোড  টি  টাইপ করুন","enterEightCharacters":"কমপক্ষে ৮ টি অক্ষর লিখুন","enterEmailID":"ইমেইল আইডি লিখুন","enterEmailPhoneAsRegisteredInAccount":"{দৃষ্টান্ত} এর সাথে নিবন্ধিত ইমেইল ঠিকানা / ফোন নম্বর লিখুন","enterName":"নাম লিখুন","enterNameNotMatch":"এন্ট্রিটি {দৃষ্টান্ত} এর সাথে নিবন্ধিত নামের সাথে মিলছে না","enterOTP":"OTP লিখুন","enterQrCode":"QR কোড  টাইপ করুন","enterValidCertificateCode":"দয়া করে বৈধ শংসাপত্র কোড লিখুন","enternameAsRegisteredInAccount":"এবং নাম যা {দৃষ্টান্ত} এর অ্যাকাউন্টে আছে ","epubarchives":"ই-পাব আর্কাইভস","errorConfirmPassword":"পাসওয়ার্ড মিলছে না","experience":"অভিজ্ঞতা","expiredBatchWarning":"ব্যাচটি এ শেষ হয়েছে  {EndDate}, তাই আপনার অগ্রগতি আপডেট করা  যাবে না","explore":"অন্বেষণ করুন","exploreContentOn":"বিষয়বস্তু অন্বেষণ করুন {instance}","explorecontentfrom":"বিষয়বস্তু অন্বেষণ করুন এখান থেকে","exportingContent":"কপি করার জন্য প্রস্তুত হচ্ছে {ContentName}  ...","exprdbtch":"মেয়াদ শেষ হয়ে গেছে","extlid":"প্রতিষ্ঠান বহিরাগত আই ডি ","facebook":"ফেসবুক","failres":"ব্যর্থতার ফলাফল","fetchingBlocks":"আমরা ব্লক আনয়ন করছি,  দয়া করে অপেক্ষা করুন","fetchingSchools":"আমরা বিদ্যালয় আনয়ন করছি ।অনুগ্রহ করে অপেক্ষা করুন","filterby":"দ্বারা ফিল্টার","filters":"ফিল্টার","first":"প্রথম","firstName":"নামের প্রথম অংশ","flaggedby":"দ্বারা পতাকাঙ্কিত","flaggeddescription":"পতাকাঙ্কিত বিবরণ","flaggedreason":"পতাকাঙ্কিত কারণ","fnameLname":"আপনার প্রথম এবং শেষ নাম লিখুন","for":"জন্য","forDetails":"বিস্তারিত জানার জন্য","forMobile":"মোবাইলের জন্য","forSearch":"এর জন্য  {searchString}","fullName":"পুরো নাম","gender":"লিঙ্গ","getUnlimitedAccess":"আপনার মোবাইল ফোনে অফলাইন পাঠ্যপুস্তক, পাঠ এবং প্রশিক্ষণের সীমাহীন সন্ধান পান।","goback":"বাতিল করা","grade":"শ্রেণী","grades":"শ্রেণী","graphStat":"লেখচিত্রের পরিসংখ্যান","h5parchives":"H5p আর্কাইভ","homeUrl":"হোম ইউ আরএল","howToUseDiksha":"কিভাবে  DIKSHA ডেস্কটপ অ্যাপ্লিকেশন ব্যবহার করবেন","howToVideo":"কিভাবে করা যায়ে তার ভিডিও","htmlarchives":"এইচটিএমএল আর্কাইভ","imagecontents":"ছবির বিষয়বস্তু","inAll":"সবগুলিতেই","inUsers":"ব্যবহারকারীদের মধ্যে","inactive":"নিষ্ক্রিয়","institute":"প্রতিষ্ঠানের নাম","isRootOrg":"মূল প্রতিষ্ঠান ","iscurrentjob":"এই টি কি আপনার বর্তমান কাজ?","itis":"এটাই","keywords":"কী-ওয়ার্ডস","language":"ভাষা (গুলির) পরিচিত","last":"সর্বশেষ","lastAccessed":"সর্বশেষে প্রবিষ্ট করা হয়েছে:","lastName":"পদবি","lastupdate":"সর্বশেষ আপডেট","learners":"শিক্ষার্থীগণ","licenseTerms":"অনুমতিপত্রের শর্তাবলী","limitsOfArtificialIntell":"কৃত্রিম বুদ্ধিমত্তার সীমাবদ্ধতা","linkCopied":"লিঙ্ক কপি করা হয়েছে  ","linkedContents":"লিঙ্কযুক্ত বিষয়বস্তু","linkedIn":"লিঙ্কডইন","location":"অবস্থান","lockPopupTitle":"{collaborator}বর্তমানে {contentName} এ কাজ করছে। পরে আবার চেষ্টা করুন।","markas":"চিহ্নিত করুন এই  হিসাবে","medium":"মাধ্যম","mentors":"পরামর্শদাতা","mergeAccount":"অ্যাকাউন্টগুলি একত্রিত করুন","mobileEmailInfoText":"DIKSHA  তে সাইন ইন করতে আপনার মোবাইল নম্বর বা ইমেল আইডি লিখুন","mobileNumber":"মোবাইল নম্বর","mobileNumberInfoText":"DIKSHA তে লগইন করার জন্য আপনার মোবাইল নাম্বার দিন","more":"অধিক","myBadges":"আমার ব্যাজ ","mynotebook":"আমার খাতা","mynotes":"আমার নোট","name":"নাম","nameRequired":"নাম প্রয়োজন","newPassword":"নতুন পাসওয়ার্ড","next":"পরবর্তী","noContentToPlay":"চালানোর জন্যে কোনো বিষয়বস্তু নেই ","noDataFound":"কোনো ডেটা পাওয়া যায় নি","offline":"আপনি অফলাইন হয়ে গেছেন","onDiksha":"{দৃষ্টান্ত} এর উপরে","online":"আপনি অনলাইন আছেন","opndbtch":"ব্যাচ খুলুন","orgCode":"প্রতিষ্ঠানের কোড","orgId":"প্রতিষ্ঠানের আইডি ","orgType":"সংস্থার প্রকার","organization":"সংগঠন","orgname":"প্রতিষ্ঠানের নাম","orgtypes":"সংস্থার প্রকার","originalAuthor":"মূল লেখক","otpMandatory":"ওটিপি বাধ্যতামূলক","otpSentTo":"ওটিপি পাঠানো হয়েছে","otpValidated":"ওটিপি সফলভাবে যাচাই করা হয়েছে","ownership":"মালিকানা","participants":"অংশগ্রহণকারিগণ","password":"পাসওয়ার্ড","passwordMismatch":"পাসওয়ার্ড মিলছে না, দয়া করে সঠিক পাসওয়ার্ড লিখুন","pdfcontents":"পিডিএফ এর বিষয়বস্তু","percentage":"শতাংশ","permanent":"স্থায়ী","phone":"ফোন নম্বর","phoneNumber":"ফোন নম্বর","phoneOrEmail":"ফোন নম্বর বা ইমেইল আইডি লিখুন","phoneRequired":"ফোন নম্বরের প্রয়োজন আছে","phoneVerfied":"ফোন  নম্বর টি যাচাইকৃত","phonenumber":"ফোন নম্বর","pincode":"পিনকোড","playContent":"বিষয়বস্তু চালান","plslgn":"এই অধিবেশনের মেয়াদ শেষ হয়ে গেছে। ব্যবহার চালিয়ে যেতে আবার লগইন করুন $ {instance} এর সাহায্যে","position":"পদ","preferredLanguage":"পছন্দসই ভাষা","previous":"আগের","processid":"প্রক্রিয়া আই ডি","profilePopup":"আপনার জন্যে প্রাসঙ্গিক বিষয়বস্তু আবিষ্কার করতে, নিম্নলিখিত বিবরণ আপডেট করুন:","provider":"প্রদানকারী প্রতিষ্ঠান","publicFooterGetAccess":"দীক্ষা প্ল্যাটফর্মে শিক্ষক, ছাত্র এবং অভিভাবকদের নির্ধারিত স্কুল পাঠ্যক্রমের প্রাসঙ্গিক শিক্ষার আকর্ষক উপাদান উপলব্ধ করানো হয়। আপনার পাঠ্যের সহজ সন্ধানের জন্য দীক্ষা অ্যাপ্লিকেশনটি ডাউনলোড করুন এবং আপনার পাঠ্যবইগুলিতে দেওয়া কিউ আর কোড স্ক্যান করুন।","publishedBy":"দ্বারা প্রকাশিত","publishedOnInstanceName":"তারিখে {দৃষ্টান্ত} এর দ্বারা প্রকাশিত","reEnterPassword":"পাসওয়ার্ড টি পুনরায় লিখুন","readless":"কম করে পড়ুন ...","readmore":"... আরো পড়ুন","receiveOTP":"আপনি কোথায় ওটিপি পেতে চান?","recoverAccount":"অ্যাকাউন্ট পুনরুদ্ধার করুন","redirectMsg":"বিষয়বস্তুটি বহির্দেশে প্রদর্শিত করা হয়েছে","redirectWaitMsg":"বিষয়বস্তু লোড হওয়ার সময় অনুগ্রহ করে অপেক্ষা করুন","removeAll":"সব মুছে ফেলুন","reportUpdatedOn":"এই রিপোর্টটি সর্বশেষে আপডেট করা হয়েছে","resendOTP":"OTP পুনরায় পাঠান","resentOTP":"OTP পুনরায় পাঠানো হয়েছে। OTP টি লিখুন","resourcetype":"সংস্থানের প্রকার","retired":"অবসরপ্রাপ্ত","returnToCourses":"প্রশিক্ষণে ফিরে আসুন","role":"ভূমিকা","roles":"ভূমিকা গুলি","rootOrg":"মূল প্রতিষ্ঠান","sameEmailId":"এই ইমেল আইডিটি  আর আপনার প্রোফাইলে যুক্ত আপনার ইমেল আইডিটি এক ","samePhoneNo":"এই মোবাইল নাম্বারটি  আর আপনার প্রোফাইলে যুক্ত নম্বরটি  এক ","school":"বিদ্যালয়","search":"অনুসন্ধান","searchForContent":"৬ অঙ্কের  QR কোড  টি  টাইপ করুন","searchUserName":"ব্যবহারকারীর নাম অনুসন্ধান করুন","seladdresstype":"ঠিকানার প্রকার নির্বাচন করুন","selectAll":"সব নির্বাচন করুন","selectBlock":"ব্লক নির্বাচন করুন","selectDistrict":"জেলা নির্বাচন করুন","selectSchool":"স্কুল নির্বাচন করুন","selectState":"রাষ্ট্র নির্বাচন করুন","selected":"নির্বাচিত","selectreason":"একটি কারণ নির্বাচন করুন","sesnexrd":"অধিবেশনটির মেয়াদ সমাপ্ত","setRole":"ব্যবহারকারীর তথ্য এডিট করুন","share":"শেয়ার করুন ","sharelink":"লিঙ্ক ব্যবহার করে শেয়ার করুন -","showLess":"কম প্রদর্শন করুন","showingResults":"ফলাফল দেখানো হচ্ছে","showingResultsFor":"ফলাফল দেখানো হচ্ছে {searchString}","signUp":"নিবন্ধন করুন","signinenrollHeader":"প্রশিক্ষণগুলি নিবন্ধিত ব্যবহারকারীদের জন্য। কোর্স অ্যাক্সেস করতে লগইন করুন।","signinenrollTitle":"এই কোর্সে ভর্তির জন্য সাইন ইন করুন","skillTags":"দক্ষতা ট্যাগ ","sltBtch":"অগ্রসর হতে  একটি ব্যাচ নির্বাচন করুন","socialmedialinks":"সোশ্যাল মিডিয়া লিংকস ","sortby":"ক্রমানুসারে","startExploringContent":"QR কোড  টাইপ করে বিষয়বস্তু অনুসন্ধান শুরু করুন","startExploringContentBySearch":"কিউআর কোড ব্যবহার করে বিষয়বস্তু অন্বেষণ করুন","startdate":"শুরুর তারিখ","state":"রাষ্ট্র","stateRecord":"রাষ্ট্রের রেকর্ড অনুযায়ী","subject":"বিষয়","subjects":"বিষয়গুলি","subjectstaught":"বিষয় (গুলি) শেখানো হয়েছে","submitOTP":"OTP জমা দিন","subtopic":"উপ-প্রসঙ্গ","successres":"সাফল্যের ফলাফল","summary":"সারাংশ","supportedLanguages":"সমর্থিত ভাষা:","tableNotAvailable":"টেবিল ভিউ এই রিপোর্টের জন্য উপলব্ধ নয়","takenote":"নোট নিন","tcfrom":"থেকে","tcno":"না","tcto":"অবধি","tcyes":"হাঁ","tenDigitPhone":"১0 ডিজিট মোবাইল নম্বর","termsAndCond":"শর্তাবলী গুলি","termsAndCondAgree":"আমি ব্যবহারের শর্তাবলীতে সম্মত","theme":"চালচিত্র","title":"খেতাব","toTryAgain":"আবার চেষ্টা করতে ","topic":"বিষয়","topics":"বিষয়","trainingAttended":"প্রশিক্ষণের উপস্থিতি","twitter":"টুইটার","unableToUpdateEmail":"ইমেইল আইডি আপডেট করতে অক্ষম?","unableToUpdateMobile":"মোবাইল নম্বর আপডেট করতে অক্ষম?","unableToVerifyEmail":"ইমেইল আইডি যাচাই  করতে অক্ষম?","unableToVerifyPhone":"ফোন নম্বর যাচাই করতে অক্ষম?","unenrollMsg":"আপনি কি এই ব্যাচ থেকে অনথিভুক্ত হতে চান?","unenrollTitle":"ব্যাচ অনথিভুক্তকরণ","uniqueEmail":"আপনার ই-মেইল আই ডি ইতিমধ্যে নিবন্ধিত","uniqueEmailId":"এই ইমেইল আইডি টি ইতিমধ্যে ব্যবহার করা হয়ে গেছে। দয়া করে অন্য ইমেইল আইডি প্রদান করুন","uniqueMobile":"এই মোবাইল নম্বরটি  ইতিমধ্যে নিবন্ধভুক্ত। অন্য কোন মোবাইল নম্বর প্রদান করুন।","uniquePhone":"আপনার ফোন নম্বর ইতিমধ্যে নিবন্ধিত","updateEmailId":"ইমেইল আইডি আপডেট করুন","updatePhoneNo":"মোবাইল নম্বর আপডেট করুন","updatecollection":"সব আপডেট করুন","updatecontent":"বিষয়বস্তু আপডেট করুন","updatedon":"আপডেট করা হয়েছে এই তারিখে ","updateorgtype":"প্রতিষ্ঠানের প্রকার আপডেট করুন","upldfile":"আপলোড করা ফাইল","uploadContent":"বিষয়বস্তু আপলোড করুন","uploadEcarFromPd":"আপনার পেন ড্রাইভ থেকে {instance} ফাইল আপলোড করুন (উদাহরণ: MATHS_01.ecar)","userFilterForm":"ব্যবহারকারীদের অনুসন্ধান করুন","userID":"ব্যবহারকারীর আই ডি ","userId":"ব্যবহারকারীর আইডি ","userType":"ব্যবহারকারীর প্রকার","username":"ব্যবহারকারীর নাম","validEmail":"একটি বৈধ ইমেইল আইডি লিখুন","validFor":"৩০ মিনিটের জন্য বৈধ","validPassword":"একটি বৈধ পাসওয়ার্ড লিখুন","validPhone":"একটি বৈধ ১০ অঙ্কের ফোন নম্বর লিখুন","verifyingCertificate":"আপনার শংসাপত্র যাচাই করা হচ্ছে","versionKey":"সংস্করণ:","videos":"ভিডিও","view":"দেখুন","viewless":"কম করে দেখুন","viewmore":"আরো দেখুন","viewworkspace":"আপনার কর্মক্ষেত্র দেখুন","watchCourseVideo":"ভিডিও দেখুন","watchVideo":"ভিডিও দেখুন","whatsQRCode":"QR কোড কি?","whatwentwrong":"কি ভুল হয়েছে?","whatwentwrongdesc":"কি ভুল হয়েছে জানাবেন। দয়া করে সঠিক কারণ উল্লেখ করুন যাতে আমরা যত তাড়াতাড়ি সম্ভব এর পর্যালোচনা করে এই সমস্যাটির সমাধান করতে পারি। আপনার প্রতিক্রিয়ার জন্য ধন্যবাদ!","willsendOTP":"আমরা আপনাকে একটি ওটিপি পাঠাবো, এবং ওটিপির বৈধতা যাচাই করার পরে, আপনি আপনার অ্যাকাউন্টটি পুনরুদ্ধার করতে সক্ষম হবেন।","worktitle":"পেশা / কাজের শিরোনাম","wrongEmailOTP":"আপনি একটি ভুল OTP লিপিবদ্ধ করেছেন। আপনার ইমেইল আই ডি তে প্রাপ্ত OTP লিপিবদ্ধ করুন। OTP টি শুধুমাত্র ৩০ মিনিটের জন্য বৈধ।","wrongPhoneOTP":"আপনি একটি ভুল ওটিপি লিপিবদ্ধ করেছেন। আপনার ফোন নম্বরে প্রাপ্ত ওটিপি লিপিবদ্ধ করুন। ওটিপি টি শুধুমাত্র 30 মিনিটের জন্য বৈধ।","yop":"পাসের সন","indPhoneCode":91,"manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","noCreditsAvailable":"No credits available","errorMessage":"Error message","externalId":"External Id","lang":"Language","recentlyAdded":"Recently Added","contentType":"Content Type","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","releaseDateKey":"Release Date:","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from","noBookfoundTitle":"Board is adding books","noBookfoundSubTitle":"Your board is yet to add more books. Tap the button to see more books and content on {instance}","noBookfoundButtonText":"See more books and contents"},"btn":{"add":"যুক্ত করুন","addToLibrary":"আমার লাইব্রেরিতে ডাউনলোড করুন","addedToLibrary":"গ্রন্থাগারে সংযুক্ত করা হয়েছে","addingToLibrary":"গ্রন্থাগারে যুক্ত করা হচ্ছে","apply":"প্রয়োগ করুন","browse":"অনলাইন ব্রাউজ করুন","cancel":"বাতিল","cancelCapitalize":"বাতিল","clear":"পরিষ্কার করুন","close":"বন্ধ করুন","contentImport":"ফাইল গুলি আপলোড করুন","copyLink":"লিংক কপি করুন","create":"সৃষ্টি করুন","download":"ডাউনলোড","downloadCertificate":"শংসাপত্র ডাউনলোড করুন","downloadCompleted":"ডাউনলোড সম্পন্ন হয়েছে","downloadDikshaForWindows":"Window (64-bit) এর জন্য ডাউনলোড করুন","downloadFailed":"ডাউনলোড ব্যর্থ হয়েছে","downloadInstruction":"ডাউনলোডের নির্দেশাবলী দেখুন","downloadManager":"আমার ডাউনলোডসমূহ ","downloadPdf":"সাহায্য","downloadPending":"ডাউনলোড মুলতুবি রয়েছে","edit":"সম্পাদন করা","enroll":"প্রশিক্ষণে যোগ দিন","export":"পেন ড্রাইভে কপি করুন","login":"লগ ইন করুন ","merge":"একত্রিত করুন ","myLibrary":"আমার গ্রন্থাগার","next":"পরবর্তী","no":"না","ok":"ঠিক আছে","previous":"আগের","remove":"সরিয়ে ফেলুন","reset":"পুনরায় স্থাপন করুন","resume":"জীবনবৃত্তান্ত","resumecourse":"কোর্স পুনরায় শুরু করুন","save":"সংরক্ষণ করুন","selectContentFiles":"ফাইল (গুলি) নির্বাচন করুন","selectLanguage":"ভাষা নির্বাচন করুন ","selrole":"ভূমিকা নির্বাচন করুন","signin":"প্রবেশ করুন","signup":"নিবন্ধন করুন","smplcsv":"নমুনা সিএসভি ডাউনলোড করুন","submit":"জমা দিন","submitbtn":"জমা দিন","tryagain":"আবার চেষ্টা করুন","unenroll":"অনথিভুক্ত করুন","update":"আপডেট","uploadorgscsv":"প্রতিষ্ঠানের সিএসভি ফাইল আপলোড করুন","uploadusrscsv":"ব্যবহারকারীর সিএসভি আপলোড করুন","verify":"যাচাই করুন","viewCourseStatsDashboard":"প্রশিক্ষণের ড্যাশবোর্ড দেখুন","viewcoursestats":"কোর্সের পরিসংখ্যান দেখুন","viewless":"কম করে দেখুন","viewmore":"আরো দেখুন","yes":"হাঁ","yesiamsure":"ব্যাজ প্রদান করুন ","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"মহিলা","male":"পুরুষ","transgender":"ট্রান্স-জেন্ডার "},"instn":{"t0002":"আপনি একটি সিএসভি ফাইলে একসঙ্গে ১৯৯ টি সংগঠনের বিবরণ যুক্ত বা আপলোড করতে পারেন","t0007":"প্রতিষ্ঠানের নাম কলামটি বাধ্যতামূলক। এই কলামে প্রতিষ্ঠানের নাম লিপিবদ্ধ করুন","t0011":"আপনি প্রক্রিয়া আইডি ব্যবহার করে অগ্রগতি অনুসরণ করতে পারেন","t0012":"আপনার রেফারেন্সের জন্য প্রক্রিয়া আইডি টি সংরক্ষণ করুন।  আপনি  এই প্রক্রিয়া আইডি টি দিয়ে অগ্রগতি ট্র্যাক করতে পারেন","t0013":"রেফারেন্সের জন্য csv ফাইল ডাউনলোড করুন","t0015":"প্রতিষ্ঠান আপলোড করুন","t0016":"ব্যবহারকারী দের আপলোড করুন","t0020":"একটি দক্ষতা যুক্ত করতে টাইপ করতে শুরু করুন","t0021":"প্রতিটি প্রতিষ্ঠানের নাম পৃথক সারিতে লিপিবদ্ধ করুন","t0022":"অন্যান্য সকল কলামে বিস্তারিত লিপিবদ্ধ করা ঐচ্ছিক:","t0023":"মূল প্রতিষ্ঠান: এই কলামের জন্য বৈধ মান সত্য/ মিথ্যা","t0024":"চ্যানেল: মাস্টার সংগঠনের সৃষ্টির সময় প্রদান করা অনন্য আইডি","t0025":"বহিরাগত আই ডি: প্রতিটি প্রতিষ্ঠানের সংগ্রহস্থলের প্রশাসনিক পরিচালনার জন্যে প্রতিষ্ঠানের সাথে যুক্ত অনন্য আই ডি","t0026":"প্রদানকারী: প্রশাসক প্রতিষ্ঠানের চ্যানেল আইডি","t0027":"বিবরণ: প্রতিষ্ঠানের বিশদ বর্ণনা","t0028":"হোম ইউআরএল: প্রতিষ্ঠানের হোম পেজের ইউআরএল","t0029":"অর্গ কোড: সংস্থার অনন্য কোড, যদি থাকে,","t0030":"অর্গ টাইপ: প্রতিষ্ঠানের প্রকার, যেমন এনজিও, প্রাথমিক বিদ্যালয়, মাধ্যমিক স্কুল ইত্যাদি","t0031":"পছন্দসই ভাষা: প্রতিষ্ঠানের জন্য পছন্দ করা ভাষা, যদি থাকে","t0032":"বিশদ যোগাযোগ: প্রতিষ্ঠানের ফোন নম্বর এবং ইমেল আই ডি। বিস্তারিত বিবরণ কোঁকড়ানো বন্ধনীর মধ্যে একক উদ্ধৃতি দিয়ে লিপিবদ্ধ করা উচিত। উদাহরণস্বরূপ: [{'ফোন নম্বর': '১২৩৪৫৬৭৮৯০'}]","t0049":"রুট অর্গ কলামের মান সত্য হলে চ্যানেল আবশ্যিক ","t0050":"বহিরাগত আইডি এবং প্রদানকারী পারস্পরিক বাধ্যতামূলক","t0055":"ওহ্ ,ঘোষণার  বিশদ বিবরণ পাওয়া যাচ্ছে না!","t0056":"অনুগ্রহ করে আবার চেষ্টা করুন.","t0058":"ডাউনলোড করুন এই হিসাবে:","t0059":"CSV","t0060":"ধন্যবাদ!","t0061":"ওহো ...","t0062":"আপনি এখনো এই কোর্সের জন্য একটি ব্যাচ ও তৈরি করেননি। নতুন ব্যাচ তৈরি করুন এবং আবার ড্যাশবোর্ড চেক করুন।","t0063":"আপনি এখনো কোন কোর্স তৈরি করেনি। নতুন কোর্স তৈরি করুন এবং আবার ড্যাশবোর্ড চেক করুন।","t0064":"একই প্রকারের একাধিক ঠিকানা নির্বাচিত করেছেন। দয়া করে কোন একটির পরিবর্তন করুন।","t0065":"ডাউনলোড","t0070":"সিএসভি ফাইল ডাউনলোড করুন। এক একটি নির্দিষ্ট প্রতিষ্ঠানের ব্যবহারকারীগণদের একটি সি এস ভি ফাইলের মধ্যে একসাথে আপলোড করা যেতে পারে।","t0071":"ব্যবহারকারী অ্যাকাউন্টের নিম্নলিখিত বাধ্যতামূলক বিবরণ লিখুন:","t0072":"প্রথম নাম: ব্যবহারকারীর নামের প্রথমাংশ, বর্ণমালা মান।","t0073":"ফোন বা ইমেইল: ব্যবহারকারীর ফোন নম্বর (দশ অঙ্কের মোবাইল নম্বর) অথবা ইমেল আই ডি। উভয়ের একটি অবশ্যই প্রদান করতে হবে, তবে, দুটিই উপলব্ধ থাকলে তা প্রদান করা সমীচীন হবে। ","t0074":"ব্যবহারকারীর নাম: প্রতিষ্ঠানের দ্বারা ব্যবহারকারী কে  একটি  আলফা নিউমেরিক প্রকারের অনন্য নাম বরাদ্দ  করা হয়েছে।","t0076":"দ্রষ্টব্য: সিএসভি ফাইলের অন্যান্য কলামগুলি ঐচ্ছিক, এইগুলি পূরণ করার বিশদ বিবরণের জন্য এই টি পরুন","t0077":"ব্যবহারকারী নিবন্ধন করুন।","t0078":"অবস্থান আই ডি: একটি আই ডি যা একটি নির্দিষ্ট প্রতিষ্ঠানের জন্য একটি ঘোষণার বিষয় চিহ্নিত করে","t0079":"অবস্থান কোড: কমা-দ্বারা পৃথক অবস্থান-কোডের তালিকা","t0081":"DIKSHA তে সাইন আপ করার জন্য আপনাকে ধন্যবাদ। আমরা  আপনার ফোন নম্বর যাচাই করার জন্য একটি  OTP  এসএমএস করেছি। রেজিস্ট্রেশান সম্পূর্ণ করার জন্য OTP টির সাহায্যে আপনার ফোন নম্বরের সত্যতা প্রতিপন্ন করুন।","t0082":"DIKSHA তে সাইন আপ করার জন্য আপনাকে ধন্যবাদ। আমরা আপনার ইমেইল আইডি যাচাইয়ের জন্য একটি ইমেইল ওটিপি পাঠিয়েছি। রেজিস্ট্রেশন প্রক্রিয়াটি সম্পূর্ণ করতে ওটিপি টির সাহায্যে আপনার ইমেইল ঠিকানাটি যাচাই করুন।","t0083":"আপনি মোবাইল নম্বর যাচাইকরণের জন্য ওটিপি  সহকারে একটি এসএমএস পাবেন।","t0084":"আপনি ইমেল আইডি যাচাইকরণের জন্য OTP  সহকারে একটি ইমেল পাবেন।","t0085":"রিপোর্ট প্রথম ১0,000 অংশগ্রহণকারীদের  তথ্য দেখায়। ব্যাচের সকল অংশগ্রহণকারীদের অগ্রগতি দেখতে ডাউনলোডের উপর ক্লিক করুন।","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"নোট বা শিরোনামের জন্য অনুসন্ধান করুন","t0002":"আপনার মন্তব্য যুক্ত করুন","t0005":"ব্যাচের পরামর্শদাতা নির্বাচন করুন","t0006":"ব্যাচের সদস্য নির্বাচন করুন"},"lnk":{"announcement":"ঘোষণার ড্যাশবোর্ড","assignedToMe":"আমার জন্য বরাদ্দ ","contentProgressReport":"বিষয়বস্তুর অগ্রগতি রিপোর্ট","contentStatusReport":"বিষয়বস্তুর  স্ট্যাটাস রিপোর্ট","createdByMe":"আমার দ্বারা সৃষ্ট","dashboard":"প্রশাসকের ড্যাশবোর্ড","detailedConsumptionMatrix":"বিস্তারিত খরচের ম্যাট্রিক্স","detailedConsumptionReport":"বিস্তারিত খরচের রিপোর্ট","footerContact":"প্রশ্নের জন্য যোগাযোগ করুন:","footerDIKSHAForMobile":"মোবাইলের জন্য DIKSHA","footerDikshaVerticals":"দীক্ষা ভার্টিক্যালস","footerHelpCenter":"সাহায্য কেন্দ্র","footerPartners":"অংশীদার","footerTnC":"ব্যবহারের শর্তাবলী","logout":"প্রস্থান","myactivity":"আমার কার্যকলাপ","profile":"প্রোফাইল","textbookProgressReport":"পাঠ্যপুস্তকের অগ্রগতি রিপোর্ট","viewall":"সব দেখুন ","workSpace":"কর্মস্থান"},"pgttl":{"takeanote":"একটি নোট নিন"},"prmpt":{"deletenote":"আপনি কি নিশ্চিত ভাবে এই নোট মুছে ফেলতে চান?","enteremailID":"আপনার ইমেইল আইডি লিখুন","enterphoneno":"১0 ডিজিট মোবাইল ফোন নম্বর লিখুন","search":"অনুসন্ধান করুন","userlocation":"অবস্থান"},"scttl":{"blkuser":"ব্যবহারকারীকে অবরুদ্ধ করুন","contributions":"অবদানকারী(গণ)","instructions":"নির্দেশাবলী:","signup":"নিবন্ধন করুন","todo":"করণীয়","error":"Error:"},"snav":{"shareViaLink":"লিংকের মাধ্যমে শেয়ার করা হয়েছে ","submittedForReview":"পর্যালোচনার জন্য জমা দেওয়া হয়েছে"},"tab":{"all":"সব","community":"শ্রেণী","courses":"কোর্সসমূহ ","help":"সাহায্য","home":"মূল ","profile":"প্রোফাইল","resources":"গ্রন্থাগার","users":"ব্যবহারকারীগণ","workspace":"কর্মস্থান","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"প্রশিক্ষণ সম্পন্ন হয়েছে","messages":{"emsg":{"m0001":"এখন নথিভুক্ত করা যাবে না। পরে আবার চেষ্টা করুন","m0003":"আপনার প্রদানকারীর  আই ডি এবং বহিরাগত আই ডি বা সংস্থার আই ডি লিপিবদ্ধ করা উচিত","m0005":"কিছু ভুল হয়েছে, দয়া করে কিছু সময় পরে চেষ্টা করুন ....","m0007":"আয়তন কম হতে হবে এর থেকে","m0008":"বিষয়বস্তু কপি করতে অক্ষম। পরে আবার চেষ্টা করুন","m0009":"এখন অনথিভুক্ত করা যাচ্ছে না। পরে আবার চেষ্টা করুন","m0014":"মোবাইল নম্বর আপডেট করা ব্যর্থ হয়েছে","m0015":"ইমেল আইডি আপডেট করা ব্যর্থ হয়েছে","m0016":"রাজ্যের আনয়ন ব্যর্থ হয়েছে। কিছু পরে আবার চেষ্টা করুন","m0017":"জেলার আনয়ন ব্যর্থ হয়েছে। পরে আবার চেষ্টা করুন","m0018":"প্রোফাইল আপডেট করা ব্যর্থ হয়েছে","m0019":"রিপোর্ট ডাউনলোড করতে অক্ষম, পরে আবার চেষ্টা করুন","m0020":"ব্যবহারকারীর আপডেট ব্যর্থ হয়েছে। পরে আবার চেষ্টা করুন","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"নথিভুক্ত প্রশিক্ষণ আনয়ন ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0002":"অন্যান্য কোর্স আনয়ন ব্যর্থ হয়েছে, পরে আবার চেষ্টা করুন...","m0003":"কোর্স সময়সূচীর বিস্তারিত প্রাপ্তিতে অক্ষম।","m0004":"তথ্যাদি আনয়ন ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0030":"নোট তৈরি করা ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0032":"নোটটিকে সরিয়ে দেওয়া ব্যর্থ হয়েছে, অনুগ্রহ করে পরে আবার চেষ্টা করুন ...","m0033":"নোট আনয়ন ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0034":"নোট আপডেট করা ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0041":"শিক্ষা মুছে ফেলা ব্যর্থ হয়েছে। অনুগ্রহ করে একটু পরে আবার চেষ্টা করুন...","m0042":"অভিজ্ঞতা মুছে ফেলা ব্যর্থ হয়েছে। ","m0043":"ঠিকানা মুছে ফেলতে ব্যর্থ হয়েছে। অনুগ্রহ করে একটু পরে আবার চেষ্টা করুন...","m0048":"ব্যবহারকারীর প্রোফাইল আপডেট করা ব্যর্থ হয়েছে, দয়া করে কিছু পরে আবার চেষ্টা করুন ...","m0049":"তথ্য লোড করতে অক্ষম।","m0050":"অনুরোধ জমা দেওয়া ব্যর্থ হয়েছে, অনুগ্রহ করে পরে আবার চেষ্টা করুন ...","m0051":"কিছু ভুল হয়েছে। দয়া করে পরে আবার চেষ্টা করুন...","m0054":"ব্যাচের বিস্তারিত আনয়ন ব্যর্থ হয়েছে, কিছু পরে আবার চেষ্টা করুন...","m0056":"ব্যবহারকারীর তালিকা আনয়ন ব্যর্থ হয়েছে, কিছু পরে আবার চেষ্টা করুন...","m0076":"দয়া করে বাধ্যতামূলক ক্ষেত্র লিপিবদ্ধ করুন","m0077":"অনুসন্ধান ফলাফল আনয়ন ব্যর্থ হয়েছে ..","m0079":"ব্যাজ বরাদ্দ করা ব্যর্থ হয়েছে, দয়া করে পরে আবার চেষ্টা করুন ...","m0080":"ব্যাজ আনয়ন ব্যর্থ হয়েছে, অনুগ্রহ করে পরে আবার চেষ্টা করুন ...","m0082":"এই কোর্সটি ভর্তির জন্য খোলা হয়নি","m0085":"একটি প্রযুক্তিগত  ত্রুটি   ছিল। আবার চেষ্টা করুন ","m0086":"এই কোর্সটি লেখক দ্বারা অবসৃত করা হয়েছে অতএব এটি আর উপলব্ধ নেই","m0087":"অনুগ্রহ করে অপেক্ষা করুন","m0088":"আমরা বিস্তারিত বিবরণ আনয়ন করছি।","m0089":"কোন বিষয় / উপ-বিষয় খুঁজে পাওয়া যায়নি","m0090":"ডাউনলোড ব্যর্থ হয়েছে। অনুগ্রহ করে একটু পরে আবার চেষ্টা করুন।","m0091":"কন্টেন্ট  কপি করা যায়নি। পরে আবার চেষ্টা করুন","m0093":"{FailedContentLength} বিষয়বস্তু (গুলির) আপলোড ব্যর্থ হয়েছে","m0094":"ডাউনলোড করা যায়নি, পরে আবার চেষ্টা করুন ...","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"এই প্রশিক্ষণটি অনুপযুক্ত হিসাবে পতাকাঙ্কিত এবং বর্তমানে পর্যালোচনার অধীন। দয়া করে আবার পরে পরীক্ষণ করুন।","m0005":"দয়া করে একটি বৈধ চিত্রের ফাইল আপলোড করুন। সমর্থিত ফাইলের প্রকার: jpeg, jpg, png। সর্বোচ্চ আয়তন: ৪ এমবি","m0017":"প্রোফাইল এর সম্পূর্ণতা।","m0022":"বিগত ৭ দিনের পরিসংখ্যান","m0023":"বিগত ১৪ দিনের পরিসংখ্যান","m0024":"বিগত ৫ সপ্তাহের পরিসংখ্যান","m0025":"শুরু থেকে পরিসংখ্যান","m0026":"এই কোর্সটি এখন আপাতত উপলব্ধ নয়। সম্ভবত এর সৃষ্টা এতে কিছু পরিবর্তন করেছেন।","m0027":"এই বিষয়বস্তুটি এখন উপলব্ধ নয়। এটির সৃষ্টা সম্ভবত বিষয়বস্তুতে কিছু পরিবর্তন করেছেন।","m0034":"যেহেতু বিষয়বস্তুটি একটি বহিরাগত উৎস থেকে, এটি  একটু পর খোলা হবে।","m0035":"অননুমোদিত প্রবেশ","m0036":"বিষয়বস্তুটি বাহ্যিকভাবে হোস্ট করা হয়েছে, বিষয়বস্তুটি দেখতে দয়া করে এর পূর্বরূপ এ ক্লিক করুন","m0040":"ক্রিয়াপ্রণালী এখনও চলছে, দয়া করে কিছু সময় পরে চেষ্টা করুন।","m0041":"আপনার প্রোফাইল","m0042":"% সম্পূর্ণ","m0043":"আপনার প্রোফাইলে কোনো বৈধ ইমেইল আই ডি নেই। আপনার ইমেইল আই ডি আপডেট করুন।","m0044":"ডাউনলোড ব্যর্থ হয়েছে","m0045":"ডাউনলোড ব্যর্থ হয়েছে। দয়া করে কিছুক্ষণ পরে আবার চেষ্টা করুন।","m0047":"আপনি শুধুমাত্র 100  জন অংশগ্রহণকারীদের নির্বাচন করতে পারেন","m0060":"আপনার যদি {দৃষ্টান্ত} এর সাথে দুটি অ্যাকাউন্ট থাকে তবে ক্লিক করুন","m0061":"প্রতি","m0062":"অন্যথায়, ক্লিক করুন","m0063":"উভয় অ্যাকাউন্টের ব্যবহারের বিশদ একত্রিত করুন, এবং","m0064":"অন্য অ্যাকাউন্টটি বাদ দিন","m0065":"অ্যাকাউন্টের একত্রীকরণ সফলভাবে শুরু হয়েছে","m0066":"এটি সম্পূর্ণ হয়ে গেলে আপনাকে অবহিত করা হবে","m0067":"অ্যাকাউন্টের একত্রীকরণ শুরু হয়নি। দয়া করে পরে আবার চেষ্টা করুন","m0072":"ভুল পাসওয়ার্ড লেখার কারণে অ্যাকাউন্টগুলির একত্রীকরণ করা যায়নি","m0073":"নতুন {দৃষ্টান্ত} অ্যাকাউন্ট বানাতে হলে 'ওকে' তে ক্লিক করুন ","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"নোট সফলভাবে তৈরি হয়েছে ...","m0013":"নোট সফলভাবে আপডেট করা হয়েছে ...","m0014":"শিক্ষা সফলভাবে মুছে ফেলা হয়েছে","m0015":"অভিজ্ঞতা সফলভাবে মুছে ফেলা হয়েছে","m0016":"ঠিকানা সফলভাবে মুছে ফেলা হয়েছে","m0018":"প্রোফাইল চিত্র সফলভাবে আপডেট করা হয়েছে","m0019":"বিবরণ সফলভাবে আপডেট করা হয়েছে","m0020":"শিক্ষা সফলভাবে আপডেট করা হয়েছে","m0021":"অভিজ্ঞতা সফলভাবে আপডেট করা হয়েছে","m0022":"অতিরিক্ত তথ্য সফলভাবে আপডেট করা হয়েছে","m0023":"ঠিকানা সফলভাবে আপডেট করা হয়েছে ","m0024":"নতুন শিক্ষা সফলভাবে যুক্ত করা হয়েছে","m0025":"নতুন অভিজ্ঞতা সফলভাবে যুক্ত করা হয়েছে","m0026":"নতুন ঠিকানা সফলভাবে যুক্ত করা হয়েছে","m0028":"ভূমিকা সফলভাবে আপডেট করা হয়েছে","m0029":"ব্যবহারকারী সফলভাবে মুছে ফেলা হয়েছে","m0030":"ব্যবহারকারী সফলভাবে আপলোড করা হয়েছে ","m0031":"প্রতিষ্ঠান সফলভাবে আপলোড করা হয়েছে","m0032":"অবস্থা সফলভাবে আনীত","m0035":"প্রতিষ্ঠানের প্রকার সফলভাবে যুক্ত করা হয়েছে","m0036":"ব্যাচ টি সফলভাবে এই কোর্সে ভর্তি হয়েছে","m0037":"সফলভাবে আপডেট করা হয়েছে","m0038":"দক্ষতা সফলভাবে আপডেট করা হয়েছে","m0039":"সাইন আপ সফলভাবে হয়েছে, দয়া করে লগ ইন করুন...","m0040":"প্রোফাইল ক্ষেত্রের দৃশ্যমানতা সফলভাবে আপডেট করা হয়েছে ","m0042":"বিষয়বস্তু সফলভাবে কপি করা হয়েছে","m0043":"অনুমোদন সফল","m0044":"ব্যাজ সফলভাবে নির্ধারিত হয়েছে ...","m0045":"ব্যবহারকারী সফলভাবে ব্যাচ থেকে অনথিভুক্ত হয়েছে ...","m0046":"প্রোফাইল সফলভাবে আপডেট করা হয়েছে...","m0047":"আপনার মোবাইল নম্বর আপডেট করা হয়েছে।","m0048":"আপনার ইমেইল আইডি আপডেট করা হয়েছে","m0049":"ব্যবহারকারী সফলভাবে আপডেট করা হয়েছে","m0050":"এই বিষয়বস্তু টির মান নির্ধারণ করার জন্য ধন্যবাদ!","m0053":"ডাউনলোড করা হচ্ছে ...","m0054":"{UploadedContentLength} বিষয়বস্তু (গুলি) সফলভাবে আপলোড করা হয়েছে","m0055":"আপডেট করা হচ্ছে ...","m0056":"বিষয়বস্তুটি আপডেট করার জন্য আপনাকে অনলাইন থাকতে হবে","moo41":"ঘোষণা সফলভাবে বাতিল করা হয়েছে ...","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"কোন ফলাফল পাওয়া যায়নি","m0007":"আপনার অনুসন্ধান পরিমার্জন করুন","m0008":"কোন ফলাফল নেই","m0009":"চালাতে অক্ষম, আবার চেষ্টা করুন অথবা বন্ধ করুন।","m0022":"পর্যালোচনার জন্য আপনার যেকোনো একটি খসড়া জমা দিন। বিষয়বস্তু শুধুমাত্র পর্যালোচনার পরে প্রকাশিত হয়","m0024":"একটি নথি, ভিডিও, বা অন্য কোন সমর্থিত বিন্যাসের ফাইল আপলোড করুন। আপনি এখনো কিছু আপলোড করেননি ","m0033":"পর্যালোচনার জন্য আপনার খসড়াগুলির  মধ্যেযে কোন একটি জমা দিন। আপনি এখনও পর্যন্ত পর্যালোচনার জন্য কোন বিষয়বস্তু জমা দেননি","m0035":"পর্যালোচনা করার জন্য কোন বিষয়বস্তু নেই","m0060":"আপনার প্রোফাইল  মজবুত করুন","m0062":"বৈধ ডিগ্রী লিখুন","m0063":"বৈধ ঠিকানার প্রথম লাইন লিখুন","m0064":"শহরের নাম লিখুন","m0065":"বৈধ পিন কোড লিখুন","m0066":"নামের প্রথমাংশ লিখুন","m0067":"অনুগ্রহ করে বৈধ ফোন নম্বর দিন","m0069":"ভাষা নির্বাচন করুন","m0070":"প্রতিষ্ঠানের নাম লিখুন","m0072":"বৈধ জীবিকা / কাজের শিরোনাম লিখুন","m0073":"বৈধ প্রতিষ্ঠান লিখুন","m0077":"আমরা আপনার অনুরোধ জমা দিচ্ছি ...","m0080":"দয়া করে শুধুমাত্র csv ফরম্যাটের ফাইল আপলোড করুন","m0081":"কোন ব্যাচ খুঁজে পাওয়া যায়নি","m0083":"আপনি এখনও বিষয়বস্তুটি কারো সাথে  ভাগ  করেননি","m0087":"একটি বৈধ ব্যবহারকারী নাম লিখুন, অন্তত ৫ অক্ষর থাকতে হবে","m0088":"দয়া করে একটি বৈধ পাসওয়ার্ড প্রদান করুন","m0089":"দয়া করে একটি বৈধ ইমেইল প্রদান করুন","m0090":"ভাষা নির্বাচন করুন","m0091":"দয়া করে একটি বৈধ ফোন নম্বর প্রদান করুন","m0094":"বৈধ শতাংশ লিখুন","m0095":"আপনার অনুরোধ সফলভাবে গৃহীত হয়েছে। ফাইল কিছু পরেই আপনার নিবন্ধিত ইমেইল এ পাঠানো হবে। দয়া করে, নিয়মিত আপনার ইমেইল চেক করুন।","m0104":"বৈধ শ্রেণী লিখুন","m0108":"আপনার অগ্রগতি","m0113":"একটি বৈধ সূচনার তারিখ প্রদান করুন","m0116":"নির্বাচিত নোট মুছে ফেলা হচ্ছে ...","m0120":"চালানোর জন্য কোন বিষয়বস্তু নেই","m0121":"শীঘ্রই আসছে!","m0122":"আমরা এই জন্য বিষয়বস্তু গুলি তৈরি করছি।","m0123":"আপনাকে একজন সহযোগী হিসাবে যুক্ত করতে কোন এক বন্ধু কে অনুরোধ করুন। আপনাকে ইমেলের মাধ্যমে এই সম্মন্ধে বিজ্ঞাপিত করা হবে।","m0125":"পাঠ্য-সম্পদ, বই, কোর্স, সংগ্রহ, বা আপলোড  তৈরিকরা শুরু করুন। এই মুহুর্তে আপনার কোন কাজের অগ্রগতির খসড়া নেই","m0126":"অনুগ্রহ করে পর্ষদ নির্বাচন করুন","m0127":"অনুগ্রহ করে মাধ্যম নির্বাচন করুন","m0128":"অনুগ্রহ করে শ্রেণী নির্বাচন করুন","m0129":"শর্তাবলী লোড হচ্ছে।","m0130":"আমরা জেলা আনয়ন করছি","m0131":"কোন রিপোর্ট পাওয়া যায়নি","m0132":"আমরা আপনার অনুরোধ পেয়েছি। ফাইল শীঘ্রই আপনার নিবন্ধিত ইমেইল আই ডিতে পাঠানো হবে","m0133":"ডেস্কটপ অ্যাপ্লিকেশন  টি ব্যবহার করতে বিষয়বস্তু  ব্রাউজ, ডাউনলোড, অথবা  আপলোড করুন ","m0134":"নিয়োগ","m0135":"একটি বৈধ তারিখ লিখুন","m0136":"নথিভুক্তির জন্য শেষ তারিখ:","m0138":"ব্যর্থ হয়েছে","m0139":"ডাউনলোড করা হয়েছে","m0140":"ডাউনলোড করা হচ্ছে","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"}},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again  later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"প্রতিষ্ঠানের নাম","participants":"অংশগ্রহণকারিগণ","resourceService":{"frmelmnts":{"lbl":{"userId":"ব্যবহারকারীর আই ডি "}}},"t0065":"ফাইল ডাউনলোড করুন"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"You don't have any published content...","m0023":"We are fetching uploaded content...","m0024":"You don't have any uploaded content...","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"You don't have any content for review...","m0034":"We are deleting the content...","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You don't have any limited publish content...","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"You are not collaborating on any content yet","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"No content to display. Start Creating Now","m0035":"There is no content to review","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
diff --git a/src/app/resourcebundles/json/en.json b/src/app/resourcebundles/json/en.json
index a5a6a1c0fd1b20c30ec0b4a9e9882355f831d1f1..3cb43e80884d8d91b44a7ba457c6b754e7e50c59 100644
--- a/src/app/resourcebundles/json/en.json
+++ b/src/app/resourcebundles/json/en.json
@@ -1 +1 @@
-{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"There are no participants in this batch","offline":"You are offline","online":"You are online","connectInternet":"To browse content, connect to the Internet","uploadEcarFromPd":"Upload {instance} files (eg: MATHS_01.ecar) from your pen drive","howToVideo":"How to video","subtopic":"Subtopic","limitsOfArtificialIntell":"Limits of artificial intelligence","howToUseDiksha":"How to use {instance} desktop app","watchVideo":"See Video","manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","recoverAccount":"Recover Account","mergeAccount":"Merge Account","enterEmailID":"Enter email address","phoneRequired":"Mobile number is required","validEmail":"Enter a valid email address","emailPhonenotRegistered":"Email address / Mobile number is not registered with {instance}","enterName":"Enter name","enterNameNotMatch":"The entry does not match the name registered with {instance}","receiveOTP":"Where would you like to receive the OTP?","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","otpSentTo":"OTP has been sent to","itis":"It is","validFor":"valid for 30 min","otpMandatory":"OTP is mandatory","otpValidated":"OTP validated successfully","newPassword":"New Password","enterEightCharacters":"Enter at least 8 characters","passwordMismatch":"Password mismatch, enter the correct password","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","enternameAsRegisteredInAccount":"and the name as on the {instance} account","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"Mobile":"Mobile","SearchIn":"Search in {searchContentType}","Select":"Select","aboutthecourse":"Training Information","active":"Active","addDistrict":"Add District","addEmailID":"Add Email address","addPhoneNo":"Add Mobile Number","addState":"Add State","addlInfo":"Additional Information","addnote":"TAKE NOTES","addorgtype":"Add Organization Type","address":"Address","addressline1":"Address Line 1","addressline2":"Address Line 2","anncmnt":"Announcement","anncmntall":"All Announcements","anncmntcancelconfirm":"Are you sure you want to stop showing this announcement?","anncmntcancelconfirmdescrption":"Users will not be able to see this announcement after this action","anncmntcreate":"CREATE ANNOUNCEMENT","anncmntdtlsattachments":"Attachments","anncmntdtlssenton":"Sent on","anncmntdtlsview":"View","anncmntdtlsweblinks":"Weblinks","anncmntinboxannmsg":"Announcements","anncmntinboxseeall":"See All","anncmntlastupdate":"Consumption data last updated on","anncmntmine":"My Announcements","anncmntnotfound":"No announcement found !","anncmntoutboxdelete":"Delete","anncmntoutboxresend":"Resend","anncmntplzcreate":"Please create announcement","anncmntreadmore":"... Read More","anncmntsent":"Showing all sent announcements","anncmnttblactions":"Actions","anncmnttblname":"Name","anncmnttblpublished":"Published","anncmnttblreceived":"Received","anncmnttblseen":"Seen","anncmnttblsent":"Sent","attributions":"Attributions","author":"Author","authorofsourcecontent":"Author of Source Content","badgeassignconfirmation":"Are you sure you want to issue the badge to this content?","batchdescription":"DESCRIPTION OF BATCH","batchdetails":"Batch Details","batchenddate":"End Date","batches":"Batches","batchmembers":"MEMBERS OF BATCH","batchstartdate":"Start Date","birthdate":"Birthdate (dd/mm/yyyy)","block":"Block","blocked":"Blocked","blockedUserError":"The user account is blocked. Contact administrator\n","blog":"Blog","board":"Board/University","boards":"Board","browserSuggestions":"For an improved experience, we suggest that you upgrade or install","certificateIssuedTo":"Certificate issued to","certificatesIssued":"Certificates Issued","certificationAward":"Certifications & Awards","channel":"Channel","chkuploadsts":"Check Upload Status","chooseAll":"Choose All","city":"City","class":"Class","classes":"Classes","clickHere":"Click here","completed":"completed","completedCourse":"Trainings completed","completingCourseSuccessfully":"For successfully completing the training,","concept":"Concepts","confirmPassword":"Confirm Password","confirmblock":"Are you sure to Block","contactStateAdmin":"Contact your state admin to add more participants to this batch","contentCredits":"Content Credits","contentcopiedtitle":"This content is derived from","contentinformation":"Content Information","contentname":"CONTENT NAME","contents":"Contents","contenttype":"Content","continue":"Continue","contributors":"Contributors","copy":"Copy","copyRight":"Copyright","noCreditsAvailable":"No credits available","copycontent":"Copying content...","country":"Country","countryCode":"Country code","courseCreatedBy":"Created by","courseCredits":"Credits","coursecreatedon":"Created on","coursestructure":"Training Modules","createUserSuccessWithEmail":"Your email address is verified. Login to continue.","createUserSuccessWithPhone":"Verification successful. Login to continue","createdInstanceName":"Created on {instance} by","createdon":"Created On","creationdataset":"Creation","creator":"Creator","creators":"Creators","credits":"Credits","current":"Current","currentlocation":"Current location","curriculum":"Curriculum","dashboardcertificateStatus":"Certificate Status","dashboardfiveweeksfilter":"LAST 5 WEEKS","dashboardfourteendaysfilter":"LAST 14 DAYS","dashboardfrombeginingfilter":"FROM BEGINING","dashboardnobatchselected":"No batch selected","dashboardnobatchselecteddesc":"Select a batch to proceed","dashboardnocourseselected":"No training selected","dashboardnocourseselecteddesc":"Select training from the above list","dashboardnoorgselected":"No organization selected!","dashboardnoorgselecteddesc":"Select an organization to proceed","dashboardselectorg":"Select Organization","dashboardsevendaysfilter":"LAST 7 DAYS","dashboardsortbybatchend":"Batch End On","dashboardsortbyenrolledon":"Enroled On","dashboardsortbyorg":"ORG","dashboardsortbystatus":"Status","dashboardsortbyusername":"User Name","degree":"Degree","delete":"Delete","deletenote":"Delete Note","description":"Description","designation":"Designation","deviceId":"Device ID","dialCode":"QR code","dialCodeDescription":"QR code is the 6 digit alphanumeric code found beneath the  QR code image in your text book","dialCodeDescriptionGetPage":"QR code is the 6 digit alphanumeric code found beneath the  QR code image in your text book.","dikshaForMobile":"{instance} for Mobile","district":"District","dob":"Date Of Birth","done":"Done","downloadCourseQRCode":"Download Training QR Code","downloadDikshaForMobile":"Download {instance} for Mobile","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadThe":"Download as ","downloadingContent":"Preparing to download {contentName}...","dropcomment":"Add a comment ","ecmlarchives":"Ecml Archives","edit":"Edit","editPersonalDetails":"Edit Personal Details","editUserDetails":"Edit details of the User","education":"Education","eightCharacters":"Use 8 or more characters","email":"Email address","emptycomments":"No comments","enddate":"END DATE","enjoyedContent":"Enjoyed this content?","enrollcourse":"Join Training","enrollmentenddate":"Enrolment End Date","enterCertificateCode":"Enter the certificate code here","enterDialCode":"Enter 6 digit QR code","enterOTP":"Enter OTP","enterQrCode":"Enter QR code","enterValidCertificateCode":"Enter a valid Certificate Code","epubarchives":"Epub Archives","errorConfirmPassword":"Passwords do not match","errorMessage":"Error message","experience":"Experience","expiredBatchWarning":"Batch has ended on {EndDate}, therefore your progress will not be updated.","explore":"Explore","exploreContentOn":"Explore Content on {instance}","explorecontentfrom":"Explore content from","exprdbtch":"Expired Batches","externalId":"External Id","extlid":"OrgExternalId","facebook":"Facebook","failres":"Failure Results","fetchingBlocks":"Please wait while we are fetching blocks","fetchingSchools":"Please wait while we fetch schools","filterby":"Filter by","filters":"Filters","first":"FIRST\t","firstName":"First name","flaggedby":"Flagged by","flaggeddescription":"Flagged Description","flaggedreason":"Flagged reason","fnameLname":"Enter your first and last name","for":"for","forDetails":"For details","forMobile":"for Mobile","forSearch":"for {searchString}","fullName":"Full name","gender":"Gender","getUnlimitedAccess":"Get unlimited access to textbooks, lessons and trainings offline on your mobile phone.","goback":"To cancel","grade":"Grade","grades":"Grades","graphStat":"Graph Statistics","h5parchives":"H5p Archives","homeUrl":"Home Url","htmlarchives":"Html Archives","imagecontents":"Image Contents","inAll":"in \"all\"","inUsers":"in users","inactive":"Inactive","institute":"Institution Name","iscurrentjob":"Is this your current job","keywords":"Keywords","lang":"Language","language":"Language(s) known","last":"LAST\t","lastAccessed":"Last accessed on:","lastName":"Last name","lastupdate":"Last update","learners":"Learners","licenseTerms":"License Terms","linkCopied":"Link copied ","linkedContents":"Linked contents","linkedIn":"LinkedIn","location":"Location","lockPopupTitle":"{collaborator} is currently working on {contentName}. Try again later.","markas":"Mark as","medium":"Medium","mentors":"Mentors","mobileEmailInfoText":"Enter your mobile number or email address to log in on {instance}","mobileNumber":"Mobile Number","mobileNumberInfoText":"Enter your mobile number to log in on {instance}","more":"more","myBadges":"My badges","mynotebook":"My Notebook","mynotes":"My Notes","name":"Name","nameRequired":"Name is required","next":"Next","noContentToPlay":"No content to play","noDataFound":"No data found","onDiksha":"on {instance} on","opndbtch":"Open Batches","orgCode":"Org Code","orgId":"OrgId","orgType":"Org Type","organization":"Organization","orgname":"Organization Name","orgtypes":"Organization Type","originalAuthor":"Original Author","ownership":"Ownership","participants":"Participants","password":"Password","pdfcontents":"Pdf contents","percentage":"Percentage","permanent":"Permanent","phone":"Mobile number","phoneNumber":"Mobile Number","phoneOrEmail":"Enter mobile number or email address","phoneVerfied":"Mobile number verified","phonenumber":"Mobile Number","pincode":"Pin Code","playContent":"Play Content","plslgn":"This session has expired. Login again to continue using ${instance}.","preferredLanguage":"Preferred Language","previous":"Previous\n","processid":"Process ID","profilePopup":"To discover relevant content, update the following details:","provider":"OrgProvider","publicFooterGetAccess":"The {instance} platform offers teachers, students and parents engaging learning material relevant to the prescribed school curriculum. Download the {instance} app and scan QR code in your textbooks for easy access to your lessons.","reEnterPassword":"Re-enter the password","publishedBy":"Published by","publishedOnInstanceName":"Published on {instance} by","readless":"Read Less ...","readmore":"... Read More","recentlyAdded":"Recently Added","redirectMsg":"This content is hosted outside","redirectWaitMsg":"Wait while the content loads","removeAll":"Remove All","reportUpdatedOn":"This report was last updated on","resendOTP":"Resend OTP","resentOTP":"OTP has been resent. Enter OTP.\n","resourcetype":"Resource Type","contentType":"Content Type","retired":"Retired","returnToCourses":"Return to Trainings","role":"Role","roles":"Roles","rootOrg":"Root org","sameEmailId":"This email address is the same as that linked to your profile","samePhoneNo":"This Mobile Number is the same as what is linked with your profile","school":"School","search":"Search","searchForContent":"Enter 6 digit QR code","searchUserName":"Search for participants","searchContent":"Type text to search for content. e.g. 'Story'","seladdresstype":"Select Address Type","selectAll":"Select All","selectBlock":"Select Block","selectDistrict":"Select district","selectSchool":"Select School","selectState":"Select state","selected":"Selected","selectreason":"SELECT A REASON","sesnexrd":"Session Expired","setRole":"Edit user","share":"Share","sharelink":"Share using  the link -","showLess":"Show less","showingResults":"Showing results","showingResultsFor":"Showing results for {searchString}","signUp":"Register","signinenrollHeader":"Trainings are for registered users. Log in to access the training\n","signinenrollTitle":"Log in to join this training","skillTags":"Skill Tags","sltBtch":"Select a batch to proceed","socialmedialinks":"Social Media Links","sortby":"Sort by","startExploringContent":"Start exploring content by entering QR code","startExploringContentBySearch":"Explore content using QR codes","startdate":"START DATE","state":"State","stateRecord":"As per state records","subject":"Subject","subjects":"Subjects","subjectstaught":"Subject(s) taught","submitOTP":"Submit OTP","successres":"Success Results","summary":"Summary","tableNotAvailable":"Table view is not available for this report","takenote":"TAKE NOTES","tcfrom":"From","tcno":"No","tcto":"To","tcyes":"Yes","tenDigitPhone":"10 digit mobile number","termsAndCond":"Terms and Conditions\n","termsAndCondAgree":"I agree to the terms and conditions of use","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","title":"Title","toTryAgain":"to try again","topic":"Topic","topics":"Topics","trainingAttended":"Trainings attended","twitter":"Twitter","unableToUpdateEmail":"Unable to update email address?","unableToUpdateMobile":"Unable to update Mobile Number?","unableToVerifyEmail":"Unable to verify email address?","unableToVerifyPhone":"Unable to verify your mobile number?","unenrollMsg":"Do you want to unenrol from this batch?","unenrollTitle":"Batch Unenrolment","uniqueEmail":"Your email address is already registered","uniqueEmailId":"This email address is already registered. Enter another email address","uniqueMobile":"This mobile number is already registered. Enter another mobile number.","uniquePhone":"This mobile number is already registered\n","updateEmailId":"Update Email address","updatePhoneNo":"Update Mobile Number","updatecollection":"Update All","updatecontent":"Update Content","updatedon":"Updated on","updateorgtype":"Update Organization Type","upldfile":"Uploaded File","uploadContent":"Upload Content","userFilterForm":"Search for participants","userID":"UserId","userId":"User ID","userType":"User Type","username":"User Name","validPassword":"Enter a valid password","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","validPhone":"Enter a valid 10 digit mobile number","verifyingCertificate":"Verifying your certificate","videos":"Videos","view":"View","viewless":"View less","viewmore":"View more","viewworkspace":"View your workspace","watchCourseVideo":"Watch Video","whatsQRCode":"What is a QR code?","whatwentwrong":"What went wrong?","whatwentwrongdesc":"Let us know what went wrong. Mention the exact reasons so that we review this as soon as possible and address this issue. Thank you for your feedback!","worktitle":"Occupation / Work Title","wrongEmailOTP":"You have entered an incorrect OTP. Enter the OTP received on your Email ID. The OTP is valid only for 30 minutes.\n","wrongPhoneOTP":"You have entered an incorrect OTP. Enter the OTP received on your mobile number. The OTP is valid only for 30 minutes.\n","yop":"Year of Passing","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","indPhoneCode":91,"lastUpdatedOn":"Last updated on","exportingContent":"Preparing to copy {contentName}...","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","isRootOrg":"Is RootOrg","orgName":"Org Name","position":"Position","theme":"Theme","downloadAppLite":"Download {instance} Lite Desktop App","versionKey":"Version:","releaseDateKey":"Release Date:","supportedLanguages":"Supported Languages:","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","desktopAppFeature001":"Free unlimited content","desktopAppFeature002":"Multilingual support","desktopAppFeature003":"Play content offline","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","contentsUploaded":"Contents are being uploaded","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from"},"btn":{"contentImport":"Upload Files","selectContentFiles":"Select file(s)","downloadPdf":"Help","add":"Add","addingToLibrary":"Downloading to My Downloads","apply":"Apply","cancel":"Cancel","cancelCapitalize":"Cancel","clear":"Clear","close":"Close","copyLink":"Copy link","create":"Create","download":"Download","downloadCertificate":"Download Certificate","downloadCompleted":"Download completed","downloadPending":"Download pending","edit":"Edit","enroll":"Join Training","login":"Login","merge":"Merge","myLibrary":"My Downloads","next":"Next","no":"No","ok":"OK","previous":"Previous","remove":"Remove","reset":"Reset","resume":"Resume","resumecourse":"Resume Training","save":"Save","selectLanguage":"Select language","selrole":"Select role","signin":"Login","signup":"Register","submit":"Submit","submitbtn":"Submit","tryagain":"Try again","unenroll":"Leave Training","update":"Update","verify":"Verify","viewCourseStatsDashboard":"View training dashboard","viewcoursestats":"View training stats","viewless":"View less","viewmore":"View more","viewdetails":"View Details","downloadFailed":"Download failed","downloadAppForWindows64":"Download for Windows (64-bit)","downloadInstruction":"See download instructions","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","yes":"Yes","yesiamsure":"Yes, I am sure","chksts":"Check status","smplcsv":"Download sample CSV","uploadorgscsv":"Upload organizations CSV","uploadusrscsv":"Upload users CSV","createNew":"Create New","addToLibrary":"Download to My Library","export":"Copy to pen drive","browse":"Browse Online","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"},"addedToLibrary":"Added To Library"},"drpdn":{"female":"Female","male":"Male","transgender":"Transgender"},"instn":{"t0002":"You can add or upload details of up to 199 organizations at a time in one csv file","t0007":"The OrgName column is mandatory. Enter organization name in this column","t0011":"You can track progress with Process ID","t0013":"Download the csv file for reference","t0015":"Upload Organizations","t0016":"Upload Users","t0020":"Start typing to add a skill","t0021":"Enter each organization's name in a separate row","t0022":"Entering details in all other columns is optional:","t0023":"isRootOrg: Valid values for this column True False","t0024":"channel: Unique ID provided during master organization creation","t0025":"externalId: Unique ID associated with each organization in the administrating  organization’s repository","t0026":"provider: Channel ID of the administrator organization","t0027":"description: Details describing  the organization","t0028":"homeUrl: Organization’s homepage url","t0029":"orgCode: Organization’s unique code, if any,","t0030":"orgType: Type of organization, such as, NGO, primary school, secondary school etc","t0031":"preferredLanguage: Language preferences for the organization, if any","t0032":"contactDetail: Organization’s mobile number and email address. Details should be entered within curly brackets in single quotes. For example: [{‘mobile number’: ‘1234567890’}]","t0049":"channel is mandatory if value for column isRootOrg is True","t0050":"externalId and provider are mutually mandatory","t0055":"Oops announcement details not found!","t0056":"Please try again...","t0058":"Download as:","t0059":"CSV","t0060":"Thank you!","t0061":"Oops...","t0062":"You haven't created a batch for this training yet. Create a new batch and check the dashboard again.","t0063":"You have not created any training as yet. Create new training and check the dashboard again.","t0064":"Multiple addresses with same type selected. Please change any one.","t0065":"Progress Report","t0070":"Download the CSV file. Users belonging to a single organization can be uploaded at a time in one CSV file.","t0071":"Enter the following mandatory details of user accounts:","t0072":"FirstName: User’s first name, alphabetic value.","t0073":"Mobile number or email address: User’s ten-digit mobile number or email address. Provide either one of the two. However, it is advisable to provide both if available.","t0074":"Username: Unique name assigned to the user by the organization, alphanumeric.","t0076":"Note: All other columns in the CSV file are optional, for details on filling these, refer to","t0077":"Register Users.","t0078":"locationId: An ID which identifies an announcement topic for a particular organisation","t0079":"locationCode: Comma separated list of location codes","t0081":"Thank you for registering on {instance}. We have sent an sms OTP for verification. Verify your mobile number with the OTP to complete the registration process.","t0082":"Thank you for registering on {instance}. We have sent an OTP to your registered email address for verification. Verify your email address with the OTP to complete the registration process.","t0083":"You will receive an SMS with the OTP for Mobile Number verification","t0084":"You will receive an email with the OTP to verify your email address ","t0085":"The report shows data for the first 10,000 participants. Click download to view the progress of all the participants in the batch.","t0012":"Please save the Process ID for your reference .You can track progress with Process ID","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"Search for notes or title","t0002":"ADD YOUR COMMENT","t0005":"Select batch mentors","t0006":"Select batch members"},"lnk":{"announcement":"Announcement dashboard","assignedToMe":"Assigned to me","contentProgressReport":"Content Progress Report","contentStatusReport":"Content Status Report","createdByMe":"Created by me","dashboard":"Admin dashboard","detailedConsumptionMatrix":"Detailed Consumption Matrix","detailedConsumptionReport":"Detailed Consumption Report","footerContact":"Contact for queries:","footerDIKSHAForMobile":"{instance} for Mobile","footerDikshaVerticals":"{instance} Verticals","footerHelpCenter":"Help Center","footerPartners":"Partners","footerTnC":"Terms and Privacy","logout":"Logout","myactivity":"My Activity","profile":"Profile","textbookProgressReport":"Textbook Progress Report","viewall":"View All","workSpace":"Workspace"},"pgttl":{"takeanote":"Notes"},"prmpt":{"deletenote":"Are you sure to delete this note?","enteremailID":"Enter your email address","enterphoneno":"Enter 10 digit mobile number","search":"Search","userlocation":"Location"},"scttl":{"blkuser":"Block User","contributions":"Contribution(s)","instructions":"Instructions :","signup":"Register","todo":"To Do","error":"Error:"},"snav":{"shareViaLink":"Shared via link\n","submittedForReview":"Submitted for review"},"tab":{"all":"All","community":"Groups","courses":"Trainings","contribute":"Contribute","help":"Help","home":"Home","profile":"Profile","resources":"Library","users":"Users","workspace":"Workspace"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"Trainings completed","messages":{"emsg":{"m0001":"Cannot enrol now. Try again later","m0003":"You should enter Provider and External Id Or Organization Id","m0005":"Something went wrong, try later","m0007":"size should be less than","m0008":"Could not copy content. Try again later","m0009":"Cannot un-enrol now. Try again later","m0014":"Could not update mobile number","m0015":"Could not update email address\n\n","m0016":"Fetching states failed. Try again later","m0017":"Fetching districts failed. Try again later","m0018":"Updating profile failed","m0019":"Could not download the report, try again later","m0020":"Updating user failed. Try again later","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"Could not fetch enroled courses, try again later","m0002":"Could not fetch other courses, try again later...","m0003":"Unable to get batch schedule details","m0004":"Could not fetch date, try again later...","m0030":"Could not create the note, try again later...","m0032":"Could not remove the note, try again later","m0033":"Could not fetch the note, try again later...","m0034":"Could not update the note, try again later...","m0041":"Failed to delete Education details. Try again later","m0042":"Experience delete failed. ","m0043":"Failed to delete address details. Try again later...","m0048":"Could not update the user profile, try again later...","m0049":"Unable to load data.","m0050":"Could not submit the request, try again later","m0051":"Something went wrong, try again later","m0054":"Fetching batch detail failed, try again later...","m0056":"Could not fetch user list, try again later...","m0076":"Enter mandatory fields","m0077":"Fetching search result failed..","m0079":"Failed to assign badge, try again later","m0080":"Failed to fetch the badge, try again later...","m0082":"This course is not open for enrolment","m0085":"There was a technical error. Try again.","m0086":"This training is retired by the author and hence is not available anymore","m0087":"Please wait","m0088":"We are fetching details.","m0089":"No Topics/SubTopics found","m0091":"Could not copy content. Try again later","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0094":"Could not download, try again later...","m0090":"Could not download. Try again later","m0093":"{FailedContentLength} content(s) upload failed","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"This training is flagged as inappropriate and is currently under review.","m0005":"Upload a valid image file. Supported file types: jpeg, jpg, png. Max size: 4MB.","m0017":"Profile Completeness.","m0022":"Stats for last 7 days","m0023":"Stats for last 14 days","m0024":"Stats for last 5 weeks","m0025":"Stats from begining","m0026":"Hi, this training is not available now. It is likely that the creator has made some changes to the training.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0034":"As the content is from an external source, it will be opened in a while.","m0035":"Unauthorized access","m0036":"The content is externally hosted, to view the content please click the preview","m0040":"Operation is in progress, try again later","m0041":"Your profile is","m0042":"% complete","m0043":"Your profile does not have a valid email ID. Update your email ID.","m0044":"Download failed","m0045":"The download has failed. Try again after some time","m0047":"You can only select 100 participants","m0060":"If you have two accounts with {instance}, click","m0061":"to","m0062":"Else, click","m0063":"combine usage details of both accounts, and","m0064":"delete the other account","m0065":"Account merge initiated successfully","m0066":"you will be notified once it is completed","m0067":"Could not initiate the account merge. Click the Merge Account option in the Profile menu and try again","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0073":"Click Create New to create a new {instance} account.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"Note created successfully...","m0013":"Note updated successfully...","m0014":"Education deleted successfully","m0015":"Experience deleted successfully","m0016":"Address deleted successfully","m0018":"Profile Image updated successfully","m0019":"Description updated successfully","m0020":"Education updated successfully","m0021":"Experience updated successfully","m0022":"Additional information  updated successfully","m0023":"Address updated successfully","m0024":"New education added successfully","m0025":"New experience added successfully","m0026":"New address added successfully","m0028":"Roles updated successfully","m0029":"User deleted successfully","m0030":"Users uploaded successfully","m0031":"Organizations uploaded successfully","m0032":"Status fetched successfully","m0035":"Org type added successfully","m0036":"Course enroled for this batch successfully","m0037":"updated successfully","m0038":"Skills updated successfully","m0039":"Registration successful, you can log in now","m0040":"Profile field visibility updated successfully","m0042":"Content successfully copied","m0043":"Endorsement successfull","m0044":"Badge assigned successfully...","m0045":"User unenroled from the batch successfully","m0046":"Profile updated successfully...","m0047":"Your Mobile Number has been updated","m0048":"Your email address has been updated","m0049":"User successfully updated","m0050":"Thank you for rating this content!","m0053":"Downloading...","m0055":"Updating...","m0056":"You should be online to update the content","moo41":"Announcement cancelled successfully...","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0054":"{UploadedContentLength} content(s) uploaded successfully","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"No results found","m0007":"Refine your search ","m0008":"no-results","m0009":"Unable to play, please try again or close.","m0022":"Submit one of your drafts for review. Content is published only after a review","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0035":"There is no content to review","m0060":"Strengthen your profile","m0062":"Enter valid degree","m0063":"Enter valid Address line 1","m0064":"Enter City","m0065":"Enter valid pin code","m0066":"Enter First name","m0067":"Provide a valid mobile number","m0069":"Select language","m0070":"Enter Instituition name","m0072":"Enter valid Occupation / Work Title","m0073":"Enter valid Organization","m0077":"We are submitting your request...","m0081":"No batches found","m0083":"You have not shared content with any one yet","m0088":"Enter a valid password","m0089":"Enter a valid email address","m0090":"Select languages","m0091":"Enter a valid mobile number","m0094":"Enter valid percentage","m0095":"Your request is received successfully. The file will be sent to your registered email address shortly. Check your registered email address to view it. ","m0104":"Enter valid grade","m0108":"Your Progress","m0113":"Enter a valid start date","m0116":"Deleting selected note...","m0120":"No content to play","m0121":"Content not added yet","m0122":"Your state will soon add content for this QR code. It will be available shortly.","m0123":"Ask a friend to add you as a collaborator. You will receive an email when your friend adds you.","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Select board","m0127":"Select medium","m0128":"Select class","m0129":"Loading the Terms and Conditions.","m0130":"We are fetching districts","m0131":"Could not find any reports","m0132":"We have received your request. The file will be sent to your registered email address shortly","m0134":"Enrolment ","m0135":"Enter a valid date","m0136":"Last Date for Enrolment:","m0139":"DOWNLOADED","m0140":"DOWNLOADING","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0080":"Please upload file in csv format only","m0087":"Please enter a valid user name, must have minimum 5 character","m0092":"Please enter a valid first name","m0133":"Browse and download, or upload content to start using the desktop app","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"},"m0138":"FAILED"},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"orgname","participants":"Participants","resourceService":{"frmelmnts":{"lbl":{"userId":"User ID"}}},"t0065":"Download file"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email Address","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","play":"Play","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","createassessment":"Create Assessment","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","contentLabel":"Content","status":"Status","edit":"Edit","author":"Author","courseName":"Course Name","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","submittedForReview":"Submitted for review","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","shareViaLink":"Shared via link","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid start date","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
+{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"There are no participants in this batch","offline":"You are offline","online":"You are online","connectInternet":"To browse content, connect to the Internet","uploadEcarFromPd":"Upload {instance} files (eg: MATHS_01.ecar) from your pen drive","howToVideo":"How to video","subtopic":"Subtopic","limitsOfArtificialIntell":"Limits of artificial intelligence","howToUseDiksha":"How to use {instance} desktop app","watchVideo":"See Video","manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","recoverAccount":"Recover Account","mergeAccount":"Merge Account","enterEmailID":"Enter email address","phoneRequired":"Mobile number is required","validEmail":"Enter a valid email address","emailPhonenotRegistered":"Email address / Mobile number is not registered with {instance}","enterName":"Enter name","enterNameNotMatch":"The entry does not match the name registered with {instance}","receiveOTP":"Where would you like to receive the OTP?","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","otpSentTo":"OTP has been sent to","itis":"It is","validFor":"valid for 30 min","otpMandatory":"OTP is mandatory","otpValidated":"OTP validated successfully","newPassword":"New Password","enterEightCharacters":"Enter at least 8 characters","passwordMismatch":"Password mismatch, enter the correct password","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","enternameAsRegisteredInAccount":"and the name as on the {instance} account","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"Mobile":"Mobile","SearchIn":"Search in {searchContentType}","Select":"Select","aboutthecourse":"Training Information","active":"Active","addDistrict":"Add District","addEmailID":"Add Email address","addPhoneNo":"Add Mobile Number","addState":"Add State","addlInfo":"Additional Information","addnote":"TAKE NOTES","addorgtype":"Add Organization Type","address":"Address","addressline1":"Address Line 1","addressline2":"Address Line 2","anncmnt":"Announcement","anncmntall":"All Announcements","anncmntcancelconfirm":"Are you sure you want to stop showing this announcement?","anncmntcancelconfirmdescrption":"Users will not be able to see this announcement after this action","anncmntcreate":"CREATE ANNOUNCEMENT","anncmntdtlsattachments":"Attachments","anncmntdtlssenton":"Sent on","anncmntdtlsview":"View","anncmntdtlsweblinks":"Weblinks","anncmntinboxannmsg":"Announcements","anncmntinboxseeall":"See All","anncmntlastupdate":"Consumption data last updated on","anncmntmine":"My Announcements","anncmntnotfound":"No announcement found !","anncmntoutboxdelete":"Delete","anncmntoutboxresend":"Resend","anncmntplzcreate":"Please create announcement","anncmntreadmore":"... Read More","anncmntsent":"Showing all sent announcements","anncmnttblactions":"Actions","anncmnttblname":"Name","anncmnttblpublished":"Published","anncmnttblreceived":"Received","anncmnttblseen":"Seen","anncmnttblsent":"Sent","attributions":"Attributions","author":"Author","authorofsourcecontent":"Author of Source Content","badgeassignconfirmation":"Are you sure you want to issue the badge to this content?","batchdescription":"DESCRIPTION OF BATCH","batchdetails":"Batch Details","batchenddate":"End Date","batches":"Batches","batchmembers":"MEMBERS OF BATCH","batchstartdate":"Start Date","birthdate":"Birthdate (dd/mm/yyyy)","block":"Block","blocked":"Blocked","blockedUserError":"The user account is blocked. Contact administrator\n","blog":"Blog","board":"Board/University","boards":"Board","browserSuggestions":"For an improved experience, we suggest that you upgrade or install","certificateIssuedTo":"Certificate issued to","certificatesIssued":"Certificates Issued","certificationAward":"Certifications & Awards","channel":"Channel","chkuploadsts":"Check Upload Status","chooseAll":"Choose All","city":"City","class":"Class","classes":"Classes","clickHere":"Click here","completed":"completed","completedCourse":"Trainings completed","completingCourseSuccessfully":"For successfully completing the training,","concept":"Concepts","confirmPassword":"Confirm Password","confirmblock":"Are you sure to Block","contactStateAdmin":"Contact your state admin to add more participants to this batch","contentCredits":"Content Credits","contentcopiedtitle":"This content is derived from","contentinformation":"Content Information","contentname":"CONTENT NAME","contents":"Contents","contenttype":"Content","continue":"Continue","contributors":"Contributors","copy":"Copy","copyRight":"Copyright","noCreditsAvailable":"No credits available","copycontent":"Copying content...","country":"Country","countryCode":"Country code","courseCreatedBy":"Created by","courseCredits":"Credits","coursecreatedon":"Created on","coursestructure":"Training Modules","createUserSuccessWithEmail":"Your email address is verified. Login to continue.","createUserSuccessWithPhone":"Verification successful. Login to continue","createdInstanceName":"Created on {instance} by","createdon":"Created On","creationdataset":"Creation","creator":"Creator","creators":"Creators","credits":"Credits","current":"Current","currentlocation":"Current location","curriculum":"Curriculum","dashboardcertificateStatus":"Certificate Status","dashboardfiveweeksfilter":"LAST 5 WEEKS","dashboardfourteendaysfilter":"LAST 14 DAYS","dashboardfrombeginingfilter":"FROM BEGINING","dashboardnobatchselected":"No batch selected","dashboardnobatchselecteddesc":"Select a batch to proceed","dashboardnocourseselected":"No training selected","dashboardnocourseselecteddesc":"Select training from the above list","dashboardnoorgselected":"No organization selected!","dashboardnoorgselecteddesc":"Select an organization to proceed","dashboardselectorg":"Select Organization","dashboardsevendaysfilter":"LAST 7 DAYS","dashboardsortbybatchend":"Batch End On","dashboardsortbyenrolledon":"Enroled On","dashboardsortbyorg":"ORG","dashboardsortbystatus":"Status","dashboardsortbyusername":"User Name","degree":"Degree","delete":"Delete","deletenote":"Delete Note","description":"Description","designation":"Designation","deviceId":"Device ID","dialCode":"QR code","dialCodeDescription":"QR code is the 6 digit alphanumeric code found beneath the  QR code image in your text book","dialCodeDescriptionGetPage":"QR code is the 6 digit alphanumeric code found beneath the  QR code image in your text book.","dikshaForMobile":"{instance} for Mobile","district":"District","dob":"Date Of Birth","done":"Done","downloadCourseQRCode":"Download Training QR Code","downloadDikshaForMobile":"Download {instance} for Mobile","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadThe":"Download as ","downloadingContent":"Preparing to download {contentName}...","dropcomment":"Add a comment ","ecmlarchives":"Ecml Archives","edit":"Edit","editPersonalDetails":"Edit Personal Details","editUserDetails":"Edit details of the User","education":"Education","eightCharacters":"Use 8 or more characters","email":"Email address","emptycomments":"No comments","enddate":"END DATE","enjoyedContent":"Enjoyed this content?","enrollcourse":"Join Training","enrollmentenddate":"Enrolment End Date","enterCertificateCode":"Enter the certificate code here","enterDialCode":"Enter 6 digit QR code","enterOTP":"Enter OTP","enterQrCode":"Enter QR code","enterValidCertificateCode":"Enter a valid Certificate Code","epubarchives":"Epub Archives","errorConfirmPassword":"Passwords do not match","errorMessage":"Error message","experience":"Experience","expiredBatchWarning":"Batch has ended on {EndDate}, therefore your progress will not be updated.","explore":"Explore","exploreContentOn":"Explore Content on {instance}","explorecontentfrom":"Explore content from","exprdbtch":"Expired Batches","externalId":"External Id","extlid":"OrgExternalId","facebook":"Facebook","failres":"Failure Results","fetchingBlocks":"Please wait while we are fetching blocks","fetchingSchools":"Please wait while we fetch schools","filterby":"Filter by","filters":"Filters","first":"FIRST\t","firstName":"First name","flaggedby":"Flagged by","flaggeddescription":"Flagged Description","flaggedreason":"Flagged reason","fnameLname":"Enter your first and last name","for":"for","forDetails":"For details","forMobile":"for Mobile","forSearch":"for {searchString}","fullName":"Full name","gender":"Gender","getUnlimitedAccess":"Get unlimited access to textbooks, lessons and trainings offline on your mobile phone.","goback":"To cancel","grade":"Grade","grades":"Grades","graphStat":"Graph Statistics","h5parchives":"H5p Archives","homeUrl":"Home Url","htmlarchives":"Html Archives","imagecontents":"Image Contents","inAll":"in \"all\"","inUsers":"in users","inactive":"Inactive","institute":"Institution Name","iscurrentjob":"Is this your current job","keywords":"Keywords","lang":"Language","language":"Language(s) known","last":"LAST\t","lastAccessed":"Last accessed on:","lastName":"Last name","lastupdate":"Last update","learners":"Learners","licenseTerms":"License Terms","linkCopied":"Link copied ","linkedContents":"Linked contents","linkedIn":"LinkedIn","location":"Location","lockPopupTitle":"{collaborator} is currently working on {contentName}. Try again later.","markas":"Mark as","medium":"Medium","mentors":"Mentors","mobileEmailInfoText":"Enter your mobile number or email address to log in on {instance}","mobileNumber":"Mobile Number","mobileNumberInfoText":"Enter your mobile number to log in on {instance}","more":"more","myBadges":"My badges","mynotebook":"My Notebook","mynotes":"My Notes","name":"Name","nameRequired":"Name is required","next":"Next","noContentToPlay":"No content to play","noDataFound":"No data found","onDiksha":"on {instance} on","opndbtch":"Open Batches","orgCode":"Org Code","orgId":"OrgId","orgType":"Org Type","organization":"Organization","orgname":"Organization Name","orgtypes":"Organization Type","originalAuthor":"Original Author","ownership":"Ownership","participants":"Participants","password":"Password","pdfcontents":"Pdf contents","percentage":"Percentage","permanent":"Permanent","phone":"Mobile number","phoneNumber":"Mobile Number","phoneOrEmail":"Enter mobile number or email address","phoneVerfied":"Mobile number verified","phonenumber":"Mobile Number","pincode":"Pin Code","playContent":"Play Content","plslgn":"This session has expired. Login again to continue using ${instance}.","preferredLanguage":"Preferred Language","previous":"Previous\n","processid":"Process ID","profilePopup":"To discover relevant content, update the following details:","provider":"OrgProvider","publicFooterGetAccess":"The {instance} platform offers teachers, students and parents engaging learning material relevant to the prescribed school curriculum. Download the {instance} app and scan QR code in your textbooks for easy access to your lessons.","reEnterPassword":"Re-enter the password","publishedBy":"Published by","publishedOnInstanceName":"Published on {instance} by","readless":"Read Less ...","readmore":"... Read More","recentlyAdded":"Recently Added","redirectMsg":"This content is hosted outside","redirectWaitMsg":"Wait while the content loads","removeAll":"Remove All","reportUpdatedOn":"This report was last updated on","resendOTP":"Resend OTP","resentOTP":"OTP has been resent. Enter OTP.\n","resourcetype":"Resource Type","contentType":"Content Type","retired":"Retired","returnToCourses":"Return to Trainings","role":"Role","roles":"Roles","rootOrg":"Root org","sameEmailId":"This email address is the same as that linked to your profile","samePhoneNo":"This Mobile Number is the same as what is linked with your profile","school":"School","search":"Search","searchForContent":"Enter 6 digit QR code","searchUserName":"Search for participants","searchContent":"Type text to search for content. e.g. 'Story'","seladdresstype":"Select Address Type","selectAll":"Select All","selectBlock":"Select Block","selectDistrict":"Select district","selectSchool":"Select School","selectState":"Select state","selected":"Selected","selectreason":"SELECT A REASON","sesnexrd":"Session Expired","setRole":"Edit user","share":"Share","sharelink":"Share using  the link -","showLess":"Show less","showingResults":"Showing results","showingResultsFor":"Showing results for {searchString}","signUp":"Register","signinenrollHeader":"Trainings are for registered users. Log in to access the training\n","signinenrollTitle":"Log in to join this training","skillTags":"Skill Tags","sltBtch":"Select a batch to proceed","socialmedialinks":"Social Media Links","sortby":"Sort by","startExploringContent":"Start exploring content by entering QR code","startExploringContentBySearch":"Explore content using QR codes","startdate":"START DATE","state":"State","stateRecord":"As per state records","subject":"Subject","subjects":"Subjects","subjectstaught":"Subject(s) taught","submitOTP":"Submit OTP","successres":"Success Results","summary":"Summary","tableNotAvailable":"Table view is not available for this report","takenote":"TAKE NOTES","tcfrom":"From","tcno":"No","tcto":"To","tcyes":"Yes","tenDigitPhone":"10 digit mobile number","termsAndCond":"Terms and Conditions\n","termsAndCondAgree":"I agree to the terms and conditions of use","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","title":"Title","toTryAgain":"to try again","topic":"Topic","topics":"Topics","trainingAttended":"Trainings attended","twitter":"Twitter","unableToUpdateEmail":"Unable to update email address?","unableToUpdateMobile":"Unable to update Mobile Number?","unableToVerifyEmail":"Unable to verify email address?","unableToVerifyPhone":"Unable to verify your mobile number?","unenrollMsg":"Do you want to unenrol from this batch?","unenrollTitle":"Batch Unenrolment","uniqueEmail":"Your email address is already registered","uniqueEmailId":"This email address is already registered. Enter another email address","uniqueMobile":"This mobile number is already registered. Enter another mobile number.","uniquePhone":"This mobile number is already registered\n","updateEmailId":"Update Email address","updatePhoneNo":"Update Mobile Number","updatecollection":"Update All","updatecontent":"Update Content","updatedon":"Updated on","updateorgtype":"Update Organization Type","upldfile":"Uploaded File","uploadContent":"Upload Content","userFilterForm":"Search for participants","userID":"UserId","userId":"User ID","userType":"User Type","username":"User Name","validPassword":"Enter a valid password","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","validPhone":"Enter a valid 10 digit mobile number","verifyingCertificate":"Verifying your certificate","videos":"Videos","view":"View","viewless":"View less","viewmore":"View more","viewworkspace":"View your workspace","watchCourseVideo":"Watch Video","whatsQRCode":"What is a QR code?","whatwentwrong":"What went wrong?","whatwentwrongdesc":"Let us know what went wrong. Mention the exact reasons so that we review this as soon as possible and address this issue. Thank you for your feedback!","worktitle":"Occupation / Work Title","wrongEmailOTP":"You have entered an incorrect OTP. Enter the OTP received on your Email ID. The OTP is valid only for 30 minutes.\n","wrongPhoneOTP":"You have entered an incorrect OTP. Enter the OTP received on your mobile number. The OTP is valid only for 30 minutes.\n","yop":"Year of Passing","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","indPhoneCode":91,"lastUpdatedOn":"Last updated on","exportingContent":"Preparing to copy {contentName}...","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","isRootOrg":"Is RootOrg","orgName":"Org Name","position":"Position","theme":"Theme","downloadAppLite":"Download {instance} Lite Desktop App","versionKey":"Version:","releaseDateKey":"Release Date:","supportedLanguages":"Supported Languages:","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","desktopAppFeature001":"Free unlimited content","desktopAppFeature002":"Multilingual support","desktopAppFeature003":"Play content offline","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","contentsUploaded":"Contents are being uploaded","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from","noBookfoundTitle":"Board is adding books","noBookfoundSubTitle":"Your board is yet to add more books. Tap the button to see more books and content on {instance}","noBookfoundButtonText":"See more books and contents"},"btn":{"contentImport":"Upload Files","selectContentFiles":"Select file(s)","downloadPdf":"Help","add":"Add","addingToLibrary":"Downloading to My Downloads","apply":"Apply","cancel":"Cancel","cancelCapitalize":"Cancel","clear":"Clear","close":"Close","copyLink":"Copy link","create":"Create","download":"Download","downloadCertificate":"Download Certificate","downloadCompleted":"Download completed","downloadPending":"Download pending","edit":"Edit","enroll":"Join Training","login":"Login","merge":"Merge","myLibrary":"My Downloads","next":"Next","no":"No","ok":"OK","previous":"Previous","remove":"Remove","reset":"Reset","resume":"Resume","resumecourse":"Resume Training","save":"Save","selectLanguage":"Select language","selrole":"Select role","signin":"Login","signup":"Register","submit":"Submit","submitbtn":"Submit","tryagain":"Try again","unenroll":"Leave Training","update":"Update","verify":"Verify","viewCourseStatsDashboard":"View training dashboard","viewcoursestats":"View training stats","viewless":"View less","viewmore":"View more","viewdetails":"View Details","downloadFailed":"Download failed","downloadAppForWindows64":"Download for Windows (64-bit)","downloadInstruction":"See download instructions","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","yes":"Yes","yesiamsure":"Yes, I am sure","chksts":"Check status","smplcsv":"Download sample CSV","uploadorgscsv":"Upload organizations CSV","uploadusrscsv":"Upload users CSV","createNew":"Create New","addToLibrary":"Download to My Library","export":"Copy to pen drive","browse":"Browse Online","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"},"addedToLibrary":"Added To Library"},"drpdn":{"female":"Female","male":"Male","transgender":"Transgender"},"instn":{"t0002":"You can add or upload details of up to 199 organizations at a time in one csv file","t0007":"The OrgName column is mandatory. Enter organization name in this column","t0011":"You can track progress with Process ID","t0013":"Download the csv file for reference","t0015":"Upload Organizations","t0016":"Upload Users","t0020":"Start typing to add a skill","t0021":"Enter each organization's name in a separate row","t0022":"Entering details in all other columns is optional:","t0023":"isRootOrg: Valid values for this column True False","t0024":"channel: Unique ID provided during master organization creation","t0025":"externalId: Unique ID associated with each organization in the administrating  organization’s repository","t0026":"provider: Channel ID of the administrator organization","t0027":"description: Details describing  the organization","t0028":"homeUrl: Organization’s homepage url","t0029":"orgCode: Organization’s unique code, if any,","t0030":"orgType: Type of organization, such as, NGO, primary school, secondary school etc","t0031":"preferredLanguage: Language preferences for the organization, if any","t0032":"contactDetail: Organization’s mobile number and email address. Details should be entered within curly brackets in single quotes. For example: [{‘mobile number’: ‘1234567890’}]","t0049":"channel is mandatory if value for column isRootOrg is True","t0050":"externalId and provider are mutually mandatory","t0055":"Oops announcement details not found!","t0056":"Please try again...","t0058":"Download as:","t0059":"CSV","t0060":"Thank you!","t0061":"Oops...","t0062":"You haven't created a batch for this training yet. Create a new batch and check the dashboard again.","t0063":"You have not created any training as yet. Create new training and check the dashboard again.","t0064":"Multiple addresses with same type selected. Please change any one.","t0065":"Progress Report","t0070":"Download the CSV file. Users belonging to a single organization can be uploaded at a time in one CSV file.","t0071":"Enter the following mandatory details of user accounts:","t0072":"FirstName: User’s first name, alphabetic value.","t0073":"Mobile number or email address: User’s ten-digit mobile number or email address. Provide either one of the two. However, it is advisable to provide both if available.","t0074":"Username: Unique name assigned to the user by the organization, alphanumeric.","t0076":"Note: All other columns in the CSV file are optional, for details on filling these, refer to","t0077":"Register Users.","t0078":"locationId: An ID which identifies an announcement topic for a particular organisation","t0079":"locationCode: Comma separated list of location codes","t0081":"Thank you for registering on {instance}. We have sent an sms OTP for verification. Verify your mobile number with the OTP to complete the registration process.","t0082":"Thank you for registering on {instance}. We have sent an OTP to your registered email address for verification. Verify your email address with the OTP to complete the registration process.","t0083":"You will receive an SMS with the OTP for Mobile Number verification","t0084":"You will receive an email with the OTP to verify your email address ","t0085":"The report shows data for the first 10,000 participants. Click download to view the progress of all the participants in the batch.","t0012":"Please save the Process ID for your reference .You can track progress with Process ID","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"Search for notes or title","t0002":"ADD YOUR COMMENT","t0005":"Select batch mentors","t0006":"Select batch members"},"lnk":{"announcement":"Announcement dashboard","assignedToMe":"Assigned to me","contentProgressReport":"Content Progress Report","contentStatusReport":"Content Status Report","createdByMe":"Created by me","dashboard":"Admin dashboard","detailedConsumptionMatrix":"Detailed Consumption Matrix","detailedConsumptionReport":"Detailed Consumption Report","footerContact":"Contact for queries:","footerDIKSHAForMobile":"{instance} for Mobile","footerDikshaVerticals":"{instance} Verticals","footerHelpCenter":"Help Center","footerPartners":"Partners","footerTnC":"Terms and Privacy","logout":"Logout","myactivity":"My Activity","profile":"Profile","textbookProgressReport":"Textbook Progress Report","viewall":"View All","workSpace":"Workspace"},"pgttl":{"takeanote":"Notes"},"prmpt":{"deletenote":"Are you sure to delete this note?","enteremailID":"Enter your email address","enterphoneno":"Enter 10 digit mobile number","search":"Search","userlocation":"Location"},"scttl":{"blkuser":"Block User","contributions":"Contribution(s)","instructions":"Instructions :","signup":"Register","todo":"To Do","error":"Error:"},"snav":{"shareViaLink":"Shared via link\n","submittedForReview":"Submitted for review"},"tab":{"all":"All","community":"Groups","courses":"Trainings","contribute":"Contribute","help":"Help","home":"Home","profile":"Profile","resources":"Library","users":"Users","workspace":"Workspace"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"Trainings completed","messages":{"emsg":{"m0001":"Cannot enrol now. Try again later","m0003":"You should enter Provider and External Id Or Organization Id","m0005":"Something went wrong, try later","m0007":"size should be less than","m0008":"Could not copy content. Try again later","m0009":"Cannot un-enrol now. Try again later","m0014":"Could not update mobile number","m0015":"Could not update email address\n\n","m0016":"Fetching states failed. Try again later","m0017":"Fetching districts failed. Try again later","m0018":"Updating profile failed","m0019":"Could not download the report, try again later","m0020":"Updating user failed. Try again later","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"Could not fetch enroled courses, try again later","m0002":"Could not fetch other courses, try again later...","m0003":"Unable to get batch schedule details","m0004":"Could not fetch date, try again later...","m0030":"Could not create the note, try again later...","m0032":"Could not remove the note, try again later","m0033":"Could not fetch the note, try again later...","m0034":"Could not update the note, try again later...","m0041":"Failed to delete Education details. Try again later","m0042":"Experience delete failed. ","m0043":"Failed to delete address details. Try again later...","m0048":"Could not update the user profile, try again later...","m0049":"Unable to load data.","m0050":"Could not submit the request, try again later","m0051":"Something went wrong, try again later","m0054":"Fetching batch detail failed, try again later...","m0056":"Could not fetch user list, try again later...","m0076":"Enter mandatory fields","m0077":"Fetching search result failed..","m0079":"Failed to assign badge, try again later","m0080":"Failed to fetch the badge, try again later...","m0082":"This course is not open for enrolment","m0085":"There was a technical error. Try again.","m0086":"This training is retired by the author and hence is not available anymore","m0087":"Please wait","m0088":"We are fetching details.","m0089":"No Topics/SubTopics found","m0091":"Could not copy content. Try again later","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0094":"Could not download, try again later...","m0090":"Could not download. Try again later","m0093":"{FailedContentLength} content(s) upload failed","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"This training is flagged as inappropriate and is currently under review.","m0005":"Upload a valid image file. Supported file types: jpeg, jpg, png. Max size: 4MB.","m0017":"Profile Completeness.","m0022":"Stats for last 7 days","m0023":"Stats for last 14 days","m0024":"Stats for last 5 weeks","m0025":"Stats from begining","m0026":"Hi, this training is not available now. It is likely that the creator has made some changes to the training.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0034":"As the content is from an external source, it will be opened in a while.","m0035":"Unauthorized access","m0036":"The content is externally hosted, to view the content please click the preview","m0040":"Operation is in progress, try again later","m0041":"Your profile is","m0042":"% complete","m0043":"Your profile does not have a valid email ID. Update your email ID.","m0044":"Download failed","m0045":"The download has failed. Try again after some time","m0047":"You can only select 100 participants","m0060":"If you have two accounts with {instance}, click","m0061":"to","m0062":"Else, click","m0063":"combine usage details of both accounts, and","m0064":"delete the other account","m0065":"Account merge initiated successfully","m0066":"you will be notified once it is completed","m0067":"Could not initiate the account merge. Click the Merge Account option in the Profile menu and try again","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0073":"Click Create New to create a new {instance} account.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"Note created successfully...","m0013":"Note updated successfully...","m0014":"Education deleted successfully","m0015":"Experience deleted successfully","m0016":"Address deleted successfully","m0018":"Profile Image updated successfully","m0019":"Description updated successfully","m0020":"Education updated successfully","m0021":"Experience updated successfully","m0022":"Additional information  updated successfully","m0023":"Address updated successfully","m0024":"New education added successfully","m0025":"New experience added successfully","m0026":"New address added successfully","m0028":"Roles updated successfully","m0029":"User deleted successfully","m0030":"Users uploaded successfully","m0031":"Organizations uploaded successfully","m0032":"Status fetched successfully","m0035":"Org type added successfully","m0036":"Course enroled for this batch successfully","m0037":"updated successfully","m0038":"Skills updated successfully","m0039":"Registration successful, you can log in now","m0040":"Profile field visibility updated successfully","m0042":"Content successfully copied","m0043":"Endorsement successfull","m0044":"Badge assigned successfully...","m0045":"User unenroled from the batch successfully","m0046":"Profile updated successfully...","m0047":"Your Mobile Number has been updated","m0048":"Your email address has been updated","m0049":"User successfully updated","m0050":"Thank you for rating this content!","m0053":"Downloading...","m0055":"Updating...","m0056":"You should be online to update the content","moo41":"Announcement cancelled successfully...","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0054":"{UploadedContentLength} content(s) uploaded successfully","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"No results found","m0007":"Refine your search ","m0008":"no-results","m0009":"Unable to play, please try again or close.","m0022":"Submit one of your drafts for review. Content is published only after a review","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0035":"There is no content to review","m0060":"Strengthen your profile","m0062":"Enter valid degree","m0063":"Enter valid Address line 1","m0064":"Enter City","m0065":"Enter valid pin code","m0066":"Enter First name","m0067":"Provide a valid mobile number","m0069":"Select language","m0070":"Enter Instituition name","m0072":"Enter valid Occupation / Work Title","m0073":"Enter valid Organization","m0077":"We are submitting your request...","m0081":"No batches found","m0083":"You have not shared content with any one yet","m0088":"Enter a valid password","m0089":"Enter a valid email address","m0090":"Select languages","m0091":"Enter a valid mobile number","m0094":"Enter valid percentage","m0095":"Your request is received successfully. The file will be sent to your registered email address shortly. Check your registered email address to view it. ","m0104":"Enter valid grade","m0108":"Your Progress","m0113":"Enter a valid start date","m0116":"Deleting selected note...","m0120":"No content to play","m0121":"Content not added yet","m0122":"Your state will soon add content for this QR code. It will be available shortly.","m0123":"Ask a friend to add you as a collaborator. You will receive an email when your friend adds you.","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Select board","m0127":"Select medium","m0128":"Select class","m0129":"Loading the Terms and Conditions.","m0130":"We are fetching districts","m0131":"Could not find any reports","m0132":"We have received your request. The file will be sent to your registered email address shortly","m0134":"Enrolment ","m0135":"Enter a valid date","m0136":"Last Date for Enrolment:","m0139":"DOWNLOADED","m0140":"DOWNLOADING","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0080":"Please upload file in csv format only","m0087":"Please enter a valid user name, must have minimum 5 character","m0092":"Please enter a valid first name","m0133":"Browse and download, or upload content to start using the desktop app","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"},"m0138":"FAILED"},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again  later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"orgname","participants":"Participants","resourceService":{"frmelmnts":{"lbl":{"userId":"User ID"}}},"t0065":"Download file"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email Address","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","play":"Play","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","createassessment":"Create Assessment","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","contentLabel":"Content","status":"Status","edit":"Edit","author":"Author","courseName":"Course Name","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","submittedForReview":"Submitted for review","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","shareViaLink":"Shared via link","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid start date","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
diff --git a/src/app/resourcebundles/json/hi.json b/src/app/resourcebundles/json/hi.json
index 0857db52357edcc8cc6b4e0cca6e88fd0241bef8..b7bf41140ad99de6681d47b720f54d4b525df6cd 100644
--- a/src/app/resourcebundles/json/hi.json
+++ b/src/app/resourcebundles/json/hi.json
@@ -1 +1 @@
-{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"कोई अनुकूल अभिलेख प्राप्त नहीं हुआ","Mobile":"मोबाइल","SearchIn":"{searchContentType} में ख़ोजें","Select":"चुनिये","aboutthecourse":"पाठ्यक्रम के बारे में जानकारी","active":"सक्रिय","addDistrict":"जिला जोड़े","addEmailID":"ईमेल पता जोड़े","addPhoneNo":"मोबाइल क्रमांक जोड़े","addState":"राज्य जोड़े","addlInfo":"अतिरिक्त जानकारी ","addnote":"टिप्पणी जोड़े","addorgtype":"संस्था का प्रकार जोड़े","address":"पता","addressline1":"पता पंक्ति १","addressline2":"पता पंक्ति २","anncmnt":"घोषणाएं","anncmntall":"सभी घोषणाएं","anncmntcancelconfirm":"आप यह घोषणा रोकना चाहते है?","anncmntcancelconfirmdescrption":"इस क्रिया से उपयोगकर्ता घोषणाएं नहीं देख सकते है","anncmntcreate":"घोषणाएं निर्मित कीजिये","anncmntdtlsattachments":"संलग्न","anncmntdtlssenton":"पर भेजा गया","anncmntdtlsview":"देखें","anncmntdtlsweblinks":"वेब लिंक","anncmntinboxannmsg":"घोषणाएं","anncmntinboxseeall":"सब देखे","anncmntlastupdate":"उपभोग डेटा अद्यतित करने की तारीख","anncmntmine":"मेरी घोषणाएं","anncmntnotfound":"कोई घोषणा नहीं!","anncmntoutboxdelete":"हटायें","anncmntoutboxresend":"दोबारा भेजे","anncmntplzcreate":"कृपया घोषणाओं की रचना कीजिये","anncmntreadmore":"...आगे पढ़े","anncmntsent":"घोषणाओं की सूची","anncmnttblactions":"क्रिया","anncmnttblname":"नाम","anncmnttblpublished":"प्रकाशित","anncmnttblreceived":"प्राप्त ","anncmnttblseen":"देखी गयी","anncmnttblsent":"भेजा गया","attributions":"संबंधित","author":"रचयिता","badgeassignconfirmation":"कंटेंट को पदक प्रदान करना चाहते है?","batchdescription":"बैच का वर्णन","batchdetails":null,"batchenddate":"अंतिम तिथि","batches":"बैच","batchmembers":"बैच के सदस्य","batchstartdate":"आरंभ तिथि","birthdate":"जन्म दिनांक (ता/मा/वर्ष)","block":"खण्ड","blocked":"अवरुद्ध","blockedUserError":"उपयोगकर्ता अवरुद्ध किया गया है| एडमिन से संपर्क करें","blog":"ब्लॉग","board":"बोर्ड/विश्वविद्यालय","boards":"बोर्ड","browse":"ऑनलाइन पुस्तकालय","browserSuggestions":"बेहतर अनुभव के लिए अपग्रेड या इंस्टॉल करें","certificateIssuedTo":"प्रमाण पत्र जारी किया गया","certificatesIssued":"प्रमाण पत्र जारी किया गया","certificationAward":"प्रमाणपत्र व पुरस्कार","channel":"चैनल","chkuploadsts":"अपलोड अवस्था की जांच करें","chooseAll":"सभी चुनिए","city":"शहर","class":"कक्षा","classes":"कक्षायें","clickHere":"यहाँ क्लिक करें","completed":"पूर्ण","completedCourse":"पाठ्यक्रम पूर्ण हुआ","completingCourseSuccessfully":"प्रशिक्षण सफलतापूर्वक पूर्ण हुआ","concept":"संकल्पना","confirmPassword":"पासवर्ड निश्चित किजिये","confirmblock":"क्या आप उपयोगकर्ता को अवरुद्ध करना चाहते है ","connectInternet":"कंटेंट ब्राउज करने के लिए इन्टरनेट से जुड़िये","contactStateAdmin":"इस बैच में अधिक प्रतिभागियों को जोड़ने के लिए अपने राज्य के एडमिन से संपर्क करें","contentCredits":"कंटेंट श्रेय","contentinformation":"कंटेंट की जानकारी","contentname":"कंटेंट का नाम","contents":"पाठ्यक्रम","contentsUploaded":"कंटेंट अपलोड हो रहा है","continue":"जारी रखना","contributors":"सहयोगी","copy":"प्रतिकृति","copyRight":"कॉपीराईट","copycontent":"कंटेंट कॉपी हो रहा है","country":"देश","countryCode":"देश कूट","courseCreatedBy":"पाठ्यक्रम सृजनकर्ता","courseCredits":"पाठ्यक्रम श्रेय","coursecreatedon":"निर्माण दिनांक","coursestructure":"पाठ्यक्रम संरचना","createUserSuccessWithEmail":"ईमेल पता सत्यापित किया गया| शुरुआत करने के लिए लॉग इन करें...","createUserSuccessWithPhone":"दूरभाष क्रमांक प्रमाणित किया गया| जारी रखने के लिए साइन इन करें...","createdInstanceName":"{instance} में रचयिता","createdon":"को बनाया गया","creationdataset":"सृजन","creator":"निर्माता/निर्मात्री","creators":"रचयिता","credits":"श्रेय","current":"वर्तमान","currentlocation":"वर्तमान स्थान","curriculum":"अध्ययन सूची","dashboardfiveweeksfilter":"पिछले ५ हफ्तों","dashboardfourteendaysfilter":"पिछले १४ दिनों का","dashboardfrombeginingfilter":"शुरुआत से","dashboardnobatchselected":"आपने कोई बैच नहीं चुना हैं!","dashboardnobatchselecteddesc":"सूची से बैच चुनिये","dashboardnocourseselected":"कोई पाठ्यक्रम नहीं चुना है","dashboardnocourseselecteddesc":"सूची से पाठ्यक्रम चुनिये ","dashboardnoorgselected":"कोई संस्था नहीं चुनी है","dashboardnoorgselecteddesc":"सूची से संस्था को चुनिये","dashboardselectorg":"संस्था चुनिये ","dashboardsevendaysfilter":"पिछले ७ दिन","dashboardsortbybatchend":"बैच की अंतिम दिनांक","dashboardsortbyenrolledon":"को नामांकित किया","dashboardsortbyorg":"संस्था","dashboardsortbystatus":"अवस्था","dashboardsortbyusername":"उपयोगकर्ता का नाम ","degree":"शैक्षणिक उपाधि","delete":"हटायें","deletenote":"टिप्पणी हटायें","description":"विवरण","designation":"पदनाम","desktopAppFeature003":"कंटेंट बिना इंटरनेट के चलाएँ","dialCode":"QR कोड","dialCodeDescription":"QR कोड ६ वर्णाक्षर का मेल होता है, जो आपकी पाठ्यपुस्तक के QR कोड की छवि के नीचे छपा है","dialCodeDescriptionGetPage":"QR कोड ६ वर्णाक्षर का मेल होता है, जो आपकी पाठ्यपुस्तक के QR कोड की छवि के नीचे छपा है","dikshaForMobile":"मोबाइल के लिए DIKSHA","district":"जिला","dob":"जन्म दिनांक","done":"पूर्ण","downloadCourseQRCode":"पाठ्यक्रम का QR कोड डाउनलोड करें","downloadDikshaForMobile":"मोबाइल के लिए DIKSHA डाउनलोड कीजिये","downloadThe":"डाउनलोड करें","dropcomment":"टिपण्णी कीजिये","ecmlarchives":"ECML अभिलेख","edit":"संपादित करें","editPersonalDetails":"व्यक्तिगत विवरण अद्यतित करें","editUserDetails":"उपयोगकर्ता का विवरण संपादित करें","education":"शिक्षा","eightCharacters":"८ या अधिक वर्णों का प्रयोग कीजिये","email":"ईमेल पता","emptycomments":"कोई टिपण्णी नहीं है","enddate":"अंतिम तारीख़","enjoyedContent":"क्या यह कंटेंट लाभदायक है?","enrollcourse":"कोर्स में नामांकन कीजिये","enrollmentenddate":"नामांकन की अंतिम तारीख़","enterCertificateCode":"प्रमाण पत्र का कोड दर्ज करें","enterDialCode":"६ अंकों का QR कोड दर्ज करें","enterEightCharacters":"8 वर्ण दर्ज करें","enterEmailID":"अपना ईमेल पता दर्ज करें","enterName":"नाम दर्ज कीजिये","enterOTP":"OTP दर्ज करें","enterQrCode":"QR कोड दर्ज करें","enterValidCertificateCode":"प्रमाण पत्र का वैध कोड दर्ज करें","enternameAsRegisteredInAccount":"और {instance} अकाउंट में आपका नाम","epubarchives":"epub अभिलेख","errorConfirmPassword":"पासवर्ड समान नहीं है","experience":"अनुभव","expiredBatchWarning":"{EndDate} को बैच समाप्त हुआ, इसके बाद आपकी प्रगति अद्यतित नहीं होगी","explore":"अन्वेषण","exploreContentOn":"कंटेंट का अन्वेषण कीजिये {instance}","explorecontentfrom":"कंटेंट का अन्वेक्षण कीजिये","exprdbtch":"समाप्त बैच","facebook":"फेसबुक","failres":"असफलता के कारणों की सूची","fetchingBlocks":"प्रतीक्षा कीजिये, खण्ड सूची लायी जा रही है","fetchingSchools":"प्रतीक्षा कीजिये विद्यालयों की सूची लायी जा रही है","filterby":"से फ़िल्टर करें","filters":"फिल्टर्स","first":"प्रथम","firstName":"प्रथम नाम","flaggedby":"के द्वारा फ्लैग किया गया","flaggeddescription":"विवादास्पद विवरण","flaggedreason":"फ्लैग करने का कारण बताएं","fnameLname":"कृपया अपना प्रथम नाम व उपनाम दर्ज करें","for":"के लिए","forDetails":"अधिक जानकारी के लिए","forMobile":"मोबाइल के लिए","forSearch":"{searchString} के लिये","fullName":"पूरा नाम","gender":"लिंग","getUnlimitedAccess":"अपने मोबाइल पर पाठ्यपुस्तकों, पाठों और पाठ्यक्रमों का असीमित अभिगम प्राप्त करें","goback":"रद्ध करने हेतु","grade":"श्रेणी","grades":"श्रेणियाँ","graphStat":"सांख्यिकीय ग्राफ","h5parchives":"H5P अभिलेख","homeUrl":"होम URL","howToUseDiksha":"{instance} डेस्कटॉप एप का उपयोग कैसे करें?","htmlarchives":"HTML अभिलेख","imagecontents":"छवि वस्तु","inAll":"सभी में खोज़े","inUsers":"उपयोगकर्ताओ में","inactive":"निष्क्रय","institute":"संस्थान का नाम","iscurrentjob":"क्या यह आपका वर्तमान कार्य है?","itis":"यह","keywords":"कीवर्ड","language":"विदित भाषाएं","last":"अंतिम","lastAccessed":"पिछला अभिगम","lastName":"उपनाम","lastupdate":"अंतिम अद्यतन","learners":"शिष्य  ","licenseTerms":"लाइसेंस शर्तें","linkCopied":"लिंक कॉपी कर लिया गया है","linkedContents":"जुड़े हुए कंटेंट","linkedIn":"लिंक्ड-इन","location":"स्थान","lockPopupTitle":"{collaborator} अभी {contentName} पर कार्यशील है| पुनः प्रयास करें","markas":"अंकित करें","medium":"माध्यम","mentors":"मार्गदर्शक","mergeAccount":"अकाउंट मिलाये","mobileEmailInfoText":"DIKSHA में लॉग इन करने के लिए अपना मोबाइल नंबर या ईमेल पता दर्ज करें","mobileNumber":"मोबाइल क्रमांक","mobileNumberInfoText":"DIKSHA में लॉग इन करने के लिए अपना मोबाईल नंबर दर्ज करें","more":"और...","myBadges":"मेरे बैज","mynotebook":"मेरी किताब","mynotes":"मेरी टिप्पणियाँ","name":"नाम","nameRequired":"नाम दर्ज करें","newPassword":"नया पासवर्ड","next":"अगला","noContentToPlay":"चलाने के लिए कोई कंटेंट नहीं है","noDataFound":"कोई डाटा नहीं मिला","offline":"आप इंटरनेट से नहीं जुड़े है","onDiksha":"{instance} पर","online":"आप अब ऑनलाइन हैं","opndbtch":"बैच - नामांकन हेतु उपलब्ध","orgId":"संस्था क्रमांक","orgType":"Org Type","organization":"संस्था","orgname":"संस्था का नाम","orgtypes":"संस्था का प्रकार","otpMandatory":"OTP आवश्यक","otpValidated":"OTP मान्य है","ownership":"स्वामित्व","participants":"प्रतिभागी","password":"पासवर्ड","passwordMismatch":"पासवर्ड समान नहीं है, सही पासवर्ड दर्ज करें","pdfcontents":"pdf वस्तु","percentage":"प्रतिशत","permanent":"स्थायी","phone":"मोबाईल नंबर","phoneNumber":"मोबाईल नंबर","phoneOrEmail":"मोबाइल नंबर या ईमेल पता दर्ज करें","phoneRequired":"मोबाईल क्रमांक जरुरी है","phoneVerfied":"मोबाईल नंबर सत्यापित","phonenumber":"मोबाईल नंबर","pincode":"पिन कोड","playContent":"कंटेंट चलाएँ","plslgn":"यह सत्र समाप्त हो गया है| {instance} जारी रखने के लिए पुनः लॉग इन करें","previous":"पिछला","processid":"प्रक्रिया क्रमांक","profilePopup":"प्रासंगिक कंटेंट के लिए विवरण दीजिये","publicFooterGetAccess":"DIKSHA शिक्षको, विद्यार्थीयों, एवं अभिभावकों के लिए प्रासंगिक और असीम संसाधनों का अभिगम प्रदान करती है  - ऐप डाउनलोड करें और पाठ्यपुस्तक का QR कोड स्कैन करके वर्कशीट, शिक्षण सामग्री आदि का उपभोग करें","publishedBy":"प्रकाशक","reEnterPassword":"पासवर्ड दोबारा दर्ज करें","readless":"कम पढ़ें...","readmore":"...आगे पढ़े","receiveOTP":"आप OTP कहाँ पाना चाहते है?","recoverAccount":"अकाउंट बहाल कीजिये","redirectMsg":"यह कंटेंट बाह्य स्त्रोतों से लिया गया है","redirectWaitMsg":"प्रतीक्षा कीजिये, कंटेंट लोड हो रहा हैं...","removeAll":"सभी हटायें","reportUpdatedOn":"रिपोर्ट की अंतिम अद्यतन तारीख","resendOTP":"OTP दोबारा प्राप्त करें","resentOTP":"OTP दोबारा भेजा गया| OTP दर्ज करें|","resourcetype":"संसाधन का प्रकार","returnToCourses":"कौर्स पर जाइयें ","role":"भूमिका","roles":"भूमिका","sameEmailId":"यह ईमेल पता आपके प्रोफाइल से पहले ही जुड़ा हुआ है","samePhoneNo":"यह मोबाइल क्रमांक आपके प्रोफाइल से पहले ही जुड़ा हुआ है","school":"विद्यालय","search":"ख़ोज","searchForContent":"कंटेंट खोजें","searchUserName":"प्रतिभागी के नाम से ख़ोजें","seladdresstype":"पते का प्रकार चुनिये","selectAll":"सभी चुनिये","selectBlock":"खण्ड चुनिये","selectDistrict":"ज़िला चुनिए","selectSchool":"विद्यालय चुनिए","selectState":"राज्य चुनिये","selected":"चयनित","selectreason":"कारण चुनिये","sesnexrd":"सत्र समाप्त","setRole":"उपयोगकर्ता अद्यतित करें","share":"शेयर करें","sharelink":"लिंक शेयर करें","showLess":"कम देखें","showingResults":"परिणाम देखें","showingResultsFor":"{searchString} के परिणाम","signUp":"पंजीकरण","signinenrollHeader":"पाठ्यक्रम केवल पंजीकृत उपयोगकर्ताओं के लिए है| अभिगम हेतु लॉग इन करें...","signinenrollTitle":"पाठ्यक्रम में नामांकन हेतु लॉग इन करें","skillTags":"योग्यता टैग","sltBtch":"आगे जाने के लिए बैच का चयन करें","socialmedialinks":"सोशल मीडिया लिंक","sortby":"आधार पर छाँटे","startExploringContent":"QR कोड दर्ज करें व कंटेंट का अन्वेक्षण कीजिये","startExploringContentBySearch":"ख़ोज व QR कोड परिणामों से कंटेंट का अन्वेक्षण कीजिये ","startdate":"आरंभ तिथि","state":"राज्य","stateRecord":"राज्यों के अभिलेख के अनुसार","subject":"विषय","subjects":"विषयों","subjectstaught":"पढ़ाये गये विषय ","submitOTP":"OTP दाख़िल करें","subtopic":"उपशीर्षक","successres":"सफलता परिणाम","summary":"संक्षिप्त विवरण","supportedLanguages":"समर्थित भाषाएँ: ","tableNotAvailable":"इस रिपोर्ट की तालिका उपलब्ध नहीं है","takenote":"टिप्पणी लेना","tcfrom":"से","tcno":"नहीं","tcto":"तक","tcyes":"हाँ","tenDigitPhone":"१० अंको का मोबाईल नंबर","termsAndCond":"नियम व शर्तें","termsAndCondAgree":"मैं उपयोग के नियम एवं शर्तों को स्वीकार करता/करती हूँ","title":"शीर्षक","toTryAgain":"पुनः प्रयास करने के लिए","topic":"शीर्षक","topics":"शीर्षक","trainingAttended":"प्रशिक्षण में भाग लिया","twitter":"ट्विट्टर","unableToUpdateEmail":"ईमेल पता अपडेट करने में असमर्थ?","unableToUpdateMobile":"मोबाइल क्रमांक अद्यतित करने में असमर्थ?","unableToVerifyEmail":"ईमेल पता सत्यापित करने में असमर्थ","unableToVerifyPhone":"मोबाईल नंबर सत्यापित करने में असमर्थ","unenrollMsg":"क्या आप इस बैच से अपना नामांकन रद्द करना चाहते है?","unenrollTitle":"बैच से नामांकन रद्द कीजिये","uniqueEmail":"यह ईमेल पता पहले से पंजीकृत है","uniqueEmailId":"यह ईमेल पता पंजीकृत है| कृपया अन्य ईमेल पता दर्ज करें","uniqueMobile":"यह मोबाइल नंबर पहले से पंजीकृत है, कृपया अन्य क्रमांक दर्ज करें","uniquePhone":"यह मोबाईल नंबर पहले से पंजीकृत है","updateEmailId":"ईमेल पता अद्यतित करें","updatePhoneNo":"मोबाइल क्रमांक अद्यतित करें","updatecontent":"कंटेंट अपडेट करे","updatedon":"को अद्यतित किया गया","updateorgtype":"संस्था का प्रकार अद्यतित करें","upldfile":"फाइल अपलोड कीजिये","uploadContent":"कंटेंट अपलोड कीजिये","uploadEcarFromPd":"{instance} फाइल (उदाहरण:MATHS_01.ecar) अपने पैन ड्राइव से अपलोड करें","userFilterForm":"प्रतिभागिओ को ख़ोजें","userID":"उपयोगकर्ता क्रमांक","userId":"उपयोगकर्ता ID","userType":"उपयोगकर्ता का प्रकार","username":"उपयोगकर्ता नाम","validEmail":"कृपया वैध ईमेल पता दर्ज कीजिये","validPassword":"कृपया वैध पासवर्ड दर्ज करें","validPhone":"१० अंको का वैध मोबाईल नंबर दर्ज कीजिये","verifyingCertificate":"प्रमाण पत्र सत्यापित किया जा रहा है","versionKey":"वर्ज़न : ","videos":"विडियो","view":"देखें","viewless":"कम दिखाएं","viewmore":"अधिक देखें","viewworkspace":"कार्यक्षेत्र का अवलोकन कीजिये","watchCourseVideo":"विडिओ देखें","whatsQRCode":"QR कोड क्या है?","whatwentwrong":"त्रुटि बताएं...","whatwentwrongdesc":"त्रुटि का पूरा विवरण हमें बताये, जिससे हम जल्द ही समाधान निकाल कर आपको सूचित कर सके| यह जानकारी हमें पहुचाने के लिए आभार|","worktitle":"व्यवसाय/ पद नाम","wrongEmailOTP":"आपने गलत OTP प्रविष्ट किया है| अपने ईमेल में प्राप्त हुआ OTP दर्ज करें| OTP केवल ३० मिनिट के लिए वैध है|","wrongPhoneOTP":"आपने गलत OTP दर्ज किया है| अपने मोबाईल नंबर में प्राप्त हुआ OTP दर्ज करें| OTP केवल ३० मिनिट के लिए वैध है|","yop":"उत्तीर्ण वर्ष","indPhoneCode":"९१","howToVideo":"How to video","limitsOfArtificialIntell":"Limits of artificial intelligence","watchVideo":"See Video","manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","emailPhonenotRegistered":"Email address / Mobile number is not registered with {instance}","enterNameNotMatch":"The entry does not match the name registered with {instance}","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","otpSentTo":"OTP has been sent to","validFor":"valid for 30 min","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","contentcopiedtitle":"This content is derived from","contenttype":"Content","noCreditsAvailable":"No credits available","dashboardcertificateStatus":"Certificate Status","deviceId":"Device ID","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadingContent":"Preparing to download {contentName}...","errorMessage":"Error message","externalId":"External Id","extlid":"OrgExternalId","lang":"Language","orgCode":"Org Code","originalAuthor":"Original Author","preferredLanguage":"Preferred Language","provider":"OrgProvider","publishedOnInstanceName":"Published on {instance} by","recentlyAdded":"Recently Added","contentType":"Content Type","retired":"Retired","rootOrg":"Root org","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","updatecollection":"Update All","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","exportingContent":"Preparing to copy {contentName}...","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","isRootOrg":"Is RootOrg","orgName":"Org Name","position":"Position","theme":"Theme","downloadAppLite":"Download {instance} Lite Desktop App","releaseDateKey":"Release Date:","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","desktopAppFeature001":"Free unlimited content","desktopAppFeature002":"Multilingual support","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from"},"btn":{"add":"जोड़े","addToLibrary":"पुस्तकालय मे डाउनलोड करें","addingToLibrary":"मेरे डाउनलोड में डाउनलोड हो रहा हैं","apply":"लागू करिये","browse":"ऑनलाइन ब्राउज करें","cancel":"रद्द करें","cancelCapitalize":"रद्ध कीजिये","chksts":"अवस्था की जाँच करें","clear":"ख़ाली कीजिये","close":"समाप्त ","contentImport":"फाइल अपलोड करें","copyLink":"लिंक कॉपी करें","create":"निर्माण करें","download":"डाउनलोड","downloadCertificate":"प्रमाण पत्र डाउनलोड करें","downloadCompleted":"डाउनलोड पूर्ण हुआ","downloadInstruction":"डाउनलोड जानकारी देखें","downloadManager":"मेरे डाउनलोड","downloadPending":"डाउनलोड लंबित","edit":"अद्यतित करें","enroll":"प्रशिक्षण मे भाग लिजिए","login":"लॉग-इन","merge":"मिलायें","myLibrary":"मेरे डाउनलोड","next":"अगला","no":"नहीं","ok":"ठीक हैं ","previous":"पिछला","remove":"हटाएँ","reset":"रिसेट","resume":"पुनः आरंभ करें","resumecourse":"पाठ्यक्रम  पुनः आरंभ करें","save":"सहेजें","selectContentFiles":"फाइल/फाइलें चुनिये","selectLanguage":"भाषा चुनिये","selrole":"भूमिका चुनिये ","signin":"लॉग इन","signup":"पंजीकरण","smplcsv":"प्रतिरूप CSV डाउनलोड करें","submit":"दाख़िल करें","submitbtn":"दाख़िल करें","tryagain":"पुनः प्रयास करें","unenroll":"नामांकन रद्द कीजिये","update":"अद्यतन","uploadorgscsv":"संस्थानों का CSV अपलोड करें","uploadusrscsv":"उपयोगकर्ता CSV फाइल अपलोड कीजिये","verify":"प्रमाणित करे","viewCourseStatsDashboard":"पाठ्यक्रम डैशबोर्ड देखें","viewcoursestats":"प्रशिक्षण सांख्यिकीय देखें","viewless":"कम दिखाएं","viewmore":"अधिक दिखाएं","yes":"हाँ","yesiamsure":"ठीक हैं ","downloadPdf":"Help","viewdetails":"View Details","downloadFailed":"Download failed","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","createNew":"Create New","export":"Copy to pen drive","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"},"addedToLibrary":"Added To Library"},"drpdn":{"female":"स्त्री","male":"पुरुष","transgender":"विपरीतलिंगी"},"instn":{"t0002":"आप एक बार में 199 संस्था CSV फाइल में जोड़ सकते है","t0011":"प्रक्रिया क्रमांक से आप अपनी प्रगति की जांच कर सकते है","t0012":"कृपया प्रक्रिया क्रमांक को सहेज कर रखे| आप इससेअपनी प्रगति की जांच कर सकते है","t0013":"प्रासंगिक CSV फाइल डाउनलोड कीजिये","t0015":"संस्थायें अपलोड करे","t0016":"उपयोगकर्ता अपलोड कीजिये","t0020":"योग्यता प्रविष्ट कीजिये","t0021":"प्रत्येक संस्था का नाम नयी पंक्ति में दर्ज करें","t0055":"उद्घोषणा का विवरण नहीं मिल रहा है!","t0056":"पुनः प्रयास करें...","t0058":"डाउनलोड प्रकार","t0059":"CSV","t0060":"धन्यवाद!","t0061":"त्रुटि...","t0062":"आपने इस पाठ्यक्रम के लिए बैच नहीं बनाया है| बैच निर्मित करें व पुनः अपने डैशबोर्ड की जाँच करें|","t0063":"आपने अभी तक कोई पाठ्यक्रम नहीं बनाया है| नया पाठ्यक्रम बनाए और दोबारा डैशबोर्ड देखें|","t0064":"एक ही प्रकार के विभिन्न पते चुने गये है| पते का प्रकार बदलें|","t0065":"डाउनलोड","t0070":"CSV फाइल डाउनलोड कीजिये. एक संस्था के सभी उपयोगकर्ता एक ही बार में अपलोड किए जा सकते है","t0072":"प्रथम नाम: उपयोगकर्ता का प्रथम नाम प्रेषित कीजिये, केवल अक्षरात्मक वर्ण","t0077":"पंजीकृत उपयोगकर्ता","t0081":"DIKSHA में पंजीकरण करने के लिए धन्यवाद! OTP आपको SMS द्वारा भेजा गया है| OTP प्रविष्ट करके अपना मोबाईल नंबर प्रमाणित करें व पंजीकरण की प्रक्रिया पूर्ण कीजिये|","t0082":"DIKSHA में पंजीकरण करने के लिए धन्यवाद! OTP आपको ईमेल द्वारा भेजा गया है| OTP प्रविष्ट करके अपना ईमेल प्रमाणित करें व पंजीकरण की प्रक्रिया पूर्ण कीजिये|","t0083":"मोबाइल क्रमांक सत्यापन हेतु आपको SMS द्वारा OTP भेजा गया हैं ","t0084":"ईमेल पता सत्यापन हेतु आपको ईमेल द्वारा OTP भेजा गया है","t0085":"रिपोर्ट में पहले १०,००० प्रतिभागियों का डेटा दिखाया गया है। बैच के सभी प्रतिभागियों की प्रगति देखने के लिए डाउनलोड पर क्लिक करें।","t0096":"मैं कंटेंट क ैसे चलाऊ?","t0094":"मैं {instance} डेस्कटॉप ऐप पर कंटेंट कैसे लोड करूं??","t0095":"मैं पुस्तकालय से कंटेंट कैसे डाउनलोड करूं?","t0097":"मैं {instance} अपनी पेन ड्राइव में कंटेंट कैसे कॉपी करूं?","t0007":"The OrgName column is mandatory. Enter organization name in this column","t0022":"Entering details in all other columns is optional:","t0023":"isRootOrg: Valid values for this column True False","t0024":"channel: Unique ID provided during master organization creation","t0025":"externalId: Unique ID associated with each organization in the administrating  organization’s repository","t0026":"provider: Channel ID of the administrator organization","t0027":"description: Details describing  the organization","t0028":"homeUrl: Organization’s homepage url","t0029":"orgCode: Organization’s unique code, if any,","t0030":"orgType: Type of organization, such as, NGO, primary school, secondary school etc","t0031":"preferredLanguage: Language preferences for the organization, if any","t0032":"contactDetail: Organization’s mobile number and email address. Details should be entered within curly brackets in single quotes. For example: [{‘mobile number’: ‘1234567890’}]","t0049":"channel is mandatory if value for column isRootOrg is True","t0050":"externalId and provider are mutually mandatory","t0071":"Enter the following mandatory details of user accounts:","t0073":"Mobile number or email address: User’s ten-digit mobile number or email address. Provide either one of the two. However, it is advisable to provide both if available.","t0074":"Username: Unique name assigned to the user by the organization, alphanumeric.","t0076":"Note: All other columns in the CSV file are optional, for details on filling these, refer to","t0078":"locationId: An ID which identifies an announcement topic for a particular organisation","t0079":"locationCode: Comma separated list of location codes","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"टिप्पणी या शीर्षक से ख़ोजें","t0002":"टिप्पणी जोड़े","t0005":"बैच के मार्गदर्शक चुनें","t0006":"बैच के सदस्य चुनें"},"lnk":{"announcement":"उद्घोषणा डैशबोर्ड","assignedToMe":"मुझे नियुक्त किये गये","contentProgressReport":"कंटेंट प्रगति रिपोर्ट","contentStatusReport":"कंटेंट अवस्था रिपोर्ट","createdByMe":"मेरे द्वारा बनाये जाये","dashboard":"एडमिन डैशबोर्ड","detailedConsumptionMatrix":"विस्तृत खपत मैट्रिक्स","detailedConsumptionReport":"विस्तृत खपत रिपोर्ट","footerContact":"पूछताछ के लिए सम्पर्क करें ","footerDIKSHAForMobile":"मोबाईल DIKSHA ऐप","footerDikshaVerticals":"दीक्षा विभाजन इकाई","footerHelpCenter":"सहायता केंद्र","footerPartners":"सहभागी","footerTnC":"उपयोग की शर्ते","logout":"लॉग आउट","myactivity":"मेरी गतिविधि","profile":"प्रोफ़ाइल","textbookProgressReport":"पाठ्यपुस्तक प्रगति रिपोर्ट","viewall":"सब देखें","workSpace":"कार्यक्षेत्र"},"pgttl":{"takeanote":"टिप्पणीयाँ"},"prmpt":{"deletenote":"टिप्पणी हटाने की पुष्टि करें?","enteremailID":"अपना ईमेल पता प्रविष्ट करें","enterphoneno":"१० अंको का मोबाईल नंबर दर्ज करें","search":"ख़ोज","userlocation":"स्थान"},"scttl":{"blkuser":"उपयोगकर्ता को अवरोध कीजिये","contributions":"योगदान","signup":"पंजीकरण","todo":"करने के लिए","instructions":"Instructions :","error":"Error:"},"snav":{"shareViaLink":"लिंक द्वारा शेयर किया गया","submittedForReview":"निरीक्षण के लिए प्रस्तुत किया गया"},"tab":{"all":"सभी","community":"समूह","courses":"पाठ्यक्रम","help":"सहायता","home":"होम","profile":"प्रोफ़ाइल","resources":"पुस्तकालय","users":"उपयोगकर्ता","workspace":"कार्यक्षेत्र","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"पाठ्यक्रम पूर्ण हुआ","बैच":"विवरण","messages":{"emsg":{"m0001":"नामांकन पूर्ण नहीं किया जा सका| पुनः प्रयास करें","m0005":"त्रुटि उत्पन हुई है, पुनः प्रयास करें","m0007":"फाइल का आकार कम करें''...","m0008":"कंटेंट कॉपी में असमर्थ, कृपया पुनः प्रयास करें...","m0009":"नामांकन पूर्ण नहीं किया जा सका| पुनः प्रयास करें","m0014":"मोबाइल क्रमांक अद्यतित करने में असफ़ल","m0015":"ईमेल पता अद्यतित करने में असफ़ल","m0016":"राज्यों की जानकारी लाने में असमर्थ| पुनः प्रयास करें","m0017":"ज़िला की जानकारी लाने में असमर्थ| पुनः प्रयास करें","m0018":"प्रोफाइल अद्यतित करने में असफ़ल","m0019":"रिपोर्ट डाउनलोड करने में असमर्थ| पुनः प्रयास करें","m0020":"उपयोगकर्ता अद्यतित नहीं किया जा सका| पुनः प्रयास करें","m0003":"You should enter Provider and External Id Or Organization Id","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"नामांकित कोर्स लाने में असमर्थ, पुनः प्रयास करें...","m0002":"पाठ्यक्रम लाने में असमर्थ,पुनः प्रयास करें...","m0003":"बैच सारणी लाने में असफल","m0004":"डाटा लाने में असमर्थ, पुनः प्रयास करें...","m0030":"टिप्पणी बनाने में असमर्थ, पुनः प्रयास करें...","m0032":"टिप्पणी हटाने में असमर्थ, पुनः प्रयास करें...","m0033":"टिप्पणी लाने में असमर्थ, पुनः प्रयास करें...","m0034":"टिप्पणी अद्यतित करने में असमर्थ, पुनः प्रयास करें...","m0041":"शैक्षणिक योग्यता हटाने में असमर्थ, पुनः प्रयास करें...","m0042":"अनुभव विवरण हटाने में असमर्थ","m0043":"पता हटाने में असमर्थ, पुनः प्रयास करें...","m0048":"उपयोगकर्ता का प्रोफाइल अपडेट करने में असमर्थ, पुनः प्रयास करें...","m0049":"डेटा लोड नहीं किया जा सका","m0050":"निवेदन जमा करने में विफल, पुनः प्रयास करें...","m0051":"आकस्मिक त्रुटि, पुनः प्रयास करें...","m0054":"बैच वर्णन लाने में असमर्थ, पुनः प्रयास करें... ","m0056":"उपयोगकर्ता सूची नहीं लाई जा सकी| पुनः प्रयास करें","m0076":"आवश्यक फील्ड दर्ज करें","m0077":"खोज परिणाम लाने में असमर्थ...","m0079":"बैज प्रदान करने में असमर्थ, पुनः प्रयास करें","m0080":"बैच लाने में असमर्थ, पुनः प्रयास करें...","m0082":"यह पाठ्यक्रम नामांकन के लिये उपलब्ध नहीं है","m0085":"तकनीकी त्रुटि, पुनः प्रयास करें","m0086":"यह पाठ्यक्रम रचयिता द्वारा निवृत्त करने के कारण उपलब्ध नहीं है","m0087":"कृपया प्रतीक्षा कीजिये","m0088":"विवरण प्रस्तुत किया जा रहा है","m0089":"कोई प्रसंग उपलब्ध नहीं है","m0091":"कंटेंट कॉपी में असमर्थ| पुनः प्रयास करें...","m0094":"डाउनलोड करने में असमर्थ| पुनः प्रयास करें...","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0090":"Could not download. Try again later","m0093":"{FailedContentLength} content(s) upload failed","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"यह पाठ्यक्रम अनुचित फ्लैग होने के कारण निरिक्षण में है|","m0005":"कृपया वैध चित्र अपलोड करें| ४ MB फ़ाइल का समर्थित फॉर्मेट - jpeg, jpg, png. ","m0017":"प्रोफ़ाइल सम्पूर्णता","m0022":"पिछले ७ दिनों की सांख्यिकीय देखे","m0023":"पिछले १४ दिनों की सांख्यिकीय देखे","m0024":"पिछले ५ हफ़्तो का सांख्यिकीय देखे","m0025":"आरम्भ से सांख्यिकीय देखे","m0026":"नमस्ते, यह पाठ्यक्रम अभी के लिए उपलब्ध नहीं है| शायद पाठ्यक्रम रचियताने  उसमें  परिवर्तन किया हैं।","m0027":"कंटेंट रचियता द्वारा संशोधित होने के कारण यह कंटेंट उपलब्ध नहीं है| ","m0034":"कंटेंट बाहरी स्रोत से है, इसे थोड़ी देर में खोला जाएगा।","m0035":"अनधिकृत अभिगम ","m0036":"यह कंटेंट बाहरी स्त्रोतों से लिया गया है, देखने के लिए प्रीव्यू बटन दबाएँ","m0040":"कार्य प्रगतिशील है, पुनः प्रयास करें","m0041":"आपका प्रोफ़ाइल","m0042":"% पूर्ण","m0043":"प्रोफाइल में ईमेल उपलब्ध नहीं है| कृपया ईमेल अद्यतित करें ","m0044":"डाउनलोड असफ़ल","m0045":"डाउनलोड करने में असमर्थ| कृपया कुछ समय पश्चात पुनः प्रयास करें","m0060":"यदि {instance} पर आपके दो अकाउंट है,  तो यहाँ क्लिक करें","m0062":"या, क्लिक करे","m0063":"दोनो अकाउंट का विवरण मिला कर देखें, और","m0064":"दूसरा अकाउंट हटाये","m0066":"पूर्ण होने पर आपको सूचित किया जायेगा","m0067":"अकाउंट मिलान आरम्भ नहीं किया जा सका। प्रोफाइल सूची के विकल्पों मे ''अकाउंट मिलान'' क्लिक करके पुन: प्रयास करें","m0073":"{instance} पर नया अकाउंट बनाने के लिये ''ठीक है'' क्लिक करें","m0047":"You can only select 100 participants","m0061":"to","m0065":"Account merge initiated successfully","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"टिप्पणी सफलतापूर्वक बनाई गयी","m0013":"टिप्पणी सफलतापुर्वक अद्यतित की गई","m0014":"शैक्षणिक योग्यता सफलतापूर्वक हटायी गयी","m0015":"अनुभव सफलतापूर्वक हटाया गया","m0016":"पता सफलतापूर्वक हटाया गया","m0018":"प्रोफाइल चित्र  सफलतापूर्वक अद्यतित किया गया","m0019":"विवरण सफलतापूर्वक अद्यतित किया गया...","m0020":"शिक्षा सफलतापूर्वक अपडेट की गयी","m0021":"अनुभव ससफलतापूर्वक अद्यतित किया गया...","m0022":"अतिरिक्त जानकारी सफलतापूर्वक अद्यतित की गयी...","m0023":"पता सफलतापुर्वक अद्यतित किया गया...","m0024":"नई शैक्षणिक योग्यता सफलतापूर्वक जोड़ी गयी","m0025":"नया  अनुभव सफलतापूर्वक जोड़ा गया","m0026":"नया पता सफलतापूर्वक जोड़ा गया","m0028":"भूमिका सफलतापूर्वक अद्यतित की गयी","m0029":"उपयोगकर्ता को सफलतापूर्वक हटाया गया","m0030":"उपयोगकर्ता सफलतापूर्वक अपलोड किये गये","m0031":"संस्था सफलतापूर्वक अपलोड की गयी","m0032":"अवस्था सफलतापूर्वक लायी गयी","m0036":"पाठ्यक्रम सफलतापूर्वक बैच के लिए नामांकित हुआ है","m0037":"सफलतापूर्वक अद्यतित किया गया","m0038":"योग्यता सफलतापूर्वक अद्यतित किया गया","m0039":"पंजीकरण सफल, लॉग इन करें...","m0042":"कंटेंट सफलतापूर्वक कॉपी किया गया","m0043":"पुष्टि सफलतापूर्वक की गयी हैं ","m0044":"बैज सफलतापूर्वक प्रदान किया गया","m0045":"उपयोगकर्ता का नामांकन सफलतापूर्वक रद्द किया गया","m0046":"प्रोफाइल सफलतापूर्वक अद्यतित किया गया","m0047":"आपका मोबाइल क्रमांक अद्यतित किया गया है","m0048":"आपका ईमेल पता अद्यतित किया गया है","m0049":"उपयोगकर्ता सफलतापूर्वक अद्यतित किया गया","m0050":"कंटेंट रेट करने के लिए धन्यवाद!","m0053":"डाउनलोड हो रहा है","m0055":"अपडेट हो रहा है...","m0056":"कंटेंट अद्यतित करने के लिये ऑनलाइन जाइये","moo41":"घोषणाएं सफलतापूर्वक रद्ध की गयी","m0035":"Org type added successfully","m0040":"Profile field visibility updated successfully","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0054":"{UploadedContentLength} content(s) uploaded successfully","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"कोई परिणाम नहीं","m0007":"ख़ोज विकल्प और स्पष्ट करें...","m0008":"कोई परिणाम नहीं","m0009":"चलाने में असमर्थ... पुनः प्रयास करें, या बंद करें","m0022":"आपका प्रालेख निरीक्षण के लिए प्रस्तुत कीजिये| निरिक्षण के बाद ही कंटेंट प्रकाशित हो सकता है|","m0024":"उपयुक्त फॉर्मेट में संलेख, विडिओ अपलोड कीजिये| आपने अभी कुछ अपलोड नहीं किया हैं|","m0033":"अपना प्रालेख निरीक्षण के लिए दाख़िल कीजिये| आपने अभी तक कोई भी कंटेंट निरिक्षण के लिए दाख़िल नहीं किया है","m0035":"निरीक्षण के लिए कोई कंटेंट नहीं है","m0060":"प्रोफाइल प्रबल कीजिये!","m0062":"वैध शैक्षणिक उपाधि दर्ज करें","m0063":"वैध पता पंक्ति दर्ज कीजिये","m0064":"शहर दर्ज कीजिये","m0065":"वैध पिनकोड दर्ज करें","m0066":"पहला नाम दर्ज कीजिये","m0067":"कृपया वैध मोबाईल नंबर प्रदान करें","m0069":"भाषा चुनिये","m0070":"शैक्षणिक संस्थान का नाम दर्ज करें","m0072":"कृपया वैध व्यवसाय / पद दर्ज कीजिये","m0073":"वैध संस्था का नाम दर्ज करें","m0077":"निवेदन दाख़िल हो रहा है...","m0080":"केवल CSV फॉर्मेट में अपलोड करें","m0081":"कोई बैच नहीं है","m0083":"आपने यह कंटेंट शेयर नहीं किया है","m0087":"कृपया वैध उपयोगकर्ता का नाम दर्ज करें, ५ वर्ण अनिवार्य है...","m0088":"वैध पासवर्ड दर्ज कीजिये","m0089":"वैध ईमेल पता दर्ज करें","m0090":"कृपया भाषा चुनिये","m0091":"वैध मोबाईल नंबर दर्ज करें","m0092":"वैध पहला नाम दर्ज कीजिये","m0094":"कृपया वैध प्रतिशत दर्ज करें","m0095":"आपका निवेदन सफलतापूर्वक प्राप्त हुआ है| आपके ईमेल पर शीघ्र ही एक फाइल भेजी जाएगी| कृपया ईमेल नियमित रूप से जांचे","m0104":"वैध श्रेणी दर्ज कीजिये","m0108":"आपकी प्रगति","m0113":"वैध आरंभ तिथि दर्ज करें","m0116":"चुनी गयी टिप्पणी हटायी जा रही है...","m0120":"कोई कंटेंट उपलब्ध नहीं है","m0121":"कंटेंट जोड़ा नहीं गया","m0122":"यह कंटेंट बनाया जा रहा है","m0123":"आप अपने मित्र से खुद को सहयोगी के रूप में जोड़ने के लिए कहें| मित्र द्वारा जोड़े जाने पर आप को ईमेल प्राप्त होगा|","m0125":"संसाधन, पुस्तक, कोर्स, या कलेक्शन अपलोड कीजिये| आपका कोई भी प्रालेख उपलब्ध नहीं है| ","m0126":"कृपया बोर्ड चुनिये","m0127":"कृपया माध्यम चुनिए","m0128":"कक्षा चुनिये","m0129":"नियम व शर्तें लोड हो रही है| कृपया प्रतीक्षा कीजिये...","m0130":"ज़िला की जानकारी लायी जा रही है","m0131":"कोई रिपोर्ट उपलब्ध नहीं है","m0132":"आपका अनुरोध दर्ज किया गया है | फ़ाइल आपके पंजीकृत ईमेल पर शीघ्र ही भेजी जायेगी","m0134":"नामांकन करें","m0135":"वैध तारीख़ दर्ज करें","m0136":"नामांकन की अंतिम तारीख़","m0138":"असफ़ल","m0139":"डाउनलोड हो गया है","m0140":"डाउनलोड हो रहा है","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0133":"Browse and download, or upload content to start using the desktop app","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"}},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"participants":"प्रतिभागी","resourceService":{"frmelmnts":{"lbl":{"userId":"उपयोगकर्ता ID"}}},"t0065":"फाइल डाउनलोड कीजिये","orgname":"orgname"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","no":"No","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"rmelmnts":{"btn":{"no":"No"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
+{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"कोई अनुकूल अभिलेख प्राप्त नहीं हुआ","Mobile":"मोबाइल","SearchIn":"{searchContentType} में ख़ोजें","Select":"चुनिये","aboutthecourse":"पाठ्यक्रम के बारे में जानकारी","active":"सक्रिय","addDistrict":"जिला जोड़े","addEmailID":"ईमेल पता जोड़े","addPhoneNo":"मोबाइल क्रमांक जोड़े","addState":"राज्य जोड़े","addlInfo":"अतिरिक्त जानकारी ","addnote":"टिप्पणी जोड़े","addorgtype":"संस्था का प्रकार जोड़े","address":"पता","addressline1":"पता पंक्ति १","addressline2":"पता पंक्ति २","anncmnt":"घोषणाएं","anncmntall":"सभी घोषणाएं","anncmntcancelconfirm":"आप यह घोषणा रोकना चाहते है?","anncmntcancelconfirmdescrption":"इस क्रिया से उपयोगकर्ता घोषणाएं नहीं देख सकते है","anncmntcreate":"घोषणाएं निर्मित कीजिये","anncmntdtlsattachments":"संलग्न","anncmntdtlssenton":"पर भेजा गया","anncmntdtlsview":"देखें","anncmntdtlsweblinks":"वेब लिंक","anncmntinboxannmsg":"घोषणाएं","anncmntinboxseeall":"सब देखे","anncmntlastupdate":"उपभोग डेटा अद्यतित करने की तारीख","anncmntmine":"मेरी घोषणाएं","anncmntnotfound":"कोई घोषणा नहीं!","anncmntoutboxdelete":"हटायें","anncmntoutboxresend":"दोबारा भेजे","anncmntplzcreate":"कृपया घोषणाओं की रचना कीजिये","anncmntreadmore":"...आगे पढ़े","anncmntsent":"घोषणाओं की सूची","anncmnttblactions":"क्रिया","anncmnttblname":"नाम","anncmnttblpublished":"प्रकाशित","anncmnttblreceived":"प्राप्त ","anncmnttblseen":"देखी गयी","anncmnttblsent":"भेजा गया","attributions":"संबंधित","author":"रचयिता","badgeassignconfirmation":"कंटेंट को पदक प्रदान करना चाहते है?","batchdescription":"बैच का वर्णन","batchdetails":null,"batchenddate":"अंतिम तिथि","batches":"बैच","batchmembers":"बैच के सदस्य","batchstartdate":"आरंभ तिथि","birthdate":"जन्म दिनांक (ता/मा/वर्ष)","block":"खण्ड","blocked":"अवरुद्ध","blockedUserError":"उपयोगकर्ता अवरुद्ध किया गया है| एडमिन से संपर्क करें","blog":"ब्लॉग","board":"बोर्ड/विश्वविद्यालय","boards":"बोर्ड","browse":"ऑनलाइन पुस्तकालय","browserSuggestions":"बेहतर अनुभव के लिए अपग्रेड या इंस्टॉल करें","certificateIssuedTo":"प्रमाण पत्र जारी किया गया","certificatesIssued":"प्रमाण पत्र जारी किया गया","certificationAward":"प्रमाणपत्र व पुरस्कार","channel":"चैनल","chkuploadsts":"अपलोड अवस्था की जांच करें","chooseAll":"सभी चुनिए","city":"शहर","class":"कक्षा","classes":"कक्षायें","clickHere":"यहाँ क्लिक करें","completed":"पूर्ण","completedCourse":"पाठ्यक्रम पूर्ण हुआ","completingCourseSuccessfully":"प्रशिक्षण सफलतापूर्वक पूर्ण हुआ","concept":"संकल्पना","confirmPassword":"पासवर्ड निश्चित किजिये","confirmblock":"क्या आप उपयोगकर्ता को अवरुद्ध करना चाहते है ","connectInternet":"कंटेंट ब्राउज करने के लिए इन्टरनेट से जुड़िये","contactStateAdmin":"इस बैच में अधिक प्रतिभागियों को जोड़ने के लिए अपने राज्य के एडमिन से संपर्क करें","contentCredits":"कंटेंट श्रेय","contentinformation":"कंटेंट की जानकारी","contentname":"कंटेंट का नाम","contents":"पाठ्यक्रम","contentsUploaded":"कंटेंट अपलोड हो रहा है","continue":"जारी रखना","contributors":"सहयोगी","copy":"प्रतिकृति","copyRight":"कॉपीराईट","copycontent":"कंटेंट कॉपी हो रहा है","country":"देश","countryCode":"देश कूट","courseCreatedBy":"पाठ्यक्रम सृजनकर्ता","courseCredits":"पाठ्यक्रम श्रेय","coursecreatedon":"निर्माण दिनांक","coursestructure":"पाठ्यक्रम संरचना","createUserSuccessWithEmail":"ईमेल पता सत्यापित किया गया| शुरुआत करने के लिए लॉग इन करें...","createUserSuccessWithPhone":"दूरभाष क्रमांक प्रमाणित किया गया| जारी रखने के लिए साइन इन करें...","createdInstanceName":"{instance} में रचयिता","createdon":"को बनाया गया","creationdataset":"सृजन","creator":"निर्माता/निर्मात्री","creators":"रचयिता","credits":"श्रेय","current":"वर्तमान","currentlocation":"वर्तमान स्थान","curriculum":"अध्ययन सूची","dashboardfiveweeksfilter":"पिछले ५ हफ्तों","dashboardfourteendaysfilter":"पिछले १४ दिनों का","dashboardfrombeginingfilter":"शुरुआत से","dashboardnobatchselected":"आपने कोई बैच नहीं चुना हैं!","dashboardnobatchselecteddesc":"सूची से बैच चुनिये","dashboardnocourseselected":"कोई पाठ्यक्रम नहीं चुना है","dashboardnocourseselecteddesc":"सूची से पाठ्यक्रम चुनिये ","dashboardnoorgselected":"कोई संस्था नहीं चुनी है","dashboardnoorgselecteddesc":"सूची से संस्था को चुनिये","dashboardselectorg":"संस्था चुनिये ","dashboardsevendaysfilter":"पिछले ७ दिन","dashboardsortbybatchend":"बैच की अंतिम दिनांक","dashboardsortbyenrolledon":"को नामांकित किया","dashboardsortbyorg":"संस्था","dashboardsortbystatus":"अवस्था","dashboardsortbyusername":"उपयोगकर्ता का नाम ","degree":"शैक्षणिक उपाधि","delete":"हटायें","deletenote":"टिप्पणी हटायें","description":"विवरण","designation":"पदनाम","desktopAppFeature003":"कंटेंट बिना इंटरनेट के चलाएँ","dialCode":"QR कोड","dialCodeDescription":"QR कोड ६ वर्णाक्षर का मेल होता है, जो आपकी पाठ्यपुस्तक के QR कोड की छवि के नीचे छपा है","dialCodeDescriptionGetPage":"QR कोड ६ वर्णाक्षर का मेल होता है, जो आपकी पाठ्यपुस्तक के QR कोड की छवि के नीचे छपा है","dikshaForMobile":"मोबाइल के लिए DIKSHA","district":"जिला","dob":"जन्म दिनांक","done":"पूर्ण","downloadCourseQRCode":"पाठ्यक्रम का QR कोड डाउनलोड करें","downloadDikshaForMobile":"मोबाइल के लिए DIKSHA डाउनलोड कीजिये","downloadThe":"डाउनलोड करें","dropcomment":"टिपण्णी कीजिये","ecmlarchives":"ECML अभिलेख","edit":"संपादित करें","editPersonalDetails":"व्यक्तिगत विवरण अद्यतित करें","editUserDetails":"उपयोगकर्ता का विवरण संपादित करें","education":"शिक्षा","eightCharacters":"८ या अधिक वर्णों का प्रयोग कीजिये","email":"ईमेल पता","emptycomments":"कोई टिपण्णी नहीं है","enddate":"अंतिम तारीख़","enjoyedContent":"क्या यह कंटेंट लाभदायक है?","enrollcourse":"कोर्स में नामांकन कीजिये","enrollmentenddate":"नामांकन की अंतिम तारीख़","enterCertificateCode":"प्रमाण पत्र का कोड दर्ज करें","enterDialCode":"६ अंकों का QR कोड दर्ज करें","enterEightCharacters":"8 वर्ण दर्ज करें","enterEmailID":"अपना ईमेल पता दर्ज करें","enterName":"नाम दर्ज कीजिये","enterOTP":"OTP दर्ज करें","enterQrCode":"QR कोड दर्ज करें","enterValidCertificateCode":"प्रमाण पत्र का वैध कोड दर्ज करें","enternameAsRegisteredInAccount":"और {instance} अकाउंट में आपका नाम","epubarchives":"epub अभिलेख","errorConfirmPassword":"पासवर्ड समान नहीं है","experience":"अनुभव","expiredBatchWarning":"{EndDate} को बैच समाप्त हुआ, इसके बाद आपकी प्रगति अद्यतित नहीं होगी","explore":"अन्वेषण","exploreContentOn":"कंटेंट का अन्वेषण कीजिये {instance}","explorecontentfrom":"कंटेंट का अन्वेक्षण कीजिये","exprdbtch":"समाप्त बैच","facebook":"फेसबुक","failres":"असफलता के कारणों की सूची","fetchingBlocks":"प्रतीक्षा कीजिये, खण्ड सूची लायी जा रही है","fetchingSchools":"प्रतीक्षा कीजिये विद्यालयों की सूची लायी जा रही है","filterby":"से फ़िल्टर करें","filters":"फिल्टर्स","first":"प्रथम","firstName":"प्रथम नाम","flaggedby":"के द्वारा फ्लैग किया गया","flaggeddescription":"विवादास्पद विवरण","flaggedreason":"फ्लैग करने का कारण बताएं","fnameLname":"कृपया अपना प्रथम नाम व उपनाम दर्ज करें","for":"के लिए","forDetails":"अधिक जानकारी के लिए","forMobile":"मोबाइल के लिए","forSearch":"{searchString} के लिये","fullName":"पूरा नाम","gender":"लिंग","getUnlimitedAccess":"अपने मोबाइल पर पाठ्यपुस्तकों, पाठों और पाठ्यक्रमों का असीमित अभिगम प्राप्त करें","goback":"रद्ध करने हेतु","grade":"श्रेणी","grades":"श्रेणियाँ","graphStat":"सांख्यिकीय ग्राफ","h5parchives":"H5P अभिलेख","homeUrl":"होम URL","howToUseDiksha":"{instance} डेस्कटॉप एप का उपयोग कैसे करें?","htmlarchives":"HTML अभिलेख","imagecontents":"छवि वस्तु","inAll":"सभी में खोज़े","inUsers":"उपयोगकर्ताओ में","inactive":"निष्क्रय","institute":"संस्थान का नाम","iscurrentjob":"क्या यह आपका वर्तमान कार्य है?","itis":"यह","keywords":"कीवर्ड","language":"विदित भाषाएं","last":"अंतिम","lastAccessed":"पिछला अभिगम","lastName":"उपनाम","lastupdate":"अंतिम अद्यतन","learners":"शिष्य  ","licenseTerms":"लाइसेंस शर्तें","linkCopied":"लिंक कॉपी कर लिया गया है","linkedContents":"जुड़े हुए कंटेंट","linkedIn":"लिंक्ड-इन","location":"स्थान","lockPopupTitle":"{collaborator} अभी {contentName} पर कार्यशील है| पुनः प्रयास करें","markas":"अंकित करें","medium":"माध्यम","mentors":"मार्गदर्शक","mergeAccount":"अकाउंट मिलाये","mobileEmailInfoText":"DIKSHA में लॉग इन करने के लिए अपना मोबाइल नंबर या ईमेल पता दर्ज करें","mobileNumber":"मोबाइल क्रमांक","mobileNumberInfoText":"DIKSHA में लॉग इन करने के लिए अपना मोबाईल नंबर दर्ज करें","more":"और...","myBadges":"मेरे बैज","mynotebook":"मेरी किताब","mynotes":"मेरी टिप्पणियाँ","name":"नाम","nameRequired":"नाम दर्ज करें","newPassword":"नया पासवर्ड","next":"अगला","noContentToPlay":"चलाने के लिए कोई कंटेंट नहीं है","noDataFound":"कोई डाटा नहीं मिला","offline":"आप इंटरनेट से नहीं जुड़े है","onDiksha":"{instance} पर","online":"आप अब ऑनलाइन हैं","opndbtch":"बैच - नामांकन हेतु उपलब्ध","orgId":"संस्था क्रमांक","orgType":"Org Type","organization":"संस्था","orgname":"संस्था का नाम","orgtypes":"संस्था का प्रकार","otpMandatory":"OTP आवश्यक","otpValidated":"OTP मान्य है","ownership":"स्वामित्व","participants":"प्रतिभागी","password":"पासवर्ड","passwordMismatch":"पासवर्ड समान नहीं है, सही पासवर्ड दर्ज करें","pdfcontents":"pdf वस्तु","percentage":"प्रतिशत","permanent":"स्थायी","phone":"मोबाईल नंबर","phoneNumber":"मोबाईल नंबर","phoneOrEmail":"मोबाइल नंबर या ईमेल पता दर्ज करें","phoneRequired":"मोबाईल क्रमांक जरुरी है","phoneVerfied":"मोबाईल नंबर सत्यापित","phonenumber":"मोबाईल नंबर","pincode":"पिन कोड","playContent":"कंटेंट चलाएँ","plslgn":"यह सत्र समाप्त हो गया है| {instance} जारी रखने के लिए पुनः लॉग इन करें","previous":"पिछला","processid":"प्रक्रिया क्रमांक","profilePopup":"प्रासंगिक कंटेंट के लिए विवरण दीजिये","publicFooterGetAccess":"DIKSHA शिक्षको, विद्यार्थीयों, एवं अभिभावकों के लिए प्रासंगिक और असीम संसाधनों का अभिगम प्रदान करती है  - ऐप डाउनलोड करें और पाठ्यपुस्तक का QR कोड स्कैन करके वर्कशीट, शिक्षण सामग्री आदि का उपभोग करें","publishedBy":"प्रकाशक","reEnterPassword":"पासवर्ड दोबारा दर्ज करें","readless":"कम पढ़ें...","readmore":"...आगे पढ़े","receiveOTP":"आप OTP कहाँ पाना चाहते है?","recoverAccount":"अकाउंट बहाल कीजिये","redirectMsg":"यह कंटेंट बाह्य स्त्रोतों से लिया गया है","redirectWaitMsg":"प्रतीक्षा कीजिये, कंटेंट लोड हो रहा हैं...","removeAll":"सभी हटायें","reportUpdatedOn":"रिपोर्ट की अंतिम अद्यतन तारीख","resendOTP":"OTP दोबारा प्राप्त करें","resentOTP":"OTP दोबारा भेजा गया| OTP दर्ज करें|","resourcetype":"संसाधन का प्रकार","returnToCourses":"कौर्स पर जाइयें ","role":"भूमिका","roles":"भूमिका","sameEmailId":"यह ईमेल पता आपके प्रोफाइल से पहले ही जुड़ा हुआ है","samePhoneNo":"यह मोबाइल क्रमांक आपके प्रोफाइल से पहले ही जुड़ा हुआ है","school":"विद्यालय","search":"ख़ोज","searchForContent":"कंटेंट खोजें","searchUserName":"प्रतिभागी के नाम से ख़ोजें","seladdresstype":"पते का प्रकार चुनिये","selectAll":"सभी चुनिये","selectBlock":"खण्ड चुनिये","selectDistrict":"ज़िला चुनिए","selectSchool":"विद्यालय चुनिए","selectState":"राज्य चुनिये","selected":"चयनित","selectreason":"कारण चुनिये","sesnexrd":"सत्र समाप्त","setRole":"उपयोगकर्ता अद्यतित करें","share":"शेयर करें","sharelink":"लिंक शेयर करें","showLess":"कम देखें","showingResults":"परिणाम देखें","showingResultsFor":"{searchString} के परिणाम","signUp":"पंजीकरण","signinenrollHeader":"पाठ्यक्रम केवल पंजीकृत उपयोगकर्ताओं के लिए है| अभिगम हेतु लॉग इन करें...","signinenrollTitle":"पाठ्यक्रम में नामांकन हेतु लॉग इन करें","skillTags":"योग्यता टैग","sltBtch":"आगे जाने के लिए बैच का चयन करें","socialmedialinks":"सोशल मीडिया लिंक","sortby":"आधार पर छाँटे","startExploringContent":"QR कोड दर्ज करें व कंटेंट का अन्वेक्षण कीजिये","startExploringContentBySearch":"ख़ोज व QR कोड परिणामों से कंटेंट का अन्वेक्षण कीजिये ","startdate":"आरंभ तिथि","state":"राज्य","stateRecord":"राज्यों के अभिलेख के अनुसार","subject":"विषय","subjects":"विषयों","subjectstaught":"पढ़ाये गये विषय ","submitOTP":"OTP दाख़िल करें","subtopic":"उपशीर्षक","successres":"सफलता परिणाम","summary":"संक्षिप्त विवरण","supportedLanguages":"समर्थित भाषाएँ: ","tableNotAvailable":"इस रिपोर्ट की तालिका उपलब्ध नहीं है","takenote":"टिप्पणी लेना","tcfrom":"से","tcno":"नहीं","tcto":"तक","tcyes":"हाँ","tenDigitPhone":"१० अंको का मोबाईल नंबर","termsAndCond":"नियम व शर्तें","termsAndCondAgree":"मैं उपयोग के नियम एवं शर्तों को स्वीकार करता/करती हूँ","title":"शीर्षक","toTryAgain":"पुनः प्रयास करने के लिए","topic":"शीर्षक","topics":"शीर्षक","trainingAttended":"प्रशिक्षण में भाग लिया","twitter":"ट्विट्टर","unableToUpdateEmail":"ईमेल पता अपडेट करने में असमर्थ?","unableToUpdateMobile":"मोबाइल क्रमांक अद्यतित करने में असमर्थ?","unableToVerifyEmail":"ईमेल पता सत्यापित करने में असमर्थ","unableToVerifyPhone":"मोबाईल नंबर सत्यापित करने में असमर्थ","unenrollMsg":"क्या आप इस बैच से अपना नामांकन रद्द करना चाहते है?","unenrollTitle":"बैच से नामांकन रद्द कीजिये","uniqueEmail":"यह ईमेल पता पहले से पंजीकृत है","uniqueEmailId":"यह ईमेल पता पंजीकृत है| कृपया अन्य ईमेल पता दर्ज करें","uniqueMobile":"यह मोबाइल नंबर पहले से पंजीकृत है, कृपया अन्य क्रमांक दर्ज करें","uniquePhone":"यह मोबाईल नंबर पहले से पंजीकृत है","updateEmailId":"ईमेल पता अद्यतित करें","updatePhoneNo":"मोबाइल क्रमांक अद्यतित करें","updatecontent":"कंटेंट अपडेट करे","updatedon":"को अद्यतित किया गया","updateorgtype":"संस्था का प्रकार अद्यतित करें","upldfile":"फाइल अपलोड कीजिये","uploadContent":"कंटेंट अपलोड कीजिये","uploadEcarFromPd":"{instance} फाइल (उदाहरण:MATHS_01.ecar) अपने पैन ड्राइव से अपलोड करें","userFilterForm":"प्रतिभागिओ को ख़ोजें","userID":"उपयोगकर्ता क्रमांक","userId":"उपयोगकर्ता ID","userType":"उपयोगकर्ता का प्रकार","username":"उपयोगकर्ता नाम","validEmail":"कृपया वैध ईमेल पता दर्ज कीजिये","validPassword":"कृपया वैध पासवर्ड दर्ज करें","validPhone":"१० अंको का वैध मोबाईल नंबर दर्ज कीजिये","verifyingCertificate":"प्रमाण पत्र सत्यापित किया जा रहा है","versionKey":"वर्ज़न : ","videos":"विडियो","view":"देखें","viewless":"कम दिखाएं","viewmore":"अधिक देखें","viewworkspace":"कार्यक्षेत्र का अवलोकन कीजिये","watchCourseVideo":"विडिओ देखें","whatsQRCode":"QR कोड क्या है?","whatwentwrong":"त्रुटि बताएं...","whatwentwrongdesc":"त्रुटि का पूरा विवरण हमें बताये, जिससे हम जल्द ही समाधान निकाल कर आपको सूचित कर सके| यह जानकारी हमें पहुचाने के लिए आभार|","worktitle":"व्यवसाय/ पद नाम","wrongEmailOTP":"आपने गलत OTP प्रविष्ट किया है| अपने ईमेल में प्राप्त हुआ OTP दर्ज करें| OTP केवल ३० मिनिट के लिए वैध है|","wrongPhoneOTP":"आपने गलत OTP दर्ज किया है| अपने मोबाईल नंबर में प्राप्त हुआ OTP दर्ज करें| OTP केवल ३० मिनिट के लिए वैध है|","yop":"उत्तीर्ण वर्ष","indPhoneCode":"९१","howToVideo":"How to video","limitsOfArtificialIntell":"Limits of artificial intelligence","watchVideo":"See Video","manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","emailPhonenotRegistered":"Email address / Mobile number is not registered with {instance}","enterNameNotMatch":"The entry does not match the name registered with {instance}","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","otpSentTo":"OTP has been sent to","validFor":"valid for 30 min","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","contentcopiedtitle":"This content is derived from","contenttype":"Content","noCreditsAvailable":"No credits available","dashboardcertificateStatus":"Certificate Status","deviceId":"Device ID","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadingContent":"Preparing to download {contentName}...","errorMessage":"Error message","externalId":"External Id","extlid":"OrgExternalId","lang":"Language","orgCode":"Org Code","originalAuthor":"Original Author","preferredLanguage":"Preferred Language","provider":"OrgProvider","publishedOnInstanceName":"Published on {instance} by","recentlyAdded":"Recently Added","contentType":"Content Type","retired":"Retired","rootOrg":"Root org","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","updatecollection":"Update All","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","exportingContent":"Preparing to copy {contentName}...","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","isRootOrg":"Is RootOrg","orgName":"Org Name","position":"Position","theme":"Theme","downloadAppLite":"Download {instance} Lite Desktop App","releaseDateKey":"Release Date:","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","desktopAppFeature001":"Free unlimited content","desktopAppFeature002":"Multilingual support","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from","noBookfoundTitle":"Board is adding books","noBookfoundSubTitle":"Your board is yet to add more books. Tap the button to see more books and content on {instance}","noBookfoundButtonText":"See more books and contents"},"btn":{"add":"जोड़े","addToLibrary":"पुस्तकालय मे डाउनलोड करें","addingToLibrary":"मेरे डाउनलोड में डाउनलोड हो रहा हैं","apply":"लागू करिये","browse":"ऑनलाइन ब्राउज करें","cancel":"रद्द करें","cancelCapitalize":"रद्ध कीजिये","chksts":"अवस्था की जाँच करें","clear":"ख़ाली कीजिये","close":"समाप्त ","contentImport":"फाइल अपलोड करें","copyLink":"लिंक कॉपी करें","create":"निर्माण करें","download":"डाउनलोड","downloadCertificate":"प्रमाण पत्र डाउनलोड करें","downloadCompleted":"डाउनलोड पूर्ण हुआ","downloadInstruction":"डाउनलोड जानकारी देखें","downloadManager":"मेरे डाउनलोड","downloadPending":"डाउनलोड लंबित","edit":"अद्यतित करें","enroll":"प्रशिक्षण मे भाग लिजिए","login":"लॉग-इन","merge":"मिलायें","myLibrary":"मेरे डाउनलोड","next":"अगला","no":"नहीं","ok":"ठीक हैं ","previous":"पिछला","remove":"हटाएँ","reset":"रिसेट","resume":"पुनः आरंभ करें","resumecourse":"पाठ्यक्रम  पुनः आरंभ करें","save":"सहेजें","selectContentFiles":"फाइल/फाइलें चुनिये","selectLanguage":"भाषा चुनिये","selrole":"भूमिका चुनिये ","signin":"लॉग इन","signup":"पंजीकरण","smplcsv":"प्रतिरूप CSV डाउनलोड करें","submit":"दाख़िल करें","submitbtn":"दाख़िल करें","tryagain":"पुनः प्रयास करें","unenroll":"नामांकन रद्द कीजिये","update":"अद्यतन","uploadorgscsv":"संस्थानों का CSV अपलोड करें","uploadusrscsv":"उपयोगकर्ता CSV फाइल अपलोड कीजिये","verify":"प्रमाणित करे","viewCourseStatsDashboard":"पाठ्यक्रम डैशबोर्ड देखें","viewcoursestats":"प्रशिक्षण सांख्यिकीय देखें","viewless":"कम दिखाएं","viewmore":"अधिक दिखाएं","yes":"हाँ","yesiamsure":"ठीक हैं ","downloadPdf":"Help","viewdetails":"View Details","downloadFailed":"Download failed","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","createNew":"Create New","export":"Copy to pen drive","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"},"addedToLibrary":"Added To Library"},"drpdn":{"female":"स्त्री","male":"पुरुष","transgender":"विपरीतलिंगी"},"instn":{"t0002":"आप एक बार में 199 संस्था CSV फाइल में जोड़ सकते है","t0011":"प्रक्रिया क्रमांक से आप अपनी प्रगति की जांच कर सकते है","t0012":"कृपया प्रक्रिया क्रमांक को सहेज कर रखे| आप इससेअपनी प्रगति की जांच कर सकते है","t0013":"प्रासंगिक CSV फाइल डाउनलोड कीजिये","t0015":"संस्थायें अपलोड करे","t0016":"उपयोगकर्ता अपलोड कीजिये","t0020":"योग्यता प्रविष्ट कीजिये","t0021":"प्रत्येक संस्था का नाम नयी पंक्ति में दर्ज करें","t0055":"उद्घोषणा का विवरण नहीं मिल रहा है!","t0056":"पुनः प्रयास करें...","t0058":"डाउनलोड प्रकार","t0059":"CSV","t0060":"धन्यवाद!","t0061":"त्रुटि...","t0062":"आपने इस पाठ्यक्रम के लिए बैच नहीं बनाया है| बैच निर्मित करें व पुनः अपने डैशबोर्ड की जाँच करें|","t0063":"आपने अभी तक कोई पाठ्यक्रम नहीं बनाया है| नया पाठ्यक्रम बनाए और दोबारा डैशबोर्ड देखें|","t0064":"एक ही प्रकार के विभिन्न पते चुने गये है| पते का प्रकार बदलें|","t0065":"डाउनलोड","t0070":"CSV फाइल डाउनलोड कीजिये. एक संस्था के सभी उपयोगकर्ता एक ही बार में अपलोड किए जा सकते है","t0072":"प्रथम नाम: उपयोगकर्ता का प्रथम नाम प्रेषित कीजिये, केवल अक्षरात्मक वर्ण","t0077":"पंजीकृत उपयोगकर्ता","t0081":"DIKSHA में पंजीकरण करने के लिए धन्यवाद! OTP आपको SMS द्वारा भेजा गया है| OTP प्रविष्ट करके अपना मोबाईल नंबर प्रमाणित करें व पंजीकरण की प्रक्रिया पूर्ण कीजिये|","t0082":"DIKSHA में पंजीकरण करने के लिए धन्यवाद! OTP आपको ईमेल द्वारा भेजा गया है| OTP प्रविष्ट करके अपना ईमेल प्रमाणित करें व पंजीकरण की प्रक्रिया पूर्ण कीजिये|","t0083":"मोबाइल क्रमांक सत्यापन हेतु आपको SMS द्वारा OTP भेजा गया हैं ","t0084":"ईमेल पता सत्यापन हेतु आपको ईमेल द्वारा OTP भेजा गया है","t0085":"रिपोर्ट में पहले १०,००० प्रतिभागियों का डेटा दिखाया गया है। बैच के सभी प्रतिभागियों की प्रगति देखने के लिए डाउनलोड पर क्लिक करें।","t0096":"मैं कंटेंट क ैसे चलाऊ?","t0094":"मैं {instance} डेस्कटॉप ऐप पर कंटेंट कैसे लोड करूं??","t0095":"मैं पुस्तकालय से कंटेंट कैसे डाउनलोड करूं?","t0097":"मैं {instance} अपनी पेन ड्राइव में कंटेंट कैसे कॉपी करूं?","t0007":"The OrgName column is mandatory. Enter organization name in this column","t0022":"Entering details in all other columns is optional:","t0023":"isRootOrg: Valid values for this column True False","t0024":"channel: Unique ID provided during master organization creation","t0025":"externalId: Unique ID associated with each organization in the administrating  organization’s repository","t0026":"provider: Channel ID of the administrator organization","t0027":"description: Details describing  the organization","t0028":"homeUrl: Organization’s homepage url","t0029":"orgCode: Organization’s unique code, if any,","t0030":"orgType: Type of organization, such as, NGO, primary school, secondary school etc","t0031":"preferredLanguage: Language preferences for the organization, if any","t0032":"contactDetail: Organization’s mobile number and email address. Details should be entered within curly brackets in single quotes. For example: [{‘mobile number’: ‘1234567890’}]","t0049":"channel is mandatory if value for column isRootOrg is True","t0050":"externalId and provider are mutually mandatory","t0071":"Enter the following mandatory details of user accounts:","t0073":"Mobile number or email address: User’s ten-digit mobile number or email address. Provide either one of the two. However, it is advisable to provide both if available.","t0074":"Username: Unique name assigned to the user by the organization, alphanumeric.","t0076":"Note: All other columns in the CSV file are optional, for details on filling these, refer to","t0078":"locationId: An ID which identifies an announcement topic for a particular organisation","t0079":"locationCode: Comma separated list of location codes","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"टिप्पणी या शीर्षक से ख़ोजें","t0002":"टिप्पणी जोड़े","t0005":"बैच के मार्गदर्शक चुनें","t0006":"बैच के सदस्य चुनें"},"lnk":{"announcement":"उद्घोषणा डैशबोर्ड","assignedToMe":"मुझे नियुक्त किये गये","contentProgressReport":"कंटेंट प्रगति रिपोर्ट","contentStatusReport":"कंटेंट अवस्था रिपोर्ट","createdByMe":"मेरे द्वारा बनाये जाये","dashboard":"एडमिन डैशबोर्ड","detailedConsumptionMatrix":"विस्तृत खपत मैट्रिक्स","detailedConsumptionReport":"विस्तृत खपत रिपोर्ट","footerContact":"पूछताछ के लिए सम्पर्क करें ","footerDIKSHAForMobile":"मोबाईल DIKSHA ऐप","footerDikshaVerticals":"दीक्षा विभाजन इकाई","footerHelpCenter":"सहायता केंद्र","footerPartners":"सहभागी","footerTnC":"उपयोग की शर्ते","logout":"लॉग आउट","myactivity":"मेरी गतिविधि","profile":"प्रोफ़ाइल","textbookProgressReport":"पाठ्यपुस्तक प्रगति रिपोर्ट","viewall":"सब देखें","workSpace":"कार्यक्षेत्र"},"pgttl":{"takeanote":"टिप्पणीयाँ"},"prmpt":{"deletenote":"टिप्पणी हटाने की पुष्टि करें?","enteremailID":"अपना ईमेल पता प्रविष्ट करें","enterphoneno":"१० अंको का मोबाईल नंबर दर्ज करें","search":"ख़ोज","userlocation":"स्थान"},"scttl":{"blkuser":"उपयोगकर्ता को अवरोध कीजिये","contributions":"योगदान","signup":"पंजीकरण","todo":"करने के लिए","instructions":"Instructions :","error":"Error:"},"snav":{"shareViaLink":"लिंक द्वारा शेयर किया गया","submittedForReview":"निरीक्षण के लिए प्रस्तुत किया गया"},"tab":{"all":"सभी","community":"समूह","courses":"पाठ्यक्रम","help":"सहायता","home":"होम","profile":"प्रोफ़ाइल","resources":"पुस्तकालय","users":"उपयोगकर्ता","workspace":"कार्यक्षेत्र","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"पाठ्यक्रम पूर्ण हुआ","बैच":"विवरण","messages":{"emsg":{"m0001":"नामांकन पूर्ण नहीं किया जा सका| पुनः प्रयास करें","m0005":"त्रुटि उत्पन हुई है, पुनः प्रयास करें","m0007":"फाइल का आकार कम करें''...","m0008":"कंटेंट कॉपी में असमर्थ, कृपया पुनः प्रयास करें...","m0009":"नामांकन पूर्ण नहीं किया जा सका| पुनः प्रयास करें","m0014":"मोबाइल क्रमांक अद्यतित करने में असफ़ल","m0015":"ईमेल पता अद्यतित करने में असफ़ल","m0016":"राज्यों की जानकारी लाने में असमर्थ| पुनः प्रयास करें","m0017":"ज़िला की जानकारी लाने में असमर्थ| पुनः प्रयास करें","m0018":"प्रोफाइल अद्यतित करने में असफ़ल","m0019":"रिपोर्ट डाउनलोड करने में असमर्थ| पुनः प्रयास करें","m0020":"उपयोगकर्ता अद्यतित नहीं किया जा सका| पुनः प्रयास करें","m0003":"You should enter Provider and External Id Or Organization Id","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"नामांकित कोर्स लाने में असमर्थ, पुनः प्रयास करें...","m0002":"पाठ्यक्रम लाने में असमर्थ,पुनः प्रयास करें...","m0003":"बैच सारणी लाने में असफल","m0004":"डाटा लाने में असमर्थ, पुनः प्रयास करें...","m0030":"टिप्पणी बनाने में असमर्थ, पुनः प्रयास करें...","m0032":"टिप्पणी हटाने में असमर्थ, पुनः प्रयास करें...","m0033":"टिप्पणी लाने में असमर्थ, पुनः प्रयास करें...","m0034":"टिप्पणी अद्यतित करने में असमर्थ, पुनः प्रयास करें...","m0041":"शैक्षणिक योग्यता हटाने में असमर्थ, पुनः प्रयास करें...","m0042":"अनुभव विवरण हटाने में असमर्थ","m0043":"पता हटाने में असमर्थ, पुनः प्रयास करें...","m0048":"उपयोगकर्ता का प्रोफाइल अपडेट करने में असमर्थ, पुनः प्रयास करें...","m0049":"डेटा लोड नहीं किया जा सका","m0050":"निवेदन जमा करने में विफल, पुनः प्रयास करें...","m0051":"आकस्मिक त्रुटि, पुनः प्रयास करें...","m0054":"बैच वर्णन लाने में असमर्थ, पुनः प्रयास करें... ","m0056":"उपयोगकर्ता सूची नहीं लाई जा सकी| पुनः प्रयास करें","m0076":"आवश्यक फील्ड दर्ज करें","m0077":"खोज परिणाम लाने में असमर्थ...","m0079":"बैज प्रदान करने में असमर्थ, पुनः प्रयास करें","m0080":"बैच लाने में असमर्थ, पुनः प्रयास करें...","m0082":"यह पाठ्यक्रम नामांकन के लिये उपलब्ध नहीं है","m0085":"तकनीकी त्रुटि, पुनः प्रयास करें","m0086":"यह पाठ्यक्रम रचयिता द्वारा निवृत्त करने के कारण उपलब्ध नहीं है","m0087":"कृपया प्रतीक्षा कीजिये","m0088":"विवरण प्रस्तुत किया जा रहा है","m0089":"कोई प्रसंग उपलब्ध नहीं है","m0091":"कंटेंट कॉपी में असमर्थ| पुनः प्रयास करें...","m0094":"डाउनलोड करने में असमर्थ| पुनः प्रयास करें...","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0090":"Could not download. Try again later","m0093":"{FailedContentLength} content(s) upload failed","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"यह पाठ्यक्रम अनुचित फ्लैग होने के कारण निरिक्षण में है|","m0005":"कृपया वैध चित्र अपलोड करें| ४ MB फ़ाइल का समर्थित फॉर्मेट - jpeg, jpg, png. ","m0017":"प्रोफ़ाइल सम्पूर्णता","m0022":"पिछले ७ दिनों की सांख्यिकीय देखे","m0023":"पिछले १४ दिनों की सांख्यिकीय देखे","m0024":"पिछले ५ हफ़्तो का सांख्यिकीय देखे","m0025":"आरम्भ से सांख्यिकीय देखे","m0026":"नमस्ते, यह पाठ्यक्रम अभी के लिए उपलब्ध नहीं है| शायद पाठ्यक्रम रचियताने  उसमें  परिवर्तन किया हैं।","m0027":"कंटेंट रचियता द्वारा संशोधित होने के कारण यह कंटेंट उपलब्ध नहीं है| ","m0034":"कंटेंट बाहरी स्रोत से है, इसे थोड़ी देर में खोला जाएगा।","m0035":"अनधिकृत अभिगम ","m0036":"यह कंटेंट बाहरी स्त्रोतों से लिया गया है, देखने के लिए प्रीव्यू बटन दबाएँ","m0040":"कार्य प्रगतिशील है, पुनः प्रयास करें","m0041":"आपका प्रोफ़ाइल","m0042":"% पूर्ण","m0043":"प्रोफाइल में ईमेल उपलब्ध नहीं है| कृपया ईमेल अद्यतित करें ","m0044":"डाउनलोड असफ़ल","m0045":"डाउनलोड करने में असमर्थ| कृपया कुछ समय पश्चात पुनः प्रयास करें","m0060":"यदि {instance} पर आपके दो अकाउंट है,  तो यहाँ क्लिक करें","m0062":"या, क्लिक करे","m0063":"दोनो अकाउंट का विवरण मिला कर देखें, और","m0064":"दूसरा अकाउंट हटाये","m0066":"पूर्ण होने पर आपको सूचित किया जायेगा","m0067":"अकाउंट मिलान आरम्भ नहीं किया जा सका। प्रोफाइल सूची के विकल्पों मे ''अकाउंट मिलान'' क्लिक करके पुन: प्रयास करें","m0073":"{instance} पर नया अकाउंट बनाने के लिये ''ठीक है'' क्लिक करें","m0047":"You can only select 100 participants","m0061":"to","m0065":"Account merge initiated successfully","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"टिप्पणी सफलतापूर्वक बनाई गयी","m0013":"टिप्पणी सफलतापुर्वक अद्यतित की गई","m0014":"शैक्षणिक योग्यता सफलतापूर्वक हटायी गयी","m0015":"अनुभव सफलतापूर्वक हटाया गया","m0016":"पता सफलतापूर्वक हटाया गया","m0018":"प्रोफाइल चित्र  सफलतापूर्वक अद्यतित किया गया","m0019":"विवरण सफलतापूर्वक अद्यतित किया गया...","m0020":"शिक्षा सफलतापूर्वक अपडेट की गयी","m0021":"अनुभव ससफलतापूर्वक अद्यतित किया गया...","m0022":"अतिरिक्त जानकारी सफलतापूर्वक अद्यतित की गयी...","m0023":"पता सफलतापुर्वक अद्यतित किया गया...","m0024":"नई शैक्षणिक योग्यता सफलतापूर्वक जोड़ी गयी","m0025":"नया  अनुभव सफलतापूर्वक जोड़ा गया","m0026":"नया पता सफलतापूर्वक जोड़ा गया","m0028":"भूमिका सफलतापूर्वक अद्यतित की गयी","m0029":"उपयोगकर्ता को सफलतापूर्वक हटाया गया","m0030":"उपयोगकर्ता सफलतापूर्वक अपलोड किये गये","m0031":"संस्था सफलतापूर्वक अपलोड की गयी","m0032":"अवस्था सफलतापूर्वक लायी गयी","m0036":"पाठ्यक्रम सफलतापूर्वक बैच के लिए नामांकित हुआ है","m0037":"सफलतापूर्वक अद्यतित किया गया","m0038":"योग्यता सफलतापूर्वक अद्यतित किया गया","m0039":"पंजीकरण सफल, लॉग इन करें...","m0042":"कंटेंट सफलतापूर्वक कॉपी किया गया","m0043":"पुष्टि सफलतापूर्वक की गयी हैं ","m0044":"बैज सफलतापूर्वक प्रदान किया गया","m0045":"उपयोगकर्ता का नामांकन सफलतापूर्वक रद्द किया गया","m0046":"प्रोफाइल सफलतापूर्वक अद्यतित किया गया","m0047":"आपका मोबाइल क्रमांक अद्यतित किया गया है","m0048":"आपका ईमेल पता अद्यतित किया गया है","m0049":"उपयोगकर्ता सफलतापूर्वक अद्यतित किया गया","m0050":"कंटेंट रेट करने के लिए धन्यवाद!","m0053":"डाउनलोड हो रहा है","m0055":"अपडेट हो रहा है...","m0056":"कंटेंट अद्यतित करने के लिये ऑनलाइन जाइये","moo41":"घोषणाएं सफलतापूर्वक रद्ध की गयी","m0035":"Org type added successfully","m0040":"Profile field visibility updated successfully","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0054":"{UploadedContentLength} content(s) uploaded successfully","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"कोई परिणाम नहीं","m0007":"ख़ोज विकल्प और स्पष्ट करें...","m0008":"कोई परिणाम नहीं","m0009":"चलाने में असमर्थ... पुनः प्रयास करें, या बंद करें","m0022":"आपका प्रालेख निरीक्षण के लिए प्रस्तुत कीजिये| निरिक्षण के बाद ही कंटेंट प्रकाशित हो सकता है|","m0024":"उपयुक्त फॉर्मेट में संलेख, विडिओ अपलोड कीजिये| आपने अभी कुछ अपलोड नहीं किया हैं|","m0033":"अपना प्रालेख निरीक्षण के लिए दाख़िल कीजिये| आपने अभी तक कोई भी कंटेंट निरिक्षण के लिए दाख़िल नहीं किया है","m0035":"निरीक्षण के लिए कोई कंटेंट नहीं है","m0060":"प्रोफाइल प्रबल कीजिये!","m0062":"वैध शैक्षणिक उपाधि दर्ज करें","m0063":"वैध पता पंक्ति दर्ज कीजिये","m0064":"शहर दर्ज कीजिये","m0065":"वैध पिनकोड दर्ज करें","m0066":"पहला नाम दर्ज कीजिये","m0067":"कृपया वैध मोबाईल नंबर प्रदान करें","m0069":"भाषा चुनिये","m0070":"शैक्षणिक संस्थान का नाम दर्ज करें","m0072":"कृपया वैध व्यवसाय / पद दर्ज कीजिये","m0073":"वैध संस्था का नाम दर्ज करें","m0077":"निवेदन दाख़िल हो रहा है...","m0080":"केवल CSV फॉर्मेट में अपलोड करें","m0081":"कोई बैच नहीं है","m0083":"आपने यह कंटेंट शेयर नहीं किया है","m0087":"कृपया वैध उपयोगकर्ता का नाम दर्ज करें, ५ वर्ण अनिवार्य है...","m0088":"वैध पासवर्ड दर्ज कीजिये","m0089":"वैध ईमेल पता दर्ज करें","m0090":"कृपया भाषा चुनिये","m0091":"वैध मोबाईल नंबर दर्ज करें","m0092":"वैध पहला नाम दर्ज कीजिये","m0094":"कृपया वैध प्रतिशत दर्ज करें","m0095":"आपका निवेदन सफलतापूर्वक प्राप्त हुआ है| आपके ईमेल पर शीघ्र ही एक फाइल भेजी जाएगी| कृपया ईमेल नियमित रूप से जांचे","m0104":"वैध श्रेणी दर्ज कीजिये","m0108":"आपकी प्रगति","m0113":"वैध आरंभ तिथि दर्ज करें","m0116":"चुनी गयी टिप्पणी हटायी जा रही है...","m0120":"कोई कंटेंट उपलब्ध नहीं है","m0121":"कंटेंट जोड़ा नहीं गया","m0122":"यह कंटेंट बनाया जा रहा है","m0123":"आप अपने मित्र से खुद को सहयोगी के रूप में जोड़ने के लिए कहें| मित्र द्वारा जोड़े जाने पर आप को ईमेल प्राप्त होगा|","m0125":"संसाधन, पुस्तक, कोर्स, या कलेक्शन अपलोड कीजिये| आपका कोई भी प्रालेख उपलब्ध नहीं है| ","m0126":"कृपया बोर्ड चुनिये","m0127":"कृपया माध्यम चुनिए","m0128":"कक्षा चुनिये","m0129":"नियम व शर्तें लोड हो रही है| कृपया प्रतीक्षा कीजिये...","m0130":"ज़िला की जानकारी लायी जा रही है","m0131":"कोई रिपोर्ट उपलब्ध नहीं है","m0132":"आपका अनुरोध दर्ज किया गया है | फ़ाइल आपके पंजीकृत ईमेल पर शीघ्र ही भेजी जायेगी","m0134":"नामांकन करें","m0135":"वैध तारीख़ दर्ज करें","m0136":"नामांकन की अंतिम तारीख़","m0138":"असफ़ल","m0139":"डाउनलोड हो गया है","m0140":"डाउनलोड हो रहा है","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0133":"Browse and download, or upload content to start using the desktop app","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"}},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again  later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"participants":"प्रतिभागी","resourceService":{"frmelmnts":{"lbl":{"userId":"उपयोगकर्ता ID"}}},"t0065":"फाइल डाउनलोड कीजिये","orgname":"orgname"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","no":"No","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"rmelmnts":{"btn":{"no":"No"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
diff --git a/src/app/resourcebundles/json/kn.json b/src/app/resourcebundles/json/kn.json
index b9f84a789cdb93cb03650ace9677a845bb06acc3..0ab2d1425925138d610e4875d1b2e00ade8a13a4 100644
--- a/src/app/resourcebundles/json/kn.json
+++ b/src/app/resourcebundles/json/kn.json
@@ -1 +1 @@
-{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"ಹೊಂದಾಣಿಕೆಯಾಗುವ ಯಾವುದೇ ದಾಖಲೆಗಳು ಇಲ್ಲ","Mobile":"ಮೊಬೈಲ್","SearchIn":"{searchContentType} ಹುಡುಕಿರಿ","Select":"ಆಯ್ಕೆ ಮಾಡಿ. ","aboutthecourse":"ಕೋರ್ಸ್ ಬಗ್ಗೆ","active":"ಸಕ್ರಿಯ","addDistrict":"ಜಿಲ್ಲೆ ಸೇರಿಸಿ","addEmailID":"ಇಮೇಲ್ ID ಸೇರಿಸಿ","addPhoneNo":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಸೇರಿಸಿ","addState":"ರಾಜ್ಯ ಸೇರಿಸಿ","addlInfo":"ಹೆಚ್ಚುವರಿ ಮಾಹಿತಿ","addnote":"ಟಿಪ್ಪಣಿ ಸೇರಿಸು","addorgtype":"ಸಂಸ್ಥೆಯ ವಿಧ ಸೇರಿಸು","address":"ವಿಳಾಸ","addressline1":"ವಿಳಾಸ ಸಾಲು-1","addressline2":"ವಿಳಾಸ ಸಾಲು-2","anncmnt":"ಪ್ರಕಟಣೆಗಳು","anncmntall":"ಎಲ್ಲಾ ಪ್ರಕಟಣೆಗಳು","anncmntcancelconfirm":"ಈ ಪ್ರಕಟಣೆಯನ್ನು ತೋರಿಸುವುದನ್ನು ನಿಲ್ಲಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?","anncmntcancelconfirmdescrption":"ಈ ಕ್ರಿಯೆಯ ನಂತರ ಬಳಕೆದಾರರು ಈ ಪ್ರಕಟಣೆಯನ್ನು ನೋಡಲು ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ","anncmntcreate":"ಪ್ರಕಟಣೆ ರಚಿಸಿ","anncmntdtlsattachments":"ಲಗತ್ತುಗಳು","anncmntdtlssenton":"ಕಳುಹಿಸಲಾಗಿದೆ","anncmntdtlsview":"ವೀಕ್ಷಿಸು","anncmntdtlsweblinks":"ವೆಬ್ ಲಿಂಕ್ ಗಳು","anncmntinboxannmsg":"ಪ್ರಕಟಣೆಗಳು","anncmntinboxseeall":"ಎಲ್ಲವನ್ನು ವೀಕ್ಷಿಸಿ","anncmntlastupdate":"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","anncmntmine":"ನನ್ನ ಪ್ರಕಟಣೆಗಳು","anncmntnotfound":"ಯಾವುದೇ ಘೋಷಣೆ ಕಂಡುಬಂದಿಲ್ಲ!","anncmntoutboxdelete":"ಡಿಲೀಟ್ ಮಾಡಿ","anncmntoutboxresend":"ಮರುಕಳುಹಿಸಿ","anncmntplzcreate":"ದಯವಿಟ್ಟು ಪ್ರಕಟಣೆ ರಚಿಸಿ","anncmntreadmore":"....ಇನ್ನಷ್ಟು ಓದಿ","anncmntsent":"ಕಳುಹಿಸಿದ ಎಲ್ಲಾ ಪ್ರಕಟಣೆಯನ್ನು ತೋರಿಸಲಾಗುತ್ತಿದೆ","anncmnttblactions":"ಕ್ರಿಯೆಗಳು","anncmnttblname":"ಹೆಸರು","anncmnttblpublished":"ಪ್ರಕಟಿಸಲಾಗಿದೆ","anncmnttblreceived":"ಪಡೆದಿದೆ","anncmnttblseen":"ನೋಡಿದೆ","anncmnttblsent":"ಕಳುಹಿಸಿದೆ","attributions":"ಗುಣಲಕ್ಷಣಗಳು","author":"ಲೇಖಕ","badgeassignconfirmation":"ಈ ವಿಷಯಕ್ಕೆ ಬ್ಯಾಡ್ಜ್ ಅನ್ನು ನೀಡಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?","batchdescription":"ಬ್ಯಾಚ್ ವಿವರಣೆ","batchdetails":"ಬ್ಯಾಚ್ ವಿವರಗಳು","batchenddate":"ಕೊನೆಯ ದಿನಾಂಕ","batches":"ಬ್ಯಾಚ್ ಗಳು","batchmembers":"ಬ್ಯಾಚ್ ಸದಸ್ಯರು","batchstartdate":"ಆರಂಭಿಸಿದ ದಿನಾಂಕ","birthdate":"ಹುಟ್ಟಿದ ದಿನಾಂಕ (ದಿದಿ/ತಿತಿ/ವವವವ)","block":"ನಿರ್ಬಂಧಿಸಿ","blocked":"ನಿರ್ಬಂಧಿತ","blockedUserError":"ಬಳಕೆದಾರ ಖಾತೆಯನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ. ದಯವಿಟ್ಟು ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ.","blog":"ಬ್ಲಾಗ್","board":"ಬೋರ್ಡ್/ವಿಶ್ವವಿದ್ಯಾಲಯ","boards":"ಮಂಡಳಿ (ಬೋರ್ಡ್)","browserSuggestions":"ಇನ್ನೂ ಉತ್ತಮ ಅನುಭವಕ್ಕಾಗಿ, ನೀವು ಅಪ್ ಗ್ರೇಡ್ ಮಾಡಿ ಅಥವಾ ಇನ್ಸ್ಟಾಲ್ ಮಾಡಿ","certificateIssuedTo":"ಗೆ ಪ್ರಮಾಣಪತ್ರ ನೀಡಲಾಗಿದೆ ","certificatesIssued":"ಕೊಟ್ಟಿರುವ ಪ್ರಮಾಣಪತ್ರಗಳು","certificationAward":"ಪ್ರಶಸ್ತಿ ಪತ್ರಗಳು & ಪ್ರಶಸ್ತಿಗಳು","channel":"ಮಾಧ್ಯಮ","chkuploadsts":"ಅಪ್ಲೋಡ್ ಸ್ಥಿತಿ ಪರಿಶೀಲಿಸಿ","chooseAll":"ಎಲ್ಲವನ್ನೂ ಆಯ್ಕೆ ಮಾಡಿ.","city":"ನಗರ","class":"ತರಗತಿ","classes":"ತರಗತಿಗಳು","clickHere":"ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ","completed":"ಪೂರ್ಣಗೊಂಡಿತು","completedCourse":"ಕೋರ್ಸ್ ಪೂರ್ಣಗೊಂಡಿತು","completingCourseSuccessfully":"ಯಶಸ್ವಿಯಾಗಿ ಕೋರ್ಸ್ ಅನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು,","concept":"ಪರಿಕಲ್ಪನೆಗಳು","confirmPassword":"ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಿಸಿ","confirmblock":"ನೀವು ನಿರ್ಬಂಧಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ","connectInternet":"ಕಂಟೆಂಟ್ ನೋಡಲು ಇಂಟರ್ನೆಟ್ ಗೆ ಸಂಪರ್ಕ ಹೊಂದಿ","contactStateAdmin":"ಈ ತಂಡಕ್ಕೆ ಹೆಚ್ಚು ಜನ ಭಾಗವಹಿಸುವವರನ್ನು ಸೇರಿಸಲು ನಿಮ್ಮ  ರಾಜ್ಯದ ಆಡಳಿತಗಾರರನ್ನು ಸಂಪರ್ಕಿಸಿ","contentCredits":"ವಿಷಯ ಕ್ರೆಡಿಟ್ಸ್","contentcopiedtitle":"ಈ ಕಂಟೆಂಟ್ ಅನ್ನು ಇದರಿಂದ ಪಡೆಯಲಾಗಿದೆ","contentinformation":"ವಿಷಯ ಮಾಹಿತಿ","contentname":"ಸಂಪನ್ಮೂಲದ ಹೆಸರು","contents":"ಪರಿವಿಡಿ","contentsUploaded":"ಕಂಟೆಂಟ್ ಗಳು ಅಪ್ಲೋಡ್ ಆಗುತ್ತಿವೆ","contenttype":"ಕಂಟೆಂಟ್","continue":"ಮುಂದುವರಿಸಿ","contributors":"ಕೊಡುಗೆದಾರರು","copy":"ನಕಲಿಸು","copyRight":"ಕೃತಿಸ್ವಾಮ್ಯ","copycontent":"ವಿಷಯವನ್ನು ನಕಲಿಸಲಾಗುತ್ತಿದೆ ...","country":"ದೇಶ","countryCode":"ದೇಶದ ಕೋಡ್","courseCreatedBy":"ರಚಿಸಿದವರು","courseCredits":"ಕೋರ್ಸ್ ಕ್ರೆಡಿಟ್ಸ್","coursecreatedon":"ರಚಿಸಿದ ದಿನಾಂಕ","coursestructure":"ಕೋರ್ಸ್ ರಚನೆ","createUserSuccessWithEmail":"ನಿಮ್ಮ ಇಮೇಲ್ ID ಅನ್ನು ಪರಿಶೀಲಿಸಲಾಗಿದೆ. ಮುಂದುವರಿಯಲು ಸೈನ್ ಇನ್ ಮಾಡಿ.","createUserSuccessWithPhone":"ನಿಮ್ಮ ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು ಪರಿಶೀಲಿಸಲಾಗಿದೆ. ಮುಂದುವರಿಯಲು ಸೈನ್ ಇನ್ ಮಾಡಿ.","createdInstanceName":"{instance} ದಲ್ಲಿ ಇವರು ರಚಿಸಿದ್ದಾರೆ","createdon":"ರಚಿಸಿದ ದಿನಾಂಕ","creationdataset":"ರಚನೆ","creator":"ರಚನಾಕಾರರು","creators":"ರಚನಾಕಾರರು","credits":"ಕೃತಜ್ಞತೆಗಳು","current":"ಪ್ರಸ್ತುತ","currentlocation":"ಪ್ರಸ್ತುತ ಸ್ಥಳ","curriculum":"ಪಠ್ಯಕ್ರಮ","dashboardcertificateStatus":"ಪ್ರಮಾಣಪತ್ರ ಸ್ಥಿತಿಗತಿ","dashboardfiveweeksfilter":"ಕೊನೆಯ 5 ವಾರಗಳು","dashboardfourteendaysfilter":"ಕೊನೆಯ 14 ದಿನಗಳು","dashboardfrombeginingfilter":"ಮೊದಲಿನಿಂದ","dashboardnobatchselected":"ಯಾವುದೇ ಬ್ಯಾಚ್ ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ!","dashboardnobatchselecteddesc":"ಮುಂದುವರೆಯಲು ಒಂದು ಬ್ಯಾಚ್  ಆಯ್ಕೆಮಾಡಿ","dashboardnocourseselected":"ಯಾವುದೇ ಕೋರ್ಸ್ ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ!","dashboardnocourseselecteddesc":"ದಯವಿಟ್ಟು ಮೇಲಿನ ಪಟ್ಟಿಯಿಂದ ಕೋರ್ಸ್ ಆಯ್ಕೆಮಾಡಿ","dashboardnoorgselected":"ಯಾವುದೇ ಸಂಸ್ಥೆ ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ!","dashboardnoorgselecteddesc":"ಮುಂದುವರೆಯಲು ಒಂದು ಸಂಸ್ಥೆಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","dashboardselectorg":"ಸಂಸ್ಥೆಯನ್ನು ಅಯ್ಕೆ ಮಾಡಿ","dashboardsevendaysfilter":"ಕೊನೆಯ 7 ದಿನಗಳು","dashboardsortbybatchend":"ಬ್ಯಾಚ್ ಅಂತ್ಯಗೊಳ್ಳುತ್ತದೆ","dashboardsortbyenrolledon":"ದಾಖಲಾದ ದಿನಾಂಕ","dashboardsortbyorg":"ಸಂಸ್ಥೆ","dashboardsortbystatus":"ವಸ್ತುಸ್ಥಿತಿ","dashboardsortbyusername":"ಬಳಕೆದಾರರ ಹೆಸರು","degree":"ಪದವಿ","delete":"ಡಿಲೀಟ್ ಮಾಡಿ","deletenote":"ಟಿಪ್ಪಣಿ ಡಿಲೀಟ್ ಮಾಡಿ","description":"ವಿವರಣೆ","designation":"ಪದನಾಮ","desktopAppDescription":"ಡೌನ್ಲೋಡ್ ಮಾಡಿದ ಕಂಟೆಂಟ್ ಅನ್ನು ಹುಡುಕಲು ಅಥವಾ ಕಂಟೆಂಟ್ ಅನ್ನು ಹೊರಗಿನ ಡಿವೈಸಿನಿಂದ ನೋಡಲು DIKSHA ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್ ಅನ್ನು ಇನ್ ಸ್ಟಾಲ್ ಮಾಡಿ .  DIKSHA ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್ ಇವನ್ನು ಒದಗಿಸುತ್ತವೆ","desktopAppFeature001":"ಉಚಿತ ಅನಿಯಮಿತ ಕಂಟೆಂಟ್","desktopAppFeature002":"ಬಹುಭಾಷಾ ಬೆಂಬಲ","desktopAppFeature003":"ಕಂಟೆಂಟ್ ಅನ್ನು ಆಫ್ ಲೈನ್ ಆಗಿ ನೋಡಿ","deviceId":"ಡಿವೈಸ್ ID","dialCode":"QR ಕೋಡ್","dialCodeDescription":"DIAL ಕೋಡ್ ನಿಮ್ಮ ಪಠ್ಯ ಪುಸ್ತಕದಲ್ಲಿ  QR  ಸಂಕೇತದ ಅಡಿಯಲ್ಲಿ ಕಂಡುಬರುವ 6 ಅಂಕಿಯ ಆಲ್ಫಾನ್ಯೂಮರಿಕ್ ಸಂಕೇತವಾಗಿದೆ","dialCodeDescriptionGetPage":"QR ಸಂಕೇತವು ನಿಮ್ಮ ಪಠ್ಯ ಪುಸ್ತಕದಲ್ಲಿ  QR  ಸಂಕೇತದ ಇಮೇಜ್ ಕೆಳಗೆ ಕಂಡುಬರುವ  6 ಅಂಕಿಯ ಆಲ್ಫಾನ್ಯೂಮರಿಕ್ ಸಂಕೇತವಾಗಿದೆ.","dikshaForMobile":"ಮೊಬೈಲ್ ಗೆ  DIKSHA","district":"ಜಿಲ್ಲೆ","dob":"ಹುಟ್ಟಿದ ದಿನಾಂಕ","done":"ಆಯಿತು","downloadCourseQRCode":"ಕೋರ್ಸ್ QR Code ಡೌನ್ಲೋಡ್ ಮಾಡಿ","downloadDikshaForMobile":"ಮೊಬೈಲ್ ಗೆ DIKSHA ಡೌನ್ಲೋಡ್ ಮಾಡಿಕೊಳ್ಳಿ ","downloadDikshaLite":"DIKSHA Lite  ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್ ಅನ್ನು  ಡೌನ್ಲೋಡ್ ಮಾಡಿ ","downloadQRCode":{"tooltip":"QR code ಡೌನ್ಲೋಡ್  ಮಾಡಲು ಇಲ್ಲಿ ಒತ್ತಿ ಮತ್ತು ಅವನ್ನು ಪ್ರಕಟಿಸಿದ ಕೋರ್ಸ್ ಗಳಿಗೆ ಕೊಂಡಿಯಾಗಿಸಿ"},"downloadThe":"ಡೌನ್ ಲೋಡ್ ಮಾಡಿ","downloadingContent":"{contentName} ಡೌನ್ಲೋಡ್ ಆಗಲು ಸಿದ್ಧವಾಗುತ್ತಿದೆ","dropcomment":"ಅಭಿಪ್ರಾಯ ಸೇರಿಸಿ","ecmlarchives":"Ecml ಆರ್ಚೈವ್ ಗಳು","edit":"ಸಂಪಾದಿಸು","editPersonalDetails":"ವೈಯಕ್ತಿಕ ವಿವರಗಳನ್ನು ಸಂಪಾದಿಸಿ","editUserDetails":"ಬಳಕೆದಾರರ ವಿವರಗಳನ್ನು ಪರಿಷ್ಕರಿಸಿ","education":"ಶಿಕ್ಷಣ","eightCharacters":"8 ಅಥವಾ ಹೆಚ್ಚಿನ ಅಕ್ಷರಗಳನ್ನು ಬಳಸಿ","email":"ಇಮೇಲ್ ID","emailPhonenotRegistered":"{instance} ಜೊತೆ ಇಮೇಲ್ ID/ಫೋನ್ ಸಂಖ್ಯೆ ದಾಖಲು ಮಾಡಿಲ್ಲ","emptycomments":"ಯಾವುದೇ ಅಭಿಪ್ರಾಯಗಳು ಇಲ್ಲ","enddate":"ಅಂತ್ಯದ ದಿನಾಂಕ","enjoyedContent":"ಈ ಕಂಟೆಂಟ್ ನಿಮಗೆ ಖುಷಿ ನೀಡಿತೇ?","enrollcourse":"ಕೋರ್ಸ್ ಗೆ ದಾಖಲಾಗಿ","enrollmentenddate":"ನೋಂದಣಿ ಕೊನೆಗೊಳ್ಳುವ  ದಿನಾಂಕ","enterCertificateCode":"ಪ್ರಮಾಣಪತ್ರದ ಕೋಡ್ ಅನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಿ","enterDialCode":"6  ಅಂಕಿಗಳ QR  ಸಂಕೇತ ಹಾಕಿರಿ","enterEightCharacters":"ಕನಿಷ್ಠ 8 ಅಕ್ಷರಗಳನ್ನು ನಮೂದಿಸಿ","enterEmailID":"ಇಮೇಲ್ ಐಡಿ ನಮೂದಿಸಿ","enterEmailPhoneAsRegisteredInAccount":"{instance} ಜೊತೆ ದಾಖಲು ಮಾಡಿರುವ ಇಮೇಲ್ ಐಡಿ/ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ","enterName":"ಹೆಸರನ್ನು ನಮೂದಿಸಿ","enterNameNotMatch":"{instance} ಜೊತೆ ದಾಖಲಾದ ಹೆಸರಿನೊಂದಿಗೆ ಈ ಹೆಸರು ಹೊಂದಾಣಿಕೆ ಆಗುತ್ತಿಲ್ಲ","enterOTP":"OTP ಯನ್ನು ನಮೂದಿಸಿ","enterQrCode":"QR  ಸಂಕೇತ ನಮೂದಿಸಿ","enterValidCertificateCode":"ಸರಿಯಾದ ಪ್ರಮಾಣಪತ್ರ ಕೋಡ್ ನಮೂದಿಸಿ","enternameAsRegisteredInAccount":"{instance} ಅಕೌಂಟಿನಲ್ಲಿ ಇರುವಂತೆ ನಿಮ್ಮ ಹೆಸರು","epubarchives":"ಇಪಬ್ ಆರ್ಚೈವ್ ಗಳು","errorConfirmPassword":"ಪಾಸವರ್ಡ್ ಗಳು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ","experience":"ಅನುಭವ","expiredBatchWarning":"{EndDate} ನಲ್ಲಿ ಬ್ಯಾಚ್ ಮುಕ್ತಾಯಗೊಂಡಿದೆ, ಆದ್ದರಿಂದ ನಿಮ್ಮ ಪ್ರಗತಿಯನ್ನು ನವೀಕರಿಸಲಾಗುವುದಿಲ್ಲ.","explore":"ಅನ್ವೇಷಿಸು","exploreContentOn":"ವಿಷಯವನ್ನು ಅನ್ವೇಷಿಸಿ {instance}","explorecontentfrom":"ಇದರಿಂದ ವಿಷಯವನ್ನು ಎಕ್ಸ್ಪ್ಲೋರ್ ಮಾಡಿ","exportingContent":"ದಯವಿಟ್ಟು ನಾವು ಎಕ್ಸ್ ಪೋರ್ಟ್ ಮಾಡುವವರೆಗೆ ಕಾಯಿರಿ -  {contentName} ","exprdbtch":"ಗಡುವು ಮೀರಿದ ಬ್ಯಾಚ್ ಗಳು","extlid":"ಸಂಸ್ಥೆಯ ಬಾಹ್ಯ ID","facebook":"ಫೇಸ್ ಬುಕ್","failres":"ವೈಫಲ್ಯ ಫಲಿತಾಂಶಗಳು","fetchingBlocks":"ಬ್ಲಾಕ್ ಗಳನ್ನು ಪಡೆಯಲಾಗುತ್ತಿದೆ, ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ. ","fetchingSchools":"ಶಾಲೆಗಳನ್ನು ಪಡೆಯಲಾಗುತ್ತಿದೆ, ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ","filterby":"ಫಿಲ್ಟರ್ ಮಾಡಿ","filters":"ಶೋಧಕಗಳು","first":"ಪ್ರಥಮ","firstName":"ಮೊದಲ ಹೆಸರು","flaggedby":"ಫ್ಲ್ಯಾಗ್ ಮಾಡಿದವರು","flaggeddescription":"ಫ್ಲ್ಯಾಗ್ ಮಾಡಲಾದ ವಿವರಣೆ","flaggedreason":"ಫ್ಲ್ಯಾಗ್ ಮಾಡಲಾದ ಕಾರಣ","fnameLname":"ನಿಮ್ಮ ಮೊದಲ ಮತ್ತು ಕೊನೆಯ ಹೆಸರನ್ನು ನಮೂದಿಸಿ","for":"ಗೆ","forDetails":"ವಿವರಗಳಿಗೆ","forMobile":"ಮೊಬೈಲ್ ಗೆ","forSearch":"{searchString} ಗಾಗಿ","fullName":"ಪೂರ್ಣ ಹೆಸರು","gender":"ಲಿಂಗ","getUnlimitedAccess":"ನಿಮ್ಮ ಮೊಬೈಲ್ ಫೋನ್ ನಲ್ಲಿ ಪಠ್ಯಪುಸ್ತಕಗಳು, ಪಾಠ ಮತ್ತು ಪಠ್ಯಕ್ರಮಗಳಿಗೆ ಆಫ್ಲೈನ್ ​​ಪ್ರವೇಶವನ್ನು ಪಡೆಯಿರಿ.","goback":"ರದ್ದುಗೊಳಿಸಲು","grade":"ತರಗತಿ","grades":"ತರಗತಿಗಳು","graphStat":"ನಕ್ಷೆ ಅಂಕಿಅಂಶಗಳು","h5parchives":"H5p ಆರ್ಚೈವ್ ಗಳು","homeUrl":"ಮಖಪುಟ Url","howToUseDiksha":"DIKSHA  ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್ ಹೇಗೆ ಬಳಸುವುದು ","howToVideo":"ಹೇಗೆ ಎಂಬ ವಿಡಿಯೋಗೆ","htmlarchives":"Html ಆರ್ಚೈವ್ ಗಳು","imagecontents":"ಚಿತ್ರ ಸಂಪನ್ಮೂಲಗಳು","inAll":"\"ಎಲ್ಲ\"ದರಲ್ಲಿ","inUsers":"ಬಳಕೆದಾರರಲ್ಲಿ","inactive":"ನಿಷ್ಕ್ರಿಯ","institute":"ಸಂಸ್ಥೆಯ ಹೆಸರು","isRootOrg":"ಮೂಲ ಸಂಸ್ಥೆಯೇ","iscurrentjob":"ಇದು ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಕೆಲಸವೇ?","itis":"ಇದು ","keywords":"ಮುಖ್ಯ ಪದಗಳು","language":"ಗೊತ್ತಿರುವ ಭಾಷೆಗಳು","last":"ಅಂತಿಮ","lastAccessed":"ಕೊನೆಯದಾಗಿ ಪ್ರವೇಶಿಸಿದ್ದು:","lastName":"ಕೊನೆಯ ಹೆಸರು","lastupdate":"ಕೊನೆಯ ನವೀಕರಣ","learners":"ವಿದ್ಯಾರ್ಥಿಗಳು","licenseTerms":"ಪರವಾನಗಿ ನಿಯಮಗಳು","limitsOfArtificialIntell":"ಕೃತಕ ಬುದ್ಧಿಮತ್ತೆಯ ಮಿತಿಗಳು","linkCopied":"ಲಿಂಕ್ ನಕಲು ಮಾಡಲಾಗಿದೆ","linkedContents":"ಲಿಂಕ್ ಆಗಿರುವ ವಿಷಯಗಳು","linkedIn":"ಲಿಂಕ್ಡ್ ಇನ್","location":"ಸ್ಥಳ","lockPopupTitle":"{collaborator} ಪ್ರಸ್ತುತ {contentName} ನಲ್ಲಿ ಕಾರ್ಯನಿರ್ವಹಿಸುತ್ತಿದ್ದಾರೆ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.","markas":"ಹೀಗೆ ಗುರುತಿಸಿ","medium":"ಮಾಧ್ಯಮ","mentors":"ಮಾರ್ಗದರ್ಶಕರು","mergeAccount":"ಅಕೌಂಟ್ ವಿಲೀನ","mobileEmailInfoText":"ನಿಮ್ಮ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ ಅಥವಾ ಇಮೇಲ್ ID ಹಾಕಿ DIKSHA ಗೆ ಸೈನ್ ಇನ್ ಆಗಿರಿ  ","mobileNumber":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆ","mobileNumberInfoText":"DIKSHAಗೆ ಲಾಗಿನ್ ಆಗಲು ನಿಮ್ಮ ಮೊಬೈಲ್ ನಂಬರ್ ಅನ್ನು ನಮೂದಿಸಿ","more":"ಹೆಚ್ಚಿನ","myBadges":"ನನ್ನ ಬ್ಯಾಡ್ಜ್ ಗಳು","mynotebook":"ನನ್ನ ನೋಟ್ ಪುಸ್ತಕ","mynotes":"ನನ್ನ ಟಿಪ್ಪಣಿಗಳು","name":"ಹೆಸರು","nameRequired":"ಹೆಸರು ಅಗತ್ಯವಿದೆ","newPassword":"ಹೊಸ ಪಾಸ್ ವರ್ಡ್","next":"ಮುಂದೆ","noContentToPlay":"ತೋರಿಸಲು ಯಾವುದೇ ವಿಷಯವಿಲ್ಲ","noDataFound":"ಯಾವುದೇ ದತ್ತಾಂಶ ಕಂಡುಬಂದಿಲ್ಲ","offline":"ನೀವು ಆಫ್ ಲೈನ್ ಆಗಿದ್ದೀರಿ","onDiksha":"{instance} ದಲ್ಲಿ","online":"ನೀವು ಆನ್ಲೈನಿನಲ್ಲಿ ಇದ್ದೀರಿ","opndbtch":"ಬ್ಯಾಚ್ ಗಳನ್ನು ತೆರೆಯಿರಿ","orgCode":"ಸಂಸ್ಥೆಯ ಕೋಡ್","orgId":"ಸಂಸ್ಥೆ ID","orgType":"ಸಂಸ್ಥೆಯ ವಿಧ","organization":"ಸಂಸ್ಥೆ","orgname":"ಸಂಸ್ಥೆಯ ಹೆಸರು","orgtypes":"ಸಂಸ್ಥೆಯ ವಿಧ","originalAuthor":"ಮೂಲ ಲೇಖಕ/ಕಿ","otpMandatory":"ಓಟಿಪಿ ಕಡ್ಡಾಯವಿದೆ","otpSentTo":"ಇದಕ್ಕೆ ಒಟಿಪಿಯನ್ನು  ಕಳಿಸಲಾಗಿದೆ","otpValidated":"ಒಟಿಪಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಊರ್ಜಿತಗೊಳಿಸಲಾಯಿತು","ownership":"ಮಾಲಿಕತ್ವ","participants":"ಭಾಗವಹಿಸುವವರು","password":"ಪಾಸ್ ವರ್ಡ್","passwordMismatch":"ಪಾಸ್ವರ್ಡ್ ಹೊಂದಾಣಿಕೆ ಆಗುತ್ತಿಲ್ಲ, ಸರಿಯಾದ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ","pdfcontents":"Pdf ಸಂಪನ್ಮೂಲಗಳು","percentage":"ಶೇಕಡಾ","permanent":"ಶಾಶ್ವತ","phone":"ದೂರವಾಣಿ ಸಂಖ್ಯೆ","phoneNumber":"ದೂರವಾಣಿ ಸಂಖ್ಯೆ","phoneOrEmail":"ಫೋನ್ ಸಂಖ್ಯೆ ಅಥವಾ ಇಮೇಲ್ ID ಯನ್ನು ನಮೂದಿಸಿ","phoneRequired":"ಫೋನ್ ಸಂಖ್ಯೆ ಬೇಕು","phoneVerfied":"ಫೋನ್ ಪರಿಶೀಲಿಸಲಾಗಿದೆ","phonenumber":"ದೂರವಾಣಿ ಸಂಖ್ಯೆ","pincode":"ಪಿನ್ ಕೋಡ್","playContent":"ಕಂಟೆಂಟ್ ಪ್ಲೇ ಮಾಡಿ","plslgn":"ಈ ಸೆಶನ್ ಮುಗಿಯಿತು. ಮುಂದುವರೆಯಲು ${instance} ಬಳಸಿಕೊಂಡು ಪುನಃ ಲಾಗಿನ್ ಆಗಿರಿ. ","position":"ಸ್ಥಾನ","preferredLanguage":"ಆದ್ಯತೆಯ ಭಾಷೆ","previous":"ಹಿಂದಿನ","processid":"ಪ್ರಕ್ರಿಯೆ ID","profilePopup":"ನಿಮಗೆ ಸಂಬಂಧಿಸಿದ ವಿಷಯವನ್ನು ಕಂಡುಹಿಡಿಯಲು, ಕೆಳಗಿನ ವಿವರಗಳನ್ನು ನವೀಕರಿಸಿ:","provider":"ಸಂಸ್ಥೆ ಒದಗಿಸುವವರು","publicFooterGetAccess":"ಶಿಕ್ಷಕರು, ವಿದ್ಯಾರ್ಥಿಗಳು ಮತ್ತು ಪೋಷಕರು ನಿಗದಿತ ಶಾಲಾ ಪಠ್ಯಕ್ರಮಕ್ಕೆ ಸಂಬಂಧಿಸಿದ ಕಲಿಕಾ ಸಾಮಗ್ರಿಗಳನ್ನು ಪಡೆಯಲು ಡಿಕ್ಷಾ ಪ್ಲಾಟ್ಫಾರ್ಮ್ ಸೂಕ್ತ ವೇದಿಕೆಯಾಗಿದೆ . ನಿಮ್ಮ ಪಾಠಗಳನ್ನು ಸುಲಭವಾಗಿ ಪ್ರವೇಶಿಸಲು DIKSHA ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ ಮತ್ತು ನಿಮ್ಮ ಪಠ್ಯಪುಸ್ತಕಗಳಲ್ಲಿ ಇರುವ QR  ಸಂಕೇತವನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿ.","publishedBy":"ಇವರಿಂದ ಪ್ರಕಟವಾಗಿದೆ","publishedOnInstanceName":"{instance} ದಲ್ಲಿ ಇವರು ರಚಿಸಿದ್ದಾರೆ","reEnterPassword":"ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುನಮೂದಿಸಿ","readless":"ಕಡಿಮೆ ಓದಿ ...","readmore":"... ಮತ್ತಷ್ಟು ಓದು","receiveOTP":"ಒಟಿಪಿಯನ್ನು ಎಲ್ಲಿ ಪಡೆಯಲು ನೀವು ಬಯಸುವಿರಿ? ","recoverAccount":"ಅಕೌಂಟ್ ಅನ್ನು ರಿಕವರ್ ಮಾಡಿ","redirectMsg":"ಈ ವಿಷಯವನ್ನು ಹೊರಗೆ ಹೋಸ್ಟ್ ಮಾಡಲಾಗಿದೆ","redirectWaitMsg":"ದಯವಿಟ್ಟು ವಿಷಯ ಲೋಡ್ ಆಗುವವರೆಗೆ ಕಾಯಿರಿ","removeAll":"ಎಲ್ಲವನ್ನೂ ತೆಗೆದುಹಾಕಿ","reportUpdatedOn":"ಈ ವರದಿಯನ್ನು ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾದ ದಿನಾಂಕ","resendOTP":"OTP ಮರುಕಳುಹಿಸಿ","resentOTP":"OTP ಮರುಕಳುಹಿಸಿದೆ. OTP ಯನ್ನು ನಮೂದಿಸಿ.","resourcetype":"ಸಂಪನ್ಮೂಲದ ವಿಧ","retired":"ನಿವೃತ್ತ","returnToCourses":"ಕೋರ್ಸ್ ಗೆ  ಹಿಂತಿರುಗಿ","role":"ಪಾತ್ರ","roles":"ಪಾತ್ರಗಳು","rootOrg":"ಮೂಲ ಸಂಸ್ಥೆ","sameEmailId":"ಈ ಇಮೇಲ್ ಐಡಿಯು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್  ಜೊತೆ ಲಿಂಕ್ ಆಗಿರುವ ಅದೇ ಮೇಲ್ ಐಡಿಯೇ","samePhoneNo":"ಈ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್  ಜೊತೆ ಲಿಂಕ್ ಆಗಿರುವ ಅದೇ ಸಂಖ್ಯೆಯೇ","school":"ಶಾಲೆ","search":"ಹುಡುಕು","searchForContent":"6  ಅಂಕಿಗಳ  QR  ಸಂಕೇತ ಹಾಕಿರಿ","searchUserName":"ಬಳಕೆದಾರರ ಹೆಸರು ಹುಡುಕಿ","seladdresstype":"ವಿಳಾಸದ ವಿಧವನ್ನು ಆಯ್ಕೆಮಾಡಿ","selectAll":"ಎಲ್ಲವನ್ನೂ ಆಯ್ಕೆ ಮಾಡಿ","selectBlock":"ಬ್ಲಾಕ್ ಆಯ್ಕೆ ಮಾಡಿ","selectDistrict":"ಜಿಲ್ಲೆಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","selectSchool":"ಶಾಲೆ ಆಯ್ಕೆ ಮಾಡಿ","selectState":"ರಾಜ್ಯವನ್ನು ಆಯ್ಕೆಮಾಡಿ","selected":"ಆಯ್ಕೆಯಾಗಿದೆ","selectreason":"ಒಂದು ಕಾರಣವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","sesnexrd":"ಸೆಶನ್ ಮುಗಿಯಿತು","setRole":"ಬಳಕೆದಾರರನ್ನುಪರಿಷ್ಕರಿಸಿ","share":"ಹಂಚಿ","sharelink":"ಲಿಂಕನ್ನು ಬಳಸಿ ಶೇರ್ ಮಾಡಿ","showLess":"ಕಡಿಮೆ ತೋರಿಸು","showingResults":"ಫಲಿತಾಂಶಗಳನ್ನು ತೋರಿಸಲಾಗುತ್ತಿದೆ","showingResultsFor":"{searchString} ಗಾಗಿ ಫಲಿತಾಂಶಗಳನ್ನು ತೋರಿಸಲಾಗುತ್ತಿದೆ","signUp":"ನೋಂದಾಯಿಸಿ ","signinenrollHeader":"ಕೋರ್ಸ್ ಗಳು ನೋಂದಾಯಿತ ಬಳಕೆದಾರರಿಗೆ ಮಾತ್ರ. ಕೋರ್ಸ್ ಪ್ರವೇಶಿಸಲು ಸೈನ್ ಇನ್ ಮಾಡಿ.","signinenrollTitle":"ಈ ಕೋರ್ಸ್ ಗೆ ದಾಖಲಾಗಲು ಸೈನ್ ಇನ್ ಮಾಡಿ","skillTags":"ಕೌಶಲ್ಯ ಟ್ಯಾಗ್ ಗಳು","sltBtch":"ದಯವಿಟ್ಟು ಮುಂದುವರೆಯಲು ಒಂದು ಬ್ಯಾಚ್ ಆಯ್ಕೆ ಮಾಡಿ. ","socialmedialinks":"ಸಾಮಾಜಿಕ ಮಾಧ್ಯಮ ಲಿಂಕ್ ಗಳು","sortby":"ವಿಂಗಡಿಸು","startExploringContent":"DIAL ಕೋಡ್ ನಮೂದಿಸುವುದರ ಮೂಲಕ ವಿಷಯವನ್ನು ಅನ್ವೇಷಿಸಲು ಪ್ರಾರಂಭಿಸಿ","startExploringContentBySearch":"QR  ಸಂಕೇತ ಬಳಸಿಕೊಂಡು ಪಠ್ಯಾಂಶವನ್ನು ಹುಡುಕಿ","startdate":"ಪ್ರಾರಂಭ ದಿನಾಂಕ","state":"ರಾಜ್ಯ","stateRecord":"ರಾಜ್ಯದ ದಾಖಲೆಗಳ ಪ್ರಕಾರ","subject":"ವಿಷಯ","subjects":"ವಿಷಯಗಳು","subjectstaught":"ಬೋಧಿಸಿದ ವಿಷಯ(ಗಳು)","submitOTP":"OTP ಸಲ್ಲಿಸಿ","subtopic":"ಉಪವಿಷಯ","successres":"ಯಶಸ್ಸಿನ ಫಲಿತಾಂಶಗಳು","summary":"ಸಾರಾಂಶ","supportedLanguages":"ಬೆಂಬಲಿಸುವ ಭಾಷೆಗಳು","tableNotAvailable":"ಈ ವರದಿಗೆ ಟೇಬಲ್ ವ್ಯೂ ಲಭ್ಯವಿಲ್ಲ","takenote":"ಟಿಪ್ಪಣಿ ತೆಗೆದುಕೊಳ್ಳಿ","tcfrom":"ಇಂದ","tcno":"ಇಲ್ಲ","tcto":"ಗೆ","tcyes":"ಹೌದು","tenDigitPhone":"10 ಅಂಕಿಯ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ","termsAndCond":"ನಿಯಮಗಳು ಮತ್ತು ಷರತ್ತುಗಳು","termsAndCondAgree":"ನಾನು ಬಳಕೆಯ ನಿಯಮಗಳು ಮತ್ತು ಷರತ್ತುಗಳನ್ನು ಒಪ್ಪುತ್ತೇನೆ","theme":"ವಿಷಯ","title":"ಶೀರ್ಷಿಕೆ","toTryAgain":"ಮತ್ತೆ ಪುನಃ ಪ್ರಯತ್ನಿಸಲು","topic":"ವಿಷಯಗಳು","topics":"ವಿಷಯಗಳು","trainingAttended":"ಹಾಜರಾದ ತರಬೇತಿಗಳು","twitter":"ಟ್ವಿಟರ್","unableToUpdateEmail":"ಇಮೇಲ್ ಐಡಿ ಅಪ್ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲವೇ?","unableToUpdateMobile":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲು ವಿಫಲರಾದಿರಾ?","unableToVerifyEmail":"ಇಮೇಲ್ ID ಪರಿಶೀಲಿಸಲು ಸಾಧ್ಯವಿಲ್ಲವೇ?","unableToVerifyPhone":"ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು ಪರಿಶೀಲಿಸಲು ಸಾಧ್ಯವಿಲ್ಲವೇ?","unenrollMsg":"ನೀವು ಈ ಬ್ಯಾಚಿನಿಂದ  ಹೊರಹೋಗಲು ಬಯಸುವಿರಾ?","unenrollTitle":"ಬ್ಯಾಚ್ ನೋಂದಣಿ ರದ್ದು","uniqueEmail":"ನಿಮ್ಮ ಇಮೇಲ್ ID ಈಗಾಗಲೇ ನೋಂದಾಯಿಸಲಾಗಿದೆ","uniqueEmailId":"ಈ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ ಈಗಾಗಲೆ ಬಳಕೆಯಲ್ಲಿದೆ. ಬೇರೆ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ.","uniqueMobile":"ಈ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ ಈಗಾಗಲೆ ಬಳಕೆಯಲ್ಲಿದೆ. ಬೇರೆ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಹಾಕಿರಿ. ","uniquePhone":"ನಿಮ್ಮ ಫೋನ್ ಸಂಖ್ಯೆ ಈಗಾಗಲೇ ನೋಂದಾಯಿಸಲಾಗಿದೆ","updateEmailId":"ಇಮೇಲ್ ಐಡಿ  ಅಪ್ಡೇಟ್ ಮಾಡಿ","updatePhoneNo":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಿ","updatecollection":"ಎಲ್ಲವನ್ನೂ ಅಪ್ಡೇಟ್ ಮಾಡಿ","updatecontent":"ಪಠ್ಯಾಂಶ ಅಪ್ಡೇಟ್ ಮಾಡಿ","updatedon":"ನವೀಕರಿಸಿದ ದಿನಾಂಕ","updateorgtype":"ಸಂಸ್ಥೆಯ ವಿಧವನ್ನು ನವೀಕರಿಸು","upldfile":"ಅಪ್ಲೋಡ್ ಮಾಡಿದ ಫೈಲ್","uploadContent":"ಕಂಟೆಂಟ್  ಅಪ್ಲೋಡ್ ಮಾಡಿ","uploadEcarFromPd":"ಕಂಟೆಂಟ್ ಇಂಪೋರ್ಟ್ ಮಾಡಲು .ecar ಫೈಲುಗಳನ್ನು ಪೆನ್ ಡ್ರೈವಿನಿಂದ ಅಪ್ಲೋಡ್ ಮಾಡಿ","userFilterForm":"ಬಳಕೆದಾರರನ್ನು ಹುಡುಕಿ","userID":"ಬಳಕೆದಾರರ ID","userId":"ಬಳಕೆದಾರರ ಐಡಿ","userType":"ಬಳಕೆದಾರರ ವಿಧ","username":"ಬಳಕೆದಾರರ ಹೆಸರು","validEmail":"ಮಾನ್ಯ ಇಮೇಲ್ ID ಯನ್ನು ನಮೂದಿಸಿ","validFor":"30 ನಿಮಿಷಗಳವರೆಗೆ ಊರ್ಜಿತವಿರುತ್ತದೆ","validPassword":"ಮಾನ್ಯ ಗುಪ್ತಪದ(ಪಾಸ್ ವರ್ಡ್) ನಮೂದಿಸಿ","validPhone":"ಮಾನ್ಯವಾದ 10 ಅಂಕಿಯ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ","verifyingCertificate":"ನಿಮ್ಮ ಪ್ರಮಾಣಪತ್ರಗಳನ್ನು ಪರಿಶೀಲನೆ ಮಾಡಲಾಗುತ್ತಿದೆ","versionKey":"ಆವೃತ್ತಿ","videos":"ವೀಡಿಯೋಗಳು","view":"ವೀಕ್ಷಿಸಿ","viewless":"ಕಡಿಮೆ ವೀಕ್ಷಿಸಿ","viewmore":"ಹೆಚ್ಚು ವೀಕ್ಷಿಸಿ","viewworkspace":"ನಿಮ್ಮ ಕಾರ್ಯಕ್ಷೇತ್ರವನ್ನು ವೀಕ್ಷಿಸಿ","watchCourseVideo":"ವಿಡಿಯೋ ನೋಡಿ","watchVideo":"ವಿಡಿಯೋ ನೋಡಿ","whatsQRCode":"QR  ಸಂಕೇತ ಎಂದರೇನು?","whatwentwrong":"ಏನು ತಪ್ಪಾಗಿದೆ?","whatwentwrongdesc":"ಏನು ತಪ್ಪಾಗಿದೆ ಎಂಬುದನ್ನು ನಮಗೆ ತಿಳಿಸಿ. ಸರಿಯಾದ ಕಾರಣಗಳನ್ನು ತಿಳಿಸಿ ,ನಾವು  ಶೀಘ್ರದಲ್ಲಿ ಪರಿಶೀಲಿಸುತ್ತೇವೆ ಮತ್ತು ಈ ಸಮಸ್ಯೆಯನ್ನು ಪರಿಹರಿಸುತ್ತೇವೆ. ನಿಮ್ಮ ಪ್ರತಿಕ್ರಿಯೆಗಾಗಿ ಧನ್ಯವಾದಗಳು!","willsendOTP":"ನಾವು ನಿಮಗೆ ಒಂದು ಒಟಿಪಿಯನ್ನು ಕಳಿಸುತ್ತೇವೆ, ಒಟಿಪಿಯನ್ನು ಊರ್ಜಿತಗೊಳಿಸಿದ ನಂತರ, ನೀವು ನಿಮ್ಮ ಅಕೌಂಟ್ ಅನ್ನು ಪುನಃ ಪಡೆಯಬಹುದು. ","worktitle":"ಉದ್ಯೋಗ / ಕೆಲಸದ ಶೀರ್ಷಿಕೆ","wrongEmailOTP":"ನೀವು ತಪ್ಪಾದ OTP ಯನ್ನು ನಮೂದಿಸಿರುವಿರಿ. ನಿಮ್ಮ ಇಮೇಲ್ ID ಯಲ್ಲಿ ಪಡೆದ OTP ಯನ್ನು ನಮೂದಿಸಿ. OTP ಯು 30 ನಿಮಿಷಗಳ ಕಾಲ ಮಾತ್ರ ಮಾನ್ಯವಾಗಿರುತ್ತದೆ.","wrongPhoneOTP":"ನೀವು ತಪ್ಪಾದ OTP ಯನ್ನು ನಮೂದಿಸಿರುವಿರಿ. ನಿಮ್ಮ ದೂರವಾಣಿ ಸಂಖ್ಯೆಯಲ್ಲಿ ಸ್ವೀಕರಿಸಿದ OTP ಯನ್ನು ನಮೂದಿಸಿ. OTP ಯು 30 ನಿಮಿಷಗಳ ಕಾಲ ಮಾತ್ರ ಮಾನ್ಯವಾಗಿರುತ್ತದೆ.","yop":"ತೇರ್ಗಡೆಯಾದ ವರ್ಷ","indPhoneCode":91,"manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","noCreditsAvailable":"No credits available","errorMessage":"Error message","externalId":"External Id","lang":"Language","recentlyAdded":"Recently Added","contentType":"Content Type","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","releaseDateKey":"Release Date:","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from"},"btn":{"add":"ಸೇರಿಸು","addToLibrary":"ಗ್ರಂಥಾಲಯಕ್ಕೆ ಸೇರಿಸಿ","addedToLibrary":"ಗ್ರಂಥಾಲಯಕ್ಕೆ ಸೇರಿಸಲಾಯಿತು","addingToLibrary":"ಗ್ರಂಥಾಲಯಕ್ಕೆ ಸೇರಿಸಲಾಗುತ್ತಿದೆ","apply":"ಅನ್ವಯಿಸು","browse":"ಹುಡುಕಿರಿ","cancel":"ರದ್ದುಗೊಳಿಸು","cancelCapitalize":"ರದ್ದು ಮಾಡಿ","clear":"ಸ್ಪಷ್ಟಮಾಡು","close":"ಮುಚ್ಚು","contentImport":"ಫೈಲುಗಳನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ","copyLink":"ಲಿಂಕ್ ಕಾಪಿ ಮಾಡಿ","create":"ರಚಿಸು","download":"ಡೌನ್ಲೋಡ್ ಮಾಡಿ","downloadCertificate":"ಪ್ರಮಾಣಪತ್ರ ಡೌನ್ಲೋಡ್ ಮಾಡಿ","downloadCompleted":"ಡೌನ್ಲೋಡ್  ಪೂರ್ಣವಾಯಿತು","downloadDikshaForWindows":"Windows (64-bit) ಡೌನ್ಲೋಡ್ ಮಾಡಿ ","downloadFailed":"ಡೌನ್ಲೋಡ್  ಆಗಲಿಲ್ಲ","downloadInstruction":"ಡೌನ್ಲೋಡ್  ಗೆ ಸೂಚನೆಗಳನ್ನು ನೋಡಿ","downloadManager":"ಡೌನ್ಲೋಡ್  ಮ್ಯಾನೇಜರ್","downloadPdf":"ಪಿಡಿಎಫ್ ಡೌನ್ಲೋಡ್  ಮಾಡಿ  ","downloadPending":"ಡೌನ್ಲೋಡ್ ಬಾಕಿ ಇದೆ","edit":"ಸಂಪಾದಿಸು","enroll":"ದಾಖಲಾಗಿ","export":"ಎಕ್ಸ್ ಪೋರ್ಟ್","login":"ಲಾಗಿನ್","merge":"ವಿಲೀನಗೊಳಿಸಿ","myLibrary":"ನನ್ನ ಗ್ರಂಥಾಲಯ","next":"ಮುಂದೆ","no":"ಇಲ್ಲ","ok":"OK","previous":"ಹಿಂದಿನ","remove":"ತೆಗೆದುಹಾಕಿ","reset":"ಮರುಹೊಂದಿಸಿ","resume":"ರೆಸ್ಯೂಮೆ","resumecourse":"ಕೋರ್ಸ್ ಪುನರಾರಂಭಿಸಿ","save":"ಉಳಿಸು","selectContentFiles":"ಫೈಲುಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","selectLanguage":"ಭಾಷೆ ಆಯ್ಕೆ ಮಾಡಿ","selrole":"ಪಾತ್ರ ಆಯ್ಕೆ ಮಾಡಿ","signin":"ಸೈನ್ ಇನ್ ಆಗಿ","signup":"ದಾಖಲಾಗಿ","smplcsv":"ಮಾದರಿ CSV ಡೌನ್ಲೋಡ್ ಮಾಡಿ","submit":"ಸಲ್ಲಿಸು","submitbtn":"ಸಲ್ಲಿಸಿ","tryagain":"ಪುನಃ ಪ್ರಯತ್ನಿಸಿ","unenroll":"ದಾಖಲಾತಿ ರದ್ದುಗೊಳಿಸು","update":"ನವೀಕರಿಸು","uploadorgscsv":"ಸಂಸ್ಥೆಗಳ CSV ಅಪ್ ಲೋಡ್ ಮಾಡಿ","uploadusrscsv":"ಬಳಕೆದಾರರ CSV ಅಪ್ಲೋಡ್ ಮಾಡು","verify":"ಪರಿಶೀಲಿಸಿ","viewCourseStatsDashboard":"ಕೋರ್ಸ್ ಡ್ಯಾಶ್ ಬೋರ್ಡ್ ವೀಕ್ಷಿಸಿ","viewcoursestats":"ಕೋರ್ಸ್ ಅಂಕಿ ಅಂಶಗಳನ್ನು ವೀಕ್ಷಿಸಿ","viewless":"ಕಡಿಮೆ ವೀಕ್ಷಿಸಿ","viewmore":"ಇನ್ನಷ್ಟು ವೀಕ್ಷಿಸಿ","yes":"ಹೌದು","yesiamsure":"ಸರಿ","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"ಸ್ತ್ರೀ","male":"ಪುರುಷ","transgender":"ತೃತೀಯ ಲಿಂಗಿ"},"instn":{"t0002":"ನೀವು ಒಂದು CSV ಫೈಲಿನಲ್ಲಿ ಒಂದೇ ಸಮಯದಲ್ಲಿ 199 ಸಂಸ್ಥೆಗಳ ವಿವರಗಳನ್ನು ಸೇರಿಸಬಹುದು ಅಥವಾ ಅಪ್ಲೋಡ್ ಮಾಡಬಹುದು","t0007":"OrgName ಕಾಲಮ್ ಕಡ್ಡಾಯವಾಗಿದೆ. ಈ ಕಾಲಮ್ನಲ್ಲಿ ಸಂಸ್ಥೆಯ ಹೆಸರನ್ನು ನಮೂದಿಸಿ","t0011":"ಪ್ರಕ್ರಿಯೆ ID ಯೊಂದಿಗೆ ನೀವು ಪ್ರಗತಿಯನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು","t0012":"ದಯವಿಟ್ಟು ನಿಮ್ಮ ಉಲ್ಲೇಖಕ್ಕಾಗಿ ಪ್ರಕ್ರಿಯೆ ID ಅನ್ನು ಉಳಿಸಿ .ನೀವು ಪ್ರಕ್ರಿಯೆ ID ಯೊಂದಿಗೆ ಪ್ರಗತಿಯನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು","t0013":"ಉಲ್ಲೇಖಕ್ಕಾಗಿ csv ಫೈಲ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ","t0015":"ಸಂಸ್ಥೆಗಳನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ","t0016":"ಬಳಕೆದಾರರನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ","t0020":"ಕೌಶಲ್ಯವನ್ನು ಸೇರಿಸಲು ಟೈಪ್ ಮಾಡಲು ಪ್ರಾರಂಭಿಸಿ","t0021":"ಪ್ರತಿಯೊಂದು ಸಂಸ್ಥೆಯ ಹೆಸರನ್ನು ಪ್ರತ್ಯೇಕ ಸಾಲಿನಲ್ಲಿ ನಮೂದಿಸಿ","t0022":"ಎಲ್ಲಾ ಇತರ ಕಾಲಮ್ಗಳಲ್ಲಿ ವಿವರಗಳನ್ನು ನಮೂದಿಸುವುದು ಐಚ್ಛಿಕವಾಗಿದೆ:","t0023":"isRootOrg: ಈ ಕಾಲಮ್ ನಲ್ಲಿ ಮಾನ್ಯವಾದ ಮೌಲ್ಯಗಳು- ಸರಿ ತಪ್ಪು","t0024":"ಚಾನಲ್: ಮಾಸ್ಟರ್ಸಂಸ್ಥೆ ರಚನೆ ಸಮಯದಲ್ಲಿ ಒದಗಿಸಲಾದ ವಿಶಿಷ್ಟ ಐಡಿ","t0025":"ಬಾಹ್ಯ ಐಡಿ: ಆಡಳಿತ ಸಂಸ್ಥೆಯ ರೆಪೊಸಿಟರಿಯಲ್ಲಿ ಪ್ರತಿ ಸಂಸ್ಥೆಯೊಂದಿಗೆ ವಿಶಿಷ್ಟ ಐಡಿಯು ಜೋಡಣೆಯಾಗಿದೆ ","t0026":"ಒದಗಿಸುವವರು: ನಿರ್ವಾಹಕರ ಸಂಘಟನೆಯ ಚಾನೆಲ್ ID","t0027":"ವಿವರಣೆ: ಸಂಸ್ಥೆಯ ಬಗ್ಗೆ ವಿವರಗಳು","t0028":"ಮೂಲ  URL: ಸಂಸ್ಥೆ ಮುಖಪುಟದ URL","t0029":"ಸಂಸ್ಥೆ ಕೋಡ್(orgCode): ಸಂಸ್ಥೆಯ ಅನನ್ಯ ಕೋಡ್, ಯಾವುದಾದರೂ ಇದ್ದರೆ,","t0030":"ಸಂಸ್ಥೆಯ ವಿಧ: ಸಂಸ್ಥೆಯ ಪ್ರಕಾರ, ಉದಾಹರಣೆಗೆ, NGO, ಪ್ರಾಥಮಿಕ ಶಾಲೆ, ಮಾಧ್ಯಮಿಕ ಶಾಲೆ ಇತ್ಯಾದಿ","t0031":"ಆದ್ಯತೆ ಭಾಷೆ: ಸಂಸ್ಥೆಗಾಗಿ ಆದ್ಯತೆಯ ಭಾಷೆ, ಯಾವುದಾದರೂ ಇದ್ದಲ್ಲಿ","t0032":"ಸಂಪರ್ಕದ ವಿವರ: ಸಂಘಟನೆಯ ಫೋನ್ ಸಂಖ್ಯೆ ಮತ್ತು ಇಮೇಲ್ ID. ಏಕ ಉಲ್ಲೇಖಗಳಲ್ಲಿ ಸುರುಳಿಯಾದ ಆವರಣಗಳಲ್ಲಿ ವಿವರಗಳನ್ನು ನಮೂದಿಸಬೇಕು. ಉದಾಹರಣೆಗೆ: [{'ಫೋನ್ ನಂಬರ್': '1234567890'}]","t0049":"ಕಾಲಮ್ ಮೌಲ್ಯವು RootOrg ಆಗಿರುವುದು ನಿಜವಾಗಿದ್ದರೆ ಚಾನಲ್ ಕಡ್ಡಾಯವಾಗಿದೆ","t0050":"ಬಾಹ್ಯ ಐಡಿ ಮತ್ತು ಒದಗಿಸುವವರು ಪರಸ್ಪರ ಕಡ್ಡಾಯ","t0055":"ಓಹ್ ಪ್ರಕಟಣೆ ವಿವರಗಳು ಕಂಡುಬಂದಿಲ್ಲ!","t0056":"ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ..","t0058":"ಹೀಗೆ ಡೌನ್ಲೋಡ್ ಮಾಡಿ:","t0059":"CSV","t0060":"ಧನ್ಯವಾದಗಳು!","t0061":"ಓಹ್ ...","t0062":"ನೀವು ಇನ್ನೂ ಈ ಕೋರ್ಸ್ಗಾಗಿ ಬ್ಯಾಚ್ ಅನ್ನು ರಚಿಸಿಲ್ಲ. ಹೊಸ ಬ್ಯಾಚ್ ಅನ್ನು ರಚಿಸಿ ಮತ್ತು ಡ್ಯಾಶ್ಬೋರ್ಡ್ ಅನ್ನು ಮತ್ತೆ ಪರಿಶೀಲಿಸಿ.","t0063":"ನೀವು ಇನ್ನೂ ಯಾವುದೇ ಕೋರ್ಸ್ ಅನ್ನು ರಚಿಸಿಲ್ಲ. ಹೊಸ ಕೋರ್ಸ್ ಅನ್ನು ರಚಿಸಿ ಮತ್ತು ಡ್ಯಾಶ್ಬೋರ್ಡ್ ಅನ್ನು ಪುನಃ ಪರಿಶೀಲಿಸಿ.","t0064":"ಒಂದೇ ವಿಧದ ಅನೇಕ ವಿಳಾಸಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ. ದಯವಿಟ್ಟು ಯಾವುದಾದರೂ ಒಂದನ್ನು ಬದಲಾಯಿಸಿ.","t0065":"ಡೌನ್ಲೋಡ್","t0070":"CSV ಫೈಲ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ. ಒಂದು ಸಂಸ್ಥೆಗೆ ಸೇರಿದ ಬಳಕೆದಾರರು ಒಂದು CSV ಫೈಲ್ನಲ್ಲಿ ಒಂದೇ ಸಮಯದಲ್ಲಿ ಅಪ್ಲೋಡ್ ಮಾಡಬಹುದು.","t0071":"ಬಳಕೆದಾರರ ಖಾತೆಗಳ ಕೆಳಗಿನ ಕಡ್ಡಾಯ ವಿವರಗಳನ್ನು ನಮೂದಿಸಿ:","t0072":"ಮೊದಲನೆಯ ಹೆಸರು: ಬಳಕೆದಾರರ ಮೊದಲ ಹೆಸರು, ವರ್ಣಮಾಲೆಯ ಮೌಲ್ಯ.","t0073":"ಫೋನ್ ಅಥವಾ ಇಮೇಲ್: ಬಳಕೆದಾರರ ಫೋನ್ ಸಂಖ್ಯೆ (ಹತ್ತು ಅಂಕಿಯ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ) ಅಥವಾ ಇಮೇಲ್ ID. ಎರಡರಲ್ಲಿ ಒಂದನ್ನು ಒದಗಿಸಬೇಕಾಗಿದೆ, ಆದರೆ, ಲಭ್ಯವಿದ್ದಲ್ಲಿ ಎರಡನ್ನೂ ಒದಗಿಸಿದರೆ ಒಳ್ಳೆಯದು.","t0074":"ಬಳಕೆದಾರಹೆಸರು: ಸಂಸ್ಥೆಯಿಂದ  ವಿಶಿಷ್ಟ ಆಲ್ಫಾನ್ಯೂಮರಿಕ್ ಹೆಸರು ಬಳಕೆದಾರರಿಗೆ ನಿಗದಿಪಡಿಸಲಾಗಿದೆ.","t0076":"ಗಮನಿಸಿ: CSV ಫೈಲಿನಲ್ಲಿರುವ ಎಲ್ಲಾ ಇತರ ಕಾಲಮ್ಮುಗಳು ಐಚ್ಛಿಕವಾಗಿದೆ, ಇವುಗಳನ್ನು ಭರ್ತಿ ಮಾಡುವ ವಿವರಗಳಿಗಾಗಿ, ನೋಡಿ","t0077":"ಬಳಕೆದಾರರನ್ನು ನೋಂದಾಯಿಸಿ.","t0078":"ಸ್ಥಳ ಐಡಿ: ಒಂದು ನಿರ್ದಿಷ್ಟ ಸಂಸ್ಥೆಗೆ ಪ್ರಕಟಣೆ ವಿಷಯವನ್ನು ಗುರುತಿಸುವ ಒಂದು ID","t0079":"ಸ್ಥಳ ಕೋಡ್: ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಯಿಂದ ಬೇರ್ಪಡಿಸಿದ ಸ್ಥಳ ಸಂಕೇತಗಳ ಪಟ್ಟಿ","t0081":"ನೀವು DIKSHA ಗೆ  ನೋಂದಾಯಿಸಿಕೊಂಡಿದ್ದಕ್ಕೆ  ಧನ್ಯವಾದಗಳು. ಪರಿಶೀಲನೆಗಾಗಿ ನಾವು sms OTP ಕಳುಹಿಸಿದ್ದೇವೆ. ನೋಂದಣಿ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು ನಿಮ್ಮ ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು OTP ಯೊಂದಿಗೆ ಪರಿಶೀಲಿಸಿ.","t0082":"ನೀವು DIKSHA ಗೆ  ನೋಂದಾಯಿಸಿಕೊಂಡಿದ್ದಕ್ಕೆ ಧನ್ಯವಾದಗಳು. ಪರಿಶೀಲನೆಗಾಗಿ ನಾವು ಇಮೇಲ್ OTP ಅನ್ನು ಕಳುಹಿಸಿದ್ದೇವೆ. ನೋಂದಣಿ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು OTP ಯೊಂದಿಗೆ ನಿಮ್ಮ ಇಮೇಲ್ ID ಅನ್ನು ಪರಿಶೀಲಿಸಿ.","t0083":"ಮೊಬೈಲ್ ನಂಬರ್ ಪರೀಕ್ಷಣೆಗೆ ನಿಮಗೆ  ಒಟಿಪಿ  ಎಸ್ ಎಂ ಎಸ್ ಬರುತ್ತದೆ ","t0084":"ಇಮೇಲ್  ಐಡಿ ಪರೀಕ್ಷಣೆಗೆ ನಿಮಗೆ ಒಟಿಪಿಯು ಇಮೇಲಿನಲ್ಲಿ  ಬರುತ್ತದೆ","t0085":"ವರದಿಯು ಮೊದಲ 10,000 ಭಾಗೀದಾರರ ದತ್ತಾಂಶಗಳನ್ನು ತೋರಿಸುತ್ತಿದೆ. ಬ್ಯಾಚಿನಲ್ಲಿರುವ ಎಲ್ಲ ಭಾಗೀದಾರರ  ಪ್ರಗತಿಯನ್ನು ನೋಡಲು ಡೌನ್ಲೋಡ್  ಕ್ಲಿಕ್ ಮಾಡಿ","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"ಟಿಪ್ಪಣಿಗಳು ಅಥವಾ ಶೀರ್ಷಿಕೆಗಾಗಿ ಹುಡುಕಿ","t0002":"ನಿಮ್ಮ ಕಾಮೆಂಟನ್ನು ಸೇರಿಸಿ","t0005":"ಬ್ಯಾಚ್ ಮೆಂಟರ್ ಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","t0006":"ಬ್ಯಾಚ್ ಸದಸ್ಯರನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"},"lnk":{"announcement":"ಪ್ರಕಟಣೆ ಡ್ಯಾಶ್ಬೋರ್ಡ್","assignedToMe":"ನನಗೆ ವಹಿಸಲಾಗಿದೆ","contentProgressReport":"ಕಂಟೆಂಟ್ ಪ್ರಗತಿ ವರದಿ ","contentStatusReport":"ಕಂಟೆಂಟ್ ಸ್ಥಿತಿಗತಿ ವರದಿ","createdByMe":"ನಾನು ರಚಿಸಿದ್ದು","dashboard":"ಅಡ್ಮಿನ್ ಡ್ಯಾಶ್ ಬೋರ್ಡ್","detailedConsumptionMatrix":"ಬಳಕೆಯ ವಿವರವಾದ ಮ್ಯಾಟ್ರಿಕ್ಸ್","detailedConsumptionReport":"ಬಳಕೆಯ ವಿವರವಾದ  ವರದಿ","footerContact":"ಪ್ರಶ್ನೆಗಳಿಗೆ ಸಂಪರ್ಕಿಸಿ:","footerDIKSHAForMobile":"ಮೊಬೈಲ್ ಗಾಗಿ DIKSHA","footerDikshaVerticals":"DIKSHA ವರ್ಟಿಕಲ್ಸ್","footerHelpCenter":"ಸಹಾಯ ಕೇಂದ್ರ","footerPartners":"ಭಾಗೀದಾರರು","footerTnC":"ಬಳಕೆಯ ನಿಯಮಗಳು","logout":"ಲಾಗ್ ಔಟ್","myactivity":"ನನ್ನ ಚಟುವಟಿಕೆ","profile":"ಪ್ರೊಫೈಲ್","textbookProgressReport":"ಪಠ್ಯಪುಸ್ತಕ ಪ್ರಗತಿ ವರದಿ","viewall":"ಎಲ್ಲವನ್ನು ವೀಕ್ಷಿಸಿ","workSpace":"ಕಾರ್ಯಕ್ಷೇತ್ರ"},"pgttl":{"takeanote":"ಟಿಪ್ಪಣಿ ತೆಗೆದುಕೊಳ್ಳಿ"},"prmpt":{"deletenote":"ಈ ಟಿಪ್ಪಣಿಯನ್ನು ಡಿಲೀಟ್ ಮಾಡಲು  ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?","enteremailID":"ನಿಮ್ಮ ಇಮೇಲ್ ಐಡಿಯನ್ನು ನಮೂದಿಸಿ","enterphoneno":"10 ಅಂಕಿಗಳ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ","search":"ಹುಡುಕು","userlocation":"ಸ್ಥಳ"},"scttl":{"blkuser":"ಬಳಕೆದಾರನನ್ನು ನಿರ್ಬಂಧಿಸಿ","contributions":"ಕೊಡುಗೆದಾರರು","instructions":"ಸೂಚನೆಗಳು:","signup":"ನೋಂದಾಯಿಸಿ ","todo":"ಮಾಡಬೇಕಾದದ್ದು","error":"Error:"},"snav":{"shareViaLink":"ಲಿಂಕ್ ಮೂಲಕ ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ","submittedForReview":"ಪರಿಶೀಲನೆಗೆ ಸಲ್ಲಿಸಲಾಗಿದೆ"},"tab":{"all":"ಎಲ್ಲಾ","community":"ಗುಂಪುಗಳು","courses":"ಕೋರ್ಸ್ ಗಳು","help":"ಸಹಾಯ","home":"ಮುಖಪುಟ","profile":"ಪ್ರೊಫೈಲ್","resources":"ಗ್ರ೦ಥಾಲಯ","users":"ಬಳಕೆದಾರರು","workspace":"ಕಾರ್ಯಕ್ಷೇತ್ರ","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"ಕೋರ್ಸ್ ಪೂರ್ಣಗೊಂಡಿತು","messages":{"emsg":{"m0001":"ಈಗ ನೋಂದಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0003":"ನೀವು ಒದಗಿಸುವವರ ಮತ್ತು ಬಾಹ್ಯ ಐಡಿ ಅಥವಾ ಸಂಸ್ಥೆಯ ಐಡಿ ಅನ್ನು ನಮೂದಿಸಬೇಕು","m0005":"ಯಾವುದೋ ತಪ್ಪು ಸಂಭವಿಸಿದೆ, ದಯವಿಟ್ಟು ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಪ್ರಯತ್ನಿಸಿ ....","m0007":"ಗಾತ್ರವು ಕಡಿಮೆ ಇರಬೇಕು","m0008":"ವಿಷಯವನ್ನು ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0009":"ಈಗ ದಾಖಲಾತಿ ರದ್ದುಗೊಳಿಸಲು  ಸಾಧ್ಯವಿಲ್ಲ. ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ","m0014":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲು ಆಗಲಿಲ್ಲ","m0015":"ಇಮೇಲ್ ಐಡಿ ಅಪ್ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ ","m0016":"ರಾಜ್ಯವನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0017":"ಜಿಲ್ಲೆಗಳನ್ನು ಪಡೆಯುವುದು ವಿಫಲವಾಗಿದೆ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0018":"ಪ್ರೊಫೈಲ್ ನವೀಕರಿಸುವುದು ವಿಫಲವಾಗಿದೆ","m0019":"ವರದಿಯನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಆಗಲಿಲ್ಲ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0020":"ಬಳಕೆದಾರರ ಪರಿಷ್ಕರಣೆ ವಿಫಲವಾಯಿತು. ಮತ್ತೆ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ. ","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"ನೋಂದಾಯಿತ ಕೋರ್ಸ್ ಗಳನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ ...","m0002":"ಇತರ ಕೋರ್ಸುಗಳನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0003":"ಕೋರ್ಸ್ ವೇಳಾಪಟ್ಟಿ ವಿವರಗಳನ್ನು ಪಡೆಯಲಾಗಲಿಲ್ಲ.","m0004":"ಡೇಟಾ ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0030":"ಟಿಪ್ಪಣಿ ರಚಿಸುವುದು ವಿಫಲವಾಗಿದೆ,  ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0032":"ಟಿಪ್ಪಣಿ ತೆಗೆದುಹಾಕುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ,  ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0033":"ಟಿಪ್ಪಣಿ ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0034":"ಟಿಪ್ಪಣಿ ನವೀಕರಣ ವಿಫಲವಾಗಿದೆ, ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0041":"ಶಿಕ್ಷಣ ಡಿಲೀಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0042":"ಅನುಭವ ಡಿಲೀಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ","m0043":"ವಿಳಾಸ ಡಿಲೀಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0048":"ಬಳಕೆದಾರ ಪ್ರೊಫೈಲ್ ನವೀಕರಿಸುವುದು ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0049":"ಡೇಟಾವನ್ನು ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ.","m0050":"ವಿನಂತಿಯನ್ನು ಸಲ್ಲಿಸುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0051":"ಯಾವುದೋ ತಪ್ಪು ಸಂಭವಿಸಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0054":"ಬ್ಯಾಚ್ ವಿವರ ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0056":"ಬಳಕೆದಾರ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0076":"ದಯವಿಟ್ಟು ಕಡ್ಡಾಯ ವಿವರಗಳನ್ನು ನಮೂದಿಸಿ","m0077":"ಹುಡುಕಾಟ ಫಲಿತಾಂಶವನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ ..","m0079":"ಬ್ಯಾಡ್ಜ್ ನಿಯೋಜನೆ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0080":"ಬ್ಯಾಡ್ಜ್ ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0082":"ಈ ಕೋರ್ಸ್  ದಾಖಲಾತಿಗೆ ಇನ್ನೂ  ತೆರೆದಿಲ್ಲ","m0085":"ತಾಂತ್ರಿಕ ದೋಷ ಕಂಡುಬಂದಿದೆ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.","m0086":"ಲೇಖಕರು ಈ ಕೋರ್ಸ್ ತೆಗೆದುಹಾಕಿದ್ದಾರೆ, ಹೀಗಾಗಿ ಅದು ಇನ್ನು ಲಭ್ಯವಾಗುವುದಿಲ್ಲ","m0087":"ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ. ","m0088":"ನಾವು ವಿವರಗಳನ್ನು ಪಡೆಯುತ್ತಿದ್ದೇವೆ. ","m0089":"ಯಾವುದೇ ವಿಷಯ/ಉಪವಿಷಯ ಕಾಣಲಿಲ್ಲ","m0090":"ಡೌನ್ಲೋಡ್  ಆಗಲಿಲ್ಲ. ಮತ್ತೆ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ. ","m0091":"ಕಂಟೆಂಟ್ ಎಕ್ಸ್ ಪೋರ್ಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ ","m0093":"ಕಂಟೆಂಟ್(ಗಳು) ಅಪ್ಲೋಡ್ ವಿಫಲವಾಯಿತು","m0094":"ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಆಗಲಿಲ್ಲ, ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"ಈ ಕೋರ್ಸ್ ಸೂಕ್ತವಲ್ಲವೆಂದು ಫ್ಲ್ಯಾಗ್ ಮಾಡಲಾಗಿದೆ ಮತ್ತು ಪ್ರಸ್ತುತ ಪರಿಶೀಲನೆಯಲ್ಲಿದೆ.  ","m0005":"ದಯವಿಟ್ಟು ಮಾನ್ಯ ಇಮೇಜ್ ಫೈಲ್ ಅನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ. ಬೆಂಬಲಿತ ಫೈಲ್ ಪ್ರಕಾರಗಳು: jpeg, jpg, png. ಗರಿಷ್ಠ ಗಾತ್ರ: 4MB.","m0017":"ಪ್ರೊಫೈಲ್ ಸಂಪೂರ್ಣತೆ.","m0022":"ಕಳೆದ 7 ದಿನಗಳ ಅಂಕಿಅಂಶಗಳು","m0023":"ಕಳೆದ 14 ದಿನಗಳ ಅಂಕಿಅಂಶಗಳು","m0024":"ಕಳೆದ 5 ವಾರಗಳ ಅಂಕಿಅಂಶಗಳು","m0025":"ಪ್ರಾರಂಭದಿಂದ ಅಂಕಿಅಂಶಗಳು","m0026":"ಹಾಯ್, ಈ ಕೋರ್ಸ್ ಈಗ ಲಭ್ಯವಿಲ್ಲ. ರಚನಾಕಾರರು ಕೋರ್ಸ್ ನಲ್ಲಿ  ಕೆಲವು ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಿರಬಹುದು.","m0027":"ಹಾಯ್, ಈ ವಿಷಯವು ಈಗ ಲಭ್ಯವಿಲ್ಲ. ರಚನಾಕ಻ರರು ವಿಷಯಕ್ಕೆ ಕೆಲವು ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಿದ್ದಾರೆ.","m0034":"ವಿಷಯವು ಬಾಹ್ಯ ಮೂಲದಿಂದ ಬಂದಿರುವುದರಿಂದ, ಸ್ವಲ್ಪ ಸಮಯದಲ್ಲೇ ಅದನ್ನು ತೆರೆಯಲಾಗುತ್ತದೆ.","m0035":"ಅನಧಿಕೃತ ಪ್ರವೇಶ","m0036":"ವಿಷಯವನ್ನು ಬಾಹ್ಯವಾಗಿ ಹೋಸ್ಟ್ ಮಾಡಲಾಗಿದೆ, ದಯವಿಟ್ಟು ವಿಷಯವನ್ನು ವೀಕ್ಷಿಸಲು ಪೂರ್ವವೀಕ್ಷಣೆ ಕ್ಲಿಕ್ ಮಾಡಿ","m0040":"ಪ್ರಕ್ರಿಯೆ ಇನ್ನೂ ಪ್ರಗತಿಯಲ್ಲಿದೆ, ದಯವಿಟ್ಟು ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಪ್ರಯತ್ನಿಸಿ.","m0041":"ನಿಮ್ಮ ಪ್ರೊಫೈಲ್","m0042":"% ಪೂರ್ಣಗೊಂಡಿದೆ","m0043":"ನಿನ್ನ ಪ್ರೊಫೈಲ್ ಸರಿಯಾದ ಇಮೇಲ್ ಐಡಿಯನ್ನು ಹೊಂದಿಲ್ಲ. ನಿಮ್ಮ ಇಮೇಲ್ ಐಡಿಯನ್ನು ಅಪ್ ಡೇಟ್ ಮಾಡಿ. ","m0044":"ಡೌನ್ಲೋಡ್  ಆಗಲಿಲ್ಲ","m0045":"ಡೌನ್ಲೋಡ್  ಆಗಲಿಲ್ಲ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0047":"ನೀವು ಕೇವಲ 100 ಜನ ಭಾಗವಹಿಸುವವರನ್ನು ಆಯ್ಕೆ ಮಾಡಬಹುದು","m0060":"{instance} ಜೊತೆಗೆ ಎರಡು ಅಕೌಂಟ್ ಇದ್ದರೆ,  ಕ್ಲಿಕ್ ಮಾಡಿ","m0061":"ಗೆ","m0062":"ಅಥವಾ, ಕ್ಲಿಕ್ ಮಾಡಿ","m0063":"ಎರಡೂ ಅಕೌಂಟ್ ಗಳ ವಿವರಗಳನ್ನು ಸೇರಿಸಿರಿ, ಮತ್ತು","m0064":"ಇನ್ನೊಂದು ಅಕೌಂಟ್ ಅನ್ನು ಡಿಲೀಟ್ ಮಾಡಿ","m0065":"ಅಕೌಂಟ್ ವಿಲೀನಗೊಳಿಸುವುದು ಯಶಸ್ವಿಯಾಗಿ ಆರಂಭವಾಯಿತು","m0066":"ಇದು ಪೂರ್ಣಗೊಂಡ ನಂತರ ನಿಮಗೆ ತಿಳಿಸಲಾಗುವುದು","m0067":"ಅಕೌಂಟ್ ವಿಲೀನವು ಇನ್ನೂ ಶುರುವಾಗಿಲ್ಲ, ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ","m0072":"ಅಕೌಂಟ್ ಗಳನ್ನು ವಿಲೀನಗೊಳಿಸುವುದು ಆಗಲಿಲ್ಲ, ಏಕೆಂದರೆ ಪಾಸ್ವರ್ಡ್ ತಪ್ಪಾಗಿ ಹಾಕಿದ್ದೀರಿ","m0073":"ಹೊಸ {instance} ಅಕೌಂಟ್ ರಚಿಸಲು ಓಕೆ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"ಟಿಪ್ಪಣಿ ಯಶಸ್ವಿಯಾಗಿ ರಚಿಸಲಾಗಿದೆ ...","m0013":"ಟಿಪ್ಪಣಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ ...","m0014":"ಶಿಕ್ಷಣ ಯಶಸ್ವಿಯಾಗಿ ಡಿಲೀಟ್ ಮಾಡಲಾಗಿದೆ","m0015":"ಅನುಭವವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಡಿಲೀಟ್ ಮಾಡಲಾಗಿದೆ","m0016":"ವಿಳಾಸವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಡಿಲೀಟ್ ಮಾಡಲಾಗಿದೆ","m0018":"ಪ್ರೊಫೈಲ್ ಚಿತ್ರ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0019":"ವಿವರಣೆ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0020":"ಶಿಕ್ಷಣ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0021":"ಅನುಭವವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0022":"ಹೆಚ್ಚುವರಿ ಮಾಹಿತಿ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0023":"ವಿಳಾಸವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0024":"ಹೊಸ ಶಿಕ್ಷಣ ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ","m0025":"ಹೊಸ ಅನುಭವವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ","m0026":"ಹೊಸ ವಿಳಾಸವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ","m0028":"ಪಾತ್ರಗಳನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0029":"ಬಳಕೆದಾರರನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಡಿಲೀಟ್ ಮಾಡಲಾಗಿದೆ","m0030":"ಬಳಕೆದಾರರನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಪ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ","m0031":"ಸಂಸ್ಥೆಗಳು ಯಶಸ್ವಿಯಾಗಿ ಅಪ್ಲೋಡ್ ಆಗಿವೆ","m0032":"ಸ್ಥಿತಿ ಯಶಸ್ವಿಯಾಗಿ ಫೆಚ್ ಆಗಿದೆ","m0035":"ಸಂಸ್ಥೆಯ ವಿಧವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ","m0036":"ಈ ಬ್ಯಾಚಿಗೆ  ಕೋರ್ಸ್ ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನೋಂದಾಯಿಸಲಾಗಿದೆ ","m0037":"ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0038":"ಕೌಶಲಗಳನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0039":"ಸೈನ್ ಅಪ್  ಯಶಸ್ವಿಯಾಯಿತು, ದಯವಿಟ್ಟು ಲಾಗಿನ್ ಮಾಡಿ ...","m0040":"ಪ್ರೊಫೈಲ್ ಕ್ಷೇತ್ರ ಗೋಚರತೆಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0042":"ವಿಷಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನಕಲಿಸಲಾಗಿದೆ","m0043":"ಅನುಮೋದನೆ ಯಶಸ್ವಿಯಾಗಿದೆ","m0044":"ಬ್ಯಾಡ್ಜ್ ಯಶಸ್ವಿಯಾಗಿ ನಿಯೋಜಿಸಲಾಗಿದೆ ...","m0045":"ಬ್ಯಾಚಿನಿಂದ  ಬಳಕೆದಾರರನ್ನು ಯಶಸ್ವಿಯಾಗಿ ತೆಗೆದುಹಾಕಲಾಗಿದೆ","m0046":"ಪ್ರೊಫೈಲ್ ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ ...","m0047":"ನಿಮ್ಮ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಯಿತು","m0048":"ನಿಮ್ಮ ಇಮೇಲ್ ಐಡಿ ಅಪ್ಡೇಟ್ ಆಗಿದೆ","m0049":"ಬಳಕೆದಾರರ ಪರಿಷ್ಕರಣೆ ಯಶಸ್ವಿಯಾಯಿತು","m0050":"ಈ ಕಂಟೆಂಟ್ ರೇಟ್ ಮಾಡಿದ್ದಕ್ಕೆ ಧನ್ಯವಾದಗಳು","m0053":"ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಕ್ಯೂನಲ್ಲಿ ಇರುವ ಕಂಟೆಂಟ್ ","m0054":"ಕಂಟೆಂಟ್(ಗಳು) ಯಶಸ್ವಿಯಾಗಿ ಅಪ್ಲೋಡ್ ಆಯಿತು","m0055":"ನವೀಕರಿಸಲಾಗುತ್ತಿದೆ","m0056":"ಪಠ್ಯಾಂಶವನ್ನು ನವೀಕರಿಸಲು ನೀವು ಆನ್ಲೈನಿನಲ್ಲಿ ಇರಬೇಕು","moo41":"ಪ್ರಕಟಣೆ ಯಶಸ್ವಿಯಾಗಿ ರದ್ದುಗೊಂಡಿದೆ ...","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"ಯಾವುದೇ ಫಲಿತಾಂಶ ಕಂಡುಬಂದಿಲ್ಲ","m0007":"ದಯವಿಟ್ಟು ನಿಮ್ಮ ಹುಡುಕಾಟವನ್ನು ಪರಿಷ್ಕರಿಸಿ","m0008":"ಫಲಿತಾಂಶಗಳು ಇಲ್ಲ","m0009":"ಪ್ಲೇ ಆಗುತ್ತಿಲ್ಲ, ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ಅಥವಾ ಮುಚ್ಚಿ.","m0022":"ನಿಮ್ಮ ಒಂದು ಡ್ರಾಫ್ಟ್(ಕರಡನ್ನು) ಅನ್ನು ಪರಿಶೀಲನೆಗೆ  ಸಲ್ಲಿಸಿ. ಪರಿಶೀಲನೆಯ ನಂತರವೇ ಕಂಟೆಂಟ್ ಪ್ರಕಟವಾಗುತ್ತದೆ. ","m0024":"ಕಡತ, ವಿಡಿಯೋ ಅಥವಾ ಯಾವುದೇ ಬೆಂಬಲಿತ ನಮೂನೆಯನ್ನು ಅಪ್ ಲೋಡ್ ಮಾಡಿ. ನೀವು ಇನ್ನೂ ಏನನ್ನೂ ಅಪ್ ಲೋಡ್ ಮಾಡಿಲ್ಲ. ","m0033":"ನಿಮ್ಮ ಒಂದು ಡ್ರಾಫ್ಟ್ ಅನ್ನು ಪರಿಶೀಲನೆ(ರಿವ್ಯೂ)ಗೆ ಸಲ್ಲಿಸಿ. ನೀವು ಇನ್ನೂ ಯಾವುದೇ ಕಂಟೆಂಟ್ ಅನ್ನು ಪರಿಶೀಲನೆಗೆ  ಸಲ್ಲಿಸಿಲ್ಲ. ","m0035":"ಯಾವುದೇ ಕಂಟೆಂಟ್ ಪರಿಶೀಲನೆಗೆ ಇಲ್ಲ. ","m0060":"ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಬಲಪಡಿಸಿ","m0062":"ಮಾನ್ಯವಾದ ಪದವಿ ನಮೂದಿಸಿ","m0063":"ಮಾನ್ಯವಾದ ವಿಳಾಸದ ಸಾಲು 1 ನಮೂದಿಸಿ","m0064":"ನಗರವನ್ನು ನಮೂದಿಸಿ","m0065":"ಮಾನ್ಯವಾದ ಪಿನ್ ಕೋಡ್ ನಮೂದಿಸಿ","m0066":"ಮೊದಲ ಹೆಸರನ್ನು ನಮೂದಿಸಿ","m0067":"ದಯವಿಟ್ಟು ಮಾನ್ಯವಾದ ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು ಒದಗಿಸಿ","m0069":"ಭಾಷೆ ಆಯ್ಕೆ ಮಾಡಿ","m0070":"ಸಂಸ್ಥೆಯ ಹೆಸರನ್ನು ನಮೂದಿಸಿ","m0072":"ಮಾನ್ಯ ಉದ್ಯೋಗ / ಕೆಲಸದ ಶೀರ್ಷಿಕೆಯನ್ನು ನಮೂದಿಸಿ","m0073":"ಮಾನ್ಯವಾದ ಸಂಸ್ಥೆಯನ್ನು ನಮೂದಿಸಿ","m0077":"ನಿಮ್ಮ ವಿನಂತಿಯನ್ನು ನಾವು ಸಲ್ಲಿಸುತ್ತಿದ್ದೇವೆ ...","m0080":"ದಯವಿಟ್ಟು CSV ರೂಪದಲ್ಲಿ ಮಾತ್ರ ಫೈಲ್ ಅನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ","m0081":"ಯಾವುದೇ ಬ್ಯಾಚ್ಗಳು ಕಂಡುಬಂದಿಲ್ಲ","m0083":"ನೀವು ಇನ್ನೂ ಯಾರೊಂದಿಗೂ ಕಂಟೆಂಟ್ ಹಂಚಿಕೊಂಡಿಲ್ಲ","m0087":"ದಯವಿಟ್ಟು ಮಾನ್ಯವಾದ ಬಳಕೆದಾರ ಹೆಸರನ್ನು ನಮೂದಿಸಿ, ಕನಿಷ್ಠ 5 ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿರಬೇಕು","m0088":"ದಯವಿಟ್ಟು ಮಾನ್ಯವಾದ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಮೂದಿಸಿ","m0089":"ಮಾನ್ಯವಾದ ಡಯಲ್ ಕೋಡ್ ನಮೂದಿಸಿ","m0090":"ದಯವಿಟ್ಟು ಭಾಷೆಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","m0091":"ಮಾನ್ಯವಾದಮೊಬೈಲ್ ಸಂಖ್ಯೆ ನಮೂದಿಸಿ","m0094":"ಮಾನ್ಯವಾದ ಶೇಕಡಾ ನಮೂದಿಸಿ","m0095":"ನಿಮ್ಮ ವಿನಂತಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸ್ವೀಕರಿಸಲಾಗಿದೆ. ಫೈಲ್ ಅನ್ನು ನಂತರ ನಿಮ್ಮ ನೋಂದಾಯಿತ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ ಕಳುಹಿಸಲಾಗುತ್ತದೆ. ದಯವಿಟ್ಟು, ನಿಮ್ಮ ಇಮೇಲ್ಗಳನ್ನು ನಿಯಮಿತವಾಗಿ ಪರಿಶೀಲಿಸಿ.","m0104":"ಮಾನ್ಯ ತರಗತಿಯನ್ನು ನಮೂದಿಸಿ","m0108":"ನಿಮ್ಮ ಪ್ರಗತಿ","m0113":"ಆರಂಭದ ದಿನಾಂಕವನ್ನು ಸರಿಯಾಗಿ ಹಾಕಿರಿ. ","m0116":"ಆಯ್ಕೆಮಾಡಿದ ಟಿಪ್ಪಣಿಯನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ ...","m0120":"ತೋರಿಸಲು ಯಾವುದೇ ವಿಷಯವಿಲ್ಲ","m0121":"ಕಂಟೆಂಟ್ ಇನ್ನೂ ಸೇರಿಸಿಲ್ಲ","m0122":"ನಿಮ್ಮ ರಾಜ್ಯವು ಶೀಘ್ರದಲ್ಲಿಯೇ ಈ ಕ್ಯುಆರ್ ಸಂಕೇತಕ್ಕೆ ಕಂಟೆಂಟ್ ಸೇರಿಸುತ್ತದೆ. ಅದು ಶೀಘ್ರದಲ್ಲಿಯೇ ನಿಮಗೆ ದೊರೆಯಲಿದೆ. ","m0123":"ನಿಮ್ಮ ಗೆಳೆಯ/ತಿಗೆ ನಿಮ್ಮನ್ನು ಸಹಭಾಗಿ(ಕೊಲಾಬೊರೇಟರ್)ಯಾಗಿ ಸೇರಿಸುವಂತೆ ಹೇಳಿ. ನಿಮಗೆ ಈ ಕುರಿತು ಇಮೇಲ್ ಮೂಲಕ ಸೂಚನೆ ನೀಡಲಾಗುವುದು. ","m0125":"ಸಂಪನ್ಮೂಲ, ಪುಸ್ತಕ, ಕೋರ್ಸ್, ಸಂಗ್ರಹ ಅಥವಾ ಅಪ್ ಲೋಡ್ ಅನ್ನು ರಚಿಸಲು ಆರಂಭಿಸಿ. ಈಗ ಸಧ್ಯಕ್ಕೆ ನಿಮ್ಮ ಯಾವುದೇ ಡ್ರಾಫ್ಟ್(ಕರಡು) ಕೆಲಸದ-ಪ್ರಗತಿಯಲ್ಲಿ ಇಲ್ಲ. ","m0126":"ದಯವಿಟ್ಟು ಬೋರ್ಡ್ ಆಯ್ಕೆಮಾಡಿ","m0127":"ಮಾಧ್ಯಮ ಆಯ್ಕೆ ಮಾಡಿ","m0128":"ತರಗತಿ ಆಯ್ಕೆ ಮಾಡಿ","m0129":"ನಿಯಮಗಳು ಮತ್ತು ಷರತ್ತುಗಳನ್ನು ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ.","m0130":"ನಾವು ಜಿಲ್ಲೆಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳುತ್ತಿದ್ದೇವೆ","m0131":"ಯಾವುದೇ ವರದಿಗಳನ್ನು ಸಿಗಲಿಲ್ಲ","m0132":"ನಿಮ್ಮ ಬೇಡಿಕೆಯನ್ನು ನಾವು ಸ್ವೀಕರಿಸಿದ್ದೇವೆ. ಶೀಘ್ರವೇ ನಿಮಗೆ ಫೈಲ್ ಅನ್ನು ನಿಮ್ಮ ನೋಂದಾಯಿತ ಇಮೇಲ್ ಐಡಿಗೆ ಕಳಿಸುತ್ತೇವೆ. ","m0133":"ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್  ಬಳಸಿಕೊಂಡು ಕಂಟೆಂಟ್ ಗಳನ್ನು ಹುಡುಕಿ ಮತ್ತು ಡೌನ್ಲೋಡ್ ಮಾಡಿ ಅಥವಾ ಅಪ್ಲೋಡ್ ಮಾಡಿ","m0134":"ನೋಂದಣಿ","m0135":"ದಿನಾಂಕವನ್ನು ಸರಿಯಾಗಿ ಹಾಕಿರಿ","m0136":"ನೋಂದಣಿಗೆ ಕೊನೆಯ ದಿನಾಂಕ: ","m0138":"ವಿಫಲವಾಯಿತು","m0139":"ಡೌನ್ಲೋಡ್ ಆಗಿದ್ದು","m0140":"ಡೌನ್ಲೋಡ್ ಆಗುತ್ತಿದೆ","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"}},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"ಸಂಸ್ಥೆ ಹೆಸರು","participants":"ಭಾಗವಹಿಸುವವರು","resourceService":{"frmelmnts":{"lbl":{"userId":"ಬಳಕೆದಾರರ ID"}}},"t0065":"ಕಡತ ಡೌನ್ಲೋಡ್ ಮಾಡಿ"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"You don't have any published content...","m0023":"We are fetching uploaded content...","m0024":"You don't have any uploaded content...","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"You don't have any content for review...","m0034":"We are deleting the content...","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You don't have any limited publish content...","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"You are not collaborating on any content yet","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"No content to display. Start Creating Now","m0035":"There is no content to review","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
+{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"ಹೊಂದಾಣಿಕೆಯಾಗುವ ಯಾವುದೇ ದಾಖಲೆಗಳು ಇಲ್ಲ","Mobile":"ಮೊಬೈಲ್","SearchIn":"{searchContentType} ಹುಡುಕಿರಿ","Select":"ಆಯ್ಕೆ ಮಾಡಿ. ","aboutthecourse":"ಕೋರ್ಸ್ ಬಗ್ಗೆ","active":"ಸಕ್ರಿಯ","addDistrict":"ಜಿಲ್ಲೆ ಸೇರಿಸಿ","addEmailID":"ಇಮೇಲ್ ID ಸೇರಿಸಿ","addPhoneNo":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಸೇರಿಸಿ","addState":"ರಾಜ್ಯ ಸೇರಿಸಿ","addlInfo":"ಹೆಚ್ಚುವರಿ ಮಾಹಿತಿ","addnote":"ಟಿಪ್ಪಣಿ ಸೇರಿಸು","addorgtype":"ಸಂಸ್ಥೆಯ ವಿಧ ಸೇರಿಸು","address":"ವಿಳಾಸ","addressline1":"ವಿಳಾಸ ಸಾಲು-1","addressline2":"ವಿಳಾಸ ಸಾಲು-2","anncmnt":"ಪ್ರಕಟಣೆಗಳು","anncmntall":"ಎಲ್ಲಾ ಪ್ರಕಟಣೆಗಳು","anncmntcancelconfirm":"ಈ ಪ್ರಕಟಣೆಯನ್ನು ತೋರಿಸುವುದನ್ನು ನಿಲ್ಲಿಸಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?","anncmntcancelconfirmdescrption":"ಈ ಕ್ರಿಯೆಯ ನಂತರ ಬಳಕೆದಾರರು ಈ ಪ್ರಕಟಣೆಯನ್ನು ನೋಡಲು ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ","anncmntcreate":"ಪ್ರಕಟಣೆ ರಚಿಸಿ","anncmntdtlsattachments":"ಲಗತ್ತುಗಳು","anncmntdtlssenton":"ಕಳುಹಿಸಲಾಗಿದೆ","anncmntdtlsview":"ವೀಕ್ಷಿಸು","anncmntdtlsweblinks":"ವೆಬ್ ಲಿಂಕ್ ಗಳು","anncmntinboxannmsg":"ಪ್ರಕಟಣೆಗಳು","anncmntinboxseeall":"ಎಲ್ಲವನ್ನು ವೀಕ್ಷಿಸಿ","anncmntlastupdate":"ಬಳಕೆಯ ಡೇಟಾವನ್ನು ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","anncmntmine":"ನನ್ನ ಪ್ರಕಟಣೆಗಳು","anncmntnotfound":"ಯಾವುದೇ ಘೋಷಣೆ ಕಂಡುಬಂದಿಲ್ಲ!","anncmntoutboxdelete":"ಡಿಲೀಟ್ ಮಾಡಿ","anncmntoutboxresend":"ಮರುಕಳುಹಿಸಿ","anncmntplzcreate":"ದಯವಿಟ್ಟು ಪ್ರಕಟಣೆ ರಚಿಸಿ","anncmntreadmore":"....ಇನ್ನಷ್ಟು ಓದಿ","anncmntsent":"ಕಳುಹಿಸಿದ ಎಲ್ಲಾ ಪ್ರಕಟಣೆಯನ್ನು ತೋರಿಸಲಾಗುತ್ತಿದೆ","anncmnttblactions":"ಕ್ರಿಯೆಗಳು","anncmnttblname":"ಹೆಸರು","anncmnttblpublished":"ಪ್ರಕಟಿಸಲಾಗಿದೆ","anncmnttblreceived":"ಪಡೆದಿದೆ","anncmnttblseen":"ನೋಡಿದೆ","anncmnttblsent":"ಕಳುಹಿಸಿದೆ","attributions":"ಗುಣಲಕ್ಷಣಗಳು","author":"ಲೇಖಕ","badgeassignconfirmation":"ಈ ವಿಷಯಕ್ಕೆ ಬ್ಯಾಡ್ಜ್ ಅನ್ನು ನೀಡಲು ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?","batchdescription":"ಬ್ಯಾಚ್ ವಿವರಣೆ","batchdetails":"ಬ್ಯಾಚ್ ವಿವರಗಳು","batchenddate":"ಕೊನೆಯ ದಿನಾಂಕ","batches":"ಬ್ಯಾಚ್ ಗಳು","batchmembers":"ಬ್ಯಾಚ್ ಸದಸ್ಯರು","batchstartdate":"ಆರಂಭಿಸಿದ ದಿನಾಂಕ","birthdate":"ಹುಟ್ಟಿದ ದಿನಾಂಕ (ದಿದಿ/ತಿತಿ/ವವವವ)","block":"ನಿರ್ಬಂಧಿಸಿ","blocked":"ನಿರ್ಬಂಧಿತ","blockedUserError":"ಬಳಕೆದಾರ ಖಾತೆಯನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ. ದಯವಿಟ್ಟು ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ.","blog":"ಬ್ಲಾಗ್","board":"ಬೋರ್ಡ್/ವಿಶ್ವವಿದ್ಯಾಲಯ","boards":"ಮಂಡಳಿ (ಬೋರ್ಡ್)","browserSuggestions":"ಇನ್ನೂ ಉತ್ತಮ ಅನುಭವಕ್ಕಾಗಿ, ನೀವು ಅಪ್ ಗ್ರೇಡ್ ಮಾಡಿ ಅಥವಾ ಇನ್ಸ್ಟಾಲ್ ಮಾಡಿ","certificateIssuedTo":"ಗೆ ಪ್ರಮಾಣಪತ್ರ ನೀಡಲಾಗಿದೆ ","certificatesIssued":"ಕೊಟ್ಟಿರುವ ಪ್ರಮಾಣಪತ್ರಗಳು","certificationAward":"ಪ್ರಶಸ್ತಿ ಪತ್ರಗಳು & ಪ್ರಶಸ್ತಿಗಳು","channel":"ಮಾಧ್ಯಮ","chkuploadsts":"ಅಪ್ಲೋಡ್ ಸ್ಥಿತಿ ಪರಿಶೀಲಿಸಿ","chooseAll":"ಎಲ್ಲವನ್ನೂ ಆಯ್ಕೆ ಮಾಡಿ.","city":"ನಗರ","class":"ತರಗತಿ","classes":"ತರಗತಿಗಳು","clickHere":"ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ","completed":"ಪೂರ್ಣಗೊಂಡಿತು","completedCourse":"ಕೋರ್ಸ್ ಪೂರ್ಣಗೊಂಡಿತು","completingCourseSuccessfully":"ಯಶಸ್ವಿಯಾಗಿ ಕೋರ್ಸ್ ಅನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು,","concept":"ಪರಿಕಲ್ಪನೆಗಳು","confirmPassword":"ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಿಸಿ","confirmblock":"ನೀವು ನಿರ್ಬಂಧಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ","connectInternet":"ಕಂಟೆಂಟ್ ನೋಡಲು ಇಂಟರ್ನೆಟ್ ಗೆ ಸಂಪರ್ಕ ಹೊಂದಿ","contactStateAdmin":"ಈ ತಂಡಕ್ಕೆ ಹೆಚ್ಚು ಜನ ಭಾಗವಹಿಸುವವರನ್ನು ಸೇರಿಸಲು ನಿಮ್ಮ  ರಾಜ್ಯದ ಆಡಳಿತಗಾರರನ್ನು ಸಂಪರ್ಕಿಸಿ","contentCredits":"ವಿಷಯ ಕ್ರೆಡಿಟ್ಸ್","contentcopiedtitle":"ಈ ಕಂಟೆಂಟ್ ಅನ್ನು ಇದರಿಂದ ಪಡೆಯಲಾಗಿದೆ","contentinformation":"ವಿಷಯ ಮಾಹಿತಿ","contentname":"ಸಂಪನ್ಮೂಲದ ಹೆಸರು","contents":"ಪರಿವಿಡಿ","contentsUploaded":"ಕಂಟೆಂಟ್ ಗಳು ಅಪ್ಲೋಡ್ ಆಗುತ್ತಿವೆ","contenttype":"ಕಂಟೆಂಟ್","continue":"ಮುಂದುವರಿಸಿ","contributors":"ಕೊಡುಗೆದಾರರು","copy":"ನಕಲಿಸು","copyRight":"ಕೃತಿಸ್ವಾಮ್ಯ","copycontent":"ವಿಷಯವನ್ನು ನಕಲಿಸಲಾಗುತ್ತಿದೆ ...","country":"ದೇಶ","countryCode":"ದೇಶದ ಕೋಡ್","courseCreatedBy":"ರಚಿಸಿದವರು","courseCredits":"ಕೋರ್ಸ್ ಕ್ರೆಡಿಟ್ಸ್","coursecreatedon":"ರಚಿಸಿದ ದಿನಾಂಕ","coursestructure":"ಕೋರ್ಸ್ ರಚನೆ","createUserSuccessWithEmail":"ನಿಮ್ಮ ಇಮೇಲ್ ID ಅನ್ನು ಪರಿಶೀಲಿಸಲಾಗಿದೆ. ಮುಂದುವರಿಯಲು ಸೈನ್ ಇನ್ ಮಾಡಿ.","createUserSuccessWithPhone":"ನಿಮ್ಮ ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು ಪರಿಶೀಲಿಸಲಾಗಿದೆ. ಮುಂದುವರಿಯಲು ಸೈನ್ ಇನ್ ಮಾಡಿ.","createdInstanceName":"{instance} ದಲ್ಲಿ ಇವರು ರಚಿಸಿದ್ದಾರೆ","createdon":"ರಚಿಸಿದ ದಿನಾಂಕ","creationdataset":"ರಚನೆ","creator":"ರಚನಾಕಾರರು","creators":"ರಚನಾಕಾರರು","credits":"ಕೃತಜ್ಞತೆಗಳು","current":"ಪ್ರಸ್ತುತ","currentlocation":"ಪ್ರಸ್ತುತ ಸ್ಥಳ","curriculum":"ಪಠ್ಯಕ್ರಮ","dashboardcertificateStatus":"ಪ್ರಮಾಣಪತ್ರ ಸ್ಥಿತಿಗತಿ","dashboardfiveweeksfilter":"ಕೊನೆಯ 5 ವಾರಗಳು","dashboardfourteendaysfilter":"ಕೊನೆಯ 14 ದಿನಗಳು","dashboardfrombeginingfilter":"ಮೊದಲಿನಿಂದ","dashboardnobatchselected":"ಯಾವುದೇ ಬ್ಯಾಚ್ ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ!","dashboardnobatchselecteddesc":"ಮುಂದುವರೆಯಲು ಒಂದು ಬ್ಯಾಚ್  ಆಯ್ಕೆಮಾಡಿ","dashboardnocourseselected":"ಯಾವುದೇ ಕೋರ್ಸ್ ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ!","dashboardnocourseselecteddesc":"ದಯವಿಟ್ಟು ಮೇಲಿನ ಪಟ್ಟಿಯಿಂದ ಕೋರ್ಸ್ ಆಯ್ಕೆಮಾಡಿ","dashboardnoorgselected":"ಯಾವುದೇ ಸಂಸ್ಥೆ ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ!","dashboardnoorgselecteddesc":"ಮುಂದುವರೆಯಲು ಒಂದು ಸಂಸ್ಥೆಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","dashboardselectorg":"ಸಂಸ್ಥೆಯನ್ನು ಅಯ್ಕೆ ಮಾಡಿ","dashboardsevendaysfilter":"ಕೊನೆಯ 7 ದಿನಗಳು","dashboardsortbybatchend":"ಬ್ಯಾಚ್ ಅಂತ್ಯಗೊಳ್ಳುತ್ತದೆ","dashboardsortbyenrolledon":"ದಾಖಲಾದ ದಿನಾಂಕ","dashboardsortbyorg":"ಸಂಸ್ಥೆ","dashboardsortbystatus":"ವಸ್ತುಸ್ಥಿತಿ","dashboardsortbyusername":"ಬಳಕೆದಾರರ ಹೆಸರು","degree":"ಪದವಿ","delete":"ಡಿಲೀಟ್ ಮಾಡಿ","deletenote":"ಟಿಪ್ಪಣಿ ಡಿಲೀಟ್ ಮಾಡಿ","description":"ವಿವರಣೆ","designation":"ಪದನಾಮ","desktopAppDescription":"ಡೌನ್ಲೋಡ್ ಮಾಡಿದ ಕಂಟೆಂಟ್ ಅನ್ನು ಹುಡುಕಲು ಅಥವಾ ಕಂಟೆಂಟ್ ಅನ್ನು ಹೊರಗಿನ ಡಿವೈಸಿನಿಂದ ನೋಡಲು DIKSHA ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್ ಅನ್ನು ಇನ್ ಸ್ಟಾಲ್ ಮಾಡಿ .  DIKSHA ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್ ಇವನ್ನು ಒದಗಿಸುತ್ತವೆ","desktopAppFeature001":"ಉಚಿತ ಅನಿಯಮಿತ ಕಂಟೆಂಟ್","desktopAppFeature002":"ಬಹುಭಾಷಾ ಬೆಂಬಲ","desktopAppFeature003":"ಕಂಟೆಂಟ್ ಅನ್ನು ಆಫ್ ಲೈನ್ ಆಗಿ ನೋಡಿ","deviceId":"ಡಿವೈಸ್ ID","dialCode":"QR ಕೋಡ್","dialCodeDescription":"DIAL ಕೋಡ್ ನಿಮ್ಮ ಪಠ್ಯ ಪುಸ್ತಕದಲ್ಲಿ  QR  ಸಂಕೇತದ ಅಡಿಯಲ್ಲಿ ಕಂಡುಬರುವ 6 ಅಂಕಿಯ ಆಲ್ಫಾನ್ಯೂಮರಿಕ್ ಸಂಕೇತವಾಗಿದೆ","dialCodeDescriptionGetPage":"QR ಸಂಕೇತವು ನಿಮ್ಮ ಪಠ್ಯ ಪುಸ್ತಕದಲ್ಲಿ  QR  ಸಂಕೇತದ ಇಮೇಜ್ ಕೆಳಗೆ ಕಂಡುಬರುವ  6 ಅಂಕಿಯ ಆಲ್ಫಾನ್ಯೂಮರಿಕ್ ಸಂಕೇತವಾಗಿದೆ.","dikshaForMobile":"ಮೊಬೈಲ್ ಗೆ  DIKSHA","district":"ಜಿಲ್ಲೆ","dob":"ಹುಟ್ಟಿದ ದಿನಾಂಕ","done":"ಆಯಿತು","downloadCourseQRCode":"ಕೋರ್ಸ್ QR Code ಡೌನ್ಲೋಡ್ ಮಾಡಿ","downloadDikshaForMobile":"ಮೊಬೈಲ್ ಗೆ DIKSHA ಡೌನ್ಲೋಡ್ ಮಾಡಿಕೊಳ್ಳಿ ","downloadDikshaLite":"DIKSHA Lite  ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್ ಅನ್ನು  ಡೌನ್ಲೋಡ್ ಮಾಡಿ ","downloadQRCode":{"tooltip":"QR code ಡೌನ್ಲೋಡ್  ಮಾಡಲು ಇಲ್ಲಿ ಒತ್ತಿ ಮತ್ತು ಅವನ್ನು ಪ್ರಕಟಿಸಿದ ಕೋರ್ಸ್ ಗಳಿಗೆ ಕೊಂಡಿಯಾಗಿಸಿ"},"downloadThe":"ಡೌನ್ ಲೋಡ್ ಮಾಡಿ","downloadingContent":"{contentName} ಡೌನ್ಲೋಡ್ ಆಗಲು ಸಿದ್ಧವಾಗುತ್ತಿದೆ","dropcomment":"ಅಭಿಪ್ರಾಯ ಸೇರಿಸಿ","ecmlarchives":"Ecml ಆರ್ಚೈವ್ ಗಳು","edit":"ಸಂಪಾದಿಸು","editPersonalDetails":"ವೈಯಕ್ತಿಕ ವಿವರಗಳನ್ನು ಸಂಪಾದಿಸಿ","editUserDetails":"ಬಳಕೆದಾರರ ವಿವರಗಳನ್ನು ಪರಿಷ್ಕರಿಸಿ","education":"ಶಿಕ್ಷಣ","eightCharacters":"8 ಅಥವಾ ಹೆಚ್ಚಿನ ಅಕ್ಷರಗಳನ್ನು ಬಳಸಿ","email":"ಇಮೇಲ್ ID","emailPhonenotRegistered":"{instance} ಜೊತೆ ಇಮೇಲ್ ID/ಫೋನ್ ಸಂಖ್ಯೆ ದಾಖಲು ಮಾಡಿಲ್ಲ","emptycomments":"ಯಾವುದೇ ಅಭಿಪ್ರಾಯಗಳು ಇಲ್ಲ","enddate":"ಅಂತ್ಯದ ದಿನಾಂಕ","enjoyedContent":"ಈ ಕಂಟೆಂಟ್ ನಿಮಗೆ ಖುಷಿ ನೀಡಿತೇ?","enrollcourse":"ಕೋರ್ಸ್ ಗೆ ದಾಖಲಾಗಿ","enrollmentenddate":"ನೋಂದಣಿ ಕೊನೆಗೊಳ್ಳುವ  ದಿನಾಂಕ","enterCertificateCode":"ಪ್ರಮಾಣಪತ್ರದ ಕೋಡ್ ಅನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಿ","enterDialCode":"6  ಅಂಕಿಗಳ QR  ಸಂಕೇತ ಹಾಕಿರಿ","enterEightCharacters":"ಕನಿಷ್ಠ 8 ಅಕ್ಷರಗಳನ್ನು ನಮೂದಿಸಿ","enterEmailID":"ಇಮೇಲ್ ಐಡಿ ನಮೂದಿಸಿ","enterEmailPhoneAsRegisteredInAccount":"{instance} ಜೊತೆ ದಾಖಲು ಮಾಡಿರುವ ಇಮೇಲ್ ಐಡಿ/ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ","enterName":"ಹೆಸರನ್ನು ನಮೂದಿಸಿ","enterNameNotMatch":"{instance} ಜೊತೆ ದಾಖಲಾದ ಹೆಸರಿನೊಂದಿಗೆ ಈ ಹೆಸರು ಹೊಂದಾಣಿಕೆ ಆಗುತ್ತಿಲ್ಲ","enterOTP":"OTP ಯನ್ನು ನಮೂದಿಸಿ","enterQrCode":"QR  ಸಂಕೇತ ನಮೂದಿಸಿ","enterValidCertificateCode":"ಸರಿಯಾದ ಪ್ರಮಾಣಪತ್ರ ಕೋಡ್ ನಮೂದಿಸಿ","enternameAsRegisteredInAccount":"{instance} ಅಕೌಂಟಿನಲ್ಲಿ ಇರುವಂತೆ ನಿಮ್ಮ ಹೆಸರು","epubarchives":"ಇಪಬ್ ಆರ್ಚೈವ್ ಗಳು","errorConfirmPassword":"ಪಾಸವರ್ಡ್ ಗಳು ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ","experience":"ಅನುಭವ","expiredBatchWarning":"{EndDate} ನಲ್ಲಿ ಬ್ಯಾಚ್ ಮುಕ್ತಾಯಗೊಂಡಿದೆ, ಆದ್ದರಿಂದ ನಿಮ್ಮ ಪ್ರಗತಿಯನ್ನು ನವೀಕರಿಸಲಾಗುವುದಿಲ್ಲ.","explore":"ಅನ್ವೇಷಿಸು","exploreContentOn":"ವಿಷಯವನ್ನು ಅನ್ವೇಷಿಸಿ {instance}","explorecontentfrom":"ಇದರಿಂದ ವಿಷಯವನ್ನು ಎಕ್ಸ್ಪ್ಲೋರ್ ಮಾಡಿ","exportingContent":"ದಯವಿಟ್ಟು ನಾವು ಎಕ್ಸ್ ಪೋರ್ಟ್ ಮಾಡುವವರೆಗೆ ಕಾಯಿರಿ -  {contentName} ","exprdbtch":"ಗಡುವು ಮೀರಿದ ಬ್ಯಾಚ್ ಗಳು","extlid":"ಸಂಸ್ಥೆಯ ಬಾಹ್ಯ ID","facebook":"ಫೇಸ್ ಬುಕ್","failres":"ವೈಫಲ್ಯ ಫಲಿತಾಂಶಗಳು","fetchingBlocks":"ಬ್ಲಾಕ್ ಗಳನ್ನು ಪಡೆಯಲಾಗುತ್ತಿದೆ, ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ. ","fetchingSchools":"ಶಾಲೆಗಳನ್ನು ಪಡೆಯಲಾಗುತ್ತಿದೆ, ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ","filterby":"ಫಿಲ್ಟರ್ ಮಾಡಿ","filters":"ಶೋಧಕಗಳು","first":"ಪ್ರಥಮ","firstName":"ಮೊದಲ ಹೆಸರು","flaggedby":"ಫ್ಲ್ಯಾಗ್ ಮಾಡಿದವರು","flaggeddescription":"ಫ್ಲ್ಯಾಗ್ ಮಾಡಲಾದ ವಿವರಣೆ","flaggedreason":"ಫ್ಲ್ಯಾಗ್ ಮಾಡಲಾದ ಕಾರಣ","fnameLname":"ನಿಮ್ಮ ಮೊದಲ ಮತ್ತು ಕೊನೆಯ ಹೆಸರನ್ನು ನಮೂದಿಸಿ","for":"ಗೆ","forDetails":"ವಿವರಗಳಿಗೆ","forMobile":"ಮೊಬೈಲ್ ಗೆ","forSearch":"{searchString} ಗಾಗಿ","fullName":"ಪೂರ್ಣ ಹೆಸರು","gender":"ಲಿಂಗ","getUnlimitedAccess":"ನಿಮ್ಮ ಮೊಬೈಲ್ ಫೋನ್ ನಲ್ಲಿ ಪಠ್ಯಪುಸ್ತಕಗಳು, ಪಾಠ ಮತ್ತು ಪಠ್ಯಕ್ರಮಗಳಿಗೆ ಆಫ್ಲೈನ್ ​​ಪ್ರವೇಶವನ್ನು ಪಡೆಯಿರಿ.","goback":"ರದ್ದುಗೊಳಿಸಲು","grade":"ತರಗತಿ","grades":"ತರಗತಿಗಳು","graphStat":"ನಕ್ಷೆ ಅಂಕಿಅಂಶಗಳು","h5parchives":"H5p ಆರ್ಚೈವ್ ಗಳು","homeUrl":"ಮಖಪುಟ Url","howToUseDiksha":"DIKSHA  ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್ ಹೇಗೆ ಬಳಸುವುದು ","howToVideo":"ಹೇಗೆ ಎಂಬ ವಿಡಿಯೋಗೆ","htmlarchives":"Html ಆರ್ಚೈವ್ ಗಳು","imagecontents":"ಚಿತ್ರ ಸಂಪನ್ಮೂಲಗಳು","inAll":"\"ಎಲ್ಲ\"ದರಲ್ಲಿ","inUsers":"ಬಳಕೆದಾರರಲ್ಲಿ","inactive":"ನಿಷ್ಕ್ರಿಯ","institute":"ಸಂಸ್ಥೆಯ ಹೆಸರು","isRootOrg":"ಮೂಲ ಸಂಸ್ಥೆಯೇ","iscurrentjob":"ಇದು ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಕೆಲಸವೇ?","itis":"ಇದು ","keywords":"ಮುಖ್ಯ ಪದಗಳು","language":"ಗೊತ್ತಿರುವ ಭಾಷೆಗಳು","last":"ಅಂತಿಮ","lastAccessed":"ಕೊನೆಯದಾಗಿ ಪ್ರವೇಶಿಸಿದ್ದು:","lastName":"ಕೊನೆಯ ಹೆಸರು","lastupdate":"ಕೊನೆಯ ನವೀಕರಣ","learners":"ವಿದ್ಯಾರ್ಥಿಗಳು","licenseTerms":"ಪರವಾನಗಿ ನಿಯಮಗಳು","limitsOfArtificialIntell":"ಕೃತಕ ಬುದ್ಧಿಮತ್ತೆಯ ಮಿತಿಗಳು","linkCopied":"ಲಿಂಕ್ ನಕಲು ಮಾಡಲಾಗಿದೆ","linkedContents":"ಲಿಂಕ್ ಆಗಿರುವ ವಿಷಯಗಳು","linkedIn":"ಲಿಂಕ್ಡ್ ಇನ್","location":"ಸ್ಥಳ","lockPopupTitle":"{collaborator} ಪ್ರಸ್ತುತ {contentName} ನಲ್ಲಿ ಕಾರ್ಯನಿರ್ವಹಿಸುತ್ತಿದ್ದಾರೆ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.","markas":"ಹೀಗೆ ಗುರುತಿಸಿ","medium":"ಮಾಧ್ಯಮ","mentors":"ಮಾರ್ಗದರ್ಶಕರು","mergeAccount":"ಅಕೌಂಟ್ ವಿಲೀನ","mobileEmailInfoText":"ನಿಮ್ಮ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ ಅಥವಾ ಇಮೇಲ್ ID ಹಾಕಿ DIKSHA ಗೆ ಸೈನ್ ಇನ್ ಆಗಿರಿ  ","mobileNumber":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆ","mobileNumberInfoText":"DIKSHAಗೆ ಲಾಗಿನ್ ಆಗಲು ನಿಮ್ಮ ಮೊಬೈಲ್ ನಂಬರ್ ಅನ್ನು ನಮೂದಿಸಿ","more":"ಹೆಚ್ಚಿನ","myBadges":"ನನ್ನ ಬ್ಯಾಡ್ಜ್ ಗಳು","mynotebook":"ನನ್ನ ನೋಟ್ ಪುಸ್ತಕ","mynotes":"ನನ್ನ ಟಿಪ್ಪಣಿಗಳು","name":"ಹೆಸರು","nameRequired":"ಹೆಸರು ಅಗತ್ಯವಿದೆ","newPassword":"ಹೊಸ ಪಾಸ್ ವರ್ಡ್","next":"ಮುಂದೆ","noContentToPlay":"ತೋರಿಸಲು ಯಾವುದೇ ವಿಷಯವಿಲ್ಲ","noDataFound":"ಯಾವುದೇ ದತ್ತಾಂಶ ಕಂಡುಬಂದಿಲ್ಲ","offline":"ನೀವು ಆಫ್ ಲೈನ್ ಆಗಿದ್ದೀರಿ","onDiksha":"{instance} ದಲ್ಲಿ","online":"ನೀವು ಆನ್ಲೈನಿನಲ್ಲಿ ಇದ್ದೀರಿ","opndbtch":"ಬ್ಯಾಚ್ ಗಳನ್ನು ತೆರೆಯಿರಿ","orgCode":"ಸಂಸ್ಥೆಯ ಕೋಡ್","orgId":"ಸಂಸ್ಥೆ ID","orgType":"ಸಂಸ್ಥೆಯ ವಿಧ","organization":"ಸಂಸ್ಥೆ","orgname":"ಸಂಸ್ಥೆಯ ಹೆಸರು","orgtypes":"ಸಂಸ್ಥೆಯ ವಿಧ","originalAuthor":"ಮೂಲ ಲೇಖಕ/ಕಿ","otpMandatory":"ಓಟಿಪಿ ಕಡ್ಡಾಯವಿದೆ","otpSentTo":"ಇದಕ್ಕೆ ಒಟಿಪಿಯನ್ನು  ಕಳಿಸಲಾಗಿದೆ","otpValidated":"ಒಟಿಪಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಊರ್ಜಿತಗೊಳಿಸಲಾಯಿತು","ownership":"ಮಾಲಿಕತ್ವ","participants":"ಭಾಗವಹಿಸುವವರು","password":"ಪಾಸ್ ವರ್ಡ್","passwordMismatch":"ಪಾಸ್ವರ್ಡ್ ಹೊಂದಾಣಿಕೆ ಆಗುತ್ತಿಲ್ಲ, ಸರಿಯಾದ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ","pdfcontents":"Pdf ಸಂಪನ್ಮೂಲಗಳು","percentage":"ಶೇಕಡಾ","permanent":"ಶಾಶ್ವತ","phone":"ದೂರವಾಣಿ ಸಂಖ್ಯೆ","phoneNumber":"ದೂರವಾಣಿ ಸಂಖ್ಯೆ","phoneOrEmail":"ಫೋನ್ ಸಂಖ್ಯೆ ಅಥವಾ ಇಮೇಲ್ ID ಯನ್ನು ನಮೂದಿಸಿ","phoneRequired":"ಫೋನ್ ಸಂಖ್ಯೆ ಬೇಕು","phoneVerfied":"ಫೋನ್ ಪರಿಶೀಲಿಸಲಾಗಿದೆ","phonenumber":"ದೂರವಾಣಿ ಸಂಖ್ಯೆ","pincode":"ಪಿನ್ ಕೋಡ್","playContent":"ಕಂಟೆಂಟ್ ಪ್ಲೇ ಮಾಡಿ","plslgn":"ಈ ಸೆಶನ್ ಮುಗಿಯಿತು. ಮುಂದುವರೆಯಲು ${instance} ಬಳಸಿಕೊಂಡು ಪುನಃ ಲಾಗಿನ್ ಆಗಿರಿ. ","position":"ಸ್ಥಾನ","preferredLanguage":"ಆದ್ಯತೆಯ ಭಾಷೆ","previous":"ಹಿಂದಿನ","processid":"ಪ್ರಕ್ರಿಯೆ ID","profilePopup":"ನಿಮಗೆ ಸಂಬಂಧಿಸಿದ ವಿಷಯವನ್ನು ಕಂಡುಹಿಡಿಯಲು, ಕೆಳಗಿನ ವಿವರಗಳನ್ನು ನವೀಕರಿಸಿ:","provider":"ಸಂಸ್ಥೆ ಒದಗಿಸುವವರು","publicFooterGetAccess":"ಶಿಕ್ಷಕರು, ವಿದ್ಯಾರ್ಥಿಗಳು ಮತ್ತು ಪೋಷಕರು ನಿಗದಿತ ಶಾಲಾ ಪಠ್ಯಕ್ರಮಕ್ಕೆ ಸಂಬಂಧಿಸಿದ ಕಲಿಕಾ ಸಾಮಗ್ರಿಗಳನ್ನು ಪಡೆಯಲು ಡಿಕ್ಷಾ ಪ್ಲಾಟ್ಫಾರ್ಮ್ ಸೂಕ್ತ ವೇದಿಕೆಯಾಗಿದೆ . ನಿಮ್ಮ ಪಾಠಗಳನ್ನು ಸುಲಭವಾಗಿ ಪ್ರವೇಶಿಸಲು DIKSHA ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ ಮತ್ತು ನಿಮ್ಮ ಪಠ್ಯಪುಸ್ತಕಗಳಲ್ಲಿ ಇರುವ QR  ಸಂಕೇತವನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿ.","publishedBy":"ಇವರಿಂದ ಪ್ರಕಟವಾಗಿದೆ","publishedOnInstanceName":"{instance} ದಲ್ಲಿ ಇವರು ರಚಿಸಿದ್ದಾರೆ","reEnterPassword":"ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುನಮೂದಿಸಿ","readless":"ಕಡಿಮೆ ಓದಿ ...","readmore":"... ಮತ್ತಷ್ಟು ಓದು","receiveOTP":"ಒಟಿಪಿಯನ್ನು ಎಲ್ಲಿ ಪಡೆಯಲು ನೀವು ಬಯಸುವಿರಿ? ","recoverAccount":"ಅಕೌಂಟ್ ಅನ್ನು ರಿಕವರ್ ಮಾಡಿ","redirectMsg":"ಈ ವಿಷಯವನ್ನು ಹೊರಗೆ ಹೋಸ್ಟ್ ಮಾಡಲಾಗಿದೆ","redirectWaitMsg":"ದಯವಿಟ್ಟು ವಿಷಯ ಲೋಡ್ ಆಗುವವರೆಗೆ ಕಾಯಿರಿ","removeAll":"ಎಲ್ಲವನ್ನೂ ತೆಗೆದುಹಾಕಿ","reportUpdatedOn":"ಈ ವರದಿಯನ್ನು ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾದ ದಿನಾಂಕ","resendOTP":"OTP ಮರುಕಳುಹಿಸಿ","resentOTP":"OTP ಮರುಕಳುಹಿಸಿದೆ. OTP ಯನ್ನು ನಮೂದಿಸಿ.","resourcetype":"ಸಂಪನ್ಮೂಲದ ವಿಧ","retired":"ನಿವೃತ್ತ","returnToCourses":"ಕೋರ್ಸ್ ಗೆ  ಹಿಂತಿರುಗಿ","role":"ಪಾತ್ರ","roles":"ಪಾತ್ರಗಳು","rootOrg":"ಮೂಲ ಸಂಸ್ಥೆ","sameEmailId":"ಈ ಇಮೇಲ್ ಐಡಿಯು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್  ಜೊತೆ ಲಿಂಕ್ ಆಗಿರುವ ಅದೇ ಮೇಲ್ ಐಡಿಯೇ","samePhoneNo":"ಈ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್  ಜೊತೆ ಲಿಂಕ್ ಆಗಿರುವ ಅದೇ ಸಂಖ್ಯೆಯೇ","school":"ಶಾಲೆ","search":"ಹುಡುಕು","searchForContent":"6  ಅಂಕಿಗಳ  QR  ಸಂಕೇತ ಹಾಕಿರಿ","searchUserName":"ಬಳಕೆದಾರರ ಹೆಸರು ಹುಡುಕಿ","seladdresstype":"ವಿಳಾಸದ ವಿಧವನ್ನು ಆಯ್ಕೆಮಾಡಿ","selectAll":"ಎಲ್ಲವನ್ನೂ ಆಯ್ಕೆ ಮಾಡಿ","selectBlock":"ಬ್ಲಾಕ್ ಆಯ್ಕೆ ಮಾಡಿ","selectDistrict":"ಜಿಲ್ಲೆಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","selectSchool":"ಶಾಲೆ ಆಯ್ಕೆ ಮಾಡಿ","selectState":"ರಾಜ್ಯವನ್ನು ಆಯ್ಕೆಮಾಡಿ","selected":"ಆಯ್ಕೆಯಾಗಿದೆ","selectreason":"ಒಂದು ಕಾರಣವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","sesnexrd":"ಸೆಶನ್ ಮುಗಿಯಿತು","setRole":"ಬಳಕೆದಾರರನ್ನುಪರಿಷ್ಕರಿಸಿ","share":"ಹಂಚಿ","sharelink":"ಲಿಂಕನ್ನು ಬಳಸಿ ಶೇರ್ ಮಾಡಿ","showLess":"ಕಡಿಮೆ ತೋರಿಸು","showingResults":"ಫಲಿತಾಂಶಗಳನ್ನು ತೋರಿಸಲಾಗುತ್ತಿದೆ","showingResultsFor":"{searchString} ಗಾಗಿ ಫಲಿತಾಂಶಗಳನ್ನು ತೋರಿಸಲಾಗುತ್ತಿದೆ","signUp":"ನೋಂದಾಯಿಸಿ ","signinenrollHeader":"ಕೋರ್ಸ್ ಗಳು ನೋಂದಾಯಿತ ಬಳಕೆದಾರರಿಗೆ ಮಾತ್ರ. ಕೋರ್ಸ್ ಪ್ರವೇಶಿಸಲು ಸೈನ್ ಇನ್ ಮಾಡಿ.","signinenrollTitle":"ಈ ಕೋರ್ಸ್ ಗೆ ದಾಖಲಾಗಲು ಸೈನ್ ಇನ್ ಮಾಡಿ","skillTags":"ಕೌಶಲ್ಯ ಟ್ಯಾಗ್ ಗಳು","sltBtch":"ದಯವಿಟ್ಟು ಮುಂದುವರೆಯಲು ಒಂದು ಬ್ಯಾಚ್ ಆಯ್ಕೆ ಮಾಡಿ. ","socialmedialinks":"ಸಾಮಾಜಿಕ ಮಾಧ್ಯಮ ಲಿಂಕ್ ಗಳು","sortby":"ವಿಂಗಡಿಸು","startExploringContent":"DIAL ಕೋಡ್ ನಮೂದಿಸುವುದರ ಮೂಲಕ ವಿಷಯವನ್ನು ಅನ್ವೇಷಿಸಲು ಪ್ರಾರಂಭಿಸಿ","startExploringContentBySearch":"QR  ಸಂಕೇತ ಬಳಸಿಕೊಂಡು ಪಠ್ಯಾಂಶವನ್ನು ಹುಡುಕಿ","startdate":"ಪ್ರಾರಂಭ ದಿನಾಂಕ","state":"ರಾಜ್ಯ","stateRecord":"ರಾಜ್ಯದ ದಾಖಲೆಗಳ ಪ್ರಕಾರ","subject":"ವಿಷಯ","subjects":"ವಿಷಯಗಳು","subjectstaught":"ಬೋಧಿಸಿದ ವಿಷಯ(ಗಳು)","submitOTP":"OTP ಸಲ್ಲಿಸಿ","subtopic":"ಉಪವಿಷಯ","successres":"ಯಶಸ್ಸಿನ ಫಲಿತಾಂಶಗಳು","summary":"ಸಾರಾಂಶ","supportedLanguages":"ಬೆಂಬಲಿಸುವ ಭಾಷೆಗಳು","tableNotAvailable":"ಈ ವರದಿಗೆ ಟೇಬಲ್ ವ್ಯೂ ಲಭ್ಯವಿಲ್ಲ","takenote":"ಟಿಪ್ಪಣಿ ತೆಗೆದುಕೊಳ್ಳಿ","tcfrom":"ಇಂದ","tcno":"ಇಲ್ಲ","tcto":"ಗೆ","tcyes":"ಹೌದು","tenDigitPhone":"10 ಅಂಕಿಯ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ","termsAndCond":"ನಿಯಮಗಳು ಮತ್ತು ಷರತ್ತುಗಳು","termsAndCondAgree":"ನಾನು ಬಳಕೆಯ ನಿಯಮಗಳು ಮತ್ತು ಷರತ್ತುಗಳನ್ನು ಒಪ್ಪುತ್ತೇನೆ","theme":"ವಿಷಯ","title":"ಶೀರ್ಷಿಕೆ","toTryAgain":"ಮತ್ತೆ ಪುನಃ ಪ್ರಯತ್ನಿಸಲು","topic":"ವಿಷಯಗಳು","topics":"ವಿಷಯಗಳು","trainingAttended":"ಹಾಜರಾದ ತರಬೇತಿಗಳು","twitter":"ಟ್ವಿಟರ್","unableToUpdateEmail":"ಇಮೇಲ್ ಐಡಿ ಅಪ್ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲವೇ?","unableToUpdateMobile":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲು ವಿಫಲರಾದಿರಾ?","unableToVerifyEmail":"ಇಮೇಲ್ ID ಪರಿಶೀಲಿಸಲು ಸಾಧ್ಯವಿಲ್ಲವೇ?","unableToVerifyPhone":"ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು ಪರಿಶೀಲಿಸಲು ಸಾಧ್ಯವಿಲ್ಲವೇ?","unenrollMsg":"ನೀವು ಈ ಬ್ಯಾಚಿನಿಂದ  ಹೊರಹೋಗಲು ಬಯಸುವಿರಾ?","unenrollTitle":"ಬ್ಯಾಚ್ ನೋಂದಣಿ ರದ್ದು","uniqueEmail":"ನಿಮ್ಮ ಇಮೇಲ್ ID ಈಗಾಗಲೇ ನೋಂದಾಯಿಸಲಾಗಿದೆ","uniqueEmailId":"ಈ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ ಈಗಾಗಲೆ ಬಳಕೆಯಲ್ಲಿದೆ. ಬೇರೆ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ.","uniqueMobile":"ಈ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ ಈಗಾಗಲೆ ಬಳಕೆಯಲ್ಲಿದೆ. ಬೇರೆ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಹಾಕಿರಿ. ","uniquePhone":"ನಿಮ್ಮ ಫೋನ್ ಸಂಖ್ಯೆ ಈಗಾಗಲೇ ನೋಂದಾಯಿಸಲಾಗಿದೆ","updateEmailId":"ಇಮೇಲ್ ಐಡಿ  ಅಪ್ಡೇಟ್ ಮಾಡಿ","updatePhoneNo":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಿ","updatecollection":"ಎಲ್ಲವನ್ನೂ ಅಪ್ಡೇಟ್ ಮಾಡಿ","updatecontent":"ಪಠ್ಯಾಂಶ ಅಪ್ಡೇಟ್ ಮಾಡಿ","updatedon":"ನವೀಕರಿಸಿದ ದಿನಾಂಕ","updateorgtype":"ಸಂಸ್ಥೆಯ ವಿಧವನ್ನು ನವೀಕರಿಸು","upldfile":"ಅಪ್ಲೋಡ್ ಮಾಡಿದ ಫೈಲ್","uploadContent":"ಕಂಟೆಂಟ್  ಅಪ್ಲೋಡ್ ಮಾಡಿ","uploadEcarFromPd":"ಕಂಟೆಂಟ್ ಇಂಪೋರ್ಟ್ ಮಾಡಲು .ecar ಫೈಲುಗಳನ್ನು ಪೆನ್ ಡ್ರೈವಿನಿಂದ ಅಪ್ಲೋಡ್ ಮಾಡಿ","userFilterForm":"ಬಳಕೆದಾರರನ್ನು ಹುಡುಕಿ","userID":"ಬಳಕೆದಾರರ ID","userId":"ಬಳಕೆದಾರರ ಐಡಿ","userType":"ಬಳಕೆದಾರರ ವಿಧ","username":"ಬಳಕೆದಾರರ ಹೆಸರು","validEmail":"ಮಾನ್ಯ ಇಮೇಲ್ ID ಯನ್ನು ನಮೂದಿಸಿ","validFor":"30 ನಿಮಿಷಗಳವರೆಗೆ ಊರ್ಜಿತವಿರುತ್ತದೆ","validPassword":"ಮಾನ್ಯ ಗುಪ್ತಪದ(ಪಾಸ್ ವರ್ಡ್) ನಮೂದಿಸಿ","validPhone":"ಮಾನ್ಯವಾದ 10 ಅಂಕಿಯ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ","verifyingCertificate":"ನಿಮ್ಮ ಪ್ರಮಾಣಪತ್ರಗಳನ್ನು ಪರಿಶೀಲನೆ ಮಾಡಲಾಗುತ್ತಿದೆ","versionKey":"ಆವೃತ್ತಿ","videos":"ವೀಡಿಯೋಗಳು","view":"ವೀಕ್ಷಿಸಿ","viewless":"ಕಡಿಮೆ ವೀಕ್ಷಿಸಿ","viewmore":"ಹೆಚ್ಚು ವೀಕ್ಷಿಸಿ","viewworkspace":"ನಿಮ್ಮ ಕಾರ್ಯಕ್ಷೇತ್ರವನ್ನು ವೀಕ್ಷಿಸಿ","watchCourseVideo":"ವಿಡಿಯೋ ನೋಡಿ","watchVideo":"ವಿಡಿಯೋ ನೋಡಿ","whatsQRCode":"QR  ಸಂಕೇತ ಎಂದರೇನು?","whatwentwrong":"ಏನು ತಪ್ಪಾಗಿದೆ?","whatwentwrongdesc":"ಏನು ತಪ್ಪಾಗಿದೆ ಎಂಬುದನ್ನು ನಮಗೆ ತಿಳಿಸಿ. ಸರಿಯಾದ ಕಾರಣಗಳನ್ನು ತಿಳಿಸಿ ,ನಾವು  ಶೀಘ್ರದಲ್ಲಿ ಪರಿಶೀಲಿಸುತ್ತೇವೆ ಮತ್ತು ಈ ಸಮಸ್ಯೆಯನ್ನು ಪರಿಹರಿಸುತ್ತೇವೆ. ನಿಮ್ಮ ಪ್ರತಿಕ್ರಿಯೆಗಾಗಿ ಧನ್ಯವಾದಗಳು!","willsendOTP":"ನಾವು ನಿಮಗೆ ಒಂದು ಒಟಿಪಿಯನ್ನು ಕಳಿಸುತ್ತೇವೆ, ಒಟಿಪಿಯನ್ನು ಊರ್ಜಿತಗೊಳಿಸಿದ ನಂತರ, ನೀವು ನಿಮ್ಮ ಅಕೌಂಟ್ ಅನ್ನು ಪುನಃ ಪಡೆಯಬಹುದು. ","worktitle":"ಉದ್ಯೋಗ / ಕೆಲಸದ ಶೀರ್ಷಿಕೆ","wrongEmailOTP":"ನೀವು ತಪ್ಪಾದ OTP ಯನ್ನು ನಮೂದಿಸಿರುವಿರಿ. ನಿಮ್ಮ ಇಮೇಲ್ ID ಯಲ್ಲಿ ಪಡೆದ OTP ಯನ್ನು ನಮೂದಿಸಿ. OTP ಯು 30 ನಿಮಿಷಗಳ ಕಾಲ ಮಾತ್ರ ಮಾನ್ಯವಾಗಿರುತ್ತದೆ.","wrongPhoneOTP":"ನೀವು ತಪ್ಪಾದ OTP ಯನ್ನು ನಮೂದಿಸಿರುವಿರಿ. ನಿಮ್ಮ ದೂರವಾಣಿ ಸಂಖ್ಯೆಯಲ್ಲಿ ಸ್ವೀಕರಿಸಿದ OTP ಯನ್ನು ನಮೂದಿಸಿ. OTP ಯು 30 ನಿಮಿಷಗಳ ಕಾಲ ಮಾತ್ರ ಮಾನ್ಯವಾಗಿರುತ್ತದೆ.","yop":"ತೇರ್ಗಡೆಯಾದ ವರ್ಷ","indPhoneCode":91,"manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","noCreditsAvailable":"No credits available","errorMessage":"Error message","externalId":"External Id","lang":"Language","recentlyAdded":"Recently Added","contentType":"Content Type","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","releaseDateKey":"Release Date:","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from","noBookfoundTitle":"Board is adding books","noBookfoundSubTitle":"Your board is yet to add more books. Tap the button to see more books and content on {instance}","noBookfoundButtonText":"See more books and contents"},"btn":{"add":"ಸೇರಿಸು","addToLibrary":"ಗ್ರಂಥಾಲಯಕ್ಕೆ ಸೇರಿಸಿ","addedToLibrary":"ಗ್ರಂಥಾಲಯಕ್ಕೆ ಸೇರಿಸಲಾಯಿತು","addingToLibrary":"ಗ್ರಂಥಾಲಯಕ್ಕೆ ಸೇರಿಸಲಾಗುತ್ತಿದೆ","apply":"ಅನ್ವಯಿಸು","browse":"ಹುಡುಕಿರಿ","cancel":"ರದ್ದುಗೊಳಿಸು","cancelCapitalize":"ರದ್ದು ಮಾಡಿ","clear":"ಸ್ಪಷ್ಟಮಾಡು","close":"ಮುಚ್ಚು","contentImport":"ಫೈಲುಗಳನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ","copyLink":"ಲಿಂಕ್ ಕಾಪಿ ಮಾಡಿ","create":"ರಚಿಸು","download":"ಡೌನ್ಲೋಡ್ ಮಾಡಿ","downloadCertificate":"ಪ್ರಮಾಣಪತ್ರ ಡೌನ್ಲೋಡ್ ಮಾಡಿ","downloadCompleted":"ಡೌನ್ಲೋಡ್  ಪೂರ್ಣವಾಯಿತು","downloadDikshaForWindows":"Windows (64-bit) ಡೌನ್ಲೋಡ್ ಮಾಡಿ ","downloadFailed":"ಡೌನ್ಲೋಡ್  ಆಗಲಿಲ್ಲ","downloadInstruction":"ಡೌನ್ಲೋಡ್  ಗೆ ಸೂಚನೆಗಳನ್ನು ನೋಡಿ","downloadManager":"ಡೌನ್ಲೋಡ್  ಮ್ಯಾನೇಜರ್","downloadPdf":"ಪಿಡಿಎಫ್ ಡೌನ್ಲೋಡ್  ಮಾಡಿ  ","downloadPending":"ಡೌನ್ಲೋಡ್ ಬಾಕಿ ಇದೆ","edit":"ಸಂಪಾದಿಸು","enroll":"ದಾಖಲಾಗಿ","export":"ಎಕ್ಸ್ ಪೋರ್ಟ್","login":"ಲಾಗಿನ್","merge":"ವಿಲೀನಗೊಳಿಸಿ","myLibrary":"ನನ್ನ ಗ್ರಂಥಾಲಯ","next":"ಮುಂದೆ","no":"ಇಲ್ಲ","ok":"OK","previous":"ಹಿಂದಿನ","remove":"ತೆಗೆದುಹಾಕಿ","reset":"ಮರುಹೊಂದಿಸಿ","resume":"ರೆಸ್ಯೂಮೆ","resumecourse":"ಕೋರ್ಸ್ ಪುನರಾರಂಭಿಸಿ","save":"ಉಳಿಸು","selectContentFiles":"ಫೈಲುಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","selectLanguage":"ಭಾಷೆ ಆಯ್ಕೆ ಮಾಡಿ","selrole":"ಪಾತ್ರ ಆಯ್ಕೆ ಮಾಡಿ","signin":"ಸೈನ್ ಇನ್ ಆಗಿ","signup":"ದಾಖಲಾಗಿ","smplcsv":"ಮಾದರಿ CSV ಡೌನ್ಲೋಡ್ ಮಾಡಿ","submit":"ಸಲ್ಲಿಸು","submitbtn":"ಸಲ್ಲಿಸಿ","tryagain":"ಪುನಃ ಪ್ರಯತ್ನಿಸಿ","unenroll":"ದಾಖಲಾತಿ ರದ್ದುಗೊಳಿಸು","update":"ನವೀಕರಿಸು","uploadorgscsv":"ಸಂಸ್ಥೆಗಳ CSV ಅಪ್ ಲೋಡ್ ಮಾಡಿ","uploadusrscsv":"ಬಳಕೆದಾರರ CSV ಅಪ್ಲೋಡ್ ಮಾಡು","verify":"ಪರಿಶೀಲಿಸಿ","viewCourseStatsDashboard":"ಕೋರ್ಸ್ ಡ್ಯಾಶ್ ಬೋರ್ಡ್ ವೀಕ್ಷಿಸಿ","viewcoursestats":"ಕೋರ್ಸ್ ಅಂಕಿ ಅಂಶಗಳನ್ನು ವೀಕ್ಷಿಸಿ","viewless":"ಕಡಿಮೆ ವೀಕ್ಷಿಸಿ","viewmore":"ಇನ್ನಷ್ಟು ವೀಕ್ಷಿಸಿ","yes":"ಹೌದು","yesiamsure":"ಸರಿ","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"ಸ್ತ್ರೀ","male":"ಪುರುಷ","transgender":"ತೃತೀಯ ಲಿಂಗಿ"},"instn":{"t0002":"ನೀವು ಒಂದು CSV ಫೈಲಿನಲ್ಲಿ ಒಂದೇ ಸಮಯದಲ್ಲಿ 199 ಸಂಸ್ಥೆಗಳ ವಿವರಗಳನ್ನು ಸೇರಿಸಬಹುದು ಅಥವಾ ಅಪ್ಲೋಡ್ ಮಾಡಬಹುದು","t0007":"OrgName ಕಾಲಮ್ ಕಡ್ಡಾಯವಾಗಿದೆ. ಈ ಕಾಲಮ್ನಲ್ಲಿ ಸಂಸ್ಥೆಯ ಹೆಸರನ್ನು ನಮೂದಿಸಿ","t0011":"ಪ್ರಕ್ರಿಯೆ ID ಯೊಂದಿಗೆ ನೀವು ಪ್ರಗತಿಯನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು","t0012":"ದಯವಿಟ್ಟು ನಿಮ್ಮ ಉಲ್ಲೇಖಕ್ಕಾಗಿ ಪ್ರಕ್ರಿಯೆ ID ಅನ್ನು ಉಳಿಸಿ .ನೀವು ಪ್ರಕ್ರಿಯೆ ID ಯೊಂದಿಗೆ ಪ್ರಗತಿಯನ್ನು ಟ್ರ್ಯಾಕ್ ಮಾಡಬಹುದು","t0013":"ಉಲ್ಲೇಖಕ್ಕಾಗಿ csv ಫೈಲ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ","t0015":"ಸಂಸ್ಥೆಗಳನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ","t0016":"ಬಳಕೆದಾರರನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ","t0020":"ಕೌಶಲ್ಯವನ್ನು ಸೇರಿಸಲು ಟೈಪ್ ಮಾಡಲು ಪ್ರಾರಂಭಿಸಿ","t0021":"ಪ್ರತಿಯೊಂದು ಸಂಸ್ಥೆಯ ಹೆಸರನ್ನು ಪ್ರತ್ಯೇಕ ಸಾಲಿನಲ್ಲಿ ನಮೂದಿಸಿ","t0022":"ಎಲ್ಲಾ ಇತರ ಕಾಲಮ್ಗಳಲ್ಲಿ ವಿವರಗಳನ್ನು ನಮೂದಿಸುವುದು ಐಚ್ಛಿಕವಾಗಿದೆ:","t0023":"isRootOrg: ಈ ಕಾಲಮ್ ನಲ್ಲಿ ಮಾನ್ಯವಾದ ಮೌಲ್ಯಗಳು- ಸರಿ ತಪ್ಪು","t0024":"ಚಾನಲ್: ಮಾಸ್ಟರ್ಸಂಸ್ಥೆ ರಚನೆ ಸಮಯದಲ್ಲಿ ಒದಗಿಸಲಾದ ವಿಶಿಷ್ಟ ಐಡಿ","t0025":"ಬಾಹ್ಯ ಐಡಿ: ಆಡಳಿತ ಸಂಸ್ಥೆಯ ರೆಪೊಸಿಟರಿಯಲ್ಲಿ ಪ್ರತಿ ಸಂಸ್ಥೆಯೊಂದಿಗೆ ವಿಶಿಷ್ಟ ಐಡಿಯು ಜೋಡಣೆಯಾಗಿದೆ ","t0026":"ಒದಗಿಸುವವರು: ನಿರ್ವಾಹಕರ ಸಂಘಟನೆಯ ಚಾನೆಲ್ ID","t0027":"ವಿವರಣೆ: ಸಂಸ್ಥೆಯ ಬಗ್ಗೆ ವಿವರಗಳು","t0028":"ಮೂಲ  URL: ಸಂಸ್ಥೆ ಮುಖಪುಟದ URL","t0029":"ಸಂಸ್ಥೆ ಕೋಡ್(orgCode): ಸಂಸ್ಥೆಯ ಅನನ್ಯ ಕೋಡ್, ಯಾವುದಾದರೂ ಇದ್ದರೆ,","t0030":"ಸಂಸ್ಥೆಯ ವಿಧ: ಸಂಸ್ಥೆಯ ಪ್ರಕಾರ, ಉದಾಹರಣೆಗೆ, NGO, ಪ್ರಾಥಮಿಕ ಶಾಲೆ, ಮಾಧ್ಯಮಿಕ ಶಾಲೆ ಇತ್ಯಾದಿ","t0031":"ಆದ್ಯತೆ ಭಾಷೆ: ಸಂಸ್ಥೆಗಾಗಿ ಆದ್ಯತೆಯ ಭಾಷೆ, ಯಾವುದಾದರೂ ಇದ್ದಲ್ಲಿ","t0032":"ಸಂಪರ್ಕದ ವಿವರ: ಸಂಘಟನೆಯ ಫೋನ್ ಸಂಖ್ಯೆ ಮತ್ತು ಇಮೇಲ್ ID. ಏಕ ಉಲ್ಲೇಖಗಳಲ್ಲಿ ಸುರುಳಿಯಾದ ಆವರಣಗಳಲ್ಲಿ ವಿವರಗಳನ್ನು ನಮೂದಿಸಬೇಕು. ಉದಾಹರಣೆಗೆ: [{'ಫೋನ್ ನಂಬರ್': '1234567890'}]","t0049":"ಕಾಲಮ್ ಮೌಲ್ಯವು RootOrg ಆಗಿರುವುದು ನಿಜವಾಗಿದ್ದರೆ ಚಾನಲ್ ಕಡ್ಡಾಯವಾಗಿದೆ","t0050":"ಬಾಹ್ಯ ಐಡಿ ಮತ್ತು ಒದಗಿಸುವವರು ಪರಸ್ಪರ ಕಡ್ಡಾಯ","t0055":"ಓಹ್ ಪ್ರಕಟಣೆ ವಿವರಗಳು ಕಂಡುಬಂದಿಲ್ಲ!","t0056":"ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ..","t0058":"ಹೀಗೆ ಡೌನ್ಲೋಡ್ ಮಾಡಿ:","t0059":"CSV","t0060":"ಧನ್ಯವಾದಗಳು!","t0061":"ಓಹ್ ...","t0062":"ನೀವು ಇನ್ನೂ ಈ ಕೋರ್ಸ್ಗಾಗಿ ಬ್ಯಾಚ್ ಅನ್ನು ರಚಿಸಿಲ್ಲ. ಹೊಸ ಬ್ಯಾಚ್ ಅನ್ನು ರಚಿಸಿ ಮತ್ತು ಡ್ಯಾಶ್ಬೋರ್ಡ್ ಅನ್ನು ಮತ್ತೆ ಪರಿಶೀಲಿಸಿ.","t0063":"ನೀವು ಇನ್ನೂ ಯಾವುದೇ ಕೋರ್ಸ್ ಅನ್ನು ರಚಿಸಿಲ್ಲ. ಹೊಸ ಕೋರ್ಸ್ ಅನ್ನು ರಚಿಸಿ ಮತ್ತು ಡ್ಯಾಶ್ಬೋರ್ಡ್ ಅನ್ನು ಪುನಃ ಪರಿಶೀಲಿಸಿ.","t0064":"ಒಂದೇ ವಿಧದ ಅನೇಕ ವಿಳಾಸಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ. ದಯವಿಟ್ಟು ಯಾವುದಾದರೂ ಒಂದನ್ನು ಬದಲಾಯಿಸಿ.","t0065":"ಡೌನ್ಲೋಡ್","t0070":"CSV ಫೈಲ್ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಿ. ಒಂದು ಸಂಸ್ಥೆಗೆ ಸೇರಿದ ಬಳಕೆದಾರರು ಒಂದು CSV ಫೈಲ್ನಲ್ಲಿ ಒಂದೇ ಸಮಯದಲ್ಲಿ ಅಪ್ಲೋಡ್ ಮಾಡಬಹುದು.","t0071":"ಬಳಕೆದಾರರ ಖಾತೆಗಳ ಕೆಳಗಿನ ಕಡ್ಡಾಯ ವಿವರಗಳನ್ನು ನಮೂದಿಸಿ:","t0072":"ಮೊದಲನೆಯ ಹೆಸರು: ಬಳಕೆದಾರರ ಮೊದಲ ಹೆಸರು, ವರ್ಣಮಾಲೆಯ ಮೌಲ್ಯ.","t0073":"ಫೋನ್ ಅಥವಾ ಇಮೇಲ್: ಬಳಕೆದಾರರ ಫೋನ್ ಸಂಖ್ಯೆ (ಹತ್ತು ಅಂಕಿಯ ಮೊಬೈಲ್ ಸಂಖ್ಯೆ) ಅಥವಾ ಇಮೇಲ್ ID. ಎರಡರಲ್ಲಿ ಒಂದನ್ನು ಒದಗಿಸಬೇಕಾಗಿದೆ, ಆದರೆ, ಲಭ್ಯವಿದ್ದಲ್ಲಿ ಎರಡನ್ನೂ ಒದಗಿಸಿದರೆ ಒಳ್ಳೆಯದು.","t0074":"ಬಳಕೆದಾರಹೆಸರು: ಸಂಸ್ಥೆಯಿಂದ  ವಿಶಿಷ್ಟ ಆಲ್ಫಾನ್ಯೂಮರಿಕ್ ಹೆಸರು ಬಳಕೆದಾರರಿಗೆ ನಿಗದಿಪಡಿಸಲಾಗಿದೆ.","t0076":"ಗಮನಿಸಿ: CSV ಫೈಲಿನಲ್ಲಿರುವ ಎಲ್ಲಾ ಇತರ ಕಾಲಮ್ಮುಗಳು ಐಚ್ಛಿಕವಾಗಿದೆ, ಇವುಗಳನ್ನು ಭರ್ತಿ ಮಾಡುವ ವಿವರಗಳಿಗಾಗಿ, ನೋಡಿ","t0077":"ಬಳಕೆದಾರರನ್ನು ನೋಂದಾಯಿಸಿ.","t0078":"ಸ್ಥಳ ಐಡಿ: ಒಂದು ನಿರ್ದಿಷ್ಟ ಸಂಸ್ಥೆಗೆ ಪ್ರಕಟಣೆ ವಿಷಯವನ್ನು ಗುರುತಿಸುವ ಒಂದು ID","t0079":"ಸ್ಥಳ ಕೋಡ್: ಅಲ್ಪವಿರಾಮ ಚಿಹ್ನೆಯಿಂದ ಬೇರ್ಪಡಿಸಿದ ಸ್ಥಳ ಸಂಕೇತಗಳ ಪಟ್ಟಿ","t0081":"ನೀವು DIKSHA ಗೆ  ನೋಂದಾಯಿಸಿಕೊಂಡಿದ್ದಕ್ಕೆ  ಧನ್ಯವಾದಗಳು. ಪರಿಶೀಲನೆಗಾಗಿ ನಾವು sms OTP ಕಳುಹಿಸಿದ್ದೇವೆ. ನೋಂದಣಿ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು ನಿಮ್ಮ ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು OTP ಯೊಂದಿಗೆ ಪರಿಶೀಲಿಸಿ.","t0082":"ನೀವು DIKSHA ಗೆ  ನೋಂದಾಯಿಸಿಕೊಂಡಿದ್ದಕ್ಕೆ ಧನ್ಯವಾದಗಳು. ಪರಿಶೀಲನೆಗಾಗಿ ನಾವು ಇಮೇಲ್ OTP ಅನ್ನು ಕಳುಹಿಸಿದ್ದೇವೆ. ನೋಂದಣಿ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಪೂರ್ಣಗೊಳಿಸಲು OTP ಯೊಂದಿಗೆ ನಿಮ್ಮ ಇಮೇಲ್ ID ಅನ್ನು ಪರಿಶೀಲಿಸಿ.","t0083":"ಮೊಬೈಲ್ ನಂಬರ್ ಪರೀಕ್ಷಣೆಗೆ ನಿಮಗೆ  ಒಟಿಪಿ  ಎಸ್ ಎಂ ಎಸ್ ಬರುತ್ತದೆ ","t0084":"ಇಮೇಲ್  ಐಡಿ ಪರೀಕ್ಷಣೆಗೆ ನಿಮಗೆ ಒಟಿಪಿಯು ಇಮೇಲಿನಲ್ಲಿ  ಬರುತ್ತದೆ","t0085":"ವರದಿಯು ಮೊದಲ 10,000 ಭಾಗೀದಾರರ ದತ್ತಾಂಶಗಳನ್ನು ತೋರಿಸುತ್ತಿದೆ. ಬ್ಯಾಚಿನಲ್ಲಿರುವ ಎಲ್ಲ ಭಾಗೀದಾರರ  ಪ್ರಗತಿಯನ್ನು ನೋಡಲು ಡೌನ್ಲೋಡ್  ಕ್ಲಿಕ್ ಮಾಡಿ","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"ಟಿಪ್ಪಣಿಗಳು ಅಥವಾ ಶೀರ್ಷಿಕೆಗಾಗಿ ಹುಡುಕಿ","t0002":"ನಿಮ್ಮ ಕಾಮೆಂಟನ್ನು ಸೇರಿಸಿ","t0005":"ಬ್ಯಾಚ್ ಮೆಂಟರ್ ಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","t0006":"ಬ್ಯಾಚ್ ಸದಸ್ಯರನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"},"lnk":{"announcement":"ಪ್ರಕಟಣೆ ಡ್ಯಾಶ್ಬೋರ್ಡ್","assignedToMe":"ನನಗೆ ವಹಿಸಲಾಗಿದೆ","contentProgressReport":"ಕಂಟೆಂಟ್ ಪ್ರಗತಿ ವರದಿ ","contentStatusReport":"ಕಂಟೆಂಟ್ ಸ್ಥಿತಿಗತಿ ವರದಿ","createdByMe":"ನಾನು ರಚಿಸಿದ್ದು","dashboard":"ಅಡ್ಮಿನ್ ಡ್ಯಾಶ್ ಬೋರ್ಡ್","detailedConsumptionMatrix":"ಬಳಕೆಯ ವಿವರವಾದ ಮ್ಯಾಟ್ರಿಕ್ಸ್","detailedConsumptionReport":"ಬಳಕೆಯ ವಿವರವಾದ  ವರದಿ","footerContact":"ಪ್ರಶ್ನೆಗಳಿಗೆ ಸಂಪರ್ಕಿಸಿ:","footerDIKSHAForMobile":"ಮೊಬೈಲ್ ಗಾಗಿ DIKSHA","footerDikshaVerticals":"DIKSHA ವರ್ಟಿಕಲ್ಸ್","footerHelpCenter":"ಸಹಾಯ ಕೇಂದ್ರ","footerPartners":"ಭಾಗೀದಾರರು","footerTnC":"ಬಳಕೆಯ ನಿಯಮಗಳು","logout":"ಲಾಗ್ ಔಟ್","myactivity":"ನನ್ನ ಚಟುವಟಿಕೆ","profile":"ಪ್ರೊಫೈಲ್","textbookProgressReport":"ಪಠ್ಯಪುಸ್ತಕ ಪ್ರಗತಿ ವರದಿ","viewall":"ಎಲ್ಲವನ್ನು ವೀಕ್ಷಿಸಿ","workSpace":"ಕಾರ್ಯಕ್ಷೇತ್ರ"},"pgttl":{"takeanote":"ಟಿಪ್ಪಣಿ ತೆಗೆದುಕೊಳ್ಳಿ"},"prmpt":{"deletenote":"ಈ ಟಿಪ್ಪಣಿಯನ್ನು ಡಿಲೀಟ್ ಮಾಡಲು  ನೀವು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?","enteremailID":"ನಿಮ್ಮ ಇಮೇಲ್ ಐಡಿಯನ್ನು ನಮೂದಿಸಿ","enterphoneno":"10 ಅಂಕಿಗಳ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ","search":"ಹುಡುಕು","userlocation":"ಸ್ಥಳ"},"scttl":{"blkuser":"ಬಳಕೆದಾರನನ್ನು ನಿರ್ಬಂಧಿಸಿ","contributions":"ಕೊಡುಗೆದಾರರು","instructions":"ಸೂಚನೆಗಳು:","signup":"ನೋಂದಾಯಿಸಿ ","todo":"ಮಾಡಬೇಕಾದದ್ದು","error":"Error:"},"snav":{"shareViaLink":"ಲಿಂಕ್ ಮೂಲಕ ಹಂಚಿಕೊಳ್ಳಲಾಗಿದೆ","submittedForReview":"ಪರಿಶೀಲನೆಗೆ ಸಲ್ಲಿಸಲಾಗಿದೆ"},"tab":{"all":"ಎಲ್ಲಾ","community":"ಗುಂಪುಗಳು","courses":"ಕೋರ್ಸ್ ಗಳು","help":"ಸಹಾಯ","home":"ಮುಖಪುಟ","profile":"ಪ್ರೊಫೈಲ್","resources":"ಗ್ರ೦ಥಾಲಯ","users":"ಬಳಕೆದಾರರು","workspace":"ಕಾರ್ಯಕ್ಷೇತ್ರ","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"ಕೋರ್ಸ್ ಪೂರ್ಣಗೊಂಡಿತು","messages":{"emsg":{"m0001":"ಈಗ ನೋಂದಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0003":"ನೀವು ಒದಗಿಸುವವರ ಮತ್ತು ಬಾಹ್ಯ ಐಡಿ ಅಥವಾ ಸಂಸ್ಥೆಯ ಐಡಿ ಅನ್ನು ನಮೂದಿಸಬೇಕು","m0005":"ಯಾವುದೋ ತಪ್ಪು ಸಂಭವಿಸಿದೆ, ದಯವಿಟ್ಟು ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಪ್ರಯತ್ನಿಸಿ ....","m0007":"ಗಾತ್ರವು ಕಡಿಮೆ ಇರಬೇಕು","m0008":"ವಿಷಯವನ್ನು ನಕಲಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0009":"ಈಗ ದಾಖಲಾತಿ ರದ್ದುಗೊಳಿಸಲು  ಸಾಧ್ಯವಿಲ್ಲ. ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ","m0014":"ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲು ಆಗಲಿಲ್ಲ","m0015":"ಇಮೇಲ್ ಐಡಿ ಅಪ್ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ ","m0016":"ರಾಜ್ಯವನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0017":"ಜಿಲ್ಲೆಗಳನ್ನು ಪಡೆಯುವುದು ವಿಫಲವಾಗಿದೆ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0018":"ಪ್ರೊಫೈಲ್ ನವೀಕರಿಸುವುದು ವಿಫಲವಾಗಿದೆ","m0019":"ವರದಿಯನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಆಗಲಿಲ್ಲ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0020":"ಬಳಕೆದಾರರ ಪರಿಷ್ಕರಣೆ ವಿಫಲವಾಯಿತು. ಮತ್ತೆ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ. ","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"ನೋಂದಾಯಿತ ಕೋರ್ಸ್ ಗಳನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ ...","m0002":"ಇತರ ಕೋರ್ಸುಗಳನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0003":"ಕೋರ್ಸ್ ವೇಳಾಪಟ್ಟಿ ವಿವರಗಳನ್ನು ಪಡೆಯಲಾಗಲಿಲ್ಲ.","m0004":"ಡೇಟಾ ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0030":"ಟಿಪ್ಪಣಿ ರಚಿಸುವುದು ವಿಫಲವಾಗಿದೆ,  ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0032":"ಟಿಪ್ಪಣಿ ತೆಗೆದುಹಾಕುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ,  ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0033":"ಟಿಪ್ಪಣಿ ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0034":"ಟಿಪ್ಪಣಿ ನವೀಕರಣ ವಿಫಲವಾಗಿದೆ, ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0041":"ಶಿಕ್ಷಣ ಡಿಲೀಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0042":"ಅನುಭವ ಡಿಲೀಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ","m0043":"ವಿಳಾಸ ಡಿಲೀಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ. ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0048":"ಬಳಕೆದಾರ ಪ್ರೊಫೈಲ್ ನವೀಕರಿಸುವುದು ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0049":"ಡೇಟಾವನ್ನು ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ.","m0050":"ವಿನಂತಿಯನ್ನು ಸಲ್ಲಿಸುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0051":"ಯಾವುದೋ ತಪ್ಪು ಸಂಭವಿಸಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0054":"ಬ್ಯಾಚ್ ವಿವರ ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0056":"ಬಳಕೆದಾರ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0076":"ದಯವಿಟ್ಟು ಕಡ್ಡಾಯ ವಿವರಗಳನ್ನು ನಮೂದಿಸಿ","m0077":"ಹುಡುಕಾಟ ಫಲಿತಾಂಶವನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ ..","m0079":"ಬ್ಯಾಡ್ಜ್ ನಿಯೋಜನೆ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0080":"ಬ್ಯಾಡ್ಜ್ ಪಡೆಯುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ...","m0082":"ಈ ಕೋರ್ಸ್  ದಾಖಲಾತಿಗೆ ಇನ್ನೂ  ತೆರೆದಿಲ್ಲ","m0085":"ತಾಂತ್ರಿಕ ದೋಷ ಕಂಡುಬಂದಿದೆ. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.","m0086":"ಲೇಖಕರು ಈ ಕೋರ್ಸ್ ತೆಗೆದುಹಾಕಿದ್ದಾರೆ, ಹೀಗಾಗಿ ಅದು ಇನ್ನು ಲಭ್ಯವಾಗುವುದಿಲ್ಲ","m0087":"ದಯವಿಟ್ಟು ನಿರೀಕ್ಷಿಸಿ. ","m0088":"ನಾವು ವಿವರಗಳನ್ನು ಪಡೆಯುತ್ತಿದ್ದೇವೆ. ","m0089":"ಯಾವುದೇ ವಿಷಯ/ಉಪವಿಷಯ ಕಾಣಲಿಲ್ಲ","m0090":"ಡೌನ್ಲೋಡ್  ಆಗಲಿಲ್ಲ. ಮತ್ತೆ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ. ","m0091":"ಕಂಟೆಂಟ್ ಎಕ್ಸ್ ಪೋರ್ಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ ","m0093":"ಕಂಟೆಂಟ್(ಗಳು) ಅಪ್ಲೋಡ್ ವಿಫಲವಾಯಿತು","m0094":"ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಆಗಲಿಲ್ಲ, ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"ಈ ಕೋರ್ಸ್ ಸೂಕ್ತವಲ್ಲವೆಂದು ಫ್ಲ್ಯಾಗ್ ಮಾಡಲಾಗಿದೆ ಮತ್ತು ಪ್ರಸ್ತುತ ಪರಿಶೀಲನೆಯಲ್ಲಿದೆ.  ","m0005":"ದಯವಿಟ್ಟು ಮಾನ್ಯ ಇಮೇಜ್ ಫೈಲ್ ಅನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ. ಬೆಂಬಲಿತ ಫೈಲ್ ಪ್ರಕಾರಗಳು: jpeg, jpg, png. ಗರಿಷ್ಠ ಗಾತ್ರ: 4MB.","m0017":"ಪ್ರೊಫೈಲ್ ಸಂಪೂರ್ಣತೆ.","m0022":"ಕಳೆದ 7 ದಿನಗಳ ಅಂಕಿಅಂಶಗಳು","m0023":"ಕಳೆದ 14 ದಿನಗಳ ಅಂಕಿಅಂಶಗಳು","m0024":"ಕಳೆದ 5 ವಾರಗಳ ಅಂಕಿಅಂಶಗಳು","m0025":"ಪ್ರಾರಂಭದಿಂದ ಅಂಕಿಅಂಶಗಳು","m0026":"ಹಾಯ್, ಈ ಕೋರ್ಸ್ ಈಗ ಲಭ್ಯವಿಲ್ಲ. ರಚನಾಕಾರರು ಕೋರ್ಸ್ ನಲ್ಲಿ  ಕೆಲವು ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಿರಬಹುದು.","m0027":"ಹಾಯ್, ಈ ವಿಷಯವು ಈಗ ಲಭ್ಯವಿಲ್ಲ. ರಚನಾಕ಻ರರು ವಿಷಯಕ್ಕೆ ಕೆಲವು ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಿದ್ದಾರೆ.","m0034":"ವಿಷಯವು ಬಾಹ್ಯ ಮೂಲದಿಂದ ಬಂದಿರುವುದರಿಂದ, ಸ್ವಲ್ಪ ಸಮಯದಲ್ಲೇ ಅದನ್ನು ತೆರೆಯಲಾಗುತ್ತದೆ.","m0035":"ಅನಧಿಕೃತ ಪ್ರವೇಶ","m0036":"ವಿಷಯವನ್ನು ಬಾಹ್ಯವಾಗಿ ಹೋಸ್ಟ್ ಮಾಡಲಾಗಿದೆ, ದಯವಿಟ್ಟು ವಿಷಯವನ್ನು ವೀಕ್ಷಿಸಲು ಪೂರ್ವವೀಕ್ಷಣೆ ಕ್ಲಿಕ್ ಮಾಡಿ","m0040":"ಪ್ರಕ್ರಿಯೆ ಇನ್ನೂ ಪ್ರಗತಿಯಲ್ಲಿದೆ, ದಯವಿಟ್ಟು ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಪ್ರಯತ್ನಿಸಿ.","m0041":"ನಿಮ್ಮ ಪ್ರೊಫೈಲ್","m0042":"% ಪೂರ್ಣಗೊಂಡಿದೆ","m0043":"ನಿನ್ನ ಪ್ರೊಫೈಲ್ ಸರಿಯಾದ ಇಮೇಲ್ ಐಡಿಯನ್ನು ಹೊಂದಿಲ್ಲ. ನಿಮ್ಮ ಇಮೇಲ್ ಐಡಿಯನ್ನು ಅಪ್ ಡೇಟ್ ಮಾಡಿ. ","m0044":"ಡೌನ್ಲೋಡ್  ಆಗಲಿಲ್ಲ","m0045":"ಡೌನ್ಲೋಡ್  ಆಗಲಿಲ್ಲ. ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ","m0047":"ನೀವು ಕೇವಲ 100 ಜನ ಭಾಗವಹಿಸುವವರನ್ನು ಆಯ್ಕೆ ಮಾಡಬಹುದು","m0060":"{instance} ಜೊತೆಗೆ ಎರಡು ಅಕೌಂಟ್ ಇದ್ದರೆ,  ಕ್ಲಿಕ್ ಮಾಡಿ","m0061":"ಗೆ","m0062":"ಅಥವಾ, ಕ್ಲಿಕ್ ಮಾಡಿ","m0063":"ಎರಡೂ ಅಕೌಂಟ್ ಗಳ ವಿವರಗಳನ್ನು ಸೇರಿಸಿರಿ, ಮತ್ತು","m0064":"ಇನ್ನೊಂದು ಅಕೌಂಟ್ ಅನ್ನು ಡಿಲೀಟ್ ಮಾಡಿ","m0065":"ಅಕೌಂಟ್ ವಿಲೀನಗೊಳಿಸುವುದು ಯಶಸ್ವಿಯಾಗಿ ಆರಂಭವಾಯಿತು","m0066":"ಇದು ಪೂರ್ಣಗೊಂಡ ನಂತರ ನಿಮಗೆ ತಿಳಿಸಲಾಗುವುದು","m0067":"ಅಕೌಂಟ್ ವಿಲೀನವು ಇನ್ನೂ ಶುರುವಾಗಿಲ್ಲ, ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ","m0072":"ಅಕೌಂಟ್ ಗಳನ್ನು ವಿಲೀನಗೊಳಿಸುವುದು ಆಗಲಿಲ್ಲ, ಏಕೆಂದರೆ ಪಾಸ್ವರ್ಡ್ ತಪ್ಪಾಗಿ ಹಾಕಿದ್ದೀರಿ","m0073":"ಹೊಸ {instance} ಅಕೌಂಟ್ ರಚಿಸಲು ಓಕೆ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"ಟಿಪ್ಪಣಿ ಯಶಸ್ವಿಯಾಗಿ ರಚಿಸಲಾಗಿದೆ ...","m0013":"ಟಿಪ್ಪಣಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ ...","m0014":"ಶಿಕ್ಷಣ ಯಶಸ್ವಿಯಾಗಿ ಡಿಲೀಟ್ ಮಾಡಲಾಗಿದೆ","m0015":"ಅನುಭವವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಡಿಲೀಟ್ ಮಾಡಲಾಗಿದೆ","m0016":"ವಿಳಾಸವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಡಿಲೀಟ್ ಮಾಡಲಾಗಿದೆ","m0018":"ಪ್ರೊಫೈಲ್ ಚಿತ್ರ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0019":"ವಿವರಣೆ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0020":"ಶಿಕ್ಷಣ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0021":"ಅನುಭವವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0022":"ಹೆಚ್ಚುವರಿ ಮಾಹಿತಿ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0023":"ವಿಳಾಸವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0024":"ಹೊಸ ಶಿಕ್ಷಣ ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ","m0025":"ಹೊಸ ಅನುಭವವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ","m0026":"ಹೊಸ ವಿಳಾಸವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ","m0028":"ಪಾತ್ರಗಳನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0029":"ಬಳಕೆದಾರರನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಡಿಲೀಟ್ ಮಾಡಲಾಗಿದೆ","m0030":"ಬಳಕೆದಾರರನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಪ್ಲೋಡ್ ಮಾಡಲಾಗಿದೆ","m0031":"ಸಂಸ್ಥೆಗಳು ಯಶಸ್ವಿಯಾಗಿ ಅಪ್ಲೋಡ್ ಆಗಿವೆ","m0032":"ಸ್ಥಿತಿ ಯಶಸ್ವಿಯಾಗಿ ಫೆಚ್ ಆಗಿದೆ","m0035":"ಸಂಸ್ಥೆಯ ವಿಧವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ","m0036":"ಈ ಬ್ಯಾಚಿಗೆ  ಕೋರ್ಸ್ ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನೋಂದಾಯಿಸಲಾಗಿದೆ ","m0037":"ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0038":"ಕೌಶಲಗಳನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0039":"ಸೈನ್ ಅಪ್  ಯಶಸ್ವಿಯಾಯಿತು, ದಯವಿಟ್ಟು ಲಾಗಿನ್ ಮಾಡಿ ...","m0040":"ಪ್ರೊಫೈಲ್ ಕ್ಷೇತ್ರ ಗೋಚರತೆಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ","m0042":"ವಿಷಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನಕಲಿಸಲಾಗಿದೆ","m0043":"ಅನುಮೋದನೆ ಯಶಸ್ವಿಯಾಗಿದೆ","m0044":"ಬ್ಯಾಡ್ಜ್ ಯಶಸ್ವಿಯಾಗಿ ನಿಯೋಜಿಸಲಾಗಿದೆ ...","m0045":"ಬ್ಯಾಚಿನಿಂದ  ಬಳಕೆದಾರರನ್ನು ಯಶಸ್ವಿಯಾಗಿ ತೆಗೆದುಹಾಕಲಾಗಿದೆ","m0046":"ಪ್ರೊಫೈಲ್ ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ ...","m0047":"ನಿಮ್ಮ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಯಿತು","m0048":"ನಿಮ್ಮ ಇಮೇಲ್ ಐಡಿ ಅಪ್ಡೇಟ್ ಆಗಿದೆ","m0049":"ಬಳಕೆದಾರರ ಪರಿಷ್ಕರಣೆ ಯಶಸ್ವಿಯಾಯಿತು","m0050":"ಈ ಕಂಟೆಂಟ್ ರೇಟ್ ಮಾಡಿದ್ದಕ್ಕೆ ಧನ್ಯವಾದಗಳು","m0053":"ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಕ್ಯೂನಲ್ಲಿ ಇರುವ ಕಂಟೆಂಟ್ ","m0054":"ಕಂಟೆಂಟ್(ಗಳು) ಯಶಸ್ವಿಯಾಗಿ ಅಪ್ಲೋಡ್ ಆಯಿತು","m0055":"ನವೀಕರಿಸಲಾಗುತ್ತಿದೆ","m0056":"ಪಠ್ಯಾಂಶವನ್ನು ನವೀಕರಿಸಲು ನೀವು ಆನ್ಲೈನಿನಲ್ಲಿ ಇರಬೇಕು","moo41":"ಪ್ರಕಟಣೆ ಯಶಸ್ವಿಯಾಗಿ ರದ್ದುಗೊಂಡಿದೆ ...","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"ಯಾವುದೇ ಫಲಿತಾಂಶ ಕಂಡುಬಂದಿಲ್ಲ","m0007":"ದಯವಿಟ್ಟು ನಿಮ್ಮ ಹುಡುಕಾಟವನ್ನು ಪರಿಷ್ಕರಿಸಿ","m0008":"ಫಲಿತಾಂಶಗಳು ಇಲ್ಲ","m0009":"ಪ್ಲೇ ಆಗುತ್ತಿಲ್ಲ, ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ ಅಥವಾ ಮುಚ್ಚಿ.","m0022":"ನಿಮ್ಮ ಒಂದು ಡ್ರಾಫ್ಟ್(ಕರಡನ್ನು) ಅನ್ನು ಪರಿಶೀಲನೆಗೆ  ಸಲ್ಲಿಸಿ. ಪರಿಶೀಲನೆಯ ನಂತರವೇ ಕಂಟೆಂಟ್ ಪ್ರಕಟವಾಗುತ್ತದೆ. ","m0024":"ಕಡತ, ವಿಡಿಯೋ ಅಥವಾ ಯಾವುದೇ ಬೆಂಬಲಿತ ನಮೂನೆಯನ್ನು ಅಪ್ ಲೋಡ್ ಮಾಡಿ. ನೀವು ಇನ್ನೂ ಏನನ್ನೂ ಅಪ್ ಲೋಡ್ ಮಾಡಿಲ್ಲ. ","m0033":"ನಿಮ್ಮ ಒಂದು ಡ್ರಾಫ್ಟ್ ಅನ್ನು ಪರಿಶೀಲನೆ(ರಿವ್ಯೂ)ಗೆ ಸಲ್ಲಿಸಿ. ನೀವು ಇನ್ನೂ ಯಾವುದೇ ಕಂಟೆಂಟ್ ಅನ್ನು ಪರಿಶೀಲನೆಗೆ  ಸಲ್ಲಿಸಿಲ್ಲ. ","m0035":"ಯಾವುದೇ ಕಂಟೆಂಟ್ ಪರಿಶೀಲನೆಗೆ ಇಲ್ಲ. ","m0060":"ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ಬಲಪಡಿಸಿ","m0062":"ಮಾನ್ಯವಾದ ಪದವಿ ನಮೂದಿಸಿ","m0063":"ಮಾನ್ಯವಾದ ವಿಳಾಸದ ಸಾಲು 1 ನಮೂದಿಸಿ","m0064":"ನಗರವನ್ನು ನಮೂದಿಸಿ","m0065":"ಮಾನ್ಯವಾದ ಪಿನ್ ಕೋಡ್ ನಮೂದಿಸಿ","m0066":"ಮೊದಲ ಹೆಸರನ್ನು ನಮೂದಿಸಿ","m0067":"ದಯವಿಟ್ಟು ಮಾನ್ಯವಾದ ಫೋನ್ ಸಂಖ್ಯೆಯನ್ನು ಒದಗಿಸಿ","m0069":"ಭಾಷೆ ಆಯ್ಕೆ ಮಾಡಿ","m0070":"ಸಂಸ್ಥೆಯ ಹೆಸರನ್ನು ನಮೂದಿಸಿ","m0072":"ಮಾನ್ಯ ಉದ್ಯೋಗ / ಕೆಲಸದ ಶೀರ್ಷಿಕೆಯನ್ನು ನಮೂದಿಸಿ","m0073":"ಮಾನ್ಯವಾದ ಸಂಸ್ಥೆಯನ್ನು ನಮೂದಿಸಿ","m0077":"ನಿಮ್ಮ ವಿನಂತಿಯನ್ನು ನಾವು ಸಲ್ಲಿಸುತ್ತಿದ್ದೇವೆ ...","m0080":"ದಯವಿಟ್ಟು CSV ರೂಪದಲ್ಲಿ ಮಾತ್ರ ಫೈಲ್ ಅನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡಿ","m0081":"ಯಾವುದೇ ಬ್ಯಾಚ್ಗಳು ಕಂಡುಬಂದಿಲ್ಲ","m0083":"ನೀವು ಇನ್ನೂ ಯಾರೊಂದಿಗೂ ಕಂಟೆಂಟ್ ಹಂಚಿಕೊಂಡಿಲ್ಲ","m0087":"ದಯವಿಟ್ಟು ಮಾನ್ಯವಾದ ಬಳಕೆದಾರ ಹೆಸರನ್ನು ನಮೂದಿಸಿ, ಕನಿಷ್ಠ 5 ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿರಬೇಕು","m0088":"ದಯವಿಟ್ಟು ಮಾನ್ಯವಾದ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಮೂದಿಸಿ","m0089":"ಮಾನ್ಯವಾದ ಡಯಲ್ ಕೋಡ್ ನಮೂದಿಸಿ","m0090":"ದಯವಿಟ್ಟು ಭಾಷೆಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಿ","m0091":"ಮಾನ್ಯವಾದಮೊಬೈಲ್ ಸಂಖ್ಯೆ ನಮೂದಿಸಿ","m0094":"ಮಾನ್ಯವಾದ ಶೇಕಡಾ ನಮೂದಿಸಿ","m0095":"ನಿಮ್ಮ ವಿನಂತಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸ್ವೀಕರಿಸಲಾಗಿದೆ. ಫೈಲ್ ಅನ್ನು ನಂತರ ನಿಮ್ಮ ನೋಂದಾಯಿತ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ ಕಳುಹಿಸಲಾಗುತ್ತದೆ. ದಯವಿಟ್ಟು, ನಿಮ್ಮ ಇಮೇಲ್ಗಳನ್ನು ನಿಯಮಿತವಾಗಿ ಪರಿಶೀಲಿಸಿ.","m0104":"ಮಾನ್ಯ ತರಗತಿಯನ್ನು ನಮೂದಿಸಿ","m0108":"ನಿಮ್ಮ ಪ್ರಗತಿ","m0113":"ಆರಂಭದ ದಿನಾಂಕವನ್ನು ಸರಿಯಾಗಿ ಹಾಕಿರಿ. ","m0116":"ಆಯ್ಕೆಮಾಡಿದ ಟಿಪ್ಪಣಿಯನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ ...","m0120":"ತೋರಿಸಲು ಯಾವುದೇ ವಿಷಯವಿಲ್ಲ","m0121":"ಕಂಟೆಂಟ್ ಇನ್ನೂ ಸೇರಿಸಿಲ್ಲ","m0122":"ನಿಮ್ಮ ರಾಜ್ಯವು ಶೀಘ್ರದಲ್ಲಿಯೇ ಈ ಕ್ಯುಆರ್ ಸಂಕೇತಕ್ಕೆ ಕಂಟೆಂಟ್ ಸೇರಿಸುತ್ತದೆ. ಅದು ಶೀಘ್ರದಲ್ಲಿಯೇ ನಿಮಗೆ ದೊರೆಯಲಿದೆ. ","m0123":"ನಿಮ್ಮ ಗೆಳೆಯ/ತಿಗೆ ನಿಮ್ಮನ್ನು ಸಹಭಾಗಿ(ಕೊಲಾಬೊರೇಟರ್)ಯಾಗಿ ಸೇರಿಸುವಂತೆ ಹೇಳಿ. ನಿಮಗೆ ಈ ಕುರಿತು ಇಮೇಲ್ ಮೂಲಕ ಸೂಚನೆ ನೀಡಲಾಗುವುದು. ","m0125":"ಸಂಪನ್ಮೂಲ, ಪುಸ್ತಕ, ಕೋರ್ಸ್, ಸಂಗ್ರಹ ಅಥವಾ ಅಪ್ ಲೋಡ್ ಅನ್ನು ರಚಿಸಲು ಆರಂಭಿಸಿ. ಈಗ ಸಧ್ಯಕ್ಕೆ ನಿಮ್ಮ ಯಾವುದೇ ಡ್ರಾಫ್ಟ್(ಕರಡು) ಕೆಲಸದ-ಪ್ರಗತಿಯಲ್ಲಿ ಇಲ್ಲ. ","m0126":"ದಯವಿಟ್ಟು ಬೋರ್ಡ್ ಆಯ್ಕೆಮಾಡಿ","m0127":"ಮಾಧ್ಯಮ ಆಯ್ಕೆ ಮಾಡಿ","m0128":"ತರಗತಿ ಆಯ್ಕೆ ಮಾಡಿ","m0129":"ನಿಯಮಗಳು ಮತ್ತು ಷರತ್ತುಗಳನ್ನು ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ.","m0130":"ನಾವು ಜಿಲ್ಲೆಗಳನ್ನು ಪಡೆದುಕೊಳ್ಳುತ್ತಿದ್ದೇವೆ","m0131":"ಯಾವುದೇ ವರದಿಗಳನ್ನು ಸಿಗಲಿಲ್ಲ","m0132":"ನಿಮ್ಮ ಬೇಡಿಕೆಯನ್ನು ನಾವು ಸ್ವೀಕರಿಸಿದ್ದೇವೆ. ಶೀಘ್ರವೇ ನಿಮಗೆ ಫೈಲ್ ಅನ್ನು ನಿಮ್ಮ ನೋಂದಾಯಿತ ಇಮೇಲ್ ಐಡಿಗೆ ಕಳಿಸುತ್ತೇವೆ. ","m0133":"ಡೆಸ್ಕ್ ಟಾಪ್ ಆಪ್  ಬಳಸಿಕೊಂಡು ಕಂಟೆಂಟ್ ಗಳನ್ನು ಹುಡುಕಿ ಮತ್ತು ಡೌನ್ಲೋಡ್ ಮಾಡಿ ಅಥವಾ ಅಪ್ಲೋಡ್ ಮಾಡಿ","m0134":"ನೋಂದಣಿ","m0135":"ದಿನಾಂಕವನ್ನು ಸರಿಯಾಗಿ ಹಾಕಿರಿ","m0136":"ನೋಂದಣಿಗೆ ಕೊನೆಯ ದಿನಾಂಕ: ","m0138":"ವಿಫಲವಾಯಿತು","m0139":"ಡೌನ್ಲೋಡ್ ಆಗಿದ್ದು","m0140":"ಡೌನ್ಲೋಡ್ ಆಗುತ್ತಿದೆ","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"}},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again  later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"ಸಂಸ್ಥೆ ಹೆಸರು","participants":"ಭಾಗವಹಿಸುವವರು","resourceService":{"frmelmnts":{"lbl":{"userId":"ಬಳಕೆದಾರರ ID"}}},"t0065":"ಕಡತ ಡೌನ್ಲೋಡ್ ಮಾಡಿ"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"You don't have any published content...","m0023":"We are fetching uploaded content...","m0024":"You don't have any uploaded content...","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"You don't have any content for review...","m0034":"We are deleting the content...","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You don't have any limited publish content...","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"You are not collaborating on any content yet","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"No content to display. Start Creating Now","m0035":"There is no content to review","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
diff --git a/src/app/resourcebundles/json/mr.json b/src/app/resourcebundles/json/mr.json
index 5147831f29b6f4dfca7cc039ddb103be863c8a02..1162cda3b9672d2e608c14b9e8fd99323034b9f7 100644
--- a/src/app/resourcebundles/json/mr.json
+++ b/src/app/resourcebundles/json/mr.json
@@ -1 +1 @@
-{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"बॅचसाठी  एकाही सहभाग्याची नोंदणी नाही ","Mobile":"मोबाईल ","SearchIn":"{searchContentType} मध्ये शोधा  ","Select":"निवडा ","aboutthecourse":"अभ्यासक्रमाची माहिती ","active":"सक्रिय ","addDistrict":"जिल्हा जोडा ","addEmailID":"ई-मेल आयडी जोडा ","addPhoneNo":"मोबाइल नंबर जोडा ","addState":"राज्य जोडा ","addlInfo":"अतिरिक्त माहिती ","addnote":"नोट्स घ्या ","addorgtype":"संस्थेचा प्रकार जोडा ","address":"पत्ता","addressline1":"पत्त्याची पहिली ओळ ","addressline2":"पत्त्याची दुसरी ओळ ","anncmnt":"घोषणा ","anncmntall":"सर्व घोषणा ","anncmntcancelconfirm":"आपल्याला निश्चित ही घोषणा दाखवणे थांबवायचे आहे का?","anncmntcancelconfirmdescrption":"या कृतीनंतर वापरकर्त्यांना ही घोषणा दिसणार नाही ","anncmntcreate":"घोषणा तयार करा ","anncmntdtlsattachments":"पुरवण्या ","anncmntdtlssenton":"या रोजी पाठवले ","anncmntdtlsview":"पहा","anncmntdtlsweblinks":"वेबलिंक्स ","anncmntinboxannmsg":"घोषणा ","anncmntinboxseeall":"सर्व पहा ","anncmntlastupdate":"शेवटचा वापर तपशील उपडेट केलेली तारीख","anncmntmine":"माझ्या घोषणा ","anncmntnotfound":"घोषणा आढळल्या नाहीत ! ","anncmntoutboxdelete":"काढून टाका ","anncmntoutboxresend":"पुन्हा पाठवा ","anncmntplzcreate":"कृपया घोषणा तयार करावी ","anncmntreadmore":"...पुढे वाचा ","anncmntsent":"सर्व पाठवलेल्या घोषणा दाखवत आहोत ","anncmnttblactions":"कृती ","anncmnttblname":"नाव ","anncmnttblpublished":"प्रकाशित ","anncmnttblreceived":"आलेले ","anncmnttblseen":"पाहिलेले ","anncmnttblsent":"पाठवलेले ","attributions":"पत","author":"निर्माता ","badgeassignconfirmation":"आपण निश्चित या मजकूरास हा बिल्ला देऊ इच्छिता?","batchdescription":"बॅचची माहिती ","batchdetails":"बॅचचे तपशील ","batchenddate":"अंतिम तारीख ","batches":"बॅचेस ","batchmembers":"बॅचचे सभासद ","batchstartdate":"आरंभ तारीख ","birthdate":"जन्मतारीख (dd /mm /yyyy )","block":"ब्लॉक ","blocked":"अवरोधित ","blockedUserError":"वापरकर्त्याच्या खाते ब्लॉक केले आहे. कृपया ऍडमिनशी संपर्क साधावा.","blog":"Blog","board":"बोर्ड / विद्यापीठ","boards":"बोर्ड","browserSuggestions":"अधिक चांगल्या अनुभवासाठी, अपग्रेड किंवा इन्स्टॉल करा ","certificateIssuedTo":"... यांना प्रमाणपत्र दिले जात आहे ","certificatesIssued":"प्रमाणपत्र दिलेली आहेत ","certificationAward":"प्रमाणपत्रके व पुरस्कार ","channel":"चॅनेल ","chkuploadsts":"अपलोड स्टेटस तपासा ","chooseAll":"सर्व पर्याय निवडा ","city":"गाव / शहर ","class":"इयत्ता ","classes":"वर्ग ","clickHere":"इथे क्लिक करा ","completed":"पूर्ण ","completedCourse":"अभ्यासक्रम पूर्ण झाला ","completingCourseSuccessfully":"अभ्यासक्रम यशस्वीरीत्या पूर्ण करण्यासाठी,","concept":"संकल्पना ","confirmPassword":"पासवर्ड निश्चित करा ","confirmblock":"{%s} यांना अवरोधित करायचे आहे का?","connectInternet":"मजकूर ब्राऊज करण्यासाठी, यंत्र इंटरनेटशी जोडा ","contactStateAdmin":"ह्या बॅचमध्ये अधिक सहभागी घालण्यासाठी आपल्या राज्य ऍडमिनशी संपर्क साधा ","contentCredits":"मजकूर श्रेय ","contentcopiedtitle":"हा मजकूर ... इथून उत्पन्न झाला आहे","contentinformation":"मजकूराची माहिती ","contentname":"मजकूर शीर्षक ","contents":"साहित्य ","contentsUploaded":"मजकूर अपलोड होत आहेत ","contenttype":"मजकूर ","continue":"पुढे ","contributors":"सहाय्यक ","copy":"कॉपी ","copyRight":"कॉपीराईट ","copycontent":"मजकूर कॉपी करत आहोत...","country":"देश ","countryCode":"देशाचा code","courseCreatedBy":"निर्माता ","courseCredits":"अभ्यासक्रम श्रेय ","coursecreatedon":"निर्मिती तारीख :","coursestructure":"अभ्यासक्रमाची मांडणी ","createUserSuccessWithEmail":"आपला ई-मेल ID प्रस्थापित केला गेला आहे. पुढे जाण्यासाठी साइन इन करा . ","createUserSuccessWithPhone":"आपला फोन नंबर प्रस्थापित झालेला आहे. पुढे जाण्यासाठी साईन ईन करा.","createdInstanceName":"... ह्यांनी {instance} रोजी निर्माण केले  ","createdon":"निर्मिती तारीख:","creationdataset":"निर्मिती ","creator":"निर्माता ","creators":"निर्माते ","credits":"श्रेयनिर्देश ","current":"सद्यकालीन ","currentlocation":"सद्य स्थान ","curriculum":"अभ्यासक्रम ","dashboardcertificateStatus":"प्रमाणपत्र स्थिती ","dashboardfiveweeksfilter":"मागील ५ आठवडे ","dashboardfourteendaysfilter":"मागील १४ दिवस ","dashboardfrombeginingfilter":"प्रथमपासून ","dashboardnobatchselected":"कोणतीही बॅच निवडलेली नाही","dashboardnobatchselecteddesc":"वरील यादीमधून एक बॅच निवडा ","dashboardnocourseselected":"कोणताही कोर्स निवडलेला नाही!","dashboardnocourseselecteddesc":"कृपया वरील यादीमधून एक कोर्स निवडा ","dashboardnoorgselected":"संस्थेची निवड केली नाही!","dashboardnoorgselecteddesc":"वरीलपैकी एका संस्थेचे नाव निवडा ","dashboardselectorg":"संस्था निवडा ","dashboardsevendaysfilter":"मागील ७ दिवस ","dashboardsortbybatchend":"बॅच संपण्याची तारीख ","dashboardsortbyenrolledon":"नोंदणी तारीख ","dashboardsortbyorg":"संस्था","dashboardsortbystatus":"सद्यस्थिती ","dashboardsortbyusername":"वापरकर्त्याचे नाव ","degree":"डिग्री ","delete":"हटवा","deletenote":"नोट काढून टाका ","description":"वर्णन  ","designation":"हुद्दा ","desktopAppDescription":"डाउनलोड केलेला मजकूर शोधण्यासाठी अथवा इतर यंत्रावरून चालवण्यासाठी, आपल्या यंत्रावर DIKSHA डेस्कटॉप ऍप डाउनलोड करा. DIKSHA डेस्कटॉप ऍप द्वारे आपल्याला मिळेल ","desktopAppFeature001":"विनामूल्य अमर्यादित मजकूर ","desktopAppFeature002":"बहुभाषिक आधार ","desktopAppFeature003":"मजकूर ऑफलाईन चालवा ","deviceId":"यंत्र ID ","dialCode":"QR कोड ","dialCodeDescription":"QR कोड म्हणजे तुमच्या पाठ्यपुस्तकातील QR कोडच्या प्रतिमेखाली आढळणारा ६ आकडी वर्ण-संख्यायुक्त कोड.","dialCodeDescriptionGetPage":"QR कोड हा तुमच्या पाठ्यपुस्तकातील 'QR कोड' आकृतीच्या खाली आढळणारा ६ आकडी अल्फान्यूमेरिक कोड आहे.","dikshaForMobile":"मोबाईलसाठी  DIKSHA","district":"जिल्हा ","dob":"जन्मतारीख ","done":"पूर्ण ","downloadCourseQRCode":"कोर्स डाउनलोड करण्यासाठी QR कोड ","downloadDikshaForMobile":"मोबाईलसाठी DIKSHA ऍप डाउनलोड करा ","downloadDikshaLite":"DIKSHA Lite डेस्कटॉप ऍप डाउनलोड करा ","downloadQRCode":{"tooltip":"अभ्यासक्रमांशी निगडित QR कोड्स डाउनलोड करण्यासाठी इथे क्लिक करा "},"downloadThe":"{%s} म्हणून डाउनलोड करा ","downloadingContent":"{contentName} डाउनलोड करण्याच्या तयारीत...","dropcomment":"टिप्पणी जोडा ","ecmlarchives":"Ecml अभिलेख","edit":"फेरबदल ","editPersonalDetails":"वैयक्तिक तपशीलात बदल करा ","editUserDetails":"वापरकर्त्याच्या तपशीलात फेरबदल करा ","education":"शिक्षण ","eightCharacters":"८ किंवा त्याहून जास्त वर्ण वापरा ","email":"ई-मेल ID ","emailPhonenotRegistered":"{instance} इथे ई-मेल ID / फोन नंबर नोंदवलेला नाही ","emptycomments":"टिप्पण्या नाहीत ","enddate":"शेवट तारीख ","enjoyedContent":"हा मजकूर आवडला?","enrollcourse":"कोर्स साठी नोंदणी करा ","enrollmentenddate":"नोंदणीची अखेरची तारीख ","enterCertificateCode":"इथे प्रमाणपत्र कोड टाका ","enterDialCode":"६ आकडी QR कोड टाका.","enterEightCharacters":"कृपया किमान ८ वर्ण एंटर करा ","enterEmailID":"ई-मेल ID टाका ","enterEmailPhoneAsRegisteredInAccount":"{instance} इथे नोंद केलेला ई-मेल ID/फोन नंबर टाका ","enterName":"नाव टाका ","enterNameNotMatch":"इथे टाकलेले नाव {instance} मध्ये नोंद केलेल्या नावाशी जुळत नाही ","enterOTP":"OTP टाका ","enterQrCode":"QR कोड लिहा  ","enterValidCertificateCode":"कृपया योग्य प्रमाणपत्र कोड टाका ","enternameAsRegisteredInAccount":"आणि {instance} अकाउंटवर नोंद केल्याप्रमाणे नाव ","epubarchives":"Epub संग्रह","errorConfirmPassword":"दोन्ही पासवर्ड जुळत नाहीत ","experience":"अनुभव ","expiredBatchWarning":"ही बॅच {EndDate} रोजी संपलेली आहे, त्यामुळे आपली प्रगती अपडेट केली जाणार नाही.","explore":"एक्सप्लोर करा","exploreContentOn":"{instance} वर मजकूर शोधा ","explorecontentfrom":"यापैकी मजकूर शोधा ","exportingContent":"{contentName} कॉपी करण्याच्या तयारीत... ","exprdbtch":"कालबाह्य बॅचेस ","extlid":"OrgExternalId","facebook":"फेसबुक ","failres":"अपयश निकाल ","fetchingBlocks":"कृपया थांबा, आम्ही ब्लॉक्स आणत आहोत ","fetchingSchools":"शाळांची यादी दाखवत आहोत, कृपया थांबा ","filterby":"निकष लावा ","filters":"फिल्टर्स ","first":"प्रथम ","firstName":"नाव ","flaggedby":"ध्वजांकित करणारा ","flaggeddescription":"चिन्हांकित वर्णन ","flaggedreason":"ध्वजांकित करण्याचे कारण ","fnameLname":"स्वतःचे नाव व आडनाव टाका ","for":"... साठी ","forDetails":"तपशीलांसाठी ","forMobile":"मोबाईल साठी ","forSearch":"प्लेसहोल्डर: {searchString}  ","fullName":"पूर्ण नाव ","gender":"लिंग ","getUnlimitedAccess":"तुमच्या मोबाइल फोनवरून अमर्याद ऑफलाइन पाठ्यपुस्तके, पाठ व कोर्सवर वापर-अधिकार मिळवा","goback":"रद्द करण्यासाठी ","grade":"इयत्ता ","grades":"कक्षा ","graphStat":"ग्राफ आकडेवारी ","h5parchives":"H5pअभिलेख","homeUrl":"मुख्यपृष्ठ Url ","howToUseDiksha":"DIKSHA डेस्कटॉप ऍप कसा वापरावा ","howToVideo":"ऍप कसा वापरायचे याचा व्हिडिओ ","htmlarchives":"Html अभिलेख","imagecontents":"आकृतीरूपी  मजकूर ","inAll":"\"सर्व\" मध्ये ","inUsers":"वापरकर्त्यांमध्ये ","inactive":"निष्क्रिय ","institute":"शिक्षणसंस्थेचे नाव ","isRootOrg":"Is RootOrg ","iscurrentjob":"हा तुमचा सद्य व्यवसाय आहे का ","itis":"आहे ","keywords":"सूचक शब्द ","language":"ज्ञात भाषा ","last":"अंतिम ","lastAccessed":"शेवटच्या प्रवेशाची तारीख:","lastName":"आडनाव ","lastupdate":"शेवटचे उपडेट ","learners":"विद्यार्थी ","licenseTerms":"परवाना अटी ","limitsOfArtificialIntell":"कृत्रिम बुद्धिमत्तेच्या मर्यादा ","linkCopied":"लिंक कॉपी केली आहे ","linkedContents":"जोडलेले  साहित्य  ","linkedIn":"लिंक्डइन","location":"स्थान ","lockPopupTitle":"{collaborator} सध्या {content name} वर काम करत आहेत. नंतर प्रयत्न करा.","markas":"असे चिन्हांकित करा ","medium":"माध्यम ","mentors":"सल्लागार ","mergeAccount":"अकाउंट एकत्र करा ","mobileEmailInfoText":"DIKSHA वर साइन इन करण्यासाठी तुमचा मोबाइल नंबर किंवा ई-मेल ID प्रविष्ट करा","mobileNumber":"मोबाइल नंबर ","mobileNumberInfoText":"DIKSHA वर लॉगिन करण्यासाठी आपला मोबाइल नंबर टाका","more":"अधिक ","myBadges":"माझे बॅजेस ","mynotebook":"माझी नोटबुक ","mynotes":"माझ्या नोट्स","name":"नाव ","nameRequired":"नाव आवश्यक आहे ","newPassword":"नवीन पासवर्ड ","next":"पुढील ","noContentToPlay":"प्ले करण्यासाठी मजकूर उपलब्ध नाही ","noDataFound":"माहिती सापडली नाही ","offline":"आपण ऑफलाईन आहात ","onDiksha":"वर {instance} वर ","online":"तुम्ही ऑनलाईन आहात ","opndbtch":"चलत बॅचेस  ","orgCode":"संस्थेचा कोड","orgId":"संस्थेची ID ","orgType":"Org प्रकार ","organization":"संस्था ","orgname":"संस्थेचे नाव ","orgtypes":"संस्थेचा प्रकार ","originalAuthor":"मूळ लेखक ","otpMandatory":"OTP अनिवार्य आहे ","otpSentTo":"... वर OTP पाठवला गेला आहे ","otpValidated":"OTP यशस्वीरीत्या प्रस्थापित केलेला आहे","ownership":"अधिकार ","participants":"सहभागी ","password":"पासवर्ड ","passwordMismatch":"पासवर्ड जुळत नाही, कृपया योग्य पासवर्ड टाका ","pdfcontents":"Pdf  मजकूर ","percentage":"टक्केवारी ","permanent":"कायमस्वरूपी ","phone":"फोन नंबर ","phoneNumber":"फोन नंबर ","phoneOrEmail":"फोन नंबर किंवा ई-मेल ID टाका ","phoneRequired":"फोनची आवश्यकता आहे ","phoneVerfied":"फोन नंबर प्रस्थापित ","phonenumber":"फोन नंबर ","pincode":"पिन कोड ","playContent":"मजकूर प्ले करा ","plslgn":"हे सत्र संपले आहे. ${instance} वापरून सत्र सुरू ठेवण्यास पुन्हा लॉगिन करा.","position":"स्थिती ","preferredLanguage":"पसंतीची भाषा ","previous":"मागील ","processid":"प्रक्रिया ID","profilePopup":"तुमच्या विषयाशी संबंधित मजकूर मिळवण्यासाठी, खालील तपशील उपडेट करा :","provider":"OrgProvider","publicFooterGetAccess":"DIKSHA व्यासपीठाद्वारे शिक्षक, पालक व विद्यार्थ्यांना शाळेच्या निर्धारित अभ्यासक्रमाशी निगडित असे अभ्यासाचे साहित्य मनोरंजक पद्धतीने उपलब्ध करून दिले जाते.  अभ्यासाचे पाठ सुसाध्य करण्यासाठी, DIKSHA app डाउनलोड करून तुमच्या पाठ्यपुस्तकातील QR code स्कॅन करा.","publishedBy":"प्रकाशक ","publishedOnInstanceName":"{instance} रोजी ... कडून प्रकाशित ","reEnterPassword":"पासवर्ड पुन्हा टाका ","readless":"कमी वाचा ...","readmore":"... अधिक वाचा ","receiveOTP":"आपण OTP कुठे घेऊ इच्छिता?","recoverAccount":"अकाउंट परत मिळवा ","redirectMsg":"हा मजकूर बाहेर होस्ट केलेला आहे ","redirectWaitMsg":"कृपया मजकूर लोड होईपर्यंत थांबा ","removeAll":"सर्व रद्द करा ","reportUpdatedOn":"रिपोर्ट शेवटी या दिवशी अपडेट केला होता:","resendOTP":"OTP पुन्हा पाठवा ","resentOTP":"OTP पुन्हा पाठवलेला आहे.  OTP टाका.","resourcetype":"संसाधन प्रकार ","retired":"निवृत्त ","returnToCourses":"पुन्हा अभ्यासक्रमाकडे वळा ","role":"भूमिका ","roles":"भूमिका ","rootOrg":"Root Org ","sameEmailId":"आपल्या वैयक्तिक माहितीबरोबर जोडलेला ई-मेल ID हाच आहे ","samePhoneNo":"आपल्या वैयक्तिक माहितीबरोबर जोडलेला मोबाईल नंबर हाच आहे ","school":"शाळा ","search":"शोध घ्या ","searchForContent":"सहा अंकी QR कोड टाका","searchUserName":"वापरकर्त्याचे नाव शोधा ","seladdresstype":"पत्त्याच्या प्रकार निवडा ","selectAll":"सर्व सिलेक्ट करा ","selectBlock":"ब्लॉक निवडा ","selectDistrict":"जिल्हा निवडा ","selectSchool":"शाळा निवडा ","selectState":"राज्य निवडा ","selected":"सिलेक्ट केलेले ","selectreason":"एक कारण निवडा ","sesnexrd":"सत्र संपले ","setRole":"वापरकर्त्याच्या माहितीत फेरबदल ","share":"सामायिक करा ","sharelink":"लिंक शेअर करा ","showLess":"कमी दाखवा ","showingResults":"निकाल दाखवत आहोत ","showingResultsFor":"{searchString} यासाठी मजकूर दाखवत आहोत - ","signUp":"साइन अप करा","signinenrollHeader":"कोर्स नोंदणीकृत वापरकर्त्यांसाठी आहेत. प्रवेश मिळवण्यासाठी साईन ईन करा.","signinenrollTitle":"या कोर्ससाठी नोंदणी करण्यासाठी साइन इन करा ","skillTags":"क्षमता सूचि ","sltBtch":"पुढे जाण्यासाठी कृपया एक बॅच निवडा ","socialmedialinks":"सोशल मीडिया लिंक्स ","sortby":"वर्गीकरण करा ","startExploringContent":"QR कोड टाकून मजकूर शोधण्यास सुरू करा ","startExploringContentBySearch":"शोध पर्याय किंवा QR कोड वापरून मजकूर शोधा ","startdate":"सुरुवात तारीख ","state":"राज्य ","stateRecord":"सरकारी नोंदीप्रमाणे ","subject":"विषय ","subjects":"विषय ","subjectstaught":"शिकवलेले विषय ","submitOTP":"OTP नमूद करा ","subtopic":"उप-विषय ","successres":"प्रगती दाखला ","summary":"सारांश ","supportedLanguages":"साधार भाषा -","tableNotAvailable":"हा मजकूर तक्त्यात मांडलेला नाही ","takenote":"नोट घ्या ","tcfrom":"यांच्याकडून ","tcno":"नाही ","tcto":"प्रति ","tcyes":"हो ","tenDigitPhone":"१० आकडी फोन नंबर ","termsAndCond":"नियम व अटी ","termsAndCondAgree":"वापर अटी व शर्तींना माझी मान्यता आहे ","theme":"थीम","title":"शीर्षक ","toTryAgain":"पुन्हा प्रयत्न करण्यासाठी ","topic":"विषय ","topics":"विषय ","trainingAttended":"किती प्रशिक्षणांना उपस्थित ","twitter":"ट्विटर ","unableToUpdateEmail":"ई-मेल ID अपडेट करण्यास असमर्थ?","unableToUpdateMobile":"मोबाईल नंबर अपडेट करण्यास असमर्थ?","unableToVerifyEmail":"ई-मेल ID प्रस्थापित करू शकत नाही?","unableToVerifyPhone":"फोन नंबर प्रस्थापित करण्यास असमर्थ? ","unenrollMsg":"आपल्याला निश्चित या बॅचमधून नोंदणी रद्द करायची आहे का?","unenrollTitle":"बॅच नोंदणी रद्द ","uniqueEmail":"आपला ई-मेल ID आधीच नोंदवलेला आहे ","uniqueEmailId":"हा ई-मेल ID आधीच नोंदवलेला आहे. दुसरा ई-मेल ID टाका ","uniqueMobile":"हा मोबाईल नंबर आधीच नोंदवलेला आहे. दुसरा मोबाईल नंबर टाका.","uniquePhone":"आपला फोन नंबर आधीच नोंदवलेला आहे ","updateEmailId":"ई-मेल ID अपडेट करा ","updatePhoneNo":"मोबाईल नंबर अपडेट करा ","updatecollection":"सर्व अपडेट करा ","updatecontent":"मजकूर अपडेट करा ","updatedon":"अपडेट केल्याची तारीख ","updateorgtype":"संस्थेचा प्रकार अपडेट करा ","upldfile":"अपलोड केलेली फाईल","uploadContent":"मजकूर अपलोड करा ","uploadEcarFromPd":"आपल्या पेन ड्राईव्ह वरून {instance} फाईल्स (उदा:- MATHS_01.ecar) अपलोड करा ","userFilterForm":"वापरकर्ते शोधा ","userID":"UserID ","userId":"वापरकर्ता ID ","userType":"वापरकर्ता प्रकार ","username":"वापरकर्त्याचे नाव","validEmail":"वैध ई-मेल ID टाका ","validFor":"३० मिनिटांसाठी वैध ","validPassword":"वैध पासवर्ड टाका ","validPhone":"१० आकडी वैध फोन नंबर टाका ","verifyingCertificate":"आपले प्रमाणपत्र प्रस्थापित करत आहोत","versionKey":"आवृत्ती -","videos":"व्हिडिओ ","view":"पहा ","viewless":"मोजके पहा ","viewmore":"अधिक पहा ","viewworkspace":"आपला कार्यकक्ष पहा ","watchCourseVideo":"व्हिडिओ पहा ","watchVideo":"व्हिडिओ पहा","whatsQRCode":"QR कोड म्हणजे काय?","whatwentwrong":"काय चूक झाली?","whatwentwrongdesc":"काय चूक झाली ते आम्हाला कळवावे. निश्चित कारणे नमूद करावीत, जेणेकरून आम्ही लवकरात लवकर या समस्येचा आढावा घेऊ शकू. आपल्या प्रतिसादासाठी आभार!  ","willsendOTP":"आम्ही आपल्याला एक OTP पाठवू, आणि OTP प्रस्थापित झाल्यानंतर आपण आपला अकाउंट परत मिळवू शकाल.","worktitle":"व्यवसाय / कार्यक्षेत्र ","wrongEmailOTP":"तुम्ही चुकीचा OTP टाकला आहे. कृपया तुमच्या ई-मेल ID वर आलेला  OTP टाकावा. हा OTP केवळ ३० मिनिटे वैध राहील.","wrongPhoneOTP":"तुम्ही चुकीचा OTP टाकला आहे. कृपया आपल्या फोन नंबरवर पाठवलेला OTP टाका. हा OTP केवळ ३० मिनिटे स्वीकार्य राहील.","yop":"उत्तीर्ण होण्याचे साल ","indPhoneCode":91,"manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","noCreditsAvailable":"No credits available","errorMessage":"Error message","externalId":"External Id","lang":"Language","recentlyAdded":"Recently Added","contentType":"Content Type","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","releaseDateKey":"Release Date:","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from"},"btn":{"add":"जोडा ","addToLibrary":"'माझी लायब्ररी' मध्ये डाउनलोड करा  ","addedToLibrary":"लायब्ररीमध्ये जोडले","addingToLibrary":"लायब्ररी मध्ये समाविष्ट करत आहोत ","apply":"लागू करा ","browse":"ऑनलाईन ब्राऊज करा ","cancel":"रद्द करा ","cancelCapitalize":"रद्द करा ","clear":"मोकळे करा ","close":"बंद करा","contentImport":"फाइल्स अपलोड करा ","copyLink":"लिंक कॉपी करा ","create":"निर्माण करा ","download":"डाउनलोड ","downloadCertificate":"प्रमाणपत्र डाउनलोड करा ","downloadCompleted":"डाउनलोड पूर्ण ","downloadDikshaForWindows":"विंडोजसाठी डाउनलोड करा (६४-bit)","downloadFailed":"डाउनलोड अयशस्वी ","downloadInstruction":"डाउनलोडसाठी सूचना पहा ","downloadManager":"माझे डाऊनलोड्स","downloadPdf":"मदत","downloadPending":"डाउनलोड अपूर्ण ","edit":"बदल करा ","enroll":"नाव नोंदवा ","export":"पेन ड्राइव्हवर कॉपी करा","login":"लोग ईन","merge":"एकत्र करा ","myLibrary":"माझी लायब्ररी ","next":"पुढील ","no":"नाही ","ok":"चालेल ","previous":"मागील ","remove":"काढून टाका ","reset":"रीसेट करा ","resume":"पुन्हा सुरू करा ","resumecourse":"कोर्स पुन्हा सुरु करा ","save":"जतन करा ","selectContentFiles":"फाईल (एक/अनेक) निवडा ","selectLanguage":"भाषा निवडा ","selrole":"भूमिका निवडा ","signin":"साईन ईन करा ","signup":"Sign Up ","smplcsv":"CSV नमूना डाउनलोड करा ","submit":"दाखल करा ","submitbtn":"सबमिट करा ","tryagain":"पुन्हा प्रयत्न करा ","unenroll":"नोंदणी रद्द ","update":"अपडेट ","uploadorgscsv":"संस्थांची csv फाईल अपलोड करा ","uploadusrscsv":"वापरकर्त्यांची csv  फाईल अपलोड करा ","verify":"प्रस्थापित करा ","viewCourseStatsDashboard":"कोर्सचा फलक पहा ","viewcoursestats":"अभ्यासक्रमाची सांख्यिकी माहिती ","viewless":"कमी पहा ","viewmore":"अधिक पहा ","yes":"हो ","yesiamsure":"चालेल ","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"स्त्री ","male":"पुरुष ","transgender":"तृतीयपंथी "},"instn":{"t0002":"आपण एका वेळी एका csv file मध्ये  १९९ पर्यंत संस्थांचे तपशील जोडू किंवा अपलोड करू शकता ","t0007":"OrgName  आवश्यक आहे. त्या जागेत संस्थेचे नाव टाकावे.","t0011":"Process ID द्वारे आपण प्रगती जोखू शकता ","t0012":"कृपया तुमच्या सोयीसाठी प्रोसेस ID जतन करा. प्रोसेस ID वरून तुम्ही तुमची प्रगती जोखू शकता.","t0013":"संदर्भासाठी csv फाईल डाउनलोड करा ","t0015":"संस्था अपलोड करा ","t0016":"वापरकर्त्यांची नावे अपलोड करा ","t0020":"कौशल्य जोडण्यासाठी टाईप करण्यास सुरुवात करा ","t0021":"प्रत्येक संस्थेचे नाव वेगळ्या ओळीत टाकावे","t0022":"इतर सर्वे तपशील भरणे ऐच्छिक आहे:","t0023":"isRootOrg : याचे योग्य पर्याय 'आहे ' अथवा 'नाही'.","t0024":"channel: प्रमुख संस्था निर्मितीच्या वेळी दिला गेलेला खास ID ","t0025":"बाह्य ID : प्रशासकीय संस्थेच्या यादीत असलेल्या प्रत्येक संस्थेशी निगडित एक खास ID ","t0026":"provider: प्रशासक संस्थेचा Channel ID","t0027":"वर्णन : संस्थेची माहिती देणारे तपशील ","t0028":"मुख्यपृष्ठ URL: संस्थेच्या मुख्यपृष्ठाचे URL","t0029":"orgCode: संस्थेचा खास कोड असल्यास, तो कोड ","t0030":"org Type: संस्थेचा प्रकार, उदा: NGO, प्राथमिक शाळा, माध्यमिक शाळा इ. ","t0031":"प्रमुख भाषा: संस्थेच्या कामासाठी प्रामुख्याने वापरल्या जाणाऱ्या भाषा (जर असल्या तर)","t0032":"संपर्क तपशील: संस्थेचा फोन नंबर आणि ई-मेल ID. तपशील कर्ली ब्रॅकेटच्या आत, एकल उद्गारवाचक चिन्हात टाकलेले असावेत. उदा: [{'फोन नंबर': '१२३४५६७८९०'}]","t0049":"'RootOrg आहे का ' याचे उत्तर 'हो' असेल, तर चॅनेल भरणे आवश्यक आहे.  ","t0050":"externalId व प्रदाता एकमेकांसाठी आवश्यक आहेत ","t0055":"अरेच्च्या! घोषणेचे तपशील सापडत नाहीत!","t0056":"कृपया पुन्हा प्रयत्न करा ","t0058":"म्हणून डाउनलोड करा ","t0059":"CSV ","t0060":"आभारी आहोत!","t0061":"अरेच्च्या ...","t0062":"या  कोर्ससाठी तुम्ही अजून बॅच तयार केलेली नाही. नवीन बॅच तयार करा व पुन्हा फलक तपासा.","t0063":"तुम्ही अजून कोणताही कोर्स तयार केलेला नाही. नवीन कोर्स तयार करा व पुन्हा फलक चेक करा. ","t0064":"एकाच प्रकारावर अनेक पत्ते select केले गेले आहेत. कृपया एकच निवडून त्यात बदल करा.","t0065":"डाउनलोड ","t0070":"csv फाईल डाउनलोड करा. एका संस्थेचे वापरकर्ते एकाच वेळी एका csv फाईल मध्ये अपलोड केले जाऊ शकतात.","t0071":"वापर खात्यांचे खालील आवश्यक तपशील भरा:","t0072":"नाव: वापरकर्त्याचे  पहिले नाव, वर्णमाला  ","t0073":"फोन किंवा ई-मेल : वापरकर्त्याच्या मोबाइल नंबर (१० आकड्यांचा) किंवा ई-मेल ID . दोन्हीपैकी किमान एक नोंदवणे अनिवार्य आहे, परंतु, शक्य असल्यास दोन्ही द्यावे .","t0074":"Username : संस्थेने वापरकर्त्याला दिलेले खास नाव, ज्यात अक्षरे व संख्या दोन्हीचा समावेश असेल.","t0076":"टीप: CSV file मधील इतर सर्व स्तंभ ऐच्छिक आहेत. ते भरण्यास, तपशीलवार माहितीसाठी {%s} पहा ","t0077":"वापरकर्त्यांची नावे नोंदवा.","t0078":"locationId : विशिष्ट संस्थेच्या घोषणेचा विषय दर्शवणारा खास ID ","t0079":"स्थानिक कोड : दोन कोडच्या मध्ये स्वल्पविराम टाकून सर्व स्थानिक कोड लिहा.","t0081":"DIKSHA वर साइन उप करण्यासाठी आभार. आम्ही पडताळणीसाठी  SMS द्वारे OTP पाठवत आहोत. OTP द्वारे आपला फोन नंबर प्रस्थापित करून नोंदणी प्रक्रिया पूर्ण करावी . ","t0082":"DIKSHA वर साइन उप करण्यासाठी आभार. आम्ही पडताळणीसाठी तुमच्या email वर OTP पाठवला आहे. OTP द्वारे आपला email ID प्रस्थापित करून नोंदणी प्रक्रिया पूर्ण करा.","t0083":"आपला मोबाईल नंबर प्रस्थापित करण्यासाठी आपल्याला SMS वरून OTP पाठवला जाईल ","t0084":"तुमची ई-मेल ID प्रस्थापित करण्यासाठी तुमच्या  ई-मेल वर OTP पाठवला जाईल ","t0085":"ह्या रिपोर्टमध्ये पहिल्या १०००० सहभागी जणांची माहिती आहे. बॅच मधल्या सर्व सहभाग्यांची प्रगती पाहण्यासाठी 'डाउनलोड' क्लिक करा. ","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"मजकूर किंवा मथळा शोधा ","t0002":"आपली टिप्पणी जोडा ","t0005":"बॅच प्रशिक्षक निवडा ","t0006":"बॅच सदस्य निवडा "},"lnk":{"announcement":"घोषणा फलक ","assignedToMe":"मला नेमून दिलेले ","contentProgressReport":"मजकूर प्रगती रिपोर्ट ","contentStatusReport":"मजकूर स्थिती रिपोर्ट ","createdByMe":"माझी निर्मिती","dashboard":"प्रशासक फलक","detailedConsumptionMatrix":"तपशीलवार वापर कोष्टक ","detailedConsumptionReport":"तपशीलवार वापराचा रिपोर्ट ","footerContact":"प्रश्नांसाठी संपर्क करा:","footerDIKSHAForMobile":"मोबाइल साठी DIKSHA ","footerDikshaVerticals":"DIKSHA व्हर्टिकल","footerHelpCenter":"मदत केंद्र","footerPartners":"सहकारी ","footerTnC":"वापर अटी ","logout":"लोगआउट करा ","myactivity":"माझे क्रियाकलाप ","profile":"वैयक्तिक माहिती ","textbookProgressReport":"पाठयपुस्तक प्रगती रिपोर्ट ","viewall":"सर्व पहा ","workSpace":"कार्यस्थळ "},"pgttl":{"takeanote":"टिप्पणी घ्या "},"prmpt":{"deletenote":"तुम्हाला नक्की हा मजकूर हटवाायचा आहे का?","enteremailID":"तुमचा ई-मेल ID टाका ","enterphoneno":"१० आकडी फोन नंबर टाका ","search":"शोध घ्या ","userlocation":"स्थान "},"scttl":{"blkuser":"वापरकर्त्याला ब्लॉक करा ","contributions":"योगदान ","instructions":"सूचना:","signup":"नोंदणी करा ","todo":"अपूर्ण उपक्रम ","error":"Error:"},"snav":{"shareViaLink":"लिंक द्वारे शेअर केले आहे ","submittedForReview":"समीक्षणासाठी सादर केले आहे "},"tab":{"all":"सर्व ","community":"गट ","courses":"अभ्यासक्रम ","help":"सहाय्य ","home":"मुख्यपृष्ठ ","profile":"वैयक्तिक माहिती ","resources":"पुस्तकालय ","users":"वापरकर्ते ","workspace":"कार्यस्थळ ","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"अभ्यासक्रम संपला ","messages":{"emsg":{"m0001":"आम्ही या क्षणी नोंदणी करू शकत नाही. नंतर प्रयत्न करा. ","m0003":"प्रदाता व बाह्य ID किंवा संस्थेचा ID टाकणे अपेक्षित आहे ","m0005":"काहीतरी गडबड झाली, कृपया काही वेळाने पुन्हा प्रयत्न करा...","m0007":"आकारमान ... पेक्षा लहान हवे ","m0008":"मजकूर कॉपी करण्यास असमर्थ. कृपया नंतर प्रयत्न करा ","m0009":"नोंदणी आत्ता रद्द होऊ शकत नाही. नंतर प्रयत्न करा ","m0014":"मोबाईल नंबर अपडेट करण्यास असमर्थ ","m0015":"ई-मेल ID अपडेट करण्यास असमर्थ ","m0016":"राज्य दाखवण्यास असमर्थ. नंतर प्रयत्न करा ","m0017":"जिल्हे दाखवण्यास असमर्थ. नंतर प्रयत्न करा ","m0018":"वैयक्तिक माहिती अपडेट करण्यास असमर्थ","m0019":"रिपोर्ट डाउनलोड करण्यास असमर्थ, नंतर पुन्हा प्रयत्न करा ","m0020":"वापरकर्ता अपडेट होऊ शकले नाही. नंतर पुन्हा प्रयत्न करा ","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"नोंदणीकृत अभ्यासक्रम दाखवण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा...","m0002":"इतर कोर्स दाखवण्यास असमर्थ, नंतर प्रयत्न करा ...","m0003":"कोर्सचे वेळापत्रक दाखवण्यास असमर्थ ","m0004":"डेटा दाखवण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा...","m0030":"नोट निर्मिती करण्यास असमर्थ, नंतर पुन्हा प्रयत्न करा ...","m0032":"नोट काढून टाकण्यास असमर्थ, नंतर पुन्हा प्रयत्न करा... ","m0033":"नोट दाखवण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा ","m0034":"नोट उपडेट करण्यास असमर्थ, नंतर पुन्हा प्रत्यत्न करा ...","m0041":"शिक्षण माहिती काढून टाकण्यास असमर्थ. कृपया नंतर पुन्हा प्रयत्न करा...","m0042":"अनुभव माहिती हटवण्सया अयशस्वी. कृपया नंतर प्रयत्न करा... ","m0043":"पत्ता काढून टाकण्यास असमर्थ. कृपया नंतर पुन्हा प्रयत्न करा ...","m0048":"वापरकर्त्यांची वैयक्तिक माहिती अपडेट करण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा... ","m0049":"मजकूर अपलोड करण्यास असमर्थ आहोत.","m0050":"मागणी दाखल करण्यास असमर्थ, नंतर पुन्हा प्रयत्न करा...","m0051":"काहीतरी गडबड झाली, कृपया नंतर पुन्हा प्रयत्न करा...","m0054":"बॅच तपशील आणण्याचा प्रयत्न अयशस्वी. कृपया नंतर प्रयत्न करा...","m0056":"वापरकर्त्यांची यादी दाखवण्यास असमर्थ आहोत, कृपया नंतर प्रयत्न करा...","m0076":"कृपया आवश्यक जागा भरा ","m0077":"सर्च परिणाम दाखवण्यास असमर्थ...","m0079":"बॅज नियुक्त करण्यास असमर्थ आहोत, कृपया नंतर पुन्हा प्रयत्न करा...","m0080":"बॅज दाखवण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा ...","m0082":"हा कोर्स अजून नोंदणीसाठी उपलब्ध नाही ","m0085":"काहीतरी तांत्रिक गडबड झाली. पुन्हा प्रयत्न करा.","m0086":"हा अभ्यासक्रम निर्मात्याने गैरलागू केला असल्याने, तो आता उपलब्ध नाही.","m0087":"कृपया थांबा.","m0088":"आम्ही तपशील आणत आहोत ","m0089":"कोणतेही विषय / उपविषय सापडले नाहीत ","m0090":"डाउनलोड करू शकलो नाही. नंतर पुन्हा प्रयत्न करा","m0091":"मजकूर कॉपी करण्यास असमर्थ. नंतर पुन्हा प्रयत्न करा ","m0093":"{FailedContentLength} मजकूर उपलोड करण्यास अयशस्वी ","m0094":"प्रमाणपत्र डाउनलोड अयशस्वी, नंतर पुन्हा प्रयत्न करा...","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"हा अभ्यासक्रम अनुचित म्हणून ध्वजांकित केलेला असून, आम्ही या वेळी त्याचा आढावा घेत आहोत. ","m0005":"कृपया योग्य प्रतिमा फाईल अपलोड करा. स्वीकार्य प्रतिमा फाईल चे प्रकार: jpeg, jpg, png. कमाल साईझ: ४ MB.","m0017":"वैयक्तिक माहितीची पूर्तता ","m0022":"मागील ७ दिवसांची आकडेवारी ","m0023":"मागील १४ दिवसांची आकडेवारी ","m0024":"मागील ५ आठवड्यांची आकडेवारी ","m0025":"प्रथम पासूनची आकडेवारी ","m0026":"नमस्कार, हा कोर्स सध्या उपलब्ध नाही. निर्मात्याने या कोर्समध्ये काही बदल केल्याची शक्यता आहे.","m0027":"नमस्कार, हा मजकूर सध्या उपलब्ध नाही. निर्मात्याने या मजकुरात काही बदल केले असल्याची शक्यता आहे.","m0034":"मजकूर बाहेरून आलेला असल्यास, तो कालांतराने उघडला जाईल. ","m0035":"अनधिकृत प्रवेश ","m0036":"हा मजकूर बाह्य क्षेत्रातला आहे, तो पाहण्यासाठी कृपया 'पूर्वावलोकन' क्लिक करा ","m0040":"कार्यवाही अजून चालू आहे. कृपया काही वेळाने प्रयत्न करा.","m0041":"आपली वैयक्तिक माहिती ","m0042":"% पूर्ण ","m0043":"आपल्या वैयक्तिक माहितीवर वैध ई-मेल ID नाही. कृपया आपली ई-मेल ID अपडेट करा.","m0044":"डाउनलोड अयशस्वी!","m0045":"डाउनलोड अयशस्वी झालेला आहे. थोड्या वेळाने पुन्हा प्रयत्न करा ","m0047":"आपण फक्त १०० सहभागी निवडू शकता ","m0060":"आपले {instance} कडे दोन अकाउंट असल्यास, इथे क्लिक करा ","m0061":"प्रति ","m0062":"नाहीतर, क्लिक करा ","m0063":"दोन्ही अकाउंटचे वापर तपशील एकत्र करा, आणि  ","m0064":"दुसरा अकाउंट रद्द करा ","m0065":"अकाउंट एकत्र करण्याची क्रिया यशस्वीरीत्या सुरु झाली आहे ","m0066":"हे पूर्ण होताच आपल्याला कळवले जाईल ","m0067":"अकाउंट एकत्र करण्यास सुरुवात झालेली नाही. कृपया नंतर पुन्हा प्रयत्न करा ","m0072":"एंटर केलेला पासवर्ड चुकीचा असल्याने अकाउंट एकत्र करू शकत नाही.","m0073":"नवीन {instance} अकाउंट निर्माण करण्यासाठी OK क्लिक करा.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"मजकूर यशस्वीरित्या तयार झाला आहे...","m0013":"नोट यशस्वीरित्या अपडेट केली गेली आहे...","m0014":"शिक्षण यशस्वीरित्या रद्द केले आहे ","m0015":"अनुभव यशस्वीरित्या काढून टाकलेला आहे ","m0016":"पत्ता यशस्वीरित्या  रद्द केला आहे ","m0018":"वैयक्तिक प्रतिमा यशस्वीरित्या अपडेट केली आहे ","m0019":"माहिती यशस्वीरित्या उपडेट केली आहे ","m0020":"शिक्षणाची माहिती यशस्वीरित्या अपडेट केलेली आहे  ","m0021":"अनुभव यशस्वीरित्या अपडेट केला आहे ","m0022":"अतिरिक्त माहिती यशस्वीरित्या उपडेट केली आहे ","m0023":"पत्ता यशस्वीरित्या अपडेट केला गेला आहे ","m0024":"नवीन शिक्षण माहिती यशस्वीरित्या जोडली गेली आहे ","m0025":"नवीन अनुभव यशस्वीरित्या जोडलेला आहे ","m0026":"नवीन पत्ता यशस्वीरित्या जोडलेला आहे ","m0028":"भूमिका यशस्वीरित्या उपडेट केल्या आहेत ","m0029":"वापरकर्त्याच्या नाव यशस्वीरित्या रद्द केले आहे ","m0030":"वापरकर्त्यांची नावे यशस्वीरित्या अपलोड केली आहेत ","m0031":"संस्थांची नावे यशस्वीरित्या अपलोड केली आहेत ","m0032":"स्टेटस यशस्वीरित्या लागू केलेले आहे ","m0035":"Org प्रकार यशस्वीरित्या जोडला गेला आहे ","m0036":"या बॅचसाठी कोर्सची यशस्वीरित्या नोंदणी झालेली आहे","m0037":"यशस्वीरित्या उपडेट केले आहे ","m0038":"क्षमता - यादी यशस्वीरित्या अपडेट केलेली आहे ","m0039":"साईन अप यशस्वी,  लोग ईन करा... ","m0040":"वैयक्तिक माहितीची दर्शमानता यशस्वीरित्या अपडेट केली आहे  ","m0042":"मजकूर यशस्वीरित्या कॉपी झालेला आहे ","m0043":"समर्थन यशस्वी ","m0044":"बॅज यशस्वीरित्या नियुक्त्त केला गेला आहे ","m0045":"वापरकर्त्याची बॅचमधील नोंदणी यशस्वीरित्या रद्द केलेली आहे ","m0046":"वैयक्तिक माहिती यशस्वीरित्या अपडेट केली आहे...","m0047":"आपला मोबाईल नंबर अपडेट झालेला आहे ","m0048":"आपला ई-मेल ID अपडेट झालेला आहे ","m0049":"वापरकर्त्याची माहिती यशस्वीरित्या अपडेट केली आहे","m0050":"हा मजकूर रेट करण्यासाठी धन्यवाद!","m0053":"डाउनलोड चालू आहे...","m0054":"{UploadedContentLength} मजकूर यशस्वीरीत्या अपलोड केलेला आहे ","m0055":"अपडेट होत आहे...","m0056":"मजकूर अपडेट करण्यासाठी आपण ऑनलाइन असणे आवश्यक आहे ","moo41":"घोषणा यशस्वीरित्या रद्द केली आहे ","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"कोणतेही परिणाम सापडले नाहीत ","m0007":"वेगळे काहीतरी शोधा ","m0008":"जुळणारे परिणाम नाहीत ","m0009":"सुरू करण्यास असमर्थ, कृपया पुन्हा प्रयत्न करा अथवा बंद करा.","m0022":"तुमचा एखादा मसुदा समीक्षेसाठी सादर करा. समीक्षेनंतरच मजकूर प्रकाशित केला जाईल.","m0024":"लेख, व्हिडिओ किंवा तत्सम कुठलाही समर्थित स्वरूपातील मजकूर अपलोड करा. तुम्ही अजून काहीच अपलोड केलेले नाही.","m0033":"आपला एखादा मसुदा तपासणीसाठी सादर करा. आपण अजून कुठलाही मजकूर तपासणीसाठी  दिलेला नाही.","m0035":"समीक्षेसाठी कोणताही मजकूर नाही.","m0060":"आपली वैयक्तिक माहिती अधिक सशक्त करा ","m0062":"योग्य पदवी टाका ","m0063":"तुमच्या वैध पत्त्याची पहिली ओळ लिहा  ","m0064":"शहराचे नाव लिहा  ","m0065":"योग्य पिन कोड टाका ","m0066":"नाव टाका ","m0067":"कृपया योग्य फोन नंबर टाका ","m0069":"भाषा निवडा ","m0070":"संस्थेचे नाव टाका ","m0072":"वैध कार्यक्षेत्र / पदनाम  टाका","m0073":"वैध संस्थेचे नाव टाका ","m0077":"आम्ही आपली मागणी सादर करीत आहोत ...","m0080":"कृपया फाईल csv format मध्येच upload करा ","m0081":"कोणत्याही बॅचेस सापडल्या नाहीत ","m0083":"आपण अजून आपला मजकूर सामायिक केलेला नाही ","m0087":"कृपया योग्य वापरकर्त्याचे नाव टाका, त्यात किमान ५ वर्ण असले पाहिजेत","m0088":"वैध पासवर्ड लिहा  ","m0089":"कृपया वैध ई-मेल ID टाका ","m0090":"कृपया भाषा निवडा ","m0091":"कृपया वैध फोन नंबर टाका ","m0094":"कृपया योग्य टक्केवारी टाका ","m0095":"तुमची मागणी आमच्यापर्यंत पोचली आहे. तुमच्या नोंदवलेल्या ई-मेल पत्त्यावर नंतर  फाईल पाठवली जाईल. कृपया तुमची ई-मेल नेमाने तपासा.","m0104":"योग्य ईयत्ता टाका ","m0108":"आपली प्रगती ","m0113":"वैध आरंभ तारीख टाका","m0116":"निवडलेला मजकूर हटवला जात आहे...","m0120":"दाखवण्यासाठी कोणताही मजकूर नाही ","m0121":"मजकूर अजून जोडलेला नाही ","m0122":"ह्या QR कोड साठी आपले राज्य लवकरच मजकूर जोडत आहे. मजकूर लवकरच उपलब्ध होईल.","m0123":"एखाद्या मित्राला तुम्हाला 'सहकरी' म्हणून जोडण्याची विनंती करा. तुम्हाला ई-मेल द्वारे याची नोंद पाठवली जाईल.","m0125":"संसाधन, पुस्तक, अभ्यासक्रम, संचय अथवा अपलोड निर्माण करण्यास सुरुवात करा. सध्या तुमच्याकडे कोणताही 'काम-चालू-आहे' असा मसुदा नाही.","m0126":"कृपया बोर्ड निवडा ","m0127":"कृपया माध्यम निवडा ","m0128":"कृपया इयत्ता निवडा ","m0129":"अटी व नियम लोड करत आहोत","m0130":"जिल्हे दाखवत आहोत ","m0131":"कुठलेही रिपोर्ट सापडले नाहीत ","m0132":"तुमची विनंती आम्हाला पोचली आहे. तुमच्या अधिकृत ई-मेल ID वर लवकरच फाईल पाठवली जाईल.","m0133":"ब्राउझ करा आणि डाउनलोड करा किंवा डेस्कटॉप ऍप वापरण्यास मजकूर अपलोड करा","m0134":"नोंदणी ","m0135":"योग्य तारीख टाका ","m0136":"नोंदणीसाठी शेवटची तारीख:","m0138":"अयशस्वी ","m0139":"डाउनलोड झाले आहे ","m0140":"डाउनलोड होत आहे ","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"}},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"orgname","participants":"सहभागी ","resourceService":{"frmelmnts":{"lbl":{"userId":"वापरकर्त्याची ID "}}},"t0065":"फाईल डाउनलोड करा "},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","courseName":"Course Name","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","disablePopupText":"This content can not be deleted","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","submittedForReview":"Submitted for review","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","shareViaLink":"Shared via link","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid start date","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
+{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"बॅचसाठी  एकाही सहभाग्याची नोंदणी नाही ","Mobile":"मोबाईल ","SearchIn":"{searchContentType} मध्ये शोधा  ","Select":"निवडा ","aboutthecourse":"अभ्यासक्रमाची माहिती ","active":"सक्रिय ","addDistrict":"जिल्हा जोडा ","addEmailID":"ई-मेल आयडी जोडा ","addPhoneNo":"मोबाइल नंबर जोडा ","addState":"राज्य जोडा ","addlInfo":"अतिरिक्त माहिती ","addnote":"नोट्स घ्या ","addorgtype":"संस्थेचा प्रकार जोडा ","address":"पत्ता","addressline1":"पत्त्याची पहिली ओळ ","addressline2":"पत्त्याची दुसरी ओळ ","anncmnt":"घोषणा ","anncmntall":"सर्व घोषणा ","anncmntcancelconfirm":"आपल्याला निश्चित ही घोषणा दाखवणे थांबवायचे आहे का?","anncmntcancelconfirmdescrption":"या कृतीनंतर वापरकर्त्यांना ही घोषणा दिसणार नाही ","anncmntcreate":"घोषणा तयार करा ","anncmntdtlsattachments":"पुरवण्या ","anncmntdtlssenton":"या रोजी पाठवले ","anncmntdtlsview":"पहा","anncmntdtlsweblinks":"वेबलिंक्स ","anncmntinboxannmsg":"घोषणा ","anncmntinboxseeall":"सर्व पहा ","anncmntlastupdate":"शेवटचा वापर तपशील उपडेट केलेली तारीख","anncmntmine":"माझ्या घोषणा ","anncmntnotfound":"घोषणा आढळल्या नाहीत ! ","anncmntoutboxdelete":"काढून टाका ","anncmntoutboxresend":"पुन्हा पाठवा ","anncmntplzcreate":"कृपया घोषणा तयार करावी ","anncmntreadmore":"...पुढे वाचा ","anncmntsent":"सर्व पाठवलेल्या घोषणा दाखवत आहोत ","anncmnttblactions":"कृती ","anncmnttblname":"नाव ","anncmnttblpublished":"प्रकाशित ","anncmnttblreceived":"आलेले ","anncmnttblseen":"पाहिलेले ","anncmnttblsent":"पाठवलेले ","attributions":"पत","author":"निर्माता ","badgeassignconfirmation":"आपण निश्चित या मजकूरास हा बिल्ला देऊ इच्छिता?","batchdescription":"बॅचची माहिती ","batchdetails":"बॅचचे तपशील ","batchenddate":"अंतिम तारीख ","batches":"बॅचेस ","batchmembers":"बॅचचे सभासद ","batchstartdate":"आरंभ तारीख ","birthdate":"जन्मतारीख (dd /mm /yyyy )","block":"ब्लॉक ","blocked":"अवरोधित ","blockedUserError":"वापरकर्त्याच्या खाते ब्लॉक केले आहे. कृपया ऍडमिनशी संपर्क साधावा.","blog":"Blog","board":"बोर्ड / विद्यापीठ","boards":"बोर्ड","browserSuggestions":"अधिक चांगल्या अनुभवासाठी, अपग्रेड किंवा इन्स्टॉल करा ","certificateIssuedTo":"... यांना प्रमाणपत्र दिले जात आहे ","certificatesIssued":"प्रमाणपत्र दिलेली आहेत ","certificationAward":"प्रमाणपत्रके व पुरस्कार ","channel":"चॅनेल ","chkuploadsts":"अपलोड स्टेटस तपासा ","chooseAll":"सर्व पर्याय निवडा ","city":"गाव / शहर ","class":"इयत्ता ","classes":"वर्ग ","clickHere":"इथे क्लिक करा ","completed":"पूर्ण ","completedCourse":"अभ्यासक्रम पूर्ण झाला ","completingCourseSuccessfully":"अभ्यासक्रम यशस्वीरीत्या पूर्ण करण्यासाठी,","concept":"संकल्पना ","confirmPassword":"पासवर्ड निश्चित करा ","confirmblock":"{%s} यांना अवरोधित करायचे आहे का?","connectInternet":"मजकूर ब्राऊज करण्यासाठी, यंत्र इंटरनेटशी जोडा ","contactStateAdmin":"ह्या बॅचमध्ये अधिक सहभागी घालण्यासाठी आपल्या राज्य ऍडमिनशी संपर्क साधा ","contentCredits":"मजकूर श्रेय ","contentcopiedtitle":"हा मजकूर ... इथून उत्पन्न झाला आहे","contentinformation":"मजकूराची माहिती ","contentname":"मजकूर शीर्षक ","contents":"साहित्य ","contentsUploaded":"मजकूर अपलोड होत आहेत ","contenttype":"मजकूर ","continue":"पुढे ","contributors":"सहाय्यक ","copy":"कॉपी ","copyRight":"कॉपीराईट ","copycontent":"मजकूर कॉपी करत आहोत...","country":"देश ","countryCode":"देशाचा code","courseCreatedBy":"निर्माता ","courseCredits":"अभ्यासक्रम श्रेय ","coursecreatedon":"निर्मिती तारीख :","coursestructure":"अभ्यासक्रमाची मांडणी ","createUserSuccessWithEmail":"आपला ई-मेल ID प्रस्थापित केला गेला आहे. पुढे जाण्यासाठी साइन इन करा . ","createUserSuccessWithPhone":"आपला फोन नंबर प्रस्थापित झालेला आहे. पुढे जाण्यासाठी साईन ईन करा.","createdInstanceName":"... ह्यांनी {instance} रोजी निर्माण केले  ","createdon":"निर्मिती तारीख:","creationdataset":"निर्मिती ","creator":"निर्माता ","creators":"निर्माते ","credits":"श्रेयनिर्देश ","current":"सद्यकालीन ","currentlocation":"सद्य स्थान ","curriculum":"अभ्यासक्रम ","dashboardcertificateStatus":"प्रमाणपत्र स्थिती ","dashboardfiveweeksfilter":"मागील ५ आठवडे ","dashboardfourteendaysfilter":"मागील १४ दिवस ","dashboardfrombeginingfilter":"प्रथमपासून ","dashboardnobatchselected":"कोणतीही बॅच निवडलेली नाही","dashboardnobatchselecteddesc":"वरील यादीमधून एक बॅच निवडा ","dashboardnocourseselected":"कोणताही कोर्स निवडलेला नाही!","dashboardnocourseselecteddesc":"कृपया वरील यादीमधून एक कोर्स निवडा ","dashboardnoorgselected":"संस्थेची निवड केली नाही!","dashboardnoorgselecteddesc":"वरीलपैकी एका संस्थेचे नाव निवडा ","dashboardselectorg":"संस्था निवडा ","dashboardsevendaysfilter":"मागील ७ दिवस ","dashboardsortbybatchend":"बॅच संपण्याची तारीख ","dashboardsortbyenrolledon":"नोंदणी तारीख ","dashboardsortbyorg":"संस्था","dashboardsortbystatus":"सद्यस्थिती ","dashboardsortbyusername":"वापरकर्त्याचे नाव ","degree":"डिग्री ","delete":"हटवा","deletenote":"नोट काढून टाका ","description":"वर्णन  ","designation":"हुद्दा ","desktopAppDescription":"डाउनलोड केलेला मजकूर शोधण्यासाठी अथवा इतर यंत्रावरून चालवण्यासाठी, आपल्या यंत्रावर DIKSHA डेस्कटॉप ऍप डाउनलोड करा. DIKSHA डेस्कटॉप ऍप द्वारे आपल्याला मिळेल ","desktopAppFeature001":"विनामूल्य अमर्यादित मजकूर ","desktopAppFeature002":"बहुभाषिक आधार ","desktopAppFeature003":"मजकूर ऑफलाईन चालवा ","deviceId":"यंत्र ID ","dialCode":"QR कोड ","dialCodeDescription":"QR कोड म्हणजे तुमच्या पाठ्यपुस्तकातील QR कोडच्या प्रतिमेखाली आढळणारा ६ आकडी वर्ण-संख्यायुक्त कोड.","dialCodeDescriptionGetPage":"QR कोड हा तुमच्या पाठ्यपुस्तकातील 'QR कोड' आकृतीच्या खाली आढळणारा ६ आकडी अल्फान्यूमेरिक कोड आहे.","dikshaForMobile":"मोबाईलसाठी  DIKSHA","district":"जिल्हा ","dob":"जन्मतारीख ","done":"पूर्ण ","downloadCourseQRCode":"कोर्स डाउनलोड करण्यासाठी QR कोड ","downloadDikshaForMobile":"मोबाईलसाठी DIKSHA ऍप डाउनलोड करा ","downloadDikshaLite":"DIKSHA Lite डेस्कटॉप ऍप डाउनलोड करा ","downloadQRCode":{"tooltip":"अभ्यासक्रमांशी निगडित QR कोड्स डाउनलोड करण्यासाठी इथे क्लिक करा "},"downloadThe":"{%s} म्हणून डाउनलोड करा ","downloadingContent":"{contentName} डाउनलोड करण्याच्या तयारीत...","dropcomment":"टिप्पणी जोडा ","ecmlarchives":"Ecml अभिलेख","edit":"फेरबदल ","editPersonalDetails":"वैयक्तिक तपशीलात बदल करा ","editUserDetails":"वापरकर्त्याच्या तपशीलात फेरबदल करा ","education":"शिक्षण ","eightCharacters":"८ किंवा त्याहून जास्त वर्ण वापरा ","email":"ई-मेल ID ","emailPhonenotRegistered":"{instance} इथे ई-मेल ID / फोन नंबर नोंदवलेला नाही ","emptycomments":"टिप्पण्या नाहीत ","enddate":"शेवट तारीख ","enjoyedContent":"हा मजकूर आवडला?","enrollcourse":"कोर्स साठी नोंदणी करा ","enrollmentenddate":"नोंदणीची अखेरची तारीख ","enterCertificateCode":"इथे प्रमाणपत्र कोड टाका ","enterDialCode":"६ आकडी QR कोड टाका.","enterEightCharacters":"कृपया किमान ८ वर्ण एंटर करा ","enterEmailID":"ई-मेल ID टाका ","enterEmailPhoneAsRegisteredInAccount":"{instance} इथे नोंद केलेला ई-मेल ID/फोन नंबर टाका ","enterName":"नाव टाका ","enterNameNotMatch":"इथे टाकलेले नाव {instance} मध्ये नोंद केलेल्या नावाशी जुळत नाही ","enterOTP":"OTP टाका ","enterQrCode":"QR कोड लिहा  ","enterValidCertificateCode":"कृपया योग्य प्रमाणपत्र कोड टाका ","enternameAsRegisteredInAccount":"आणि {instance} अकाउंटवर नोंद केल्याप्रमाणे नाव ","epubarchives":"Epub संग्रह","errorConfirmPassword":"दोन्ही पासवर्ड जुळत नाहीत ","experience":"अनुभव ","expiredBatchWarning":"ही बॅच {EndDate} रोजी संपलेली आहे, त्यामुळे आपली प्रगती अपडेट केली जाणार नाही.","explore":"एक्सप्लोर करा","exploreContentOn":"{instance} वर मजकूर शोधा ","explorecontentfrom":"यापैकी मजकूर शोधा ","exportingContent":"{contentName} कॉपी करण्याच्या तयारीत... ","exprdbtch":"कालबाह्य बॅचेस ","extlid":"OrgExternalId","facebook":"फेसबुक ","failres":"अपयश निकाल ","fetchingBlocks":"कृपया थांबा, आम्ही ब्लॉक्स आणत आहोत ","fetchingSchools":"शाळांची यादी दाखवत आहोत, कृपया थांबा ","filterby":"निकष लावा ","filters":"फिल्टर्स ","first":"प्रथम ","firstName":"नाव ","flaggedby":"ध्वजांकित करणारा ","flaggeddescription":"चिन्हांकित वर्णन ","flaggedreason":"ध्वजांकित करण्याचे कारण ","fnameLname":"स्वतःचे नाव व आडनाव टाका ","for":"... साठी ","forDetails":"तपशीलांसाठी ","forMobile":"मोबाईल साठी ","forSearch":"प्लेसहोल्डर: {searchString}  ","fullName":"पूर्ण नाव ","gender":"लिंग ","getUnlimitedAccess":"तुमच्या मोबाइल फोनवरून अमर्याद ऑफलाइन पाठ्यपुस्तके, पाठ व कोर्सवर वापर-अधिकार मिळवा","goback":"रद्द करण्यासाठी ","grade":"इयत्ता ","grades":"कक्षा ","graphStat":"ग्राफ आकडेवारी ","h5parchives":"H5pअभिलेख","homeUrl":"मुख्यपृष्ठ Url ","howToUseDiksha":"DIKSHA डेस्कटॉप ऍप कसा वापरावा ","howToVideo":"ऍप कसा वापरायचे याचा व्हिडिओ ","htmlarchives":"Html अभिलेख","imagecontents":"आकृतीरूपी  मजकूर ","inAll":"\"सर्व\" मध्ये ","inUsers":"वापरकर्त्यांमध्ये ","inactive":"निष्क्रिय ","institute":"शिक्षणसंस्थेचे नाव ","isRootOrg":"Is RootOrg ","iscurrentjob":"हा तुमचा सद्य व्यवसाय आहे का ","itis":"आहे ","keywords":"सूचक शब्द ","language":"ज्ञात भाषा ","last":"अंतिम ","lastAccessed":"शेवटच्या प्रवेशाची तारीख:","lastName":"आडनाव ","lastupdate":"शेवटचे उपडेट ","learners":"विद्यार्थी ","licenseTerms":"परवाना अटी ","limitsOfArtificialIntell":"कृत्रिम बुद्धिमत्तेच्या मर्यादा ","linkCopied":"लिंक कॉपी केली आहे ","linkedContents":"जोडलेले  साहित्य  ","linkedIn":"लिंक्डइन","location":"स्थान ","lockPopupTitle":"{collaborator} सध्या {content name} वर काम करत आहेत. नंतर प्रयत्न करा.","markas":"असे चिन्हांकित करा ","medium":"माध्यम ","mentors":"सल्लागार ","mergeAccount":"अकाउंट एकत्र करा ","mobileEmailInfoText":"DIKSHA वर साइन इन करण्यासाठी तुमचा मोबाइल नंबर किंवा ई-मेल ID प्रविष्ट करा","mobileNumber":"मोबाइल नंबर ","mobileNumberInfoText":"DIKSHA वर लॉगिन करण्यासाठी आपला मोबाइल नंबर टाका","more":"अधिक ","myBadges":"माझे बॅजेस ","mynotebook":"माझी नोटबुक ","mynotes":"माझ्या नोट्स","name":"नाव ","nameRequired":"नाव आवश्यक आहे ","newPassword":"नवीन पासवर्ड ","next":"पुढील ","noContentToPlay":"प्ले करण्यासाठी मजकूर उपलब्ध नाही ","noDataFound":"माहिती सापडली नाही ","offline":"आपण ऑफलाईन आहात ","onDiksha":"वर {instance} वर ","online":"तुम्ही ऑनलाईन आहात ","opndbtch":"चलत बॅचेस  ","orgCode":"संस्थेचा कोड","orgId":"संस्थेची ID ","orgType":"Org प्रकार ","organization":"संस्था ","orgname":"संस्थेचे नाव ","orgtypes":"संस्थेचा प्रकार ","originalAuthor":"मूळ लेखक ","otpMandatory":"OTP अनिवार्य आहे ","otpSentTo":"... वर OTP पाठवला गेला आहे ","otpValidated":"OTP यशस्वीरीत्या प्रस्थापित केलेला आहे","ownership":"अधिकार ","participants":"सहभागी ","password":"पासवर्ड ","passwordMismatch":"पासवर्ड जुळत नाही, कृपया योग्य पासवर्ड टाका ","pdfcontents":"Pdf  मजकूर ","percentage":"टक्केवारी ","permanent":"कायमस्वरूपी ","phone":"फोन नंबर ","phoneNumber":"फोन नंबर ","phoneOrEmail":"फोन नंबर किंवा ई-मेल ID टाका ","phoneRequired":"फोनची आवश्यकता आहे ","phoneVerfied":"फोन नंबर प्रस्थापित ","phonenumber":"फोन नंबर ","pincode":"पिन कोड ","playContent":"मजकूर प्ले करा ","plslgn":"हे सत्र संपले आहे. ${instance} वापरून सत्र सुरू ठेवण्यास पुन्हा लॉगिन करा.","position":"स्थिती ","preferredLanguage":"पसंतीची भाषा ","previous":"मागील ","processid":"प्रक्रिया ID","profilePopup":"तुमच्या विषयाशी संबंधित मजकूर मिळवण्यासाठी, खालील तपशील उपडेट करा :","provider":"OrgProvider","publicFooterGetAccess":"DIKSHA व्यासपीठाद्वारे शिक्षक, पालक व विद्यार्थ्यांना शाळेच्या निर्धारित अभ्यासक्रमाशी निगडित असे अभ्यासाचे साहित्य मनोरंजक पद्धतीने उपलब्ध करून दिले जाते.  अभ्यासाचे पाठ सुसाध्य करण्यासाठी, DIKSHA app डाउनलोड करून तुमच्या पाठ्यपुस्तकातील QR code स्कॅन करा.","publishedBy":"प्रकाशक ","publishedOnInstanceName":"{instance} रोजी ... कडून प्रकाशित ","reEnterPassword":"पासवर्ड पुन्हा टाका ","readless":"कमी वाचा ...","readmore":"... अधिक वाचा ","receiveOTP":"आपण OTP कुठे घेऊ इच्छिता?","recoverAccount":"अकाउंट परत मिळवा ","redirectMsg":"हा मजकूर बाहेर होस्ट केलेला आहे ","redirectWaitMsg":"कृपया मजकूर लोड होईपर्यंत थांबा ","removeAll":"सर्व रद्द करा ","reportUpdatedOn":"रिपोर्ट शेवटी या दिवशी अपडेट केला होता:","resendOTP":"OTP पुन्हा पाठवा ","resentOTP":"OTP पुन्हा पाठवलेला आहे.  OTP टाका.","resourcetype":"संसाधन प्रकार ","retired":"निवृत्त ","returnToCourses":"पुन्हा अभ्यासक्रमाकडे वळा ","role":"भूमिका ","roles":"भूमिका ","rootOrg":"Root Org ","sameEmailId":"आपल्या वैयक्तिक माहितीबरोबर जोडलेला ई-मेल ID हाच आहे ","samePhoneNo":"आपल्या वैयक्तिक माहितीबरोबर जोडलेला मोबाईल नंबर हाच आहे ","school":"शाळा ","search":"शोध घ्या ","searchForContent":"सहा अंकी QR कोड टाका","searchUserName":"वापरकर्त्याचे नाव शोधा ","seladdresstype":"पत्त्याच्या प्रकार निवडा ","selectAll":"सर्व सिलेक्ट करा ","selectBlock":"ब्लॉक निवडा ","selectDistrict":"जिल्हा निवडा ","selectSchool":"शाळा निवडा ","selectState":"राज्य निवडा ","selected":"सिलेक्ट केलेले ","selectreason":"एक कारण निवडा ","sesnexrd":"सत्र संपले ","setRole":"वापरकर्त्याच्या माहितीत फेरबदल ","share":"सामायिक करा ","sharelink":"लिंक शेअर करा ","showLess":"कमी दाखवा ","showingResults":"निकाल दाखवत आहोत ","showingResultsFor":"{searchString} यासाठी मजकूर दाखवत आहोत - ","signUp":"साइन अप करा","signinenrollHeader":"कोर्स नोंदणीकृत वापरकर्त्यांसाठी आहेत. प्रवेश मिळवण्यासाठी साईन ईन करा.","signinenrollTitle":"या कोर्ससाठी नोंदणी करण्यासाठी साइन इन करा ","skillTags":"क्षमता सूचि ","sltBtch":"पुढे जाण्यासाठी कृपया एक बॅच निवडा ","socialmedialinks":"सोशल मीडिया लिंक्स ","sortby":"वर्गीकरण करा ","startExploringContent":"QR कोड टाकून मजकूर शोधण्यास सुरू करा ","startExploringContentBySearch":"शोध पर्याय किंवा QR कोड वापरून मजकूर शोधा ","startdate":"सुरुवात तारीख ","state":"राज्य ","stateRecord":"सरकारी नोंदीप्रमाणे ","subject":"विषय ","subjects":"विषय ","subjectstaught":"शिकवलेले विषय ","submitOTP":"OTP नमूद करा ","subtopic":"उप-विषय ","successres":"प्रगती दाखला ","summary":"सारांश ","supportedLanguages":"साधार भाषा -","tableNotAvailable":"हा मजकूर तक्त्यात मांडलेला नाही ","takenote":"नोट घ्या ","tcfrom":"यांच्याकडून ","tcno":"नाही ","tcto":"प्रति ","tcyes":"हो ","tenDigitPhone":"१० आकडी फोन नंबर ","termsAndCond":"नियम व अटी ","termsAndCondAgree":"वापर अटी व शर्तींना माझी मान्यता आहे ","theme":"थीम","title":"शीर्षक ","toTryAgain":"पुन्हा प्रयत्न करण्यासाठी ","topic":"विषय ","topics":"विषय ","trainingAttended":"किती प्रशिक्षणांना उपस्थित ","twitter":"ट्विटर ","unableToUpdateEmail":"ई-मेल ID अपडेट करण्यास असमर्थ?","unableToUpdateMobile":"मोबाईल नंबर अपडेट करण्यास असमर्थ?","unableToVerifyEmail":"ई-मेल ID प्रस्थापित करू शकत नाही?","unableToVerifyPhone":"फोन नंबर प्रस्थापित करण्यास असमर्थ? ","unenrollMsg":"आपल्याला निश्चित या बॅचमधून नोंदणी रद्द करायची आहे का?","unenrollTitle":"बॅच नोंदणी रद्द ","uniqueEmail":"आपला ई-मेल ID आधीच नोंदवलेला आहे ","uniqueEmailId":"हा ई-मेल ID आधीच नोंदवलेला आहे. दुसरा ई-मेल ID टाका ","uniqueMobile":"हा मोबाईल नंबर आधीच नोंदवलेला आहे. दुसरा मोबाईल नंबर टाका.","uniquePhone":"आपला फोन नंबर आधीच नोंदवलेला आहे ","updateEmailId":"ई-मेल ID अपडेट करा ","updatePhoneNo":"मोबाईल नंबर अपडेट करा ","updatecollection":"सर्व अपडेट करा ","updatecontent":"मजकूर अपडेट करा ","updatedon":"अपडेट केल्याची तारीख ","updateorgtype":"संस्थेचा प्रकार अपडेट करा ","upldfile":"अपलोड केलेली फाईल","uploadContent":"मजकूर अपलोड करा ","uploadEcarFromPd":"आपल्या पेन ड्राईव्ह वरून {instance} फाईल्स (उदा:- MATHS_01.ecar) अपलोड करा ","userFilterForm":"वापरकर्ते शोधा ","userID":"UserID ","userId":"वापरकर्ता ID ","userType":"वापरकर्ता प्रकार ","username":"वापरकर्त्याचे नाव","validEmail":"वैध ई-मेल ID टाका ","validFor":"३० मिनिटांसाठी वैध ","validPassword":"वैध पासवर्ड टाका ","validPhone":"१० आकडी वैध फोन नंबर टाका ","verifyingCertificate":"आपले प्रमाणपत्र प्रस्थापित करत आहोत","versionKey":"आवृत्ती -","videos":"व्हिडिओ ","view":"पहा ","viewless":"मोजके पहा ","viewmore":"अधिक पहा ","viewworkspace":"आपला कार्यकक्ष पहा ","watchCourseVideo":"व्हिडिओ पहा ","watchVideo":"व्हिडिओ पहा","whatsQRCode":"QR कोड म्हणजे काय?","whatwentwrong":"काय चूक झाली?","whatwentwrongdesc":"काय चूक झाली ते आम्हाला कळवावे. निश्चित कारणे नमूद करावीत, जेणेकरून आम्ही लवकरात लवकर या समस्येचा आढावा घेऊ शकू. आपल्या प्रतिसादासाठी आभार!  ","willsendOTP":"आम्ही आपल्याला एक OTP पाठवू, आणि OTP प्रस्थापित झाल्यानंतर आपण आपला अकाउंट परत मिळवू शकाल.","worktitle":"व्यवसाय / कार्यक्षेत्र ","wrongEmailOTP":"तुम्ही चुकीचा OTP टाकला आहे. कृपया तुमच्या ई-मेल ID वर आलेला  OTP टाकावा. हा OTP केवळ ३० मिनिटे वैध राहील.","wrongPhoneOTP":"तुम्ही चुकीचा OTP टाकला आहे. कृपया आपल्या फोन नंबरवर पाठवलेला OTP टाका. हा OTP केवळ ३० मिनिटे स्वीकार्य राहील.","yop":"उत्तीर्ण होण्याचे साल ","indPhoneCode":91,"manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","noCreditsAvailable":"No credits available","errorMessage":"Error message","externalId":"External Id","lang":"Language","recentlyAdded":"Recently Added","contentType":"Content Type","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","releaseDateKey":"Release Date:","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from","noBookfoundTitle":"Board is adding books","noBookfoundSubTitle":"Your board is yet to add more books. Tap the button to see more books and content on {instance}","noBookfoundButtonText":"See more books and contents"},"btn":{"add":"जोडा ","addToLibrary":"'माझी लायब्ररी' मध्ये डाउनलोड करा  ","addedToLibrary":"लायब्ररीमध्ये जोडले","addingToLibrary":"लायब्ररी मध्ये समाविष्ट करत आहोत ","apply":"लागू करा ","browse":"ऑनलाईन ब्राऊज करा ","cancel":"रद्द करा ","cancelCapitalize":"रद्द करा ","clear":"मोकळे करा ","close":"बंद करा","contentImport":"फाइल्स अपलोड करा ","copyLink":"लिंक कॉपी करा ","create":"निर्माण करा ","download":"डाउनलोड ","downloadCertificate":"प्रमाणपत्र डाउनलोड करा ","downloadCompleted":"डाउनलोड पूर्ण ","downloadDikshaForWindows":"विंडोजसाठी डाउनलोड करा (६४-bit)","downloadFailed":"डाउनलोड अयशस्वी ","downloadInstruction":"डाउनलोडसाठी सूचना पहा ","downloadManager":"माझे डाऊनलोड्स","downloadPdf":"मदत","downloadPending":"डाउनलोड अपूर्ण ","edit":"बदल करा ","enroll":"नाव नोंदवा ","export":"पेन ड्राइव्हवर कॉपी करा","login":"लोग ईन","merge":"एकत्र करा ","myLibrary":"माझी लायब्ररी ","next":"पुढील ","no":"नाही ","ok":"चालेल ","previous":"मागील ","remove":"काढून टाका ","reset":"रीसेट करा ","resume":"पुन्हा सुरू करा ","resumecourse":"कोर्स पुन्हा सुरु करा ","save":"जतन करा ","selectContentFiles":"फाईल (एक/अनेक) निवडा ","selectLanguage":"भाषा निवडा ","selrole":"भूमिका निवडा ","signin":"साईन ईन करा ","signup":"Sign Up ","smplcsv":"CSV नमूना डाउनलोड करा ","submit":"दाखल करा ","submitbtn":"सबमिट करा ","tryagain":"पुन्हा प्रयत्न करा ","unenroll":"नोंदणी रद्द ","update":"अपडेट ","uploadorgscsv":"संस्थांची csv फाईल अपलोड करा ","uploadusrscsv":"वापरकर्त्यांची csv  फाईल अपलोड करा ","verify":"प्रस्थापित करा ","viewCourseStatsDashboard":"कोर्सचा फलक पहा ","viewcoursestats":"अभ्यासक्रमाची सांख्यिकी माहिती ","viewless":"कमी पहा ","viewmore":"अधिक पहा ","yes":"हो ","yesiamsure":"चालेल ","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"स्त्री ","male":"पुरुष ","transgender":"तृतीयपंथी "},"instn":{"t0002":"आपण एका वेळी एका csv file मध्ये  १९९ पर्यंत संस्थांचे तपशील जोडू किंवा अपलोड करू शकता ","t0007":"OrgName  आवश्यक आहे. त्या जागेत संस्थेचे नाव टाकावे.","t0011":"Process ID द्वारे आपण प्रगती जोखू शकता ","t0012":"कृपया तुमच्या सोयीसाठी प्रोसेस ID जतन करा. प्रोसेस ID वरून तुम्ही तुमची प्रगती जोखू शकता.","t0013":"संदर्भासाठी csv फाईल डाउनलोड करा ","t0015":"संस्था अपलोड करा ","t0016":"वापरकर्त्यांची नावे अपलोड करा ","t0020":"कौशल्य जोडण्यासाठी टाईप करण्यास सुरुवात करा ","t0021":"प्रत्येक संस्थेचे नाव वेगळ्या ओळीत टाकावे","t0022":"इतर सर्वे तपशील भरणे ऐच्छिक आहे:","t0023":"isRootOrg : याचे योग्य पर्याय 'आहे ' अथवा 'नाही'.","t0024":"channel: प्रमुख संस्था निर्मितीच्या वेळी दिला गेलेला खास ID ","t0025":"बाह्य ID : प्रशासकीय संस्थेच्या यादीत असलेल्या प्रत्येक संस्थेशी निगडित एक खास ID ","t0026":"provider: प्रशासक संस्थेचा Channel ID","t0027":"वर्णन : संस्थेची माहिती देणारे तपशील ","t0028":"मुख्यपृष्ठ URL: संस्थेच्या मुख्यपृष्ठाचे URL","t0029":"orgCode: संस्थेचा खास कोड असल्यास, तो कोड ","t0030":"org Type: संस्थेचा प्रकार, उदा: NGO, प्राथमिक शाळा, माध्यमिक शाळा इ. ","t0031":"प्रमुख भाषा: संस्थेच्या कामासाठी प्रामुख्याने वापरल्या जाणाऱ्या भाषा (जर असल्या तर)","t0032":"संपर्क तपशील: संस्थेचा फोन नंबर आणि ई-मेल ID. तपशील कर्ली ब्रॅकेटच्या आत, एकल उद्गारवाचक चिन्हात टाकलेले असावेत. उदा: [{'फोन नंबर': '१२३४५६७८९०'}]","t0049":"'RootOrg आहे का ' याचे उत्तर 'हो' असेल, तर चॅनेल भरणे आवश्यक आहे.  ","t0050":"externalId व प्रदाता एकमेकांसाठी आवश्यक आहेत ","t0055":"अरेच्च्या! घोषणेचे तपशील सापडत नाहीत!","t0056":"कृपया पुन्हा प्रयत्न करा ","t0058":"म्हणून डाउनलोड करा ","t0059":"CSV ","t0060":"आभारी आहोत!","t0061":"अरेच्च्या ...","t0062":"या  कोर्ससाठी तुम्ही अजून बॅच तयार केलेली नाही. नवीन बॅच तयार करा व पुन्हा फलक तपासा.","t0063":"तुम्ही अजून कोणताही कोर्स तयार केलेला नाही. नवीन कोर्स तयार करा व पुन्हा फलक चेक करा. ","t0064":"एकाच प्रकारावर अनेक पत्ते select केले गेले आहेत. कृपया एकच निवडून त्यात बदल करा.","t0065":"डाउनलोड ","t0070":"csv फाईल डाउनलोड करा. एका संस्थेचे वापरकर्ते एकाच वेळी एका csv फाईल मध्ये अपलोड केले जाऊ शकतात.","t0071":"वापर खात्यांचे खालील आवश्यक तपशील भरा:","t0072":"नाव: वापरकर्त्याचे  पहिले नाव, वर्णमाला  ","t0073":"फोन किंवा ई-मेल : वापरकर्त्याच्या मोबाइल नंबर (१० आकड्यांचा) किंवा ई-मेल ID . दोन्हीपैकी किमान एक नोंदवणे अनिवार्य आहे, परंतु, शक्य असल्यास दोन्ही द्यावे .","t0074":"Username : संस्थेने वापरकर्त्याला दिलेले खास नाव, ज्यात अक्षरे व संख्या दोन्हीचा समावेश असेल.","t0076":"टीप: CSV file मधील इतर सर्व स्तंभ ऐच्छिक आहेत. ते भरण्यास, तपशीलवार माहितीसाठी {%s} पहा ","t0077":"वापरकर्त्यांची नावे नोंदवा.","t0078":"locationId : विशिष्ट संस्थेच्या घोषणेचा विषय दर्शवणारा खास ID ","t0079":"स्थानिक कोड : दोन कोडच्या मध्ये स्वल्पविराम टाकून सर्व स्थानिक कोड लिहा.","t0081":"DIKSHA वर साइन उप करण्यासाठी आभार. आम्ही पडताळणीसाठी  SMS द्वारे OTP पाठवत आहोत. OTP द्वारे आपला फोन नंबर प्रस्थापित करून नोंदणी प्रक्रिया पूर्ण करावी . ","t0082":"DIKSHA वर साइन उप करण्यासाठी आभार. आम्ही पडताळणीसाठी तुमच्या email वर OTP पाठवला आहे. OTP द्वारे आपला email ID प्रस्थापित करून नोंदणी प्रक्रिया पूर्ण करा.","t0083":"आपला मोबाईल नंबर प्रस्थापित करण्यासाठी आपल्याला SMS वरून OTP पाठवला जाईल ","t0084":"तुमची ई-मेल ID प्रस्थापित करण्यासाठी तुमच्या  ई-मेल वर OTP पाठवला जाईल ","t0085":"ह्या रिपोर्टमध्ये पहिल्या १०००० सहभागी जणांची माहिती आहे. बॅच मधल्या सर्व सहभाग्यांची प्रगती पाहण्यासाठी 'डाउनलोड' क्लिक करा. ","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"मजकूर किंवा मथळा शोधा ","t0002":"आपली टिप्पणी जोडा ","t0005":"बॅच प्रशिक्षक निवडा ","t0006":"बॅच सदस्य निवडा "},"lnk":{"announcement":"घोषणा फलक ","assignedToMe":"मला नेमून दिलेले ","contentProgressReport":"मजकूर प्रगती रिपोर्ट ","contentStatusReport":"मजकूर स्थिती रिपोर्ट ","createdByMe":"माझी निर्मिती","dashboard":"प्रशासक फलक","detailedConsumptionMatrix":"तपशीलवार वापर कोष्टक ","detailedConsumptionReport":"तपशीलवार वापराचा रिपोर्ट ","footerContact":"प्रश्नांसाठी संपर्क करा:","footerDIKSHAForMobile":"मोबाइल साठी DIKSHA ","footerDikshaVerticals":"DIKSHA व्हर्टिकल","footerHelpCenter":"मदत केंद्र","footerPartners":"सहकारी ","footerTnC":"वापर अटी ","logout":"लोगआउट करा ","myactivity":"माझे क्रियाकलाप ","profile":"वैयक्तिक माहिती ","textbookProgressReport":"पाठयपुस्तक प्रगती रिपोर्ट ","viewall":"सर्व पहा ","workSpace":"कार्यस्थळ "},"pgttl":{"takeanote":"टिप्पणी घ्या "},"prmpt":{"deletenote":"तुम्हाला नक्की हा मजकूर हटवाायचा आहे का?","enteremailID":"तुमचा ई-मेल ID टाका ","enterphoneno":"१० आकडी फोन नंबर टाका ","search":"शोध घ्या ","userlocation":"स्थान "},"scttl":{"blkuser":"वापरकर्त्याला ब्लॉक करा ","contributions":"योगदान ","instructions":"सूचना:","signup":"नोंदणी करा ","todo":"अपूर्ण उपक्रम ","error":"Error:"},"snav":{"shareViaLink":"लिंक द्वारे शेअर केले आहे ","submittedForReview":"समीक्षणासाठी सादर केले आहे "},"tab":{"all":"सर्व ","community":"गट ","courses":"अभ्यासक्रम ","help":"सहाय्य ","home":"मुख्यपृष्ठ ","profile":"वैयक्तिक माहिती ","resources":"पुस्तकालय ","users":"वापरकर्ते ","workspace":"कार्यस्थळ ","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"अभ्यासक्रम संपला ","messages":{"emsg":{"m0001":"आम्ही या क्षणी नोंदणी करू शकत नाही. नंतर प्रयत्न करा. ","m0003":"प्रदाता व बाह्य ID किंवा संस्थेचा ID टाकणे अपेक्षित आहे ","m0005":"काहीतरी गडबड झाली, कृपया काही वेळाने पुन्हा प्रयत्न करा...","m0007":"आकारमान ... पेक्षा लहान हवे ","m0008":"मजकूर कॉपी करण्यास असमर्थ. कृपया नंतर प्रयत्न करा ","m0009":"नोंदणी आत्ता रद्द होऊ शकत नाही. नंतर प्रयत्न करा ","m0014":"मोबाईल नंबर अपडेट करण्यास असमर्थ ","m0015":"ई-मेल ID अपडेट करण्यास असमर्थ ","m0016":"राज्य दाखवण्यास असमर्थ. नंतर प्रयत्न करा ","m0017":"जिल्हे दाखवण्यास असमर्थ. नंतर प्रयत्न करा ","m0018":"वैयक्तिक माहिती अपडेट करण्यास असमर्थ","m0019":"रिपोर्ट डाउनलोड करण्यास असमर्थ, नंतर पुन्हा प्रयत्न करा ","m0020":"वापरकर्ता अपडेट होऊ शकले नाही. नंतर पुन्हा प्रयत्न करा ","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"नोंदणीकृत अभ्यासक्रम दाखवण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा...","m0002":"इतर कोर्स दाखवण्यास असमर्थ, नंतर प्रयत्न करा ...","m0003":"कोर्सचे वेळापत्रक दाखवण्यास असमर्थ ","m0004":"डेटा दाखवण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा...","m0030":"नोट निर्मिती करण्यास असमर्थ, नंतर पुन्हा प्रयत्न करा ...","m0032":"नोट काढून टाकण्यास असमर्थ, नंतर पुन्हा प्रयत्न करा... ","m0033":"नोट दाखवण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा ","m0034":"नोट उपडेट करण्यास असमर्थ, नंतर पुन्हा प्रत्यत्न करा ...","m0041":"शिक्षण माहिती काढून टाकण्यास असमर्थ. कृपया नंतर पुन्हा प्रयत्न करा...","m0042":"अनुभव माहिती हटवण्सया अयशस्वी. कृपया नंतर प्रयत्न करा... ","m0043":"पत्ता काढून टाकण्यास असमर्थ. कृपया नंतर पुन्हा प्रयत्न करा ...","m0048":"वापरकर्त्यांची वैयक्तिक माहिती अपडेट करण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा... ","m0049":"मजकूर अपलोड करण्यास असमर्थ आहोत.","m0050":"मागणी दाखल करण्यास असमर्थ, नंतर पुन्हा प्रयत्न करा...","m0051":"काहीतरी गडबड झाली, कृपया नंतर पुन्हा प्रयत्न करा...","m0054":"बॅच तपशील आणण्याचा प्रयत्न अयशस्वी. कृपया नंतर प्रयत्न करा...","m0056":"वापरकर्त्यांची यादी दाखवण्यास असमर्थ आहोत, कृपया नंतर प्रयत्न करा...","m0076":"कृपया आवश्यक जागा भरा ","m0077":"सर्च परिणाम दाखवण्यास असमर्थ...","m0079":"बॅज नियुक्त करण्यास असमर्थ आहोत, कृपया नंतर पुन्हा प्रयत्न करा...","m0080":"बॅज दाखवण्यास असमर्थ, कृपया नंतर पुन्हा प्रयत्न करा ...","m0082":"हा कोर्स अजून नोंदणीसाठी उपलब्ध नाही ","m0085":"काहीतरी तांत्रिक गडबड झाली. पुन्हा प्रयत्न करा.","m0086":"हा अभ्यासक्रम निर्मात्याने गैरलागू केला असल्याने, तो आता उपलब्ध नाही.","m0087":"कृपया थांबा.","m0088":"आम्ही तपशील आणत आहोत ","m0089":"कोणतेही विषय / उपविषय सापडले नाहीत ","m0090":"डाउनलोड करू शकलो नाही. नंतर पुन्हा प्रयत्न करा","m0091":"मजकूर कॉपी करण्यास असमर्थ. नंतर पुन्हा प्रयत्न करा ","m0093":"{FailedContentLength} मजकूर उपलोड करण्यास अयशस्वी ","m0094":"प्रमाणपत्र डाउनलोड अयशस्वी, नंतर पुन्हा प्रयत्न करा...","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"हा अभ्यासक्रम अनुचित म्हणून ध्वजांकित केलेला असून, आम्ही या वेळी त्याचा आढावा घेत आहोत. ","m0005":"कृपया योग्य प्रतिमा फाईल अपलोड करा. स्वीकार्य प्रतिमा फाईल चे प्रकार: jpeg, jpg, png. कमाल साईझ: ४ MB.","m0017":"वैयक्तिक माहितीची पूर्तता ","m0022":"मागील ७ दिवसांची आकडेवारी ","m0023":"मागील १४ दिवसांची आकडेवारी ","m0024":"मागील ५ आठवड्यांची आकडेवारी ","m0025":"प्रथम पासूनची आकडेवारी ","m0026":"नमस्कार, हा कोर्स सध्या उपलब्ध नाही. निर्मात्याने या कोर्समध्ये काही बदल केल्याची शक्यता आहे.","m0027":"नमस्कार, हा मजकूर सध्या उपलब्ध नाही. निर्मात्याने या मजकुरात काही बदल केले असल्याची शक्यता आहे.","m0034":"मजकूर बाहेरून आलेला असल्यास, तो कालांतराने उघडला जाईल. ","m0035":"अनधिकृत प्रवेश ","m0036":"हा मजकूर बाह्य क्षेत्रातला आहे, तो पाहण्यासाठी कृपया 'पूर्वावलोकन' क्लिक करा ","m0040":"कार्यवाही अजून चालू आहे. कृपया काही वेळाने प्रयत्न करा.","m0041":"आपली वैयक्तिक माहिती ","m0042":"% पूर्ण ","m0043":"आपल्या वैयक्तिक माहितीवर वैध ई-मेल ID नाही. कृपया आपली ई-मेल ID अपडेट करा.","m0044":"डाउनलोड अयशस्वी!","m0045":"डाउनलोड अयशस्वी झालेला आहे. थोड्या वेळाने पुन्हा प्रयत्न करा ","m0047":"आपण फक्त १०० सहभागी निवडू शकता ","m0060":"आपले {instance} कडे दोन अकाउंट असल्यास, इथे क्लिक करा ","m0061":"प्रति ","m0062":"नाहीतर, क्लिक करा ","m0063":"दोन्ही अकाउंटचे वापर तपशील एकत्र करा, आणि  ","m0064":"दुसरा अकाउंट रद्द करा ","m0065":"अकाउंट एकत्र करण्याची क्रिया यशस्वीरीत्या सुरु झाली आहे ","m0066":"हे पूर्ण होताच आपल्याला कळवले जाईल ","m0067":"अकाउंट एकत्र करण्यास सुरुवात झालेली नाही. कृपया नंतर पुन्हा प्रयत्न करा ","m0072":"एंटर केलेला पासवर्ड चुकीचा असल्याने अकाउंट एकत्र करू शकत नाही.","m0073":"नवीन {instance} अकाउंट निर्माण करण्यासाठी OK क्लिक करा.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"मजकूर यशस्वीरित्या तयार झाला आहे...","m0013":"नोट यशस्वीरित्या अपडेट केली गेली आहे...","m0014":"शिक्षण यशस्वीरित्या रद्द केले आहे ","m0015":"अनुभव यशस्वीरित्या काढून टाकलेला आहे ","m0016":"पत्ता यशस्वीरित्या  रद्द केला आहे ","m0018":"वैयक्तिक प्रतिमा यशस्वीरित्या अपडेट केली आहे ","m0019":"माहिती यशस्वीरित्या उपडेट केली आहे ","m0020":"शिक्षणाची माहिती यशस्वीरित्या अपडेट केलेली आहे  ","m0021":"अनुभव यशस्वीरित्या अपडेट केला आहे ","m0022":"अतिरिक्त माहिती यशस्वीरित्या उपडेट केली आहे ","m0023":"पत्ता यशस्वीरित्या अपडेट केला गेला आहे ","m0024":"नवीन शिक्षण माहिती यशस्वीरित्या जोडली गेली आहे ","m0025":"नवीन अनुभव यशस्वीरित्या जोडलेला आहे ","m0026":"नवीन पत्ता यशस्वीरित्या जोडलेला आहे ","m0028":"भूमिका यशस्वीरित्या उपडेट केल्या आहेत ","m0029":"वापरकर्त्याच्या नाव यशस्वीरित्या रद्द केले आहे ","m0030":"वापरकर्त्यांची नावे यशस्वीरित्या अपलोड केली आहेत ","m0031":"संस्थांची नावे यशस्वीरित्या अपलोड केली आहेत ","m0032":"स्टेटस यशस्वीरित्या लागू केलेले आहे ","m0035":"Org प्रकार यशस्वीरित्या जोडला गेला आहे ","m0036":"या बॅचसाठी कोर्सची यशस्वीरित्या नोंदणी झालेली आहे","m0037":"यशस्वीरित्या उपडेट केले आहे ","m0038":"क्षमता - यादी यशस्वीरित्या अपडेट केलेली आहे ","m0039":"साईन अप यशस्वी,  लोग ईन करा... ","m0040":"वैयक्तिक माहितीची दर्शमानता यशस्वीरित्या अपडेट केली आहे  ","m0042":"मजकूर यशस्वीरित्या कॉपी झालेला आहे ","m0043":"समर्थन यशस्वी ","m0044":"बॅज यशस्वीरित्या नियुक्त्त केला गेला आहे ","m0045":"वापरकर्त्याची बॅचमधील नोंदणी यशस्वीरित्या रद्द केलेली आहे ","m0046":"वैयक्तिक माहिती यशस्वीरित्या अपडेट केली आहे...","m0047":"आपला मोबाईल नंबर अपडेट झालेला आहे ","m0048":"आपला ई-मेल ID अपडेट झालेला आहे ","m0049":"वापरकर्त्याची माहिती यशस्वीरित्या अपडेट केली आहे","m0050":"हा मजकूर रेट करण्यासाठी धन्यवाद!","m0053":"डाउनलोड चालू आहे...","m0054":"{UploadedContentLength} मजकूर यशस्वीरीत्या अपलोड केलेला आहे ","m0055":"अपडेट होत आहे...","m0056":"मजकूर अपडेट करण्यासाठी आपण ऑनलाइन असणे आवश्यक आहे ","moo41":"घोषणा यशस्वीरित्या रद्द केली आहे ","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"कोणतेही परिणाम सापडले नाहीत ","m0007":"वेगळे काहीतरी शोधा ","m0008":"जुळणारे परिणाम नाहीत ","m0009":"सुरू करण्यास असमर्थ, कृपया पुन्हा प्रयत्न करा अथवा बंद करा.","m0022":"तुमचा एखादा मसुदा समीक्षेसाठी सादर करा. समीक्षेनंतरच मजकूर प्रकाशित केला जाईल.","m0024":"लेख, व्हिडिओ किंवा तत्सम कुठलाही समर्थित स्वरूपातील मजकूर अपलोड करा. तुम्ही अजून काहीच अपलोड केलेले नाही.","m0033":"आपला एखादा मसुदा तपासणीसाठी सादर करा. आपण अजून कुठलाही मजकूर तपासणीसाठी  दिलेला नाही.","m0035":"समीक्षेसाठी कोणताही मजकूर नाही.","m0060":"आपली वैयक्तिक माहिती अधिक सशक्त करा ","m0062":"योग्य पदवी टाका ","m0063":"तुमच्या वैध पत्त्याची पहिली ओळ लिहा  ","m0064":"शहराचे नाव लिहा  ","m0065":"योग्य पिन कोड टाका ","m0066":"नाव टाका ","m0067":"कृपया योग्य फोन नंबर टाका ","m0069":"भाषा निवडा ","m0070":"संस्थेचे नाव टाका ","m0072":"वैध कार्यक्षेत्र / पदनाम  टाका","m0073":"वैध संस्थेचे नाव टाका ","m0077":"आम्ही आपली मागणी सादर करीत आहोत ...","m0080":"कृपया फाईल csv format मध्येच upload करा ","m0081":"कोणत्याही बॅचेस सापडल्या नाहीत ","m0083":"आपण अजून आपला मजकूर सामायिक केलेला नाही ","m0087":"कृपया योग्य वापरकर्त्याचे नाव टाका, त्यात किमान ५ वर्ण असले पाहिजेत","m0088":"वैध पासवर्ड लिहा  ","m0089":"कृपया वैध ई-मेल ID टाका ","m0090":"कृपया भाषा निवडा ","m0091":"कृपया वैध फोन नंबर टाका ","m0094":"कृपया योग्य टक्केवारी टाका ","m0095":"तुमची मागणी आमच्यापर्यंत पोचली आहे. तुमच्या नोंदवलेल्या ई-मेल पत्त्यावर नंतर  फाईल पाठवली जाईल. कृपया तुमची ई-मेल नेमाने तपासा.","m0104":"योग्य ईयत्ता टाका ","m0108":"आपली प्रगती ","m0113":"वैध आरंभ तारीख टाका","m0116":"निवडलेला मजकूर हटवला जात आहे...","m0120":"दाखवण्यासाठी कोणताही मजकूर नाही ","m0121":"मजकूर अजून जोडलेला नाही ","m0122":"ह्या QR कोड साठी आपले राज्य लवकरच मजकूर जोडत आहे. मजकूर लवकरच उपलब्ध होईल.","m0123":"एखाद्या मित्राला तुम्हाला 'सहकरी' म्हणून जोडण्याची विनंती करा. तुम्हाला ई-मेल द्वारे याची नोंद पाठवली जाईल.","m0125":"संसाधन, पुस्तक, अभ्यासक्रम, संचय अथवा अपलोड निर्माण करण्यास सुरुवात करा. सध्या तुमच्याकडे कोणताही 'काम-चालू-आहे' असा मसुदा नाही.","m0126":"कृपया बोर्ड निवडा ","m0127":"कृपया माध्यम निवडा ","m0128":"कृपया इयत्ता निवडा ","m0129":"अटी व नियम लोड करत आहोत","m0130":"जिल्हे दाखवत आहोत ","m0131":"कुठलेही रिपोर्ट सापडले नाहीत ","m0132":"तुमची विनंती आम्हाला पोचली आहे. तुमच्या अधिकृत ई-मेल ID वर लवकरच फाईल पाठवली जाईल.","m0133":"ब्राउझ करा आणि डाउनलोड करा किंवा डेस्कटॉप ऍप वापरण्यास मजकूर अपलोड करा","m0134":"नोंदणी ","m0135":"योग्य तारीख टाका ","m0136":"नोंदणीसाठी शेवटची तारीख:","m0138":"अयशस्वी ","m0139":"डाउनलोड झाले आहे ","m0140":"डाउनलोड होत आहे ","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"}},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again  later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"orgname","participants":"सहभागी ","resourceService":{"frmelmnts":{"lbl":{"userId":"वापरकर्त्याची ID "}}},"t0065":"फाईल डाउनलोड करा "},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","courseName":"Course Name","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","disablePopupText":"This content can not be deleted","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","submittedForReview":"Submitted for review","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","shareViaLink":"Shared via link","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid start date","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
diff --git a/src/app/resourcebundles/json/ta.json b/src/app/resourcebundles/json/ta.json
index 340c01e036dc7c0bde8ea31e6d070acd56a12834..50aa7dda09d5a08bbd40957fe601724399476d23 100644
--- a/src/app/resourcebundles/json/ta.json
+++ b/src/app/resourcebundles/json/ta.json
@@ -1 +1 @@
-{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"பொருத்தமான பதிவுகள் கிடைக்கவில்லை","Mobile":"கருவி","SearchIn":"தேடு {searchContentType}","Select":"தேர்ந்தெடு ","aboutthecourse":"பாடநெறியின் விவரம் ","active":"செயல்பாட்டில் உள்ளது ","addDistrict":"மாவட்டத்தை சேர் ","addEmailID":"மின்னஞ்சல் முகவரியை சேர்க்கவும் ","addPhoneNo":"அலைபேசி எண்ணை சேர்க்கவும் ","addState":"மாநிலத்தை சேர் ","addlInfo":"கூடுதல் தகவல் ","addnote":"குறிப்பை சேர்க்க ","addorgtype":"அமைப்பின் வகையை சேர்க்கவும் ","address":"முகவரி ","addressline1":"முகவரி வரி 1 ","addressline2":"முகவரி வரி 2","anncmnt":"அறிவிப்பு","anncmntall":"எல்லா அறிவிப்புகளும் ","anncmntcancelconfirm":"இந்த அறிவிப்பை நிச்சயமாக நிறுத்த விரும்புறீர்களா?","anncmntcancelconfirmdescrption":"இந்த செயலுக்கு பின்னர் பயனாளர் இந்த அறிவிப்பை பார்க்க இயலாது ","anncmntcreate":"அறிவிப்பை உருவாக்கவும் ","anncmntdtlsattachments":"இணைப்புகள் ","anncmntdtlssenton":"அனுப்பப்பட்டது ","anncmntdtlsview":null,"anncmntdtlsweblinks":"இணையதள இணைப்புகள் ","anncmntinboxannmsg":"அறிவிப்பு ","anncmntinboxseeall":"அனைத்தையும் காண","anncmntlastupdate":"நுகர்வு தரவு கடைசியாக பதிவேற்றபட்ட நாள் ","anncmntmine":"எனது அறிவிப்புகள் ","anncmntnotfound":"எந்த அறிவிப்பும் இல்லை ","anncmntoutboxdelete":"நீக்கு ","anncmntoutboxresend":"மீண்டும் அனுப்பு ","anncmntplzcreate":"அறிவிப்பை உருவாக்கவும் ","anncmntreadmore":"...மேலும் படிக்க","anncmntsent":"அனுப்பப்பட்ட அணைத்து  அறிவிப்புகளையும் காட்டுகிறது ","anncmnttblactions":"செயல்கள் ","anncmnttblname":"பெயர் ","anncmnttblpublished":"வெளியிடப்பட்ட நாள் ","anncmnttblreceived":"பெறப்பட்டது ","anncmnttblseen":"காணப்பட்டது ","anncmnttblsent":"அனுப்பப்பட்டது ","attributions":"சிறப்பளிப்பவர்","author":"நுலாசிரியர் ","badgeassignconfirmation":"இந்த பாடத்திற்கு பதக்கம்  வழங்க வேண்டும் என்று விரும்புகிறீர்களா ?","batchdescription":"தொகுதி விளக்கம் ","batchdetails":"தொகுதி விவரங்கள் ","batchenddate":"முடியும் தேதி","batches":"தொகுதிகள் ","batchmembers":"தொகுதி உறுப்பினர்கள் ","batchstartdate":"ஆரம்ப தேதி","birthdate":"பிறந்த நாள் (dd /mm/yyyy )","block":"தடைசெய் ","blocked":"தடுக்கப்பட்டது ","blockedUserError":"பயனர் கணக்கு தடைசெய்யப்பட்டுள்ளது. தயவுசெய்து நிர்வாகத்தை தொடர்பு கொள்ளவும் ","blog":"வலைப்பதிவு ","board":"வாரியம் / பல்கலைக்கழகம் ","boards":"வாரியம் ","browserSuggestions":"மேம்படுத்தப்பட்ட அனுபவத்திற்கு, நீங்கள் மேம்படுத்த அல்லது நிறுவ வேண்டும் என்று நாங்கள் பரிந்துரைக்கிறோம்","certificationAward":"சான்றிதழ்கள்  மற்றும் விருதுகள் ","channel":"தடம் ","chkuploadsts":"பதிவேற்ற நிலையை சரிபார்க்கவும் ","chooseAll":"அனைத்தையும் தேர்ந்தெடு ","city":"நகரம் ","class":"வகுப்பு ","classes":"வகுப்பு ","clickHere":"இங்கே அழுத்தவும்","completed":"முடிவடைந்தது","completedCourse":"பாடநெறி முடிவடைந்தது","concept":"கருத்துக்கள் ","confirmPassword":"கடவுச்சொல்லை உறுதிப்படுத்துக ","confirmblock":"நீங்கள் நிச்சயமாக தடுக்க விரும்புறீர்களா ","connectInternet":"உள்ளடக்கத்தை உலாவ, இணையத்துடன் இணைக்கவும் ","contactStateAdmin":"இந்த தொகுதியில் அதிக பங்கேற்பாளர்களைச்சேர்க்க உங்கள் மாநில நிர்வாகியைத் தொடர்பு கொள்ளுங்கள்","contentCredits":"பாடத்திற்கு சிறப்பளிப்போர் ","contentcopiedtitle":"இந்த உள்ளடக்கம் இதிலிருந்துப் பெறப்பட்டது","contentinformation":"பாட தகவல்","contentname":"பாடத்தின் பெயர் ","contents":"பாடங்கள்","contentsUploaded":"உள்ளடக்கங்கள் பதிவேற்றப்படுகின்றன ","contenttype":"உள்ளடக்கம்","continue":"தொடர்க ","contributors":"பங்களிப்பாளர்கள் ","copy":"நகலாக்கு ","copyRight":"பதிப்புரிமை","copycontent":"பாடங்கள் நகலெடுக்கப்படுகிறது ","country":"நாடு ","countryCode":"நாட்டின் குறியீடு ","courseCreatedBy":"உருவாக்கியவர் ","coursecreatedon":"உருவாக்கப்பட்டத் தேதி ","coursestructure":"பாடநெறியின் வடிவமைப்பு ","createUserSuccessWithEmail":"உங்கள் மின்னஞ்சல் முகவரி சரிபார்க்கப்பட்டது. தொடர உள்நுழையவும் ","createUserSuccessWithPhone":"உங்கள் அலைபேசி எண் சரிபார்க்கப்பட்டது. தொடர உள்நுழையவும்.","createdInstanceName":"{instance} அன்று உருவாக்கப்பட்டது","createdon":"உருவாக்கப்பட்ட நாள் ","creationdataset":"உருவாக்கம் ","creator":"படைப்பாளர்","creators":"படைப்பாளர்கள் ","credits":"சிறப்பளிப்பவர் ","current":"தற்போதைய முகவரி ","currentlocation":"தற்போதைய இடம் ","curriculum":"பாடத்திட்டம் ","dashboardfiveweeksfilter":"கடைசி 5 வாரங்கள் ","dashboardfourteendaysfilter":"கடைசி பதினான்கு நாட்கள் ","dashboardfrombeginingfilter":"தொடக்கத்தில் இருந்து ","dashboardnobatchselected":"எந்த தொகுதியும் தேர்வு செய்யப்படவில்லை ","dashboardnobatchselecteddesc":"மேலும் தொடரப் பட்டியலில் இருந்து ஒரு தொகுதியை தேர்ந்தெடுக்கவும் ","dashboardnocourseselected":"எந்த பாடநெறியும் தேர்வுசெய்யப்படவில்லை ","dashboardnocourseselecteddesc":"மேற்கண்ட பட்டியலில் இருந்து பாடநெறியை தேர்வு செய்யவும் ","dashboardnoorgselected":"எந்த அமைப்பையும் தேர்வுசெய்யப்படவில்லை ","dashboardnoorgselecteddesc":"மேலும் தொடர பட்டியலில் ஒரு நிறுவனத்தை தேர்ந்தெடுக்கவும் ","dashboardselectorg":"அமைப்பை தேர்ந்தெடுக்கவும் ","dashboardsevendaysfilter":"கடைசி 7 நாட்கள் ","dashboardsortbybatchend":"தொகுதி முடிவடையும் நாள் ","dashboardsortbyenrolledon":"பதிவுசெய்யப்பட்டத்  தேதி","dashboardsortbyorg":"அமைப்பு ","dashboardsortbystatus":"நிலை ","dashboardsortbyusername":"பயனாளர் பெயர் ","degree":"பட்டம் ","delete":"நீக்கு ","deletenote":"குறிப்பை நீக்கு ","description":"விளக்கம் ","designation":"பதவி ","desktopAppFeature001":"இலவச வரம்பற்ற உள்ளடக்கம்","desktopAppFeature002":"பன்மொழி ஆதரவு","desktopAppFeature003":"ஆஃப்லைனில் உள்ளடக்கத்தை ப்ளே செய்","dialCode":"QR குறியீடு ","dialCodeDescription":"DIAL குறியீடு என்பது உங்கள் உரை புத்தகத்தில்  விரைவு குறீயீட்டின் கீழ் காணப்படும் 6 இலக்க  எண்ணெழுத்து  குறியீடாகும் .","dialCodeDescriptionGetPage":"விரைவு குறியீடு என்றால் தங்கள் புத்தகத்தில் கொடுக்கப்பட்டுள விரவு குறியீடு படத்தின் கீல் உள்ள  ஆங்கில எழுதும் எண்ணும் கலந்த 6 எழுத்து ஆகும்.","dikshaForMobile":"அலைபேசிக்கான  DIKSHA ","district":"மாவட்டம் ","dob":"பிறந்த நாள் ","done":"முடிந்தது ","downloadDikshaForMobile":"அலைபேசிக்கான  DIKSHAவை   பதிவிறக்கு ","downloadThe":"பதிவிறக்க வடிவம் ","dropcomment":"தங்கள் கருத்தை பதிவுசெய்யவும் ","ecmlarchives":"Ecml காப்பகங்கள்","edit":"திருத்து ","editPersonalDetails":"சுயவிவரங்களை திருத்தவும் ","editUserDetails":"பயனரின் விவரங்களை திருத்தவும் ","education":"கல்வி ","eightCharacters":"8 அல்லது அதற்கு மேற்பட்ட எழுத்துக்களை பயன்படுத்தவும் ","email":"மின்னஞ்சல் முகவரி ","emptycomments":"கருத்துக்கள் இல்லை ","enddate":"முடியும் நாள் ","enjoyedContent":"இந்த பாடம் பிடித்ததா?","enrollcourse":"பாடநெறயை எடுத்துக்கொள்","enrollmentenddate":"சேர்க்கை முடிவு தேதி","enterDialCode":"6 இலக்கிய விரைவு குறியீட்டை  உள்ளிடவும்","enterEmailID":"மின்னஞ்சல் முகவரியை உள்ளிடவும் ","enterOTP":"OTP ஐ  உள்ளிடவும் ","enterQrCode":"விரைவு குறியீட்டை உள்ளிடவும் ","enterValidCertificateCode":"சரியான சான்றிதழ் குறியீட்டை உள்ளிடவும்","epubarchives":"Epub காப்பகங்கள்","errorConfirmPassword":"கடவுச்சொல் பொருந்தவில்லை ","experience":"அனுபவம் ","expiredBatchWarning":"தங்கள் தொகுதி {EndDate} முடிவடைந்தது, ஆகையால் தங்கள் முன்னேற்றத்தை பார்க்க முடியாது","explore":"ஆராய்க ","exploreContentOn":"பாடத்தை  ஆராய்  {instance}","explorecontentfrom":"பாடத்தை ஆராய ","exprdbtch":"காலவாதியான தொகுதிகள் ","extlid":"அமைப்பின் வெளிப்புற  முகவரி ","facebook":"முகநூல் ","failres":"தோல்வியடைந்த முடிவுகள் ","fetchingBlocks":"தொகுதிகளை பெறும் வரை தயவுசெய்து காத்திருக்கவும்","fetchingSchools":"பள்ளிகளை பெறும்வரை தயவுசெய்து காத்திருக்கவும் .","filterby":"வடிகட்டிய மூலம் ","filters":"தெரிவு செய்க ","first":"முதல் பக்கம் ","firstName":"முதல் பெயர் ","flaggedby":"கொடியிடப்பட்டவர் ","flaggeddescription":"கொடியிடப்பட்ட விளக்கம் ","flaggedreason":"கொடியிடப்பட்ட காரணம் ","fnameLname":"முதல் மற்றும் கடைசி பெயரை உள்ளீடுக ","for":"ஆக","forDetails":"விவரங்களுக்கு","forMobile":"அலைபேசிக்கு","forSearch":"{searchString}க்கு","fullName":"முழு பெயர் ","gender":"பாலினம் ","getUnlimitedAccess":"உங்கள் அலைபேசியில் பாடநூல்கள், பாடங்கள் மற்றும் பாடநெறிகள் ஆகியவற்றை offline இல் வரம்பற்று அணுகுங்கள்.","goback":"ரத்துசெய்ய ","grade":"மதிப்பு ","graphStat":"வரைபட புள்ளிவிவரம்","h5parchives":"H5p காப்பகங்கள்","homeUrl":"முகப்பு Url","howToVideo":"எப்படி காணோளி","htmlarchives":"Html காப்பகங்கள்","imagecontents":"படம்  உள்ளடக்கம் ","inAll":"ஆகமொத்தம் ","inUsers":"பயனர்கள்","inactive":"செயலற்று ","institute":"நிறுவனம் பெயர் ","isRootOrg":"இது  RootOrg","iscurrentjob":"இது உங்கள் தற்போதைய வேலைய?","keywords":"சிறப்புச்சொற்கள் ","language":"அறியப்பட்ட மொழிகள் ","last":"கடைசி பக்கம் ","lastAccessed":"கடைசியாக அணுகப்பட்ட நாள் ","lastName":"கடைசி பெயர் ","lastupdate":"கடைசியாக புதுப்பிக்கப்பட்ட நாள் ","learners":"கற்பவர்கள் ","licenseTerms":"உரிம விதிமுறைகள்","limitsOfArtificialIntell":"செயற்கை நுண்ணறிவின் வரம்புகள்","linkCopied":"இணைப்பு நகலெடுக்கப்பட்டது","linkedContents":"இணைக்கப்பட்ட பாடங்கள் ","linkedIn":"லிங்கிடின் ","location":"இடம் ","lockPopupTitle":"{collaborator} தற்போது {contentName} இன் மேல் வேலை செய்துக்கொண்டு இருக்கிறார். சற்று நேரம் கழித்து.","markas":"குறிக்கவும் ","medium":"கல்வி வழி ","mentors":"ஆலோசகர் ","mobileEmailInfoText":"உள்நுழைய அலைபேசி எண் அல்லது மின்னஞ்சல் முகவரியை உள்ளிடவும்","mobileNumber":"அலைபேசி எண்","mobileNumberInfoText":"DIKSHA வில் நுழைய அலைபேசி எண்னை உள்ளிடவும் ","more":"மேலும் ","myBadges":"என் தொகுதிகள் ","mynotebook":"எனது குறிப்பேடு ","mynotes":"எனது குறிப்புகள் ","name":"பெயர் ","nameRequired":"பெயர் தேவைப்படுகிறது ","next":"அடுத்த பக்கம் ","noContentToPlay":"இயக்க எந்த பாடமும் இல்லை","noDataFound":"எந்த தகவலும் ல் இல்லை ","offline":"நீங்கள் ஆஃப்லைனில் உள்ளீர்கள்","online":"நீங்கள் ஆன்லைனில் இருக்குறீர்கள் ","opndbtch":"திறந்த தொகுதிகள் ","orgCode":"அமைப்பின் குறியீடு ","orgId":"அமைப்பின் முகவரி ","orgType":"அமைப்பு வகை ","organization":"அமைப்பு ","orgname":"நிறுவனத்தின் பெயர்","orgtypes":"அமைப்பு வகை ","originalAuthor":"முதல்மை ஆசிரியர்","ownership":"உரிமையாளார் ","participants":"பங்கேற்பாளர்கள்","password":"கடவுச்சொல் ","pdfcontents":"pdf உள்ளடக்கம் ","percentage":"சதவீதம் ","permanent":"நிரந்தர முகவரி ","phone":"அலைபேசி எண் ","phoneNumber":"அலைபேசி எண் ","phoneOrEmail":"அலைபேசி  எண் அல்லது மின்னஞ்சல் முகவரியை  உள்ளிடவும்","phoneVerfied":"அலைபேசி சரிபார்க்கப்பட்டது ","phonenumber":"அலைபேசி எண் ","pincode":"அஞ்சல் குறியீடு ","playContent":"பாடத்தை இயக்கு ","plslgn":"இந்த அமர்வு  காலாவதியாகிவிட்டது. தொடர்ந்து  பயன்படுத்த மீண்டும் உள்நுழைக","position":"நிலை ","preferredLanguage":"விருப்பமான மொழி ","previous":"முன்  பக்கம் ","processid":"செயல் முகவரி ","profilePopup":"தங்களுக்கு ஏற்ற பாடங்களை காண, கீழ்கண்ட விவரங்களை பதிவேற்றவும்.","provider":"அமைப்பின் வழங்குநர் ","publicFooterGetAccess":"DIKSHA இயங்குதளமானது, ஆசிரியர்கள், மாணவர்கள் மற்றும் பெற்றோர்களுக்கு பள்ளி பாடத்திற்கு தொடர்புடைய கற்றல் பொருட்களை வழங்குகிறது. DIKSHA பயன்பாட்டை பதிவிறக்கி உங்கள் பாடநூலில் உள்ள விரைவு குறியீடை ஸ்கேன் செய்தல் உங்கள் பாடநூலை அணுகலாம் ","publishedBy":"இவரால் வெளியிடப்பட்டது","publishedOnInstanceName":"{instance} அன்று வெளியிடப்பட்டது","reEnterPassword":"மீண்டும் கடவுச்சொல்லை உள்ளீடுக ","readless":"குறைவாக படிக்க...","readmore":"...மேலும் படிக்க","redirectMsg":"இந்த பாடம் வெளியே வழங்கப்பட்டுள்ளது ","redirectWaitMsg":"பாடத்தை ஏற்றும்போது தயவுசெய்து காத்திருக்கவும் ","removeAll":"அனைத்தையும் நீக்கு ","reportUpdatedOn":"இந்த அறிக்கை கடைசியாக புதுப்பிக்கப்பட்டது","resendOTP":"OTO ஐ  மீண்டும் அனுப்பு ","resentOTP":"OTP திருப்பி அனுப்பப்பட்டுள்ளது. OTP ஐ  உள்ளிடவும் ","resourcetype":"வழிமுறை வகை ","retired":"ஓய்வு பெற்றற்றது ","role":"பொறுப்பு ","roles":"பாத்திரம் ","sameEmailId":"இந்த மின்னஞ்சல் முகவரி உங்கள் சுயவிவரத்துடன் தொடர்புடைய மின்னஞ்சல் முகவரி ஒன்றே","samePhoneNo":"இந்த அலைபேசியின் எண்ணும் உங்கள் சுயவிவரத்துடன் தொடர்புடைய எண்ணும் ஒன்றே","school":"பள்ளி ","search":"தேடு  ","searchForContent":"6 இலக்கிய விரைவு குறியீட்டை   உள்ளிடவும் ","searchUserName":"பயனர் பெயரை தேடு","seladdresstype":"முகவரி வகையை தேர்ந்தெடுக்கவும் ","selectAll":"அனைத்தையும் தேர்வுசெய் ","selectBlock":"தொகுதியை தேர்வுசெய்","selectDistrict":"மாவட்டத்தை தேர்வுசெய்க ","selectSchool":"பள்ளியை தேர்ந்தெடு ","selectState":"மாநிலத்தை தேர்வுசெய்க ","selected":"தேர்ந்தெடுக்கப்பட்டது ","selectreason":"காரணத்தை தேர்வுசெய்யவும் ","sesnexrd":"அமர்வு  காலாவதியாகிவிட்டது","setRole":"பயனரைத் திருத்து","share":"பகிர் ","sharelink":"இந்த இணைப்பை பயன்படுத்தி பகிரவும் ","showLess":"குறைவாக காட்டவும் ","showingResults":"முடிவுகளை காட்டுகிறது ","showingResultsFor":"தங்கள் {searchString} முடிவுகளை காண்பிக்கிறது","signUp":"பதிவு செய்க ","signinenrollHeader":"பாடநெறிகள் பதிவுசெய்யப்பட்ட பயனர்கள் மட்டும் தான் எடுத்துக்கொள்ளமுடியும். பாடநெறிகளை அணுக   உள்நுழையவும் ","signinenrollTitle":"இந்த பாடநெறிக்குப்  பதிவுசெய்ய உள்நுழையவும் ","skillTags":"திறன் குறிச்சொற்கள் ","sltBtch":"தயவுசெய்து, தொடர ஒரு தொகுதியை தேர்ந்தெடுக்கவும் ","socialmedialinks":"சமூக ஊடக இணைப்புகள் ","sortby":"வரிசைபடுத்து ","startExploringContent":"விரைவு குறீயீட்டை  உள்ளிடுவதன் மூலம் பாடத்தை ஆராய தொடங்கவும் ","startExploringContentBySearch":"தேடல் விருப்பத்தை அல்லது விரைவு குறியீட்டைப் பயன்படுத்தி பாடத்தை ஆராயுங்கள் ","startdate":"தொடக்க நாள் ","state":"மாநிலம் ","stateRecord":"மாநில பதிவுகள் படி","subject":"பாடம் ","subjects":"பாடம் ","subjectstaught":"கற்பித்த பாடங்கள் ","submitOTP":"OTP ஐ  சமர்ப்பிக்கவும் ","subtopic":"துணை தலைப்பு","successres":"வெற்றி முடிவுகள்  ","summary":"சுருக்கம் ","tableNotAvailable":"இந்த அறிக்கையின் அட்டவணை காட்சி கிடைக்கவில்லை","takenote":"குறிப்பு எடு ","tcfrom":"முதல் ","tcno":"இல்லை ","tcto":"பெறுநர் ","tcyes":"ஆம் ","tenDigitPhone":"10 இலக்க  அலைபேசி எண் ","termsAndCond":"விதிமுறைகள் மற்றும் நிபந்தனைகள்","termsAndCondAgree":"பயன்பாட்டின் விதித்திமுறைகள் மற்றும் நிபந்தனைகளை நான் ஏற்கிறேன் ","theme":"ஆய்வுப்பொருள்","title":"தலைப்பு ","toTryAgain":"மீண்டும் முயற்சிக்க","topic":"தலைப்பு","topics":"தலைப்பு ","trainingAttended":"பங்குபெற்ற பயிற்சிகள் ","twitter":"கீச்சகம் ","unableToUpdateEmail":"மின்னஞ்சல் முகவரியைப் புதுப்பிக்க முடியவில்லை?","unableToUpdateMobile":"அலைபேசி எண்ணைப் புதுப்பிக்க முடியவில்லை?","unableToVerifyEmail":"மின்னஞ்சல் முகவரியை சரிபார்க்கமுடியவில்லையா?","unableToVerifyPhone":"அலைபேசி என்னை சரிபார்க்க முடியவில்லை ","unenrollMsg":"நீங்கள் இந்த தொகுதியில் இருந்து விலக விரும்புறீர்களா ?","unenrollTitle":"தொகுதியில் இருந்து விலக","uniqueEmail":"உங்கள் மின்னஞ்சல் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது ","uniqueEmailId":"இந்த மின்னஞ்சல் முகவரி ஏற்கனவே பதிவுசெய்யப்பட்டுள்ளது. மற்றொரு மின்னஞ்சல் முகவரியை உள்ளிடவும்","uniqueMobile":"இந்த அலைபேசி எண் ஏற்கனவே பதிவுசெய்யப்பட்டுள்ளது. மற்றொரு அலைபேசி எண்ணை உள்ளிடவும்.","uniquePhone":"உங்கள் அலைபேசி எண் ஏற்கனவே  பதிவுசெய்யப்பட்டுள்ளது ","updateEmailId":"மின்னஞ்சல் முகவரியை புதுப்பிக்கவும்","updatePhoneNo":"அலைபேசி எண் புதுப்பிக்கவும்","updatedon":"மேம்படுத்தப்பட்ட நாள் ","updateorgtype":"அமைப்பின் வகையை மேம்படுத்த ","upldfile":"பதிவேற்றிய கோப்பு ","uploadContent":"உள்ளடக்கத்தை பதிவேற்றவும் ","uploadEcarFromPd":"உங்கள் பென் டிரைவிலிருந்து {instance} கோப்புகளை (எ.கா.: MATHS_01.ecar) பதிவேற்றவும்","userFilterForm":"பயனர்களின் படிவங்களை பார்","userID":"பயனர் முகவரி ","userId":"பயனர் முகவரி","userType":"பயனர் வகை ","username":"பயனர் பெயர் ","validEmail":"சரியான மின்னஞ்சல் முகவரியை உள்ளிடவும் ","validPassword":"சரியான கடவுச்சொல்லை உள்ளிடவும் ","validPhone":"சரியான 10 இலக்க அலைபேசி எண்ணை உள்ளிடவும் ","videos":"காணொளிகள் ","view":"காண்க","viewless":"குறைவாக பார்க்க  ","viewmore":"மேலும் பார்க்க ","viewworkspace":"உங்கள் பணியிடங்களை பார்க்க ","watchVideo":"காணொளியை பார்க்கவும் ","whatsQRCode":"விரைவு குறியீடு என்றால் என்ன?","whatwentwrong":"என்ன தவறு நேர்ந்தது ?","whatwentwrongdesc":"என்ன தவறு என்று எங்களுக்கு தெரியப்படுத்துங்கள் . சரியான காரணங்களை குறிப்பிடுவதன் மூலம் , இதனை விரைவில் பரிசீலனை செய்கிறோம் . தங்கள் கருத்துக்கு நன்றி.என்ன  தவறு  என்று எங்களுக்கு  தெரியப்படுத்துங்கள் . சரியான காரணங்களை  குறிப்பிடுங்கள்  நாங்கள்  இதனை விரைவில் பரிசீலனை செய்கிறோம்   . தங்கள் கருத்துக்களுக்கு  நன்றி.","worktitle":"ஆக்கிரமைப்பு /வேலை தலைப்பு ","wrongEmailOTP":"தவறான OTP ஐ  உள்ளிட்டுள்ளீர்கள். உங்கள் மின்னஞ்சல் முகவரியில் பெறப்பட்ட OTP ஐ உள்ளிடவும் . OTP 30 நிமிடம் மட்டுமே செல்லுபடியாகும் .","wrongPhoneOTP":"நீங்கள் தவறான OTP ஐ  உள்ளிட்டுள்ளீர்கள் . உங்கள் அலைபேசியில் பெறப்பட்ட OTP ஐ  உள்ளிடவும். OTP 30 நிமிடங்கள் மட்டுமே செல்லுபடி ஆகும்.","yop":"தேர்ச்சிபெற்ற வருடம் ","indPhoneCode":91,"howToUseDiksha":"How to use {instance} desktop app","manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","recoverAccount":"Recover Account","mergeAccount":"Merge Account","phoneRequired":"Mobile number is required","emailPhonenotRegistered":"Email address / Mobile number is not registered with {instance}","enterName":"Enter name","enterNameNotMatch":"The entry does not match the name registered with {instance}","receiveOTP":"Where would you like to receive the OTP?","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","otpSentTo":"OTP has been sent to","itis":"It is","validFor":"valid for 30 min","otpMandatory":"OTP is mandatory","otpValidated":"OTP validated successfully","newPassword":"New Password","enterEightCharacters":"Enter at least 8 characters","passwordMismatch":"Password mismatch, enter the correct password","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","enternameAsRegisteredInAccount":"and the name as on the {instance} account","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","certificateIssuedTo":"Certificate issued to","certificatesIssued":"Certificates Issued","completingCourseSuccessfully":"For successfully completing the training,","noCreditsAvailable":"No credits available","courseCredits":"Credits","dashboardcertificateStatus":"Certificate Status","deviceId":"Device ID","downloadCourseQRCode":"Download Training QR Code","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadingContent":"Preparing to download {contentName}...","enterCertificateCode":"Enter the certificate code here","errorMessage":"Error message","externalId":"External Id","grades":"Grades","lang":"Language","onDiksha":"on {instance} on","recentlyAdded":"Recently Added","contentType":"Content Type","returnToCourses":"Return to Trainings","rootOrg":"Root org","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","updatecollection":"Update All","updatecontent":"Update Content","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","verifyingCertificate":"Verifying your certificate","watchCourseVideo":"Watch Video","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","exportingContent":"Preparing to copy {contentName}...","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","versionKey":"Version:","releaseDateKey":"Release Date:","supportedLanguages":"Supported Languages:","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from"},"btn":{"add":"சேர்க்க ","addToLibrary":"எனது நூலாக்கத்திற்கு பதிவிறக்கவும் ","addedToLibrary":"நூலகத்தில் சேர்க்கப்பட்டது ","addingToLibrary":"நூலகத்தில் சேர்க்கப்படுகிறது ","apply":"விண்ணப்பி ","browse":"ஆன்லைனில் உலாவுக ","cancel":"ரத்துசெய் ","cancelCapitalize":"ரத்து ","clear":"தெளிவு ","close":"மூடிட ","contentImport":"கோப்புகளை பதிவேற்றவும் ","copyLink":"நகல் இணைப்பு ","create":"உருவாக்க ","download":"பதிவிறக்க","downloadCompleted":"பதிவிறக்கம் முடிந்தது ","downloadDikshaForWindows":"வின்டோஸிற்கு பதிவிறக்கவும்","downloadFailed":"பதிவிறக்கம் தோல்வியடைந்தது ","downloadInstruction":"பதிவிறக்க வழிமுறைகளை பார்","downloadManager":"என்னுடைய பதிவிறக்கங்கள் ","downloadPdf":"உதவி ","downloadPending":"பதிவிறக்கம் நிலுவையில் உள்ளது ","edit":"திருத்து ","enroll":"பதிவுசெய் ","export":"பெண் டிரைவ்வில் நகலெடு  ","login":"உள் நுழை ","myLibrary":"எனது நூலகம் ","next":"அடுத்து ","no":"இல்லை ","ok":"சரி ","previous":"முந்தைய பக்கம்","remove":"நீக்கு","reset":"மீட்டமைக்க ","resume":"தற்குறிப்பு ","resumecourse":"பாடநெறியை தொடரு","save":"சேமி ","selectContentFiles":"கோப்புகளை தேர்வுசெய் ","selectLanguage":"மொழியை தேர்ந்தேடுக்கவும்","selrole":"பாத்திரத்தை தேர்ந்தெடுக்கவும் ","signin":"உள்நுழை ","signup":"பதிவு செய் ","smplcsv":"CSV  மாதிரிகளை பதிவிறக்கவும் ","submit":"சமர்ப்பிக்கவும் ","submitbtn":"சமர்ப்பி","tryagain":"மீண்டும் முயற்சிக்கவும் ","unenroll":"விலகு ","update":"மேம்படுத்து ","uploadorgscsv":"அமைப்பின் csv ஐ  பதிவேற்றவும் ","viewCourseStatsDashboard":"பாடநெறியின் dashboard (தஷ்போர்ட்)","viewcoursestats":"பாடநெறியின் புள்ளிவிவரங்கள்","viewless":"குறைவாக பார்க்க ","viewmore":"மேலும் காண ","yes":"ஆம் ","yesiamsure":"சரி ","downloadCertificate":"Download Certificate","merge":"Merge","verify":"Verify","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","uploadusrscsv":"Upload users CSV","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"பெண் ","male":"ஆண் ","transgender":"திருநங்கை "},"instn":{"t0002":"நீங்கள் ஒரு csv கோப்பில் ஒரே நேரத்தில் 199 அமைப்புகளின் விவரங்களை சேர்க்கவோ பதிவேற்றவோ இயலும் .","t0007":"அமைப்பு பெயர் பத்தி கட்டாயமானது . அமைப்பு பெயரை இந்த  பத்தியில் உள்ளிடவும் .","t0011":"நீங்கள்  முன்னேற்றத்தை செயலாக்க முகவரி மூலம் கண்காணிக்கலாம் ","t0012":"தயவு செய்து PROCESS  ID ஐ  தங்கள் பயன்பாட்டிற்காக சேமித்து கொள்ளவும். PROCESS ID மூலம் முன்னேற்றத்தை தொடரமுடியும் ","t0013":"குறிப்புக்கு  csv கோப்பை பதிவிறக்கவும் ","t0015":"அமைப்பை பதிவேற்றவும் ","t0016":"பயனர்களைப்   பதிவேற்றவும் ","t0020":"திறமையை சேர்க்க தட்டச்சடிக்க தொடங்கவும் ","t0021":"ஒவ்வொரு நிறுவனத்தின் பெயரையும் தனிவரிசையில் உள்ளிடவும் ","t0022":"மற்ற வரிசையில் விவரங்களை உள்ளிடுவது கட்டாயம் இல்லை ","t0024":"தடம்: மாஸ்டர் அமைப்பு உருவாக்கத்தின் பொது தனிப்பட்ட முகவரியை வழங்கும் ","t0025":"வெளிப்புற முகவரி: ஒவ்வொரு நிறுவனத்துடனும் தொடர்புடைய தனிப்பட்ட முகவரி  நிர்வாக அமைப்பு களஞ்சியத்தில் உள்ளது.","t0026":"வழங்குநர்: நிர்வாக அமைப்பின் தடம் முகவரி ","t0027":"விளக்கம்  : அமைப்பை பற்றி விவரிக்கும்  விவரம் ","t0028":"முகப்புUrl: நிறுவனத்தின் முகப்பு பக்கம் url","t0029":"அமைப்பின் குறீயிடு : அமைப்பின் தனிப்பட்ட குறீயிடு, ஏதேனும் இருப்பின் ,","t0030":"அமைப்பின் வகை: அமைப்பின் வகை, அரசு சாரா அமைப்பு, ஆரம்பப்பள்ளி , உயர்நிலைப்பள்ளி போன்றவை ...","t0031":"விருப்பமான  மொழிகள்: அமைப்பின் விருப்பமான மொழிகள், ஏதேனும் ","t0032":"தொடர்பு விவரம் : அமைப்பின் அலைபேசி எண் மற்றும் மின்னஞ்சல் முகவரி.  விவரங்களை சுருள் அடைப்புக்குறிக்குள் ஒற்றை மேற்கோள்குறியுடன் உள்ளிடவும் . எ -கா  [ {' அலைபேசி எண் ':'1234567890' }]","t0049":"நிரல் மதிப்பு RootOrg True என்றால் சேனல் கட்டாயமாகும்","t0050":"வெளிப்புற முகவரி மற்றும் வழங்குபவர் இரண்டுமே கட்டாயம் ","t0055":"அறிவிப்பு விவரங்கள்  எதுவும் இல்லை ","t0056":"பின்னர் முயற்சிக்கவும் ","t0058":"இதுவாக பதிவிறக்க ","t0059":"csv ","t0060":"நன்றி !","t0061":"அச்சச்சோ...","t0062":"இந்த பாடநெறிக்கான  தொகுப்பு நீங்கள் இன்னும் உருவாக்கவில்லை. புதிய தொகுப்பை உருவாக்கியப் பின்னர் DASHBOARD (டாஷ்போர்ட்) ஐ  மீண்டும் சரிபார்க்கவும் ","t0063":"நீங்கள் இதுவரை எந்த பாடநெறியும் உருவாக்கவில்லை. புதிய பாடத்தை உருவாக்கியபின் dashboard (தாஷ்போர்ட்)  ஐ  பார்க்கவும்  ","t0064":"ஒரே வகையான பல முகவரிக்க்ள் முகவரிகள் தேர்ந்தெடுக்கப்பட்டுள்ளது . தயவுசெய்து ஒன்றை மாற்றவும் .","t0065":"பதிவிறக்கு","t0070":"CSV  கோப்பை பதிவிறக்கவும் . ஒரே அமைப்பில் உள்ள பயனர்களை ஒரு CSV கோப்பில் ஒரே நேரத்தில் பதிவேற்றலாம்.","t0071":"பயனரின் கணக்கில் பின்வரும் கட்டாயமான விவரங்களை  உள்ளிடவும் ","t0072":"முதல் பெயர் : பயனரின் முதல் பெயர், அகரவரிசை மதிப்பு .","t0073":"அலைபேசி அல்லது மின்னஞ்சல் : பயனாளர் அலைபேசி எண்  (பத்து இலக்க அலைபேசி எண் ) அல்லது மின்னஞ்சல் முகவரி . இரண்டில் ஒன்று  வழங்கப்பட வேண்டும்,  இருப்பினும் அவை இரண்டும் இருந்தால் இரண்டையும்  வழங்குமாறு அறிவுறுத்தப்படுகிறது .","t0074":"பயனர் பெயர்: பயனருக்கு தனிப்பட்ட பெயர் நிறுவனத்தின் மூலம் ஒதுக்கப்பட்டுள்ளது, எண்ணெழுத்து ","t0076":"குறிப்பு: CSV கோப்பில் உள்ள அணைத்து வரிசையும் கட்டாயமல்ல, விவரங்களை பூர்த்தி செய்ய , பார்க்கவும் ","t0077":"பதிவுசெய்த பயனர்கள் ","t0078":"இடத்தின் முகவரி: குறிப்பிட்ட அமைப்பின் அறிவுப்பு தலைப்பை கண்டறியும் முகவரி ","t0079":"இடக்குறீயீடு  : அரைப்புள்ளியால் பிரிக்கப்பட்ட  இடக்குறியீடுகளின் பட்டியல் ","t0081":"DIKSHAவில் பதிவு  செய்தமைக்கு நன்றி . சரிபார்ப்புக்கு SMS OTPயை  அனுப்பியுள்ளோம் . பதிவு செயல் முறையை முடிக்க உங்கள் அலைபேசி எண்ணில்  உள்ள  OTPயை  உள்ளிடவும் .","t0082":"DIKSHA வில் பதிவு செய்தமைக்கு நன்றி. சரிபார்ப்புக்கு தங்கள் மின்னஞ்சலுக்கு OTPயை அனுப்பியுள்ளோம் . பதிவு செயல் முறையை  முடிக்க உங்கள் மின்னஞ்சல் முகவரியில் உள்ள OTP யை உள்ளிடவும்.","t0083":"அலைபேசியின் எண் சரிபார்ப்புக்கான OTP உடன் SMS ஐ பெறுவீர்கள்","t0084":"மின்னஞ்சல் mugavari சரிபார்ப்புக்கான OTP உடன் நீங்கள் மின்னஞ்சலைப் பெறுவீர்கள்","t0085":"இந்த அறிக்கை முதல் 10,000 பங்கேற்பாளர்களுக்கான தரவைக் காட்டுகிறது. தொகுதியில் உள்ள அனைத்து பங்கேற்பாளர்களின் முன்னேற்றம் காண பதிவிறக்க பொத்தானை அழுதவுன்.","t0023":"isRootOrg: Valid values for this column True False","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"குறிப்பு அல்லது தலைப்பை தேட  ","t0002":"தங்கள் கருத்தை பதிவு செய்யவும் ","t0005":"தொகுதி வழிகாட்டிகளைத் தேர்ந்தெடுக்கவும்","t0006":"தொகுதி உறுப்பினர்களைத் தேர்ந்தெடுக்கவும்"},"lnk":{"announcement":"அறிவுப்பு முகப்புப்பலகை ","assignedToMe":"எனக்கு ஓதுக்கப்பட்டுள்ள்ளது ","contentProgressReport":"பாட முன்னேற்ற அறிக்கை","contentStatusReport":"பாட முன்னேற்ற அறிக்கை","createdByMe":"என்னால் உருவாக்கப்பட்டது ","dashboard":"நிர்வாகியின் முகப்பு பலகை ","detailedConsumptionMatrix":"விரிவான பயன்பாடு மேட்ரிக்ஸ்","detailedConsumptionReport":"விரிவான பயன்பாடு அறிக்கை","footerContact":"கேள்விகளுக்கு தொடர்பு கொள்ளவும் ","footerDIKSHAForMobile":"அலைபேசிக்கு DIKSHA ","footerDikshaVerticals":"தீக்ஷாவின் அங்கங்கள்","footerHelpCenter":"உதவி மையம் ","footerPartners":"Partners","footerTnC":"பயன்பாட்டு   விதிமுறைகள் ","logout":"வெளியேறு ","myactivity":"எனது செயல்பாடு ","profile":"சுயவிவரம் ","textbookProgressReport":"பாடநூல் முன்னேற்ற அறிக்கை","viewall":"அணைக்கிதையும் பார் ","workSpace":"பணியிடம் "},"pgttl":{"takeanote":"குறிப்பு எடு "},"prmpt":{"deletenote":"நீங்கள் நிச்சயமாக இந்த குறிப்பை நீக்க விரும்புறீர்களா  ","enteremailID":"உங்கள் மின்னஞ்சல் முகவரியை உள்ளிடவும்","enterphoneno":"10 இலக்க அலைபேசி எண்ணை உள்ளிடவும் ","search":"தேட ","userlocation":"இடம் "},"scttl":{"blkuser":"தடைசெய்யப்பட்ட பயனர் ","contributions":"பங்களிப்புகள்  ","instructions":"அறிவுறுத்தல் :","signup":"பதிவு செய்ய ","todo":"செய்ய வேண்டியவை ","error":"Error:"},"snav":{"shareViaLink":"இணைப்பு வழியாக பகிரப்பட்டது ","submittedForReview":"மதிப்பாய்வுக்காக சமர்ப்பிக்கப்பட்டுள்ளது "},"tab":{"all":"அனைத்தும் ","community":"குழுக்கள் ","courses":"பாடநெறிகள்","help":"உதவி ","home":"முகப்பு ","profile":"சுயவிவரம் ","resources":"நூலகம் ","users":"பயனர் ","workspace":"பணியிடம் ","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"பாடநெறியை வெற்றிகரமாக முடித்துவிட்டீர்கள்","காண":null,"messages":{"emsg":{"m0001":"தற்பொழுது பதிவு செய்ய இயலாது . பின்னர் முயற்சிக்கவும் ","m0003":"நீங்கள் வழங்குநர் மற்றும் வெளிப்புற முகவரியை அல்லது அமைப்பின் முகவரியை உள்ளிடவேண்டும் ","m0005":"எதோ தவறு நடந்துவிட்டது, தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0007":"அளவு குறைவாக இருக்கவேண்டும் ","m0008":"பாடத்தை நகலெடுக்க முடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0009":"இப்பொழுது விலக இயலாது . பின்னர் முயலவும்","m0014":"அலைபேசி எண் புதுப்பிக்க முடியவில்லை","m0015":"மின்னஞ்சல் முகவரியைப் புதுப்பிக்க முடியவில்லை","m0016":"மாநிலத்தை பெறமுடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0017":"மாவட்டத்தை பெறமுடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0018":"சுயவிவரம் புதுப்பித்தல் தோல்வியடைந்தது ","m0019":"அறிக்கையைப் பதிவிறக்க முடியவில்லை, பிறகு மீண்டும் முயற்சிக்கவும்","m0020":"பயனர் பதிவேற்றம் தோல்வியடைந்தது. பின்னர் முயற்ச்சிக்கவும்","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"பதிவுசெய்யப்பட்ட பாடநெறிகளை பெறமுடியவில்லை, தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0002":"மற்ற பாடநெறிகளை  பெறமுடியவில்லை , தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0003":"பாடநெறியின் காலவரை விவரங்களை பெறமுடியவில்லை ","m0004":"தகவல்கள் பெறுவது தோல்வியடைந்தது . பின்னர் முயற்சிக்கவும் .","m0030":"குறிப்பு உருவாக்கப்படுவது தோல்வியடைந்தது, தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0032":"குறிப்பை அகற்றப்படுவது தோல்வியடைந்தது, தயவுசெய்து பின்னர் முயற்சிக்கவும்.","m0033":"குறிப்புகள் பெறுவது தோல்வியடைந்தது. பின்னர் முயற்சிக்கவும்.","m0034":"குறிப்பை புதுப்பித்தல்  தோல்வி  அடைந்தது. பின்னர் முயற்சிக்கவும்.","m0041":"கல்வியை நீக்குவது தோல்வியடைந்தது,  தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0042":"அனுபவம் நீக்க முடியவில்லை. தயவு செய்து பின்னர் முயற்சிக்கவும் ","m0043":"முகவரியை நீக்குவது தோல்வியடைந்தது. தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0048":"சுயவிவரம் புதுப்பித்தல் தோல்வியடைந்தது, தயவுசெய்து பின்னர் முயற்சிக்கவும்... ","m0049":"தரவை ஏற்ற முடியவில்லை ","m0050":"கோரிக்கையை சமர்ப்பிக்க முடியவில்லை, தயவுசெய்து பின்னர் முயற்சிக்கவும்...","m0051":"எதோ தவறு நடந்து விட்டது, தயைசெய்து பின்னர் முயற்சிக்கவும் ","m0054":"தொகுதி  விவரம் பெறுதல்  தோல்வியடைந்தது , பின்னர் மீண்டும் முயற்சிக்கவும் ","m0056":"பயனர்கள் பட்டியலை பெறுவது தோல்வியடைந்தது, பின்னர் மீண்டும் முயற்சிக்கவும் .","m0076":"கட்டாய துறைகளை உள்ளிடவும் ","m0077":"தேடல் முடிவு பெறுவது தோல்வியடைந்தது...","m0079":"பதக்க ஒதுக்கீடு தோல்வியடைந்தது, தயவு செய்து பின்னர் முயற்சிக்கவும்....","m0080":"பதக்கம் பெறுவது தோல்வியடைந்தது. பின்னர் முயற்சிக்கவும்.","m0082":"இந்த பாடநெறியில்  சேர்ந்துகொள்ள அனுமதியில்லை","m0085":"ஒரு தொழில்நுட்ப பிழை  ஏற்பட்டுள்ளது. மீண்டும் முயற்சிக்கவும் ","m0086":"ஆசிரியரால் நீக்கப்பட்ட  இந்த பாடநெறி இனி கிடைக்காது ","m0087":"தயவுசெய்து காத்திருக்கவும் ","m0088":"நங்கள் விவரங்களை பெறுகிறோம் ","m0089":"தலைப்புகள்/துணைதலைப்புகள் கிடைக்ககவில்லை","m0090":"பதிவிறக்க முடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0091":"உள்ளடக்கத்தை நகலெடுக்க முடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0093":"உள்ளடக்கம் (கள்) பதிவேற்றம் தோல்வியுற்றது","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0094":"Could not download, try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"இந்த பாடநெறி  பொருத்தமற்றதாக குறியிடப்பட்டுள்ளது மற்றும் தற்போது  மறு ஆய்வு செய்யப்படுகிறது. தயவு செய்து  பின்னர் முயற்சிக்கவும் ","m0005":"தயவுசெய்து சரியான பட கோப்புகளை பதிவேற்றவும் . ஏற்றுக்கொள்ளப்படும் கோப்பு வகைகள் : jpeg,jpg,png. அதிகபட்ச அளவு :4MB ","m0017":"சுயவிவர முழுமை விகிதம் ","m0022":"கடைசி 7 நாட்களின் புள்ளிவிவரம் ","m0023":"கடைசி 14 நாட்களின் புள்ளிவிவரம் ","m0024":"கடைசி 5 நாட்களின் புள்ளிவிவரம் ","m0025":"புள்ளி விவரம் முதலில் இருந்து ","m0026":"வணக்கம், இப்பொழுது இந்த பாடநெறி கிடைக்கவில்லை. படைப்பாளர் இந்த பாடநெறியில்  சில மாற்றங்களை செய்துள்ளார் என காணப்படுகிறது","m0027":"வணக்கம், இந்த பாடம் தற்போது கிடைக்கவில்லை. பாடப் படைப்பாளர் சில மாற்றத்தை செய்துள்ளதை போல் உள்ளது ","m0034":"பாடம் வெளிப்புற மூலத்திலிருந்து  வந்தால், அது சிறுது நேரத்தில் திறக்கப்படும் . ","m0035":"அங்கீகரிக்கப்படாத அனுமதி ","m0036":"இந்த பாடம் வெளிப்படையாக உள்ளது, இதனை காண தயவுசெய்து முன்னோட்டத்தை சொடுக்கவும் ","m0040":"செய்பணி இன்னும் முன்னேறவில்லை, தயவுசெய்து பின்னர் முயற்சிக்கவும்.","m0041":"உங்கள் சுயவிவரங்கள் ","m0042":"% முடிவடைந்துள்ளது ","m0043":"சரியான ஆரம்ப தேதியை உள்ளிடவும்","m0044":"பதிவிறக்கம் தோல்வியடைந்தது","m0045":"பதிவிறக்க தோல்வி. சிறிது நேரம் கழித்து மீண்டும் முயற்சிக்கவும்","m0047":"நீங்கள் 100 பங்கேற்பாளர்களை மட்டுமே தேர்ந்தெடுக்க முடியும்","m0060":"If you have two accounts with {instance}, click","m0061":"to","m0062":"Else, click","m0063":"combine usage details of both accounts, and","m0064":"delete the other account","m0065":"Account merge initiated successfully","m0066":"you will be notified once it is completed","m0067":"Could not initiate the account merge. Click the Merge Account option in the Profile menu and try again","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0073":"Click Create New to create a new {instance} account.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"குறிப்பு வெற்றிகரமாக உருவாக்கப்பட்டது ","m0013":"குறிப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது...","m0014":"கல்வி வெற்றிகரமாக நீக்கப்பட்டது .","m0015":"அனுபவம் வெற்றிகரமாக நீக்கப்பட்டது ","m0016":"முகவரி வெற்றிகரமாக நீக்கப்பட்டது ","m0018":"சுயவிவரப்படம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது ","m0019":"விளக்கம் துல்லியமாக பதிவேற்றப்பட்டது ","m0020":"கல்வி வெற்றிகரமாக புதுப்பிக்கப்பட்டது ","m0021":"அனுபவம் வெற்றிகரமாக புதிப்பிக்கப்பட்டது ","m0022":"கூடுதல்  தகவல் வெற்றிகரமாக புதுப்பிக்கப்பட்டது ","m0023":"முகவரி வெற்றிகரமாக பதிவேற்றப்பட்டது ","m0024":"புது கல்வி வெற்றிகரமாக சேர்க்கப்பட்டது ","m0025":"புது அனுபவம் வெற்றிகரமாக சேர்க்கப்பட்டது ","m0026":"புதிய முகவரி வெற்றிகரமாக சேர்க்கப்பட்டது ","m0028":"பாத்திரங்கள் வெற்றிகரமாக பதிவேற்றப்பட்டது ","m0029":"பயனாளர் வெற்றிகரமாக நீக்கப்பட்டார் ","m0030":"பயனாளர் வெற்றிகரமாக பதிவேற்றப்பட்டார் ","m0031":"நிறுவனங்கள் வெற்றிகரமாக பதிவேற்றப்பட்டது ","m0032":"நிலை வெற்றிகரமாக பெறப்பட்டது ","m0035":"அமைப்பின் வகை வெற்றிகரமாக சேர்க்கப்பட்டது ","m0036":"இந்த தொகுதிக்கு பாடநெறிகள் வெற்றிகரமாக சேர்க்கப்பட்டது ","m0037":"வெற்றிகரமாக மேம்படுத்தப்பட்டது ","m0038":"திறன்கள் வெற்றிகரமாக புதுப்பிக்கப்பட்டன ","m0039":"வெற்றிகரமாக பதிவுசெய்யப்பட்டது, உள்நுழைக...","m0040":"சுயவிவரத் துரையின் தோற்றநிலை வெற்றிகரமாக புதுப்பிக்கப்பட்டது ","m0042":"உள்ளடக்கம் வெற்றிகரமாக நகலெடுக்கப்பட்டது ","m0043":"வெற்றிகரமாக ஒப்புதல் பெறப்பட்டது ","m0044":"பதக்கங்கள்  வெற்றிகரமாக ஓதுக்கப்பட்டது ","m0045":"பயனர் வெற்றிகரமாக தொகுதியிலிருந்து வெளியேறினார் ","m0046":"சுயவிவரம்  வெற்றிகரமாக மேம்படுத்தப்பட்டது... ","m0047":"உங்கள் அலைபேசி எண் புதுப்பிக்கப்பட்டது","m0048":"உங்கள் மின்னஞ்சல் முகவரி   புதுப்பிக்கப்பட்டது","m0049":"பயனர் பதிவேற்றம் வெற்றியடைந்தது","m0050":"பாடத்தை மதிப்பிட்டதிர்க்கு நன்றி!!","m0053":"பதிவிறக்குகிறது ","m0054":"{ பதிவேற்றப்பட்ட உள்ளடக்க நீளம்} உள்ளடக்கம் (கள்) வெற்றிகரமாக பதிவேற்றப்பட்டது","moo41":"அறிவிப்பு வெற்றிகரமாக ரத்துசெய்யப்பட்டது ","m0055":"Updating...","m0056":"You should be online to update the content","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"முடிவுகள் எதுவும் கிடைக்கவில்லை ","m0007":"உங்கள் தேடலை மேம்படுத்தவும் ","m0008":"முடிவுகள் இல்லை ","m0009":"ப்ளே செய்ய முடியவில்லை, மீண்டும் முயற்சிக்கவும் அல்லது மூடவும் ","m0022":"மதிப்பாய்வு செய்ய உங்கள் வரைவுகளில் ஒன்றை சமர்ப்பிக்கவும் . மதிப்பாய்வு செய்த பிறகு மட்டுமே பாடம் வெளியிடப்படும்.","m0024":"ஒரு ஆவணம் வீடியோ அல்லது ஏதேனும் வேறு ஆதரவு வடிவத்தை பதிவேற்றவும். தாங்கள் இதுவரை எதையும் பதிவேற்றம் செய்யவில்லை ","m0033":"தங்கள் வரைவுகளில் ஒன்றை மதிப்பாய்வுக்கு சமர்ப்பிக்கவும். இதுவரை  தாங்கள்  எந்த பாடத்தையும் மதிப்பாய்வுக்கு சமர்ப்பிக்கவில்லை.","m0035":"மதிப்பாய்வு செய்ய எந்த பாடமும் இல்லை.","m0060":"உங்கள் சுயவிவரத்தை பலப்படுத்தவும் ","m0062":"சரியான பட்டத்தை  உள்ளீடுக ","m0063":"சரியான  முகவரியை  உள்ளிடவும்  1","m0064":"நகரத்தை உள்ளீடுக ","m0065":"சரியான அஞ்சல் குறியீடை உள்ளீடுக ","m0066":"முதல் பெயரை உள்ளிடவும் ","m0067":"தயவுசெய்து சரியான அலைபேசி எண்ணை வழங்கவும் ","m0069":"மொழியை தேர்ந்தெடுக்கவும் ","m0070":"நிறுவனத்தின் பெயரை உள்ளீடுக ","m0072":"சரியான வேலை  / வேலை தலைப்பு  உள்ளிடுக ","m0073":"சரியான அமைப்பை உள்ளிடவும் ","m0077":"உங்கள் கோரிக்கையை நங்கள் சமர்ப்பிக்கிறோம் ","m0080":"தயவுசெய்து csv வடிவத்தில் உள்ள கோப்பை மட்டும் பதிவேற்றவும் ","m0081":"எந்த தொகுப்புகளும் கண்டுபிடிக்கப்படவில்லை ","m0083":"நீங்கள் இதுவரை எந்த பாடத்தையும் யாரிடமும் பகிர்ந்துகொள்ளவில்லை.","m0087":"தயவுசெய்து சரியான பயனர் பெயரை உள்ளிடவும், குறைந்தது 5 எழுத்துக்கள் இருக்க வேண்டும் ","m0088":"தயவுசெய்து சரியான கடவுச்சொல்லை உள்ளிடவும் ","m0089":"தயவுசெய்து சரியான மின்னஞ்சலை உள்ளீடுக ","m0090":"மொழியை தேர்ந்தெடுக்கவும் ","m0091":"தயவுசெய்து சரியான அலைபேசி என்னை உள்ளீடுக ","m0094":"சரியான சதவீதத்தை உள்ளிடவும் ","m0095":"தங்கள் வேண்டுகோள் வெற்றிகரமாக பெறப்பட்டது. கோப்பு தாங்கள் பதிவு செய்துள்ள மின்னஞ்சல் முகவரிக்கு பின்னர் அனுப்பப்படும். தயவு செய்து தங்கள் மின்னஞ்சலை தவறாமல் பார்க்கவும்.","m0104":"சரியான தரத்தை உள்ளிடவும் ","m0108":"உங்கள் முன்னேற்றம் ","m0113":"சரியான ஆரம்ப தேதியை உள்ளிடவும்","m0116":"தேர்ந்தெடுக்கப்பட்ட குறிப்பை நீக்குகிறது ","m0120":"இயக்க எந்த பாடமும் இல்லை ","m0121":"விரைவில் வரும்!","m0122":"தங்கள் மாநிலம் விரைவில் பாடத்தை QR குறியீட்டுடன் இன்னைப்பாரகள். குறுகிய காலத்தில் பாடம் கிடைக்கும்.","m0123":"தங்களை ஒரு கூட்டுப்பணியாளராக சேர்க்கும்படி ஒரு நண்பரிடம் கேளுங்கள். தங்கள் மின்னஞ்சல் வாயிலாக அதே செய்தி அறிவிக்கப்படும் ","m0125":"வளம், புத்தகம், பாடம், சேகரிப்பு அல்லது  பதிவேற்றத்தை உருவாக்க தொடங்கவும். தற்போது வேலைக்கு முன்னேற்ற வரைவு எதுவும் இல்லை ","m0126":"தயவுசெய்து வாரியத்தை தேர்ந்தெடுக்கவும் ","m0127":"தயவுசெய்து கல்வி வழியை தேர்ந்தெடுக்கவும் ","m0128":"தயவுசெய்து வகுப்பை தேர்ந்தெடுக்கவும் ","m0129":"விதிமுறைகள் மற்றும் நிபந்தனைகள் ஏற்றப்பட்டுக்கொண்டிருக்கிறது ","m0130":"நங்கள் மாவட்டத்தின் விவரத்தை பெறுகிறோம் ","m0131":"எந்த அறிக்கையும் கண்டுபிடிக்க முடியவில்லை","m0132":"உங்கள் பதிவிறக்க கோரிக்கையயை நாங்கள் பெற்றுள்ளோம். கோப்பு விரைவில் உங்கள் பதிவு பெற்ற மின்னஞ்சல் முகவரிக்கு அனுப்பப்படும் ","m0134":"பதிவு","m0135":"சரியான தேதியை உள்ளிடவும்","m0136":"சேர்க்கைக்கான கடைசி தேதி:","m0139":"DOWNLOADED","m0140":"DOWNLOADING","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0133":"Browse and download, or upload content to start using the desktop app","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"},"m0138":"FAILED"},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"நிறுவனத்தின் பெயர்","participants":"பங்கேற்பாளர்கள்","resourceService":{"frmelmnts":{"lbl":{"userId":"பயனாளர் முகவரி "}}},"t0065":"கோப்பை பதிவிறக்கு"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","no":"No","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"rmelmnts":{"btn":{"no":"No"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
+{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"பொருத்தமான பதிவுகள் கிடைக்கவில்லை","Mobile":"கருவி","SearchIn":"தேடு {searchContentType}","Select":"தேர்ந்தெடு ","aboutthecourse":"பாடநெறியின் விவரம் ","active":"செயல்பாட்டில் உள்ளது ","addDistrict":"மாவட்டத்தை சேர் ","addEmailID":"மின்னஞ்சல் முகவரியை சேர்க்கவும் ","addPhoneNo":"அலைபேசி எண்ணை சேர்க்கவும் ","addState":"மாநிலத்தை சேர் ","addlInfo":"கூடுதல் தகவல் ","addnote":"குறிப்பை சேர்க்க ","addorgtype":"அமைப்பின் வகையை சேர்க்கவும் ","address":"முகவரி ","addressline1":"முகவரி வரி 1 ","addressline2":"முகவரி வரி 2","anncmnt":"அறிவிப்பு","anncmntall":"எல்லா அறிவிப்புகளும் ","anncmntcancelconfirm":"இந்த அறிவிப்பை நிச்சயமாக நிறுத்த விரும்புறீர்களா?","anncmntcancelconfirmdescrption":"இந்த செயலுக்கு பின்னர் பயனாளர் இந்த அறிவிப்பை பார்க்க இயலாது ","anncmntcreate":"அறிவிப்பை உருவாக்கவும் ","anncmntdtlsattachments":"இணைப்புகள் ","anncmntdtlssenton":"அனுப்பப்பட்டது ","anncmntdtlsview":null,"anncmntdtlsweblinks":"இணையதள இணைப்புகள் ","anncmntinboxannmsg":"அறிவிப்பு ","anncmntinboxseeall":"அனைத்தையும் காண","anncmntlastupdate":"நுகர்வு தரவு கடைசியாக பதிவேற்றபட்ட நாள் ","anncmntmine":"எனது அறிவிப்புகள் ","anncmntnotfound":"எந்த அறிவிப்பும் இல்லை ","anncmntoutboxdelete":"நீக்கு ","anncmntoutboxresend":"மீண்டும் அனுப்பு ","anncmntplzcreate":"அறிவிப்பை உருவாக்கவும் ","anncmntreadmore":"...மேலும் படிக்க","anncmntsent":"அனுப்பப்பட்ட அணைத்து  அறிவிப்புகளையும் காட்டுகிறது ","anncmnttblactions":"செயல்கள் ","anncmnttblname":"பெயர் ","anncmnttblpublished":"வெளியிடப்பட்ட நாள் ","anncmnttblreceived":"பெறப்பட்டது ","anncmnttblseen":"காணப்பட்டது ","anncmnttblsent":"அனுப்பப்பட்டது ","attributions":"சிறப்பளிப்பவர்","author":"நுலாசிரியர் ","badgeassignconfirmation":"இந்த பாடத்திற்கு பதக்கம்  வழங்க வேண்டும் என்று விரும்புகிறீர்களா ?","batchdescription":"தொகுதி விளக்கம் ","batchdetails":"தொகுதி விவரங்கள் ","batchenddate":"முடியும் தேதி","batches":"தொகுதிகள் ","batchmembers":"தொகுதி உறுப்பினர்கள் ","batchstartdate":"ஆரம்ப தேதி","birthdate":"பிறந்த நாள் (dd /mm/yyyy )","block":"தடைசெய் ","blocked":"தடுக்கப்பட்டது ","blockedUserError":"பயனர் கணக்கு தடைசெய்யப்பட்டுள்ளது. தயவுசெய்து நிர்வாகத்தை தொடர்பு கொள்ளவும் ","blog":"வலைப்பதிவு ","board":"வாரியம் / பல்கலைக்கழகம் ","boards":"வாரியம் ","browserSuggestions":"மேம்படுத்தப்பட்ட அனுபவத்திற்கு, நீங்கள் மேம்படுத்த அல்லது நிறுவ வேண்டும் என்று நாங்கள் பரிந்துரைக்கிறோம்","certificationAward":"சான்றிதழ்கள்  மற்றும் விருதுகள் ","channel":"தடம் ","chkuploadsts":"பதிவேற்ற நிலையை சரிபார்க்கவும் ","chooseAll":"அனைத்தையும் தேர்ந்தெடு ","city":"நகரம் ","class":"வகுப்பு ","classes":"வகுப்பு ","clickHere":"இங்கே அழுத்தவும்","completed":"முடிவடைந்தது","completedCourse":"பாடநெறி முடிவடைந்தது","concept":"கருத்துக்கள் ","confirmPassword":"கடவுச்சொல்லை உறுதிப்படுத்துக ","confirmblock":"நீங்கள் நிச்சயமாக தடுக்க விரும்புறீர்களா ","connectInternet":"உள்ளடக்கத்தை உலாவ, இணையத்துடன் இணைக்கவும் ","contactStateAdmin":"இந்த தொகுதியில் அதிக பங்கேற்பாளர்களைச்சேர்க்க உங்கள் மாநில நிர்வாகியைத் தொடர்பு கொள்ளுங்கள்","contentCredits":"பாடத்திற்கு சிறப்பளிப்போர் ","contentcopiedtitle":"இந்த உள்ளடக்கம் இதிலிருந்துப் பெறப்பட்டது","contentinformation":"பாட தகவல்","contentname":"பாடத்தின் பெயர் ","contents":"பாடங்கள்","contentsUploaded":"உள்ளடக்கங்கள் பதிவேற்றப்படுகின்றன ","contenttype":"உள்ளடக்கம்","continue":"தொடர்க ","contributors":"பங்களிப்பாளர்கள் ","copy":"நகலாக்கு ","copyRight":"பதிப்புரிமை","copycontent":"பாடங்கள் நகலெடுக்கப்படுகிறது ","country":"நாடு ","countryCode":"நாட்டின் குறியீடு ","courseCreatedBy":"உருவாக்கியவர் ","coursecreatedon":"உருவாக்கப்பட்டத் தேதி ","coursestructure":"பாடநெறியின் வடிவமைப்பு ","createUserSuccessWithEmail":"உங்கள் மின்னஞ்சல் முகவரி சரிபார்க்கப்பட்டது. தொடர உள்நுழையவும் ","createUserSuccessWithPhone":"உங்கள் அலைபேசி எண் சரிபார்க்கப்பட்டது. தொடர உள்நுழையவும்.","createdInstanceName":"{instance} அன்று உருவாக்கப்பட்டது","createdon":"உருவாக்கப்பட்ட நாள் ","creationdataset":"உருவாக்கம் ","creator":"படைப்பாளர்","creators":"படைப்பாளர்கள் ","credits":"சிறப்பளிப்பவர் ","current":"தற்போதைய முகவரி ","currentlocation":"தற்போதைய இடம் ","curriculum":"பாடத்திட்டம் ","dashboardfiveweeksfilter":"கடைசி 5 வாரங்கள் ","dashboardfourteendaysfilter":"கடைசி பதினான்கு நாட்கள் ","dashboardfrombeginingfilter":"தொடக்கத்தில் இருந்து ","dashboardnobatchselected":"எந்த தொகுதியும் தேர்வு செய்யப்படவில்லை ","dashboardnobatchselecteddesc":"மேலும் தொடரப் பட்டியலில் இருந்து ஒரு தொகுதியை தேர்ந்தெடுக்கவும் ","dashboardnocourseselected":"எந்த பாடநெறியும் தேர்வுசெய்யப்படவில்லை ","dashboardnocourseselecteddesc":"மேற்கண்ட பட்டியலில் இருந்து பாடநெறியை தேர்வு செய்யவும் ","dashboardnoorgselected":"எந்த அமைப்பையும் தேர்வுசெய்யப்படவில்லை ","dashboardnoorgselecteddesc":"மேலும் தொடர பட்டியலில் ஒரு நிறுவனத்தை தேர்ந்தெடுக்கவும் ","dashboardselectorg":"அமைப்பை தேர்ந்தெடுக்கவும் ","dashboardsevendaysfilter":"கடைசி 7 நாட்கள் ","dashboardsortbybatchend":"தொகுதி முடிவடையும் நாள் ","dashboardsortbyenrolledon":"பதிவுசெய்யப்பட்டத்  தேதி","dashboardsortbyorg":"அமைப்பு ","dashboardsortbystatus":"நிலை ","dashboardsortbyusername":"பயனாளர் பெயர் ","degree":"பட்டம் ","delete":"நீக்கு ","deletenote":"குறிப்பை நீக்கு ","description":"விளக்கம் ","designation":"பதவி ","desktopAppFeature001":"இலவச வரம்பற்ற உள்ளடக்கம்","desktopAppFeature002":"பன்மொழி ஆதரவு","desktopAppFeature003":"ஆஃப்லைனில் உள்ளடக்கத்தை ப்ளே செய்","dialCode":"QR குறியீடு ","dialCodeDescription":"DIAL குறியீடு என்பது உங்கள் உரை புத்தகத்தில்  விரைவு குறீயீட்டின் கீழ் காணப்படும் 6 இலக்க  எண்ணெழுத்து  குறியீடாகும் .","dialCodeDescriptionGetPage":"விரைவு குறியீடு என்றால் தங்கள் புத்தகத்தில் கொடுக்கப்பட்டுள விரவு குறியீடு படத்தின் கீல் உள்ள  ஆங்கில எழுதும் எண்ணும் கலந்த 6 எழுத்து ஆகும்.","dikshaForMobile":"அலைபேசிக்கான  DIKSHA ","district":"மாவட்டம் ","dob":"பிறந்த நாள் ","done":"முடிந்தது ","downloadDikshaForMobile":"அலைபேசிக்கான  DIKSHAவை   பதிவிறக்கு ","downloadThe":"பதிவிறக்க வடிவம் ","dropcomment":"தங்கள் கருத்தை பதிவுசெய்யவும் ","ecmlarchives":"Ecml காப்பகங்கள்","edit":"திருத்து ","editPersonalDetails":"சுயவிவரங்களை திருத்தவும் ","editUserDetails":"பயனரின் விவரங்களை திருத்தவும் ","education":"கல்வி ","eightCharacters":"8 அல்லது அதற்கு மேற்பட்ட எழுத்துக்களை பயன்படுத்தவும் ","email":"மின்னஞ்சல் முகவரி ","emptycomments":"கருத்துக்கள் இல்லை ","enddate":"முடியும் நாள் ","enjoyedContent":"இந்த பாடம் பிடித்ததா?","enrollcourse":"பாடநெறயை எடுத்துக்கொள்","enrollmentenddate":"சேர்க்கை முடிவு தேதி","enterDialCode":"6 இலக்கிய விரைவு குறியீட்டை  உள்ளிடவும்","enterEmailID":"மின்னஞ்சல் முகவரியை உள்ளிடவும் ","enterOTP":"OTP ஐ  உள்ளிடவும் ","enterQrCode":"விரைவு குறியீட்டை உள்ளிடவும் ","enterValidCertificateCode":"சரியான சான்றிதழ் குறியீட்டை உள்ளிடவும்","epubarchives":"Epub காப்பகங்கள்","errorConfirmPassword":"கடவுச்சொல் பொருந்தவில்லை ","experience":"அனுபவம் ","expiredBatchWarning":"தங்கள் தொகுதி {EndDate} முடிவடைந்தது, ஆகையால் தங்கள் முன்னேற்றத்தை பார்க்க முடியாது","explore":"ஆராய்க ","exploreContentOn":"பாடத்தை  ஆராய்  {instance}","explorecontentfrom":"பாடத்தை ஆராய ","exprdbtch":"காலவாதியான தொகுதிகள் ","extlid":"அமைப்பின் வெளிப்புற  முகவரி ","facebook":"முகநூல் ","failres":"தோல்வியடைந்த முடிவுகள் ","fetchingBlocks":"தொகுதிகளை பெறும் வரை தயவுசெய்து காத்திருக்கவும்","fetchingSchools":"பள்ளிகளை பெறும்வரை தயவுசெய்து காத்திருக்கவும் .","filterby":"வடிகட்டிய மூலம் ","filters":"தெரிவு செய்க ","first":"முதல் பக்கம் ","firstName":"முதல் பெயர் ","flaggedby":"கொடியிடப்பட்டவர் ","flaggeddescription":"கொடியிடப்பட்ட விளக்கம் ","flaggedreason":"கொடியிடப்பட்ட காரணம் ","fnameLname":"முதல் மற்றும் கடைசி பெயரை உள்ளீடுக ","for":"ஆக","forDetails":"விவரங்களுக்கு","forMobile":"அலைபேசிக்கு","forSearch":"{searchString}க்கு","fullName":"முழு பெயர் ","gender":"பாலினம் ","getUnlimitedAccess":"உங்கள் அலைபேசியில் பாடநூல்கள், பாடங்கள் மற்றும் பாடநெறிகள் ஆகியவற்றை offline இல் வரம்பற்று அணுகுங்கள்.","goback":"ரத்துசெய்ய ","grade":"மதிப்பு ","graphStat":"வரைபட புள்ளிவிவரம்","h5parchives":"H5p காப்பகங்கள்","homeUrl":"முகப்பு Url","howToVideo":"எப்படி காணோளி","htmlarchives":"Html காப்பகங்கள்","imagecontents":"படம்  உள்ளடக்கம் ","inAll":"ஆகமொத்தம் ","inUsers":"பயனர்கள்","inactive":"செயலற்று ","institute":"நிறுவனம் பெயர் ","isRootOrg":"இது  RootOrg","iscurrentjob":"இது உங்கள் தற்போதைய வேலைய?","keywords":"சிறப்புச்சொற்கள் ","language":"அறியப்பட்ட மொழிகள் ","last":"கடைசி பக்கம் ","lastAccessed":"கடைசியாக அணுகப்பட்ட நாள் ","lastName":"கடைசி பெயர் ","lastupdate":"கடைசியாக புதுப்பிக்கப்பட்ட நாள் ","learners":"கற்பவர்கள் ","licenseTerms":"உரிம விதிமுறைகள்","limitsOfArtificialIntell":"செயற்கை நுண்ணறிவின் வரம்புகள்","linkCopied":"இணைப்பு நகலெடுக்கப்பட்டது","linkedContents":"இணைக்கப்பட்ட பாடங்கள் ","linkedIn":"லிங்கிடின் ","location":"இடம் ","lockPopupTitle":"{collaborator} தற்போது {contentName} இன் மேல் வேலை செய்துக்கொண்டு இருக்கிறார். சற்று நேரம் கழித்து.","markas":"குறிக்கவும் ","medium":"கல்வி வழி ","mentors":"ஆலோசகர் ","mobileEmailInfoText":"உள்நுழைய அலைபேசி எண் அல்லது மின்னஞ்சல் முகவரியை உள்ளிடவும்","mobileNumber":"அலைபேசி எண்","mobileNumberInfoText":"DIKSHA வில் நுழைய அலைபேசி எண்னை உள்ளிடவும் ","more":"மேலும் ","myBadges":"என் தொகுதிகள் ","mynotebook":"எனது குறிப்பேடு ","mynotes":"எனது குறிப்புகள் ","name":"பெயர் ","nameRequired":"பெயர் தேவைப்படுகிறது ","next":"அடுத்த பக்கம் ","noContentToPlay":"இயக்க எந்த பாடமும் இல்லை","noDataFound":"எந்த தகவலும் ல் இல்லை ","offline":"நீங்கள் ஆஃப்லைனில் உள்ளீர்கள்","online":"நீங்கள் ஆன்லைனில் இருக்குறீர்கள் ","opndbtch":"திறந்த தொகுதிகள் ","orgCode":"அமைப்பின் குறியீடு ","orgId":"அமைப்பின் முகவரி ","orgType":"அமைப்பு வகை ","organization":"அமைப்பு ","orgname":"நிறுவனத்தின் பெயர்","orgtypes":"அமைப்பு வகை ","originalAuthor":"முதல்மை ஆசிரியர்","ownership":"உரிமையாளார் ","participants":"பங்கேற்பாளர்கள்","password":"கடவுச்சொல் ","pdfcontents":"pdf உள்ளடக்கம் ","percentage":"சதவீதம் ","permanent":"நிரந்தர முகவரி ","phone":"அலைபேசி எண் ","phoneNumber":"அலைபேசி எண் ","phoneOrEmail":"அலைபேசி  எண் அல்லது மின்னஞ்சல் முகவரியை  உள்ளிடவும்","phoneVerfied":"அலைபேசி சரிபார்க்கப்பட்டது ","phonenumber":"அலைபேசி எண் ","pincode":"அஞ்சல் குறியீடு ","playContent":"பாடத்தை இயக்கு ","plslgn":"இந்த அமர்வு  காலாவதியாகிவிட்டது. தொடர்ந்து  பயன்படுத்த மீண்டும் உள்நுழைக","position":"நிலை ","preferredLanguage":"விருப்பமான மொழி ","previous":"முன்  பக்கம் ","processid":"செயல் முகவரி ","profilePopup":"தங்களுக்கு ஏற்ற பாடங்களை காண, கீழ்கண்ட விவரங்களை பதிவேற்றவும்.","provider":"அமைப்பின் வழங்குநர் ","publicFooterGetAccess":"DIKSHA இயங்குதளமானது, ஆசிரியர்கள், மாணவர்கள் மற்றும் பெற்றோர்களுக்கு பள்ளி பாடத்திற்கு தொடர்புடைய கற்றல் பொருட்களை வழங்குகிறது. DIKSHA பயன்பாட்டை பதிவிறக்கி உங்கள் பாடநூலில் உள்ள விரைவு குறியீடை ஸ்கேன் செய்தல் உங்கள் பாடநூலை அணுகலாம் ","publishedBy":"இவரால் வெளியிடப்பட்டது","publishedOnInstanceName":"{instance} அன்று வெளியிடப்பட்டது","reEnterPassword":"மீண்டும் கடவுச்சொல்லை உள்ளீடுக ","readless":"குறைவாக படிக்க...","readmore":"...மேலும் படிக்க","redirectMsg":"இந்த பாடம் வெளியே வழங்கப்பட்டுள்ளது ","redirectWaitMsg":"பாடத்தை ஏற்றும்போது தயவுசெய்து காத்திருக்கவும் ","removeAll":"அனைத்தையும் நீக்கு ","reportUpdatedOn":"இந்த அறிக்கை கடைசியாக புதுப்பிக்கப்பட்டது","resendOTP":"OTO ஐ  மீண்டும் அனுப்பு ","resentOTP":"OTP திருப்பி அனுப்பப்பட்டுள்ளது. OTP ஐ  உள்ளிடவும் ","resourcetype":"வழிமுறை வகை ","retired":"ஓய்வு பெற்றற்றது ","role":"பொறுப்பு ","roles":"பாத்திரம் ","sameEmailId":"இந்த மின்னஞ்சல் முகவரி உங்கள் சுயவிவரத்துடன் தொடர்புடைய மின்னஞ்சல் முகவரி ஒன்றே","samePhoneNo":"இந்த அலைபேசியின் எண்ணும் உங்கள் சுயவிவரத்துடன் தொடர்புடைய எண்ணும் ஒன்றே","school":"பள்ளி ","search":"தேடு  ","searchForContent":"6 இலக்கிய விரைவு குறியீட்டை   உள்ளிடவும் ","searchUserName":"பயனர் பெயரை தேடு","seladdresstype":"முகவரி வகையை தேர்ந்தெடுக்கவும் ","selectAll":"அனைத்தையும் தேர்வுசெய் ","selectBlock":"தொகுதியை தேர்வுசெய்","selectDistrict":"மாவட்டத்தை தேர்வுசெய்க ","selectSchool":"பள்ளியை தேர்ந்தெடு ","selectState":"மாநிலத்தை தேர்வுசெய்க ","selected":"தேர்ந்தெடுக்கப்பட்டது ","selectreason":"காரணத்தை தேர்வுசெய்யவும் ","sesnexrd":"அமர்வு  காலாவதியாகிவிட்டது","setRole":"பயனரைத் திருத்து","share":"பகிர் ","sharelink":"இந்த இணைப்பை பயன்படுத்தி பகிரவும் ","showLess":"குறைவாக காட்டவும் ","showingResults":"முடிவுகளை காட்டுகிறது ","showingResultsFor":"தங்கள் {searchString} முடிவுகளை காண்பிக்கிறது","signUp":"பதிவு செய்க ","signinenrollHeader":"பாடநெறிகள் பதிவுசெய்யப்பட்ட பயனர்கள் மட்டும் தான் எடுத்துக்கொள்ளமுடியும். பாடநெறிகளை அணுக   உள்நுழையவும் ","signinenrollTitle":"இந்த பாடநெறிக்குப்  பதிவுசெய்ய உள்நுழையவும் ","skillTags":"திறன் குறிச்சொற்கள் ","sltBtch":"தயவுசெய்து, தொடர ஒரு தொகுதியை தேர்ந்தெடுக்கவும் ","socialmedialinks":"சமூக ஊடக இணைப்புகள் ","sortby":"வரிசைபடுத்து ","startExploringContent":"விரைவு குறீயீட்டை  உள்ளிடுவதன் மூலம் பாடத்தை ஆராய தொடங்கவும் ","startExploringContentBySearch":"தேடல் விருப்பத்தை அல்லது விரைவு குறியீட்டைப் பயன்படுத்தி பாடத்தை ஆராயுங்கள் ","startdate":"தொடக்க நாள் ","state":"மாநிலம் ","stateRecord":"மாநில பதிவுகள் படி","subject":"பாடம் ","subjects":"பாடம் ","subjectstaught":"கற்பித்த பாடங்கள் ","submitOTP":"OTP ஐ  சமர்ப்பிக்கவும் ","subtopic":"துணை தலைப்பு","successres":"வெற்றி முடிவுகள்  ","summary":"சுருக்கம் ","tableNotAvailable":"இந்த அறிக்கையின் அட்டவணை காட்சி கிடைக்கவில்லை","takenote":"குறிப்பு எடு ","tcfrom":"முதல் ","tcno":"இல்லை ","tcto":"பெறுநர் ","tcyes":"ஆம் ","tenDigitPhone":"10 இலக்க  அலைபேசி எண் ","termsAndCond":"விதிமுறைகள் மற்றும் நிபந்தனைகள்","termsAndCondAgree":"பயன்பாட்டின் விதித்திமுறைகள் மற்றும் நிபந்தனைகளை நான் ஏற்கிறேன் ","theme":"ஆய்வுப்பொருள்","title":"தலைப்பு ","toTryAgain":"மீண்டும் முயற்சிக்க","topic":"தலைப்பு","topics":"தலைப்பு ","trainingAttended":"பங்குபெற்ற பயிற்சிகள் ","twitter":"கீச்சகம் ","unableToUpdateEmail":"மின்னஞ்சல் முகவரியைப் புதுப்பிக்க முடியவில்லை?","unableToUpdateMobile":"அலைபேசி எண்ணைப் புதுப்பிக்க முடியவில்லை?","unableToVerifyEmail":"மின்னஞ்சல் முகவரியை சரிபார்க்கமுடியவில்லையா?","unableToVerifyPhone":"அலைபேசி என்னை சரிபார்க்க முடியவில்லை ","unenrollMsg":"நீங்கள் இந்த தொகுதியில் இருந்து விலக விரும்புறீர்களா ?","unenrollTitle":"தொகுதியில் இருந்து விலக","uniqueEmail":"உங்கள் மின்னஞ்சல் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது ","uniqueEmailId":"இந்த மின்னஞ்சல் முகவரி ஏற்கனவே பதிவுசெய்யப்பட்டுள்ளது. மற்றொரு மின்னஞ்சல் முகவரியை உள்ளிடவும்","uniqueMobile":"இந்த அலைபேசி எண் ஏற்கனவே பதிவுசெய்யப்பட்டுள்ளது. மற்றொரு அலைபேசி எண்ணை உள்ளிடவும்.","uniquePhone":"உங்கள் அலைபேசி எண் ஏற்கனவே  பதிவுசெய்யப்பட்டுள்ளது ","updateEmailId":"மின்னஞ்சல் முகவரியை புதுப்பிக்கவும்","updatePhoneNo":"அலைபேசி எண் புதுப்பிக்கவும்","updatedon":"மேம்படுத்தப்பட்ட நாள் ","updateorgtype":"அமைப்பின் வகையை மேம்படுத்த ","upldfile":"பதிவேற்றிய கோப்பு ","uploadContent":"உள்ளடக்கத்தை பதிவேற்றவும் ","uploadEcarFromPd":"உங்கள் பென் டிரைவிலிருந்து {instance} கோப்புகளை (எ.கா.: MATHS_01.ecar) பதிவேற்றவும்","userFilterForm":"பயனர்களின் படிவங்களை பார்","userID":"பயனர் முகவரி ","userId":"பயனர் முகவரி","userType":"பயனர் வகை ","username":"பயனர் பெயர் ","validEmail":"சரியான மின்னஞ்சல் முகவரியை உள்ளிடவும் ","validPassword":"சரியான கடவுச்சொல்லை உள்ளிடவும் ","validPhone":"சரியான 10 இலக்க அலைபேசி எண்ணை உள்ளிடவும் ","videos":"காணொளிகள் ","view":"காண்க","viewless":"குறைவாக பார்க்க  ","viewmore":"மேலும் பார்க்க ","viewworkspace":"உங்கள் பணியிடங்களை பார்க்க ","watchVideo":"காணொளியை பார்க்கவும் ","whatsQRCode":"விரைவு குறியீடு என்றால் என்ன?","whatwentwrong":"என்ன தவறு நேர்ந்தது ?","whatwentwrongdesc":"என்ன தவறு என்று எங்களுக்கு தெரியப்படுத்துங்கள் . சரியான காரணங்களை குறிப்பிடுவதன் மூலம் , இதனை விரைவில் பரிசீலனை செய்கிறோம் . தங்கள் கருத்துக்கு நன்றி.என்ன  தவறு  என்று எங்களுக்கு  தெரியப்படுத்துங்கள் . சரியான காரணங்களை  குறிப்பிடுங்கள்  நாங்கள்  இதனை விரைவில் பரிசீலனை செய்கிறோம்   . தங்கள் கருத்துக்களுக்கு  நன்றி.","worktitle":"ஆக்கிரமைப்பு /வேலை தலைப்பு ","wrongEmailOTP":"தவறான OTP ஐ  உள்ளிட்டுள்ளீர்கள். உங்கள் மின்னஞ்சல் முகவரியில் பெறப்பட்ட OTP ஐ உள்ளிடவும் . OTP 30 நிமிடம் மட்டுமே செல்லுபடியாகும் .","wrongPhoneOTP":"நீங்கள் தவறான OTP ஐ  உள்ளிட்டுள்ளீர்கள் . உங்கள் அலைபேசியில் பெறப்பட்ட OTP ஐ  உள்ளிடவும். OTP 30 நிமிடங்கள் மட்டுமே செல்லுபடி ஆகும்.","yop":"தேர்ச்சிபெற்ற வருடம் ","indPhoneCode":91,"howToUseDiksha":"How to use {instance} desktop app","manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","recoverAccount":"Recover Account","mergeAccount":"Merge Account","phoneRequired":"Mobile number is required","emailPhonenotRegistered":"Email address / Mobile number is not registered with {instance}","enterName":"Enter name","enterNameNotMatch":"The entry does not match the name registered with {instance}","receiveOTP":"Where would you like to receive the OTP?","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","otpSentTo":"OTP has been sent to","itis":"It is","validFor":"valid for 30 min","otpMandatory":"OTP is mandatory","otpValidated":"OTP validated successfully","newPassword":"New Password","enterEightCharacters":"Enter at least 8 characters","passwordMismatch":"Password mismatch, enter the correct password","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","enternameAsRegisteredInAccount":"and the name as on the {instance} account","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","certificateIssuedTo":"Certificate issued to","certificatesIssued":"Certificates Issued","completingCourseSuccessfully":"For successfully completing the training,","noCreditsAvailable":"No credits available","courseCredits":"Credits","dashboardcertificateStatus":"Certificate Status","deviceId":"Device ID","downloadCourseQRCode":"Download Training QR Code","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadingContent":"Preparing to download {contentName}...","enterCertificateCode":"Enter the certificate code here","errorMessage":"Error message","externalId":"External Id","grades":"Grades","lang":"Language","onDiksha":"on {instance} on","recentlyAdded":"Recently Added","contentType":"Content Type","returnToCourses":"Return to Trainings","rootOrg":"Root org","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","updatecollection":"Update All","updatecontent":"Update Content","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","verifyingCertificate":"Verifying your certificate","watchCourseVideo":"Watch Video","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","exportingContent":"Preparing to copy {contentName}...","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","versionKey":"Version:","releaseDateKey":"Release Date:","supportedLanguages":"Supported Languages:","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from","noBookfoundTitle":"Board is adding books","noBookfoundSubTitle":"Your board is yet to add more books. Tap the button to see more books and content on {instance}","noBookfoundButtonText":"See more books and contents"},"btn":{"add":"சேர்க்க ","addToLibrary":"எனது நூலாக்கத்திற்கு பதிவிறக்கவும் ","addedToLibrary":"நூலகத்தில் சேர்க்கப்பட்டது ","addingToLibrary":"நூலகத்தில் சேர்க்கப்படுகிறது ","apply":"விண்ணப்பி ","browse":"ஆன்லைனில் உலாவுக ","cancel":"ரத்துசெய் ","cancelCapitalize":"ரத்து ","clear":"தெளிவு ","close":"மூடிட ","contentImport":"கோப்புகளை பதிவேற்றவும் ","copyLink":"நகல் இணைப்பு ","create":"உருவாக்க ","download":"பதிவிறக்க","downloadCompleted":"பதிவிறக்கம் முடிந்தது ","downloadDikshaForWindows":"வின்டோஸிற்கு பதிவிறக்கவும்","downloadFailed":"பதிவிறக்கம் தோல்வியடைந்தது ","downloadInstruction":"பதிவிறக்க வழிமுறைகளை பார்","downloadManager":"என்னுடைய பதிவிறக்கங்கள் ","downloadPdf":"உதவி ","downloadPending":"பதிவிறக்கம் நிலுவையில் உள்ளது ","edit":"திருத்து ","enroll":"பதிவுசெய் ","export":"பெண் டிரைவ்வில் நகலெடு  ","login":"உள் நுழை ","myLibrary":"எனது நூலகம் ","next":"அடுத்து ","no":"இல்லை ","ok":"சரி ","previous":"முந்தைய பக்கம்","remove":"நீக்கு","reset":"மீட்டமைக்க ","resume":"தற்குறிப்பு ","resumecourse":"பாடநெறியை தொடரு","save":"சேமி ","selectContentFiles":"கோப்புகளை தேர்வுசெய் ","selectLanguage":"மொழியை தேர்ந்தேடுக்கவும்","selrole":"பாத்திரத்தை தேர்ந்தெடுக்கவும் ","signin":"உள்நுழை ","signup":"பதிவு செய் ","smplcsv":"CSV  மாதிரிகளை பதிவிறக்கவும் ","submit":"சமர்ப்பிக்கவும் ","submitbtn":"சமர்ப்பி","tryagain":"மீண்டும் முயற்சிக்கவும் ","unenroll":"விலகு ","update":"மேம்படுத்து ","uploadorgscsv":"அமைப்பின் csv ஐ  பதிவேற்றவும் ","viewCourseStatsDashboard":"பாடநெறியின் dashboard (தஷ்போர்ட்)","viewcoursestats":"பாடநெறியின் புள்ளிவிவரங்கள்","viewless":"குறைவாக பார்க்க ","viewmore":"மேலும் காண ","yes":"ஆம் ","yesiamsure":"சரி ","downloadCertificate":"Download Certificate","merge":"Merge","verify":"Verify","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","uploadusrscsv":"Upload users CSV","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"பெண் ","male":"ஆண் ","transgender":"திருநங்கை "},"instn":{"t0002":"நீங்கள் ஒரு csv கோப்பில் ஒரே நேரத்தில் 199 அமைப்புகளின் விவரங்களை சேர்க்கவோ பதிவேற்றவோ இயலும் .","t0007":"அமைப்பு பெயர் பத்தி கட்டாயமானது . அமைப்பு பெயரை இந்த  பத்தியில் உள்ளிடவும் .","t0011":"நீங்கள்  முன்னேற்றத்தை செயலாக்க முகவரி மூலம் கண்காணிக்கலாம் ","t0012":"தயவு செய்து PROCESS  ID ஐ  தங்கள் பயன்பாட்டிற்காக சேமித்து கொள்ளவும். PROCESS ID மூலம் முன்னேற்றத்தை தொடரமுடியும் ","t0013":"குறிப்புக்கு  csv கோப்பை பதிவிறக்கவும் ","t0015":"அமைப்பை பதிவேற்றவும் ","t0016":"பயனர்களைப்   பதிவேற்றவும் ","t0020":"திறமையை சேர்க்க தட்டச்சடிக்க தொடங்கவும் ","t0021":"ஒவ்வொரு நிறுவனத்தின் பெயரையும் தனிவரிசையில் உள்ளிடவும் ","t0022":"மற்ற வரிசையில் விவரங்களை உள்ளிடுவது கட்டாயம் இல்லை ","t0024":"தடம்: மாஸ்டர் அமைப்பு உருவாக்கத்தின் பொது தனிப்பட்ட முகவரியை வழங்கும் ","t0025":"வெளிப்புற முகவரி: ஒவ்வொரு நிறுவனத்துடனும் தொடர்புடைய தனிப்பட்ட முகவரி  நிர்வாக அமைப்பு களஞ்சியத்தில் உள்ளது.","t0026":"வழங்குநர்: நிர்வாக அமைப்பின் தடம் முகவரி ","t0027":"விளக்கம்  : அமைப்பை பற்றி விவரிக்கும்  விவரம் ","t0028":"முகப்புUrl: நிறுவனத்தின் முகப்பு பக்கம் url","t0029":"அமைப்பின் குறீயிடு : அமைப்பின் தனிப்பட்ட குறீயிடு, ஏதேனும் இருப்பின் ,","t0030":"அமைப்பின் வகை: அமைப்பின் வகை, அரசு சாரா அமைப்பு, ஆரம்பப்பள்ளி , உயர்நிலைப்பள்ளி போன்றவை ...","t0031":"விருப்பமான  மொழிகள்: அமைப்பின் விருப்பமான மொழிகள், ஏதேனும் ","t0032":"தொடர்பு விவரம் : அமைப்பின் அலைபேசி எண் மற்றும் மின்னஞ்சல் முகவரி.  விவரங்களை சுருள் அடைப்புக்குறிக்குள் ஒற்றை மேற்கோள்குறியுடன் உள்ளிடவும் . எ -கா  [ {' அலைபேசி எண் ':'1234567890' }]","t0049":"நிரல் மதிப்பு RootOrg True என்றால் சேனல் கட்டாயமாகும்","t0050":"வெளிப்புற முகவரி மற்றும் வழங்குபவர் இரண்டுமே கட்டாயம் ","t0055":"அறிவிப்பு விவரங்கள்  எதுவும் இல்லை ","t0056":"பின்னர் முயற்சிக்கவும் ","t0058":"இதுவாக பதிவிறக்க ","t0059":"csv ","t0060":"நன்றி !","t0061":"அச்சச்சோ...","t0062":"இந்த பாடநெறிக்கான  தொகுப்பு நீங்கள் இன்னும் உருவாக்கவில்லை. புதிய தொகுப்பை உருவாக்கியப் பின்னர் DASHBOARD (டாஷ்போர்ட்) ஐ  மீண்டும் சரிபார்க்கவும் ","t0063":"நீங்கள் இதுவரை எந்த பாடநெறியும் உருவாக்கவில்லை. புதிய பாடத்தை உருவாக்கியபின் dashboard (தாஷ்போர்ட்)  ஐ  பார்க்கவும்  ","t0064":"ஒரே வகையான பல முகவரிக்க்ள் முகவரிகள் தேர்ந்தெடுக்கப்பட்டுள்ளது . தயவுசெய்து ஒன்றை மாற்றவும் .","t0065":"பதிவிறக்கு","t0070":"CSV  கோப்பை பதிவிறக்கவும் . ஒரே அமைப்பில் உள்ள பயனர்களை ஒரு CSV கோப்பில் ஒரே நேரத்தில் பதிவேற்றலாம்.","t0071":"பயனரின் கணக்கில் பின்வரும் கட்டாயமான விவரங்களை  உள்ளிடவும் ","t0072":"முதல் பெயர் : பயனரின் முதல் பெயர், அகரவரிசை மதிப்பு .","t0073":"அலைபேசி அல்லது மின்னஞ்சல் : பயனாளர் அலைபேசி எண்  (பத்து இலக்க அலைபேசி எண் ) அல்லது மின்னஞ்சல் முகவரி . இரண்டில் ஒன்று  வழங்கப்பட வேண்டும்,  இருப்பினும் அவை இரண்டும் இருந்தால் இரண்டையும்  வழங்குமாறு அறிவுறுத்தப்படுகிறது .","t0074":"பயனர் பெயர்: பயனருக்கு தனிப்பட்ட பெயர் நிறுவனத்தின் மூலம் ஒதுக்கப்பட்டுள்ளது, எண்ணெழுத்து ","t0076":"குறிப்பு: CSV கோப்பில் உள்ள அணைத்து வரிசையும் கட்டாயமல்ல, விவரங்களை பூர்த்தி செய்ய , பார்க்கவும் ","t0077":"பதிவுசெய்த பயனர்கள் ","t0078":"இடத்தின் முகவரி: குறிப்பிட்ட அமைப்பின் அறிவுப்பு தலைப்பை கண்டறியும் முகவரி ","t0079":"இடக்குறீயீடு  : அரைப்புள்ளியால் பிரிக்கப்பட்ட  இடக்குறியீடுகளின் பட்டியல் ","t0081":"DIKSHAவில் பதிவு  செய்தமைக்கு நன்றி . சரிபார்ப்புக்கு SMS OTPயை  அனுப்பியுள்ளோம் . பதிவு செயல் முறையை முடிக்க உங்கள் அலைபேசி எண்ணில்  உள்ள  OTPயை  உள்ளிடவும் .","t0082":"DIKSHA வில் பதிவு செய்தமைக்கு நன்றி. சரிபார்ப்புக்கு தங்கள் மின்னஞ்சலுக்கு OTPயை அனுப்பியுள்ளோம் . பதிவு செயல் முறையை  முடிக்க உங்கள் மின்னஞ்சல் முகவரியில் உள்ள OTP யை உள்ளிடவும்.","t0083":"அலைபேசியின் எண் சரிபார்ப்புக்கான OTP உடன் SMS ஐ பெறுவீர்கள்","t0084":"மின்னஞ்சல் mugavari சரிபார்ப்புக்கான OTP உடன் நீங்கள் மின்னஞ்சலைப் பெறுவீர்கள்","t0085":"இந்த அறிக்கை முதல் 10,000 பங்கேற்பாளர்களுக்கான தரவைக் காட்டுகிறது. தொகுதியில் உள்ள அனைத்து பங்கேற்பாளர்களின் முன்னேற்றம் காண பதிவிறக்க பொத்தானை அழுதவுன்.","t0023":"isRootOrg: Valid values for this column True False","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"குறிப்பு அல்லது தலைப்பை தேட  ","t0002":"தங்கள் கருத்தை பதிவு செய்யவும் ","t0005":"தொகுதி வழிகாட்டிகளைத் தேர்ந்தெடுக்கவும்","t0006":"தொகுதி உறுப்பினர்களைத் தேர்ந்தெடுக்கவும்"},"lnk":{"announcement":"அறிவுப்பு முகப்புப்பலகை ","assignedToMe":"எனக்கு ஓதுக்கப்பட்டுள்ள்ளது ","contentProgressReport":"பாட முன்னேற்ற அறிக்கை","contentStatusReport":"பாட முன்னேற்ற அறிக்கை","createdByMe":"என்னால் உருவாக்கப்பட்டது ","dashboard":"நிர்வாகியின் முகப்பு பலகை ","detailedConsumptionMatrix":"விரிவான பயன்பாடு மேட்ரிக்ஸ்","detailedConsumptionReport":"விரிவான பயன்பாடு அறிக்கை","footerContact":"கேள்விகளுக்கு தொடர்பு கொள்ளவும் ","footerDIKSHAForMobile":"அலைபேசிக்கு DIKSHA ","footerDikshaVerticals":"தீக்ஷாவின் அங்கங்கள்","footerHelpCenter":"உதவி மையம் ","footerPartners":"Partners","footerTnC":"பயன்பாட்டு   விதிமுறைகள் ","logout":"வெளியேறு ","myactivity":"எனது செயல்பாடு ","profile":"சுயவிவரம் ","textbookProgressReport":"பாடநூல் முன்னேற்ற அறிக்கை","viewall":"அணைக்கிதையும் பார் ","workSpace":"பணியிடம் "},"pgttl":{"takeanote":"குறிப்பு எடு "},"prmpt":{"deletenote":"நீங்கள் நிச்சயமாக இந்த குறிப்பை நீக்க விரும்புறீர்களா  ","enteremailID":"உங்கள் மின்னஞ்சல் முகவரியை உள்ளிடவும்","enterphoneno":"10 இலக்க அலைபேசி எண்ணை உள்ளிடவும் ","search":"தேட ","userlocation":"இடம் "},"scttl":{"blkuser":"தடைசெய்யப்பட்ட பயனர் ","contributions":"பங்களிப்புகள்  ","instructions":"அறிவுறுத்தல் :","signup":"பதிவு செய்ய ","todo":"செய்ய வேண்டியவை ","error":"Error:"},"snav":{"shareViaLink":"இணைப்பு வழியாக பகிரப்பட்டது ","submittedForReview":"மதிப்பாய்வுக்காக சமர்ப்பிக்கப்பட்டுள்ளது "},"tab":{"all":"அனைத்தும் ","community":"குழுக்கள் ","courses":"பாடநெறிகள்","help":"உதவி ","home":"முகப்பு ","profile":"சுயவிவரம் ","resources":"நூலகம் ","users":"பயனர் ","workspace":"பணியிடம் ","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"பாடநெறியை வெற்றிகரமாக முடித்துவிட்டீர்கள்","காண":null,"messages":{"emsg":{"m0001":"தற்பொழுது பதிவு செய்ய இயலாது . பின்னர் முயற்சிக்கவும் ","m0003":"நீங்கள் வழங்குநர் மற்றும் வெளிப்புற முகவரியை அல்லது அமைப்பின் முகவரியை உள்ளிடவேண்டும் ","m0005":"எதோ தவறு நடந்துவிட்டது, தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0007":"அளவு குறைவாக இருக்கவேண்டும் ","m0008":"பாடத்தை நகலெடுக்க முடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0009":"இப்பொழுது விலக இயலாது . பின்னர் முயலவும்","m0014":"அலைபேசி எண் புதுப்பிக்க முடியவில்லை","m0015":"மின்னஞ்சல் முகவரியைப் புதுப்பிக்க முடியவில்லை","m0016":"மாநிலத்தை பெறமுடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0017":"மாவட்டத்தை பெறமுடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0018":"சுயவிவரம் புதுப்பித்தல் தோல்வியடைந்தது ","m0019":"அறிக்கையைப் பதிவிறக்க முடியவில்லை, பிறகு மீண்டும் முயற்சிக்கவும்","m0020":"பயனர் பதிவேற்றம் தோல்வியடைந்தது. பின்னர் முயற்ச்சிக்கவும்","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"பதிவுசெய்யப்பட்ட பாடநெறிகளை பெறமுடியவில்லை, தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0002":"மற்ற பாடநெறிகளை  பெறமுடியவில்லை , தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0003":"பாடநெறியின் காலவரை விவரங்களை பெறமுடியவில்லை ","m0004":"தகவல்கள் பெறுவது தோல்வியடைந்தது . பின்னர் முயற்சிக்கவும் .","m0030":"குறிப்பு உருவாக்கப்படுவது தோல்வியடைந்தது, தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0032":"குறிப்பை அகற்றப்படுவது தோல்வியடைந்தது, தயவுசெய்து பின்னர் முயற்சிக்கவும்.","m0033":"குறிப்புகள் பெறுவது தோல்வியடைந்தது. பின்னர் முயற்சிக்கவும்.","m0034":"குறிப்பை புதுப்பித்தல்  தோல்வி  அடைந்தது. பின்னர் முயற்சிக்கவும்.","m0041":"கல்வியை நீக்குவது தோல்வியடைந்தது,  தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0042":"அனுபவம் நீக்க முடியவில்லை. தயவு செய்து பின்னர் முயற்சிக்கவும் ","m0043":"முகவரியை நீக்குவது தோல்வியடைந்தது. தயவுசெய்து பின்னர் முயற்சிக்கவும் ","m0048":"சுயவிவரம் புதுப்பித்தல் தோல்வியடைந்தது, தயவுசெய்து பின்னர் முயற்சிக்கவும்... ","m0049":"தரவை ஏற்ற முடியவில்லை ","m0050":"கோரிக்கையை சமர்ப்பிக்க முடியவில்லை, தயவுசெய்து பின்னர் முயற்சிக்கவும்...","m0051":"எதோ தவறு நடந்து விட்டது, தயைசெய்து பின்னர் முயற்சிக்கவும் ","m0054":"தொகுதி  விவரம் பெறுதல்  தோல்வியடைந்தது , பின்னர் மீண்டும் முயற்சிக்கவும் ","m0056":"பயனர்கள் பட்டியலை பெறுவது தோல்வியடைந்தது, பின்னர் மீண்டும் முயற்சிக்கவும் .","m0076":"கட்டாய துறைகளை உள்ளிடவும் ","m0077":"தேடல் முடிவு பெறுவது தோல்வியடைந்தது...","m0079":"பதக்க ஒதுக்கீடு தோல்வியடைந்தது, தயவு செய்து பின்னர் முயற்சிக்கவும்....","m0080":"பதக்கம் பெறுவது தோல்வியடைந்தது. பின்னர் முயற்சிக்கவும்.","m0082":"இந்த பாடநெறியில்  சேர்ந்துகொள்ள அனுமதியில்லை","m0085":"ஒரு தொழில்நுட்ப பிழை  ஏற்பட்டுள்ளது. மீண்டும் முயற்சிக்கவும் ","m0086":"ஆசிரியரால் நீக்கப்பட்ட  இந்த பாடநெறி இனி கிடைக்காது ","m0087":"தயவுசெய்து காத்திருக்கவும் ","m0088":"நங்கள் விவரங்களை பெறுகிறோம் ","m0089":"தலைப்புகள்/துணைதலைப்புகள் கிடைக்ககவில்லை","m0090":"பதிவிறக்க முடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0091":"உள்ளடக்கத்தை நகலெடுக்க முடியவில்லை. பின்னர் முயற்சிக்கவும் ","m0093":"உள்ளடக்கம் (கள்) பதிவேற்றம் தோல்வியுற்றது","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0094":"Could not download, try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"இந்த பாடநெறி  பொருத்தமற்றதாக குறியிடப்பட்டுள்ளது மற்றும் தற்போது  மறு ஆய்வு செய்யப்படுகிறது. தயவு செய்து  பின்னர் முயற்சிக்கவும் ","m0005":"தயவுசெய்து சரியான பட கோப்புகளை பதிவேற்றவும் . ஏற்றுக்கொள்ளப்படும் கோப்பு வகைகள் : jpeg,jpg,png. அதிகபட்ச அளவு :4MB ","m0017":"சுயவிவர முழுமை விகிதம் ","m0022":"கடைசி 7 நாட்களின் புள்ளிவிவரம் ","m0023":"கடைசி 14 நாட்களின் புள்ளிவிவரம் ","m0024":"கடைசி 5 நாட்களின் புள்ளிவிவரம் ","m0025":"புள்ளி விவரம் முதலில் இருந்து ","m0026":"வணக்கம், இப்பொழுது இந்த பாடநெறி கிடைக்கவில்லை. படைப்பாளர் இந்த பாடநெறியில்  சில மாற்றங்களை செய்துள்ளார் என காணப்படுகிறது","m0027":"வணக்கம், இந்த பாடம் தற்போது கிடைக்கவில்லை. பாடப் படைப்பாளர் சில மாற்றத்தை செய்துள்ளதை போல் உள்ளது ","m0034":"பாடம் வெளிப்புற மூலத்திலிருந்து  வந்தால், அது சிறுது நேரத்தில் திறக்கப்படும் . ","m0035":"அங்கீகரிக்கப்படாத அனுமதி ","m0036":"இந்த பாடம் வெளிப்படையாக உள்ளது, இதனை காண தயவுசெய்து முன்னோட்டத்தை சொடுக்கவும் ","m0040":"செய்பணி இன்னும் முன்னேறவில்லை, தயவுசெய்து பின்னர் முயற்சிக்கவும்.","m0041":"உங்கள் சுயவிவரங்கள் ","m0042":"% முடிவடைந்துள்ளது ","m0043":"சரியான ஆரம்ப தேதியை உள்ளிடவும்","m0044":"பதிவிறக்கம் தோல்வியடைந்தது","m0045":"பதிவிறக்க தோல்வி. சிறிது நேரம் கழித்து மீண்டும் முயற்சிக்கவும்","m0047":"நீங்கள் 100 பங்கேற்பாளர்களை மட்டுமே தேர்ந்தெடுக்க முடியும்","m0060":"If you have two accounts with {instance}, click","m0061":"to","m0062":"Else, click","m0063":"combine usage details of both accounts, and","m0064":"delete the other account","m0065":"Account merge initiated successfully","m0066":"you will be notified once it is completed","m0067":"Could not initiate the account merge. Click the Merge Account option in the Profile menu and try again","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0073":"Click Create New to create a new {instance} account.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"குறிப்பு வெற்றிகரமாக உருவாக்கப்பட்டது ","m0013":"குறிப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது...","m0014":"கல்வி வெற்றிகரமாக நீக்கப்பட்டது .","m0015":"அனுபவம் வெற்றிகரமாக நீக்கப்பட்டது ","m0016":"முகவரி வெற்றிகரமாக நீக்கப்பட்டது ","m0018":"சுயவிவரப்படம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது ","m0019":"விளக்கம் துல்லியமாக பதிவேற்றப்பட்டது ","m0020":"கல்வி வெற்றிகரமாக புதுப்பிக்கப்பட்டது ","m0021":"அனுபவம் வெற்றிகரமாக புதிப்பிக்கப்பட்டது ","m0022":"கூடுதல்  தகவல் வெற்றிகரமாக புதுப்பிக்கப்பட்டது ","m0023":"முகவரி வெற்றிகரமாக பதிவேற்றப்பட்டது ","m0024":"புது கல்வி வெற்றிகரமாக சேர்க்கப்பட்டது ","m0025":"புது அனுபவம் வெற்றிகரமாக சேர்க்கப்பட்டது ","m0026":"புதிய முகவரி வெற்றிகரமாக சேர்க்கப்பட்டது ","m0028":"பாத்திரங்கள் வெற்றிகரமாக பதிவேற்றப்பட்டது ","m0029":"பயனாளர் வெற்றிகரமாக நீக்கப்பட்டார் ","m0030":"பயனாளர் வெற்றிகரமாக பதிவேற்றப்பட்டார் ","m0031":"நிறுவனங்கள் வெற்றிகரமாக பதிவேற்றப்பட்டது ","m0032":"நிலை வெற்றிகரமாக பெறப்பட்டது ","m0035":"அமைப்பின் வகை வெற்றிகரமாக சேர்க்கப்பட்டது ","m0036":"இந்த தொகுதிக்கு பாடநெறிகள் வெற்றிகரமாக சேர்க்கப்பட்டது ","m0037":"வெற்றிகரமாக மேம்படுத்தப்பட்டது ","m0038":"திறன்கள் வெற்றிகரமாக புதுப்பிக்கப்பட்டன ","m0039":"வெற்றிகரமாக பதிவுசெய்யப்பட்டது, உள்நுழைக...","m0040":"சுயவிவரத் துரையின் தோற்றநிலை வெற்றிகரமாக புதுப்பிக்கப்பட்டது ","m0042":"உள்ளடக்கம் வெற்றிகரமாக நகலெடுக்கப்பட்டது ","m0043":"வெற்றிகரமாக ஒப்புதல் பெறப்பட்டது ","m0044":"பதக்கங்கள்  வெற்றிகரமாக ஓதுக்கப்பட்டது ","m0045":"பயனர் வெற்றிகரமாக தொகுதியிலிருந்து வெளியேறினார் ","m0046":"சுயவிவரம்  வெற்றிகரமாக மேம்படுத்தப்பட்டது... ","m0047":"உங்கள் அலைபேசி எண் புதுப்பிக்கப்பட்டது","m0048":"உங்கள் மின்னஞ்சல் முகவரி   புதுப்பிக்கப்பட்டது","m0049":"பயனர் பதிவேற்றம் வெற்றியடைந்தது","m0050":"பாடத்தை மதிப்பிட்டதிர்க்கு நன்றி!!","m0053":"பதிவிறக்குகிறது ","m0054":"{ பதிவேற்றப்பட்ட உள்ளடக்க நீளம்} உள்ளடக்கம் (கள்) வெற்றிகரமாக பதிவேற்றப்பட்டது","moo41":"அறிவிப்பு வெற்றிகரமாக ரத்துசெய்யப்பட்டது ","m0055":"Updating...","m0056":"You should be online to update the content","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"முடிவுகள் எதுவும் கிடைக்கவில்லை ","m0007":"உங்கள் தேடலை மேம்படுத்தவும் ","m0008":"முடிவுகள் இல்லை ","m0009":"ப்ளே செய்ய முடியவில்லை, மீண்டும் முயற்சிக்கவும் அல்லது மூடவும் ","m0022":"மதிப்பாய்வு செய்ய உங்கள் வரைவுகளில் ஒன்றை சமர்ப்பிக்கவும் . மதிப்பாய்வு செய்த பிறகு மட்டுமே பாடம் வெளியிடப்படும்.","m0024":"ஒரு ஆவணம் வீடியோ அல்லது ஏதேனும் வேறு ஆதரவு வடிவத்தை பதிவேற்றவும். தாங்கள் இதுவரை எதையும் பதிவேற்றம் செய்யவில்லை ","m0033":"தங்கள் வரைவுகளில் ஒன்றை மதிப்பாய்வுக்கு சமர்ப்பிக்கவும். இதுவரை  தாங்கள்  எந்த பாடத்தையும் மதிப்பாய்வுக்கு சமர்ப்பிக்கவில்லை.","m0035":"மதிப்பாய்வு செய்ய எந்த பாடமும் இல்லை.","m0060":"உங்கள் சுயவிவரத்தை பலப்படுத்தவும் ","m0062":"சரியான பட்டத்தை  உள்ளீடுக ","m0063":"சரியான  முகவரியை  உள்ளிடவும்  1","m0064":"நகரத்தை உள்ளீடுக ","m0065":"சரியான அஞ்சல் குறியீடை உள்ளீடுக ","m0066":"முதல் பெயரை உள்ளிடவும் ","m0067":"தயவுசெய்து சரியான அலைபேசி எண்ணை வழங்கவும் ","m0069":"மொழியை தேர்ந்தெடுக்கவும் ","m0070":"நிறுவனத்தின் பெயரை உள்ளீடுக ","m0072":"சரியான வேலை  / வேலை தலைப்பு  உள்ளிடுக ","m0073":"சரியான அமைப்பை உள்ளிடவும் ","m0077":"உங்கள் கோரிக்கையை நங்கள் சமர்ப்பிக்கிறோம் ","m0080":"தயவுசெய்து csv வடிவத்தில் உள்ள கோப்பை மட்டும் பதிவேற்றவும் ","m0081":"எந்த தொகுப்புகளும் கண்டுபிடிக்கப்படவில்லை ","m0083":"நீங்கள் இதுவரை எந்த பாடத்தையும் யாரிடமும் பகிர்ந்துகொள்ளவில்லை.","m0087":"தயவுசெய்து சரியான பயனர் பெயரை உள்ளிடவும், குறைந்தது 5 எழுத்துக்கள் இருக்க வேண்டும் ","m0088":"தயவுசெய்து சரியான கடவுச்சொல்லை உள்ளிடவும் ","m0089":"தயவுசெய்து சரியான மின்னஞ்சலை உள்ளீடுக ","m0090":"மொழியை தேர்ந்தெடுக்கவும் ","m0091":"தயவுசெய்து சரியான அலைபேசி என்னை உள்ளீடுக ","m0094":"சரியான சதவீதத்தை உள்ளிடவும் ","m0095":"தங்கள் வேண்டுகோள் வெற்றிகரமாக பெறப்பட்டது. கோப்பு தாங்கள் பதிவு செய்துள்ள மின்னஞ்சல் முகவரிக்கு பின்னர் அனுப்பப்படும். தயவு செய்து தங்கள் மின்னஞ்சலை தவறாமல் பார்க்கவும்.","m0104":"சரியான தரத்தை உள்ளிடவும் ","m0108":"உங்கள் முன்னேற்றம் ","m0113":"சரியான ஆரம்ப தேதியை உள்ளிடவும்","m0116":"தேர்ந்தெடுக்கப்பட்ட குறிப்பை நீக்குகிறது ","m0120":"இயக்க எந்த பாடமும் இல்லை ","m0121":"விரைவில் வரும்!","m0122":"தங்கள் மாநிலம் விரைவில் பாடத்தை QR குறியீட்டுடன் இன்னைப்பாரகள். குறுகிய காலத்தில் பாடம் கிடைக்கும்.","m0123":"தங்களை ஒரு கூட்டுப்பணியாளராக சேர்க்கும்படி ஒரு நண்பரிடம் கேளுங்கள். தங்கள் மின்னஞ்சல் வாயிலாக அதே செய்தி அறிவிக்கப்படும் ","m0125":"வளம், புத்தகம், பாடம், சேகரிப்பு அல்லது  பதிவேற்றத்தை உருவாக்க தொடங்கவும். தற்போது வேலைக்கு முன்னேற்ற வரைவு எதுவும் இல்லை ","m0126":"தயவுசெய்து வாரியத்தை தேர்ந்தெடுக்கவும் ","m0127":"தயவுசெய்து கல்வி வழியை தேர்ந்தெடுக்கவும் ","m0128":"தயவுசெய்து வகுப்பை தேர்ந்தெடுக்கவும் ","m0129":"விதிமுறைகள் மற்றும் நிபந்தனைகள் ஏற்றப்பட்டுக்கொண்டிருக்கிறது ","m0130":"நங்கள் மாவட்டத்தின் விவரத்தை பெறுகிறோம் ","m0131":"எந்த அறிக்கையும் கண்டுபிடிக்க முடியவில்லை","m0132":"உங்கள் பதிவிறக்க கோரிக்கையயை நாங்கள் பெற்றுள்ளோம். கோப்பு விரைவில் உங்கள் பதிவு பெற்ற மின்னஞ்சல் முகவரிக்கு அனுப்பப்படும் ","m0134":"பதிவு","m0135":"சரியான தேதியை உள்ளிடவும்","m0136":"சேர்க்கைக்கான கடைசி தேதி:","m0139":"DOWNLOADED","m0140":"DOWNLOADING","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0133":"Browse and download, or upload content to start using the desktop app","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"},"m0138":"FAILED"},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again  later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"நிறுவனத்தின் பெயர்","participants":"பங்கேற்பாளர்கள்","resourceService":{"frmelmnts":{"lbl":{"userId":"பயனாளர் முகவரி "}}},"t0065":"கோப்பை பதிவிறக்கு"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","no":"No","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"rmelmnts":{"btn":{"no":"No"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
diff --git a/src/app/resourcebundles/json/te.json b/src/app/resourcebundles/json/te.json
index 84a52cf633ec0ce81c5e74736396065f12b60ffc..f4fa714142ae5ba352b28ec71d20ab71bc6cb786 100644
--- a/src/app/resourcebundles/json/te.json
+++ b/src/app/resourcebundles/json/te.json
@@ -1 +1 @@
-{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"సరిపోలే రికార్డ్లు కనుగొనబడలేదు","Mobile":"మొబైల్","SearchIn":"{శోధనలో కంటెంట్ రకం} లో శోధించండి","Select":"ఎంచుకోండి","aboutthecourse":"శిక్షణ సమాచారం","active":"క్రియాశీల","addDistrict":"జిల్లాను జోడించండి","addEmailID":"ఇమెయిల్ ఐడిని జోడించండి","addPhoneNo":"మొబైల్ నంబర్ను జోడించండి","addState":"రాష్ట్ర జోడించండి","addlInfo":"అదనపు సమాచారం","addnote":"గమనిక చేర్చు","addorgtype":"సంస్థ రకం జోడించండి","address":"చిరునామా","addressline1":"చిరునామా లైన్ 1","addressline2":"చిరునామా లైన్ 2","anncmnt":"ప్రకటన","anncmntall":"అన్ని ప్రకటనలు","anncmntcancelconfirm":"మీరు ఈ ప్రకటనను ఖచ్చితంగా నిలిపివేయాలనుకుంటున్నారా?","anncmntcancelconfirmdescrption":"ఈ చర్య తర్వాత వినియోగదారులు ఈ ప్రకటనను చూడలేరు","anncmntcreate":"ప్రకటనను సృష్టించండి","anncmntdtlsattachments":"జోడింపులను","anncmntdtlssenton":"పంపబడింది","anncmntdtlsview":"చూడు","anncmntdtlsweblinks":"వెబ్ లింకులు","anncmntinboxannmsg":"ప్రకటనలు","anncmntinboxseeall":"అన్నింటిని చూడు","anncmntlastupdate":"చివరిగా వినియోగించిన వినియోగ వినియోగ డేటా","anncmntmine":"నా ప్రకటనలు","anncmntnotfound":"ఏ ప్రకటన కనుగొనబడలేదు!","anncmntoutboxdelete":"తొలగించు","anncmntoutboxresend":"మళ్లీ పంపి","anncmntplzcreate":"దయచేసి ప్రకటనను సృష్టించండి","anncmntreadmore":"...ఇంకా చదవండి","anncmntsent":"పంపిన అన్ని ప్రకటనలను చూపుతుంది","anncmnttblactions":"ఆచరణలు","anncmnttblname":"పేరు","anncmnttblpublished":"ప్రచురించిన","anncmnttblreceived":"అందుకుంది","anncmnttblseen":"చూసిన","anncmnttblsent":"పంపిన","attributions":"ఆరోపణలను","author":"రచయిత","badgeassignconfirmation":"మీరు ఖచ్చితంగా ఈ కంటెంట్కు బ్యాడ్జ్ను జారీ చేయాలనుకుంటున్నారా?","batchdescription":"బ్యాచ్ వివరణ","batchdetails":"బ్యాచ్ వివరాలు","batchenddate":"ఆఖరి తేది","batches":"బ్యాచ్లు","batchmembers":"బ్యాచ్ యొక్క సభ్యులు","batchstartdate":"ప్రారంబపు తేది","birthdate":"జన్మదిన (dd / mm / yyyy)","block":"బ్లాక్","blocked":"బ్లాక్","blockedUserError":"వినియోగదారు ఖాతా బ్లాక్ చేయబడింది.దయచేసి నిర్వాహకుడిని సంప్రదించండి","blog":"బ్లాగ్","board":"బోర్డు / విశ్వవిద్యాలయ","boards":"బోర్డ్","browserSuggestions":"మెరుగైన అనుభవం కోసం మీరు అప్గ్రేడ్ లేదా ఇన్స్టాల్ చేస్తారని మేము సూచిస్తున్నాము","certificationAward":"యోగ్యతాపత్రాలు & అవార్డులు","channel":"ఛానల్","chkuploadsts":"అప్లోడ్ స్థితిని తనిఖీ చేయండి","chooseAll":"అన్ని ఎంచుకోండి","city":"నగరం","class":"తరగతి","classes":"తరగతులు","clickHere":"ఇక్కడ నొక్కండి","completed":"పూర్తయింది","completedCourse":"కోర్సు ముగిసింది","concept":"భావనలు","confirmPassword":"పాస్వర్డ్ను నిర్ధారించండి","confirmblock":"మీరు బ్లాక్ చేయాలనుకుంటున్నారా?","connectInternet":"దయచేసి కంటెంట్ను వీక్షించడానికి ఇంటర్నెట్కు కనెక్ట్ చేయండి","contentCredits":"కంటెంట్ క్రెడిట్స్","contentinformation":"కంటెంట్ సమాచారం","contentname":"కంటెంట్ పేరు","contents":"విషయాల","continue":"కొనసాగించు","contributors":"రచనలు పంపేవారు","copy":"కాపీ","copycontent":"కంటెంట్ను కాపీ చేస్తోంది ...","country":"దేశం","countryCode":"దేశం కోడ్","courseCreatedBy":"సృష్టికర్త","coursecreatedon":"సృష్టించబడింది","coursestructure":"కోర్సు నిర్మాణం","createUserSuccessWithEmail":"మీ ఇమెయిల్ ID ధృవీకరించబడింది. కొనసాగించడానికి సైన్ ఇన్ చేయండి.","createUserSuccessWithPhone":"మీ ఫోన్ నంబర్ ధృవీకరించబడింది. కొనసాగించడానికి సైన్ ఇన్ చేయండి.","createdon":"సృష్టించబడింది","creationdataset":"సృష్టి","creator":"సృష్టికర్త","creators":"సృష్టికర్తలు","credits":"క్రెడిట్స్","current":"ప్రస్తుత","currentlocation":"ప్రస్తుత స్తలం","curriculum":"పాఠ్య ప్రణాళిక","dashboardfiveweeksfilter":"గత 5 వారాలు","dashboardfourteendaysfilter":"గత 14 రోజులు","dashboardfrombeginingfilter":"ప్రారంభం నుండి","dashboardnobatchselected":"ఏ బ్యాచ్ ఎంపిక లేదు!","dashboardnobatchselecteddesc":"దయచేసి పైన జాబితా నుండి ఒక బ్యాచ్ని ఎంచుకోండి","dashboardnocourseselected":"ఏ కోర్సు ఎంచుకోలేదు!","dashboardnocourseselecteddesc":"దయచేసి పైన జాబితా నుండి ఒక కోర్సు ఎంచుకోండి","dashboardnoorgselected":"ఏ సంస్థ ఎంచుకోలేదు!","dashboardnoorgselecteddesc":"దయచేసి ఎగువ జాబితా నుండి ఒక సంస్థను ఎంచుకోండి","dashboardselectorg":"సంస్థ ఎంచుకోండి","dashboardsevendaysfilter":"గత 7 రోజులు","dashboardsortbybatchend":"బ్యాచ్ ముగింపు","dashboardsortbyenrolledon":"నమోదు చేయబడిన తేదీ","dashboardsortbyorg":"సంస్థ","dashboardsortbystatus":"స్థితి","dashboardsortbyusername":"వాడకందారు పేరు","degree":"డిగ్రీ","delete":"తొలగించండి","deletenote":"గమనికను తొలగించండి","description":"వివరణ","designation":"హోదా","dialCode":"QR కోడ్","dialCodeDescription":"డయల్ కోడ్ మీ పాఠ పుస్తకంలోని QR కోడ్ క్రింద ఉన్న 6 అంకెల ఆల్ఫాన్యూమరిక్ కోడ్","dialCodeDescriptionGetPage":"QR కోడ్ మీ టెక్స్ట్ బుక్లో QR కోడ్ చిత్రం క్రింద ఉన్న 6 అంకెల ఆల్ఫాన్యూమరిక్ కోడ్.","dikshaForMobile":"మొబైల్ కోసం DIKSHA","district":"జిల్లా","dob":"పుట్టిన తేది","done":"పూర్తి","downloadDikshaForMobile":"మొబైల్ కోసం DIKSHA డౌన్లోడ్ చేయండి","downloadThe":"గా డౌన్లోడ్ చేయండి","dropcomment":"వ్యాఖ్యను జోడించండి","ecmlarchives":"Ecml  దస్తావేజులు","edit":"మార్చు","editPersonalDetails":"వ్యక్తిగత వివరాలను సవరించండి","editUserDetails":"వినియోగదారు యొక్క వివరాలను సవరించండి","education":"విద్య","eightCharacters":"8 లేదా ఎక్కువ అక్షరాలను ఉపయోగించండి","email":"ఇమెయిల్ ఐడి","emptycomments":"వ్యాఖ్యలు లేవు","enddate":"ఆఖరి తేది","enjoyedContent":"ఈ కంటెంట్ ఆనందించారు","enrollcourse":"కోర్సు నమోదు చేయండి","enterDialCode":"6 అంకెల QR కోడ్ను నమోదు చేయండి","enterOTP":"OTP ను నమోదు చేయండి","enterQrCode":"QR కోడ్ నమోదు చేయండి","epubarchives":"Epub దస్తావేజులు","errorConfirmPassword":"గుత్త పదములు సరి పోవట్లేదు","experience":"అనుభవం","expiredBatchWarning":"బ్యాచ్ {EndDate} లో ముగిసింది, కనుక మీ పురోగతి నవీకరించబడదు.","explore":"అన్వేషించు","exploreContentOn":"{instance} లో కంటెంట్ను అన్వేషించండి","explorecontentfrom":"నుండి కంటెంట్ను  అన్వేషించండి","exprdbtch":"బ్యాచ్ ముగిసింది","extlid":"Org బాహ్యid","facebook":"ఫేస్బుక్","failres":"వైఫల్యం ఫలితాలు","fetchingBlocks":"దయచేసి మేము బ్లాక్స్ పొందుతున్నప్పుడు వేచి ఉండండి","fetchingSchools":"దయచేసి మేము పాఠశాలలను పొందుతున్నప్పుడు వేచి ఉండండి","filterby":"వడపోత వివరాలు","filters":"ఫిల్టర్లు","first":"ప్రధమ","firstName":"మొదటి పేరు","flaggedby":"ఫ్లాగ్ చేసారు","flaggeddescription":"వివరణను ఫ్లాగ్ చేసారు","flaggedreason":"ఫ్లాగ్డ్ కారణం","fnameLname":"మీ మొదటి మరియు చివరి పేరు నమోదు చేయండి","for":"కోసం","forDetails":"వివరాల కోసం","forMobile":"మొబైల్ కోసం","forSearch":"{searchstring} కోసం","fullName":"పూర్తి పేరు","gender":"లింగము","getUnlimitedAccess":"మీ మొబైల్ ఫోన్‌లో పాఠ్యపుస్తకాలు, పాఠాలు మరియు శిక్షణలకు ఆఫ్‌లైన్‌లో అపరిమిత ప్రాప్యతను పొందండి.","goback":"రద్దుచేయడం","grade":"గ్రేడ్","grades":"తరగతులు","graphStat":"గ్రాఫ్ గణాంకాలు","h5parchives":"H5p  దస్తావేజులు","homeUrl":"హోమ్ Url","htmlarchives":"Html  దస్తావేజులు","imagecontents":"చిత్రం కంటెంట్","inAll":"\"అన్ని\" లో","inUsers":"వినియోగదారులు","inactive":"క్రియారహితంగా","institute":"సంస్థ పేరు","isRootOrg":"RootOrg ఉంది","iscurrentjob":"ఇది మీ ప్రస్తుత ఉద్యోగమా","keywords":"కీవర్డ్లు","language":"భాష (లు) తెలిసినవి","last":"చివరనున్న","lastAccessed":"చివరిగా ప్రాప్తి చేసింది:","lastName":"చివరి పేరు","lastupdate":"చివరి నవీకరణ","learners":"అభ్యాసకులు","linkCopied":"లింక్ క్లిప్బోర్డ్కి కాపీ చేయబడింది","linkedContents":"లింక్ చేయబడిన కంటెంట్","linkedIn":"లింకెడిన్","location":"నగర","lockPopupTitle":"{collaborator} ప్రస్తుతం {కంటెంట్ పేరు} లో పని చేస్తున్నారు. తరువాత మళ్ళీ ప్రయత్నించండి.","markas":"గుర్తు వంటి","medium":"మాధ్యమం","mentors":"మార్గదర్శకులు","mobileEmailInfoText":"DIKSHA లో సైన్ ఇన్ చేయడానికి మీ మొబైల్ నంబర్ లేదా ఇమెయిల్ ID ని నమోదు చేయండి","mobileNumber":"మొబైల్ నంబర్","mobileNumberInfoText":"డిక్షాకు లాగిన్ అవ్వడానికి మీ మొబైల్ నంబర్ నమోదు చేయండి","more":"మరింత","myBadges":"నా బ్యాడ్జ్లు","mynotebook":"నా నోట్బుక్","mynotes":"నా గమనికలు","name":"పేరు","nameRequired":"పేరు అవసరం","next":"ముందుకు సాగు","noContentToPlay":"ఆడటానికి కంటెంట్ లేదు","noDataFound":"డేటా కనుగొనబడలేదు","online":"మీరు ఆన్లైన్లో ఉన్నారు","opndbtch":"ఓపెన్ బ్యాచ్లు","orgCode":"సంస్థ కోడ్","orgId":"సంస్థ ఐడి","orgType":"సంస్థ రకం","organization":"సంస్థ","orgname":"సంస్థ పేరు","orgtypes":"సంస్థ రకం","ownership":"యజమానత్వము","participants":"పాల్గొనే","password":"సాంకేతిక పదము","pdfcontents":"pdf కంటెంట్","percentage":"శాతం","permanent":"శాశ్వతమైన","phone":"ఫోను నంబరు","phoneNumber":"ఫోన్ నంబర్","phoneOrEmail":"ఫోన్ నంబర్ లేదా ఇమెయిల్ id ను నమోదు చేయండి","phoneVerfied":"ఫోన్ ధృవీకరించబడింది","phonenumber":"ఫోను నంబరు","pincode":"పిన్ కోడ్","playContent":"కంటెంట్ను ఆడండి","plslgn":"ఈ సెషన్ గడువు ముగిసింది. $ {Instance} ని ఉపయోగించడం కొనసాగించడానికి మళ్ళీ లాగిన్ చెయ్యండి.","position":"స్థానం","preferredLanguage":"ప్రాధాన్య భాష","previous":"మునుపటి","processid":"ప్రాసెస్ ID","profilePopup":"మీకు సంబంధించిన కంటెంట్ను కనుగొనడానికి, ఈ క్రింది వివరాలను అప్డేట్ చేయండి:","provider":"org ప్రొవైడర్","publicFooterGetAccess":"DIKSHA వేదిక ఉపాధ్యాయులు, విద్యార్ధులు మరియు తల్లిదండ్రులు సూచించిన పాఠశాల పాఠ్యాంశానికి సంబంధించిన అభ్యాస సామగ్రిని ప్రోత్సహిస్తుంది. DIKSHA అనువర్తనాన్ని డౌన్లోడ్ చేసుకోండి మరియు మీ పాఠ్యపుస్తకాలలో సులభంగా QR కోడ్ను పాఠ్యపుస్తకాలలో స్కాన్ చేయండి.","reEnterPassword":"పాస్వర్డ్ను మళ్లీ నమోదు చేయండి","readless":"తక్కువ చదవండి ...","readmore":"...ఇంకా చదవండి","redirectMsg":"ఈ కంటెంట్ వెలుపల హోస్ట్ చేయబడింది","redirectWaitMsg":"దయచేసి కంటెంట్ లోడ్ అవుతున్నప్పుడు వేచి ఉండండి","removeAll":"అన్ని తీసివెయ్","reportUpdatedOn":"ఈ నివేదిక చివరిగా నవీకరించబడింది","resendOTP":"OTP ను మళ్ళీ పంపు","resentOTP":"OTP కోరింది. OTP ను ఎంటర్ చెయ్యండి.","resourcetype":"వనరు రకం","retired":"రిటైర్","role":"పాత్ర","roles":"పాత్రలు","rootOrg":"రూట్ org","sameEmailId":"మీ ప్రొఫైల్తో అనుసంధానించబడిన ఈ ఇమెయిల్ ID అదే","samePhoneNo":"మీ ప్రొఫైల్తో అనుసంధానించబడిన ఈ మొబైల్ నంబర్ అదే","school":"పాఠశాల","search":"అన్వేషించు","searchForContent":"6 అంకెల QR కోడ్ను నమోదు చేయండి","searchUserName":"యూజర్ పేరును శోధించండి","seladdresstype":"చిరునామా రకాన్ని ఎంచుకోండి","selectAll":"అన్ని ఎంచుకోండి","selectBlock":"బ్లాక్ ఎంచుకోండి","selectDistrict":"జిల్లాను ఎంచుకోండి","selectSchool":"పాఠశాల ఎంచుకోండి","selectState":"రాష్ట్రము ఎంచుకోండి","selected":"ఎంపికైంది","selectreason":"ఒక కారణాన్ని ఎంచుకోండి","sesnexrd":"సెషన్ ముగిసిపోయింది","setRole":"వినియోగదారుని సవరించండి","share":"షేర్ చెయ్యండి","sharelink":"లింక్ ద్వారా భాగస్వామ్యం చేయండి","showLess":"తక్కువ చూపించు","showingResults":"ఫలితాలను చూపుతుంది","showingResultsFor":"{SearchString} కోసం ఫలితాలను చూపుతోంది","signUp":"సైన్ అప్","signinenrollHeader":"శిక్షణ నమోదిత వినియోగదారులకు మాత్రమే. కోర్సును యాక్సెస్ చేయడానికి లాగిన్ అవ్వండి.","signinenrollTitle":"ఈ కోర్సు కోసం నమోదు చేయడానికి సైన్ ఇన్ చేయండి:","skillTags":"నైపుణ్యం టాగ్లు","sltBtch":"దయచేసి కొనసాగడానికి బ్యాచ్ని ఎంచుకోండి","socialmedialinks":"సోషల్ మీడియా లింకులు","sortby":"క్రమంలో పెట్టండి","startExploringContent":"DIAL కోడ్ను నమోదు చేయడం ద్వారా కంటెంట్ను అన్వేషించడం ప్రారంభించండి","startExploringContentBySearch":"శోధన ఎంపిక లేదా QR కోడ్లను ఉపయోగించి కంటెంట్ను అన్వేషించండి","startdate":"ప్రారంబపు తేది","state":"రాష్ట్రము","stateRecord":"రాష్ట్ర రికార్డుల ప్రకారం","subject":"పాఠ్యాంశము","subjects":"విషయాలను","subjectstaught":"విషయం (లు) బోధించారు","submitOTP":"OTP ని సమర్పించండి","subtopic":"సబ్ టాపిక్","successres":"విజయం ఫలితాలు","summary":"సారాంశం","tableNotAvailable":"ఈ నివేదిక కోసం టేబుల్ అందుబాటులో లేదు","takenote":"గమనించండి","tcfrom":"నుండి","tcno":"కాదు","tcto":"చివరి తేదీ","tcyes":"అవును","tenDigitPhone":"10 అంకెల ఫోన్ నంబర్","termsAndCond":"నిబంధనలు మరియు షరతులు","termsAndCondAgree":"నేను ఉపయోగ నిబంధనలు మరియు షరతులకు అంగీకరిస్తున్నాను","theme":"నేపథ్యం","title":"శీర్షిక","toTryAgain":"మళ్ళీ ప్రయత్నించండి.","topic":"విషయము","topics":"విషయాలు","trainingAttended":"శిక్షణలు హాజరయ్యాయి","twitter":"ట్విట్టర్","unableToUpdateEmail":"ఇమెయిల్ ID ని అప్డేట్ చేయలేకపోతున్నారా?","unableToUpdateMobile":"మొబైల్ నంబర్ను నవీకరించడం సాధ్యం కాలేదు?","unableToVerifyEmail":"ఇమెయిల్ ఐడిని ధృవీకరించలేకపోయింది?","unableToVerifyPhone":"ఫోన్ నంబర్ను ధృవీకరించడం సాధ్యం కాలేదు","unenrollMsg":"మీరు నిజంగా ఈ బ్యాచ్ నుండి నమోదు చేయాలనుకుంటున్నారా?","unenrollTitle":"బ్యాచ్ నమోదు తీసివేత","uniqueEmail":"మీ ఇమెయిల్ ఐడి ఇప్పటికే నమోదు చెయ్యబడింది","uniqueEmailId":"ఈ ఇమెయిల్ ID ఇప్పటికే ఉపయోగంలో ఉంది. దయచేసి మరొక ఇమెయిల్ ID ని నమోదు చేయండి.","uniqueMobile":"This mobile number is already registered. Enter another mobile number","uniquePhone":"మీ ఫోన్ నంబర్ ఇప్పటికే నమోదు చేయబడింది","updateEmailId":"ఇమెయిల్ ID అప్డేట్ చేయండి","updatePhoneNo":"మొబైల్ నంబర్ను నవీకరించండి","updatedon":"నవీకరించబడింది","updateorgtype":"సంస్థ రకం అప్‌డేట్ చెయ్యండి","upldfile":"అప్లోడ్ చేసిన ఫైల్","uploadContent":"కంటెంట్ను అప్లోడ్ చేయండి","uploadEcarFromPd":"కంటెంట్ను దిగుమతి చెయ్యడానికి ఒక పెన్ డ్రైవ్ నుండి .ecarఫైళ్లను ఎంచుకోండి","userFilterForm":"వినియోగదారులు  శోధించండి","userID":"వినియోగదారుని Id","userId":"వినియోగదారుని గుర్తింపు","userType":"యూజర్ రకం","username":"వాడకందారు పేరు","validEmail":"చెల్లుబాటు అయ్యే ఇమెయిల్ ఐడిని నమోదు చేయండి","validPassword":"చెల్లుబాటు అయ్యే పాస్వర్డ్ను నమోదు చేయండి","validPhone":"చెల్లుబాటు అయ్యే 10 అంకెల ఫోన్ నంబర్ను నమోదు చేయండి","videos":"వీడియోలు","viewless":"తక్కువ వీక్షించండి","viewmore":"మరింత వీక్షించండి","viewworkspace":"మీ కార్యస్థలంను వీక్షించండి","whatsQRCode":"QR కోడ్ ఏమిటి?","whatwentwrong":"ఏమి తప్పు జరిగింది?","whatwentwrongdesc":"ఏమి తప్పు జరిగిందో మాకు తెలపండి. మేము దీన్ని వీలైనంత త్వరగా సమీక్షించి, ఈ సమస్యను పరిష్కరించడానికి ఖచ్చితమైన కారణాలను పేర్కొనండి. మీ అభిప్రాయం తెలియచేసినందుకు ధన్యవాదములు!","worktitle":"ఉద్యోగము / పని టైటిల్","wrongEmailOTP":"మీరు తప్పు OTP ను ఎంటర్ చేసారు. మీ ఇమెయిల్ ID లో పొందిన OTP ను నమోదు చేయండి. OTP కు 30 నిమిషాలు మాత్రమే చెల్లుతుంది.","wrongPhoneOTP":"మీరు తప్పు OTP ను ఎంటర్ చేసారు. మీ ఫోన్ నంబర్లో పొందిన OTP ను ఎంటర్ చెయ్యండి. 30 నిమిషాలు మాత్రమే OTP చెల్లుతుంది.","yop":"పాసింగ్ సంవత్సరం","indPhoneCode":91,"offline":"You are offline","howToVideo":"How to video","limitsOfArtificialIntell":"Limits of artificial intelligence","howToUseDiksha":"How to use {instance} desktop app","watchVideo":"See Video","manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","recoverAccount":"Recover Account","mergeAccount":"Merge Account","enterEmailID":"Enter email address","phoneRequired":"Mobile number is required","emailPhonenotRegistered":"Email address / Mobile number is not registered with {instance}","enterName":"Enter name","enterNameNotMatch":"The entry does not match the name registered with {instance}","receiveOTP":"Where would you like to receive the OTP?","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","otpSentTo":"OTP has been sent to","itis":"It is","validFor":"valid for 30 min","otpMandatory":"OTP is mandatory","otpValidated":"OTP validated successfully","newPassword":"New Password","enterEightCharacters":"Enter at least 8 characters","passwordMismatch":"Password mismatch, enter the correct password","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","enternameAsRegisteredInAccount":"and the name as on the {instance} account","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","certificateIssuedTo":"Certificate issued to","certificatesIssued":"Certificates Issued","completingCourseSuccessfully":"For successfully completing the training,","contactStateAdmin":"Contact your state admin to add more participants to this batch","contentcopiedtitle":"This content is derived from","contenttype":"Content","copyRight":"Copyright","noCreditsAvailable":"No credits available","courseCredits":"Credits","createdInstanceName":"Created on {instance} by","dashboardcertificateStatus":"Certificate Status","deviceId":"Device ID","downloadCourseQRCode":"Download Training QR Code","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadingContent":"Preparing to download {contentName}...","enrollmentenddate":"Enrolment End Date","enterCertificateCode":"Enter the certificate code here","enterValidCertificateCode":"Enter a valid Certificate Code","errorMessage":"Error message","externalId":"External Id","lang":"Language","licenseTerms":"License Terms","onDiksha":"on {instance} on","originalAuthor":"Original Author","publishedBy":"Published by","publishedOnInstanceName":"Published on {instance} by","recentlyAdded":"Recently Added","contentType":"Content Type","returnToCourses":"Return to Trainings","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","updatecollection":"Update All","updatecontent":"Update Content","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","verifyingCertificate":"Verifying your certificate","view":"View","watchCourseVideo":"Watch Video","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","exportingContent":"Preparing to copy {contentName}...","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","versionKey":"Version:","releaseDateKey":"Release Date:","supportedLanguages":"Supported Languages:","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","desktopAppFeature001":"Free unlimited content","desktopAppFeature002":"Multilingual support","desktopAppFeature003":"Play content offline","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","contentsUploaded":"Contents are being uploaded","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from"},"btn":{"add":"కలుపు","addingToLibrary":"లైబ్రరీకి జోడింపబడుతోంది","apply":"అనువర్తించు","cancel":"రద్దు చేయు","cancelCapitalize":"రద్దు చేయు","clear":"స్పష్టమైన","close":"ముగిసింది","contentImport":"ఫైల్లను అప్లోడ్ చేయండి","copyLink":"లింక్ను కాపీ చేయండి","create":"సృష్టించు","download":"డౌన్లోడ్","downloadCompleted":"డౌన్లోడ్ పూర్తయింది","downloadPending":"డౌన్లోడ్ పెండింగ్లో ఉంది","edit":"మార్చు","enroll":"నమోదుచేయి","login":"లాగిన్","next":"తరువాత","no":"కాదు","ok":"సరే","previous":"విషయాల","remove":"తొలగించు","reset":"రీసెట్","resume":"పునఃప్రారంభం","resumecourse":"కోర్సు కొనసాగించండి","save":"సేవ్ చెయ్యండి","selectContentFiles":"ఫైల్ (లు) ఎంచుకోండి","selectLanguage":"భాషను ఎంచుకోండి","selrole":"పాత్ర ఎంచుకోండి","signin":"సైన్ ఇన్ చేయండి","signup":"నమోదు చేసుకోండి","submit":"సబ్మిట్ చెయ్యి","submitbtn":"సమర్పించండి","tryagain":"మళ్ళీ ప్రయత్నించండి","unenroll":"శిక్షణను వదిలివేయండి","update":"అప్‌డేట్","viewCourseStatsDashboard":"శిక్షణ డాష్‌బోర్డ్‌ను చూడండి","viewcoursestats":"కోర్సు గణాంకాలను వీక్షించండి","viewless":"తక్కువ వీక్షించండి","viewmore":"మరింత వీక్షించండి","yes":"అవును","yesiamsure":"సరే","downloadPdf":"Help","downloadCertificate":"Download Certificate","merge":"Merge","myLibrary":"My Downloads","verify":"Verify","viewdetails":"View Details","downloadFailed":"Download failed","downloadAppForWindows64":"Download for Windows (64-bit)","downloadInstruction":"See download instructions","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","smplcsv":"Download sample CSV","uploadorgscsv":"Upload organizations CSV","uploadusrscsv":"Upload users CSV","createNew":"Create New","addToLibrary":"Download to My Library","export":"Copy to pen drive","browse":"Browse Online","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"},"addedToLibrary":"Added To Library"},"drpdn":{"female":"మహిళ","male":"పురుషుడు","transgender":"లింగమార్పిడి"},"instn":{"t0002":"మీరు ఒక CSV ఫైల్ లో ఒక సమయంలో 199 సంస్థల వివరాలను జోడించవచ్చు లేదా అప్లోడ్ చేయవచ్చు","t0007":"OrgName కాలమ్ తప్పనిసరి. ఈ కాలమ్లో సంస్థ పేరును నమోదు చేయండి","t0011":"మీరు ప్రాసెస్ID తో పురోగతిని ట్రాక్ చేయవచ్చు","t0012":"దయచేసి మీ సూచన కోసం ప్రాసెస్ ID ని సేవ్ చేయండి. ప్రాసెస్ ID తో పురోగతిని ట్రాక్ చేయవచ్చు","t0013":"సూచన కోసం csv ఫైల్ను డౌన్లోడ్ చేయండి","t0015":"సంస్థలను అప్లోడ్ చేయండి","t0016":"వినియోగదారులను అప్లోడ్ చేయండి","t0020":"నైపుణ్యాన్ని జోడించడానికి టైప్ చేయడాన్ని ప్రారంభించండి","t0021":"ప్రత్యేక క్రమంలో ప్రతి సంస్థ పేరును నమోదు చేయండి","t0022":"అన్ని ఇతర నిలువు వరుసలలో వివరాలను నమోదు చేయడం తప్పనిసరి కాదు","t0023":"isRootOrg: ఈ కాలమ్కు చెల్లుబాటు అయ్యే విలువలు ట్రూ ఫాల్స్","t0024":"ఛానల్: మాస్టర్ సంస్థ సృష్టి సమయంలో ప్రత్యేక ID అందించబడుతుంది","t0025":"externalId: నిర్వాహక సంస్థ యొక్క రిపోజిటరీలో ప్రతి సంస్థతో అనుబంధించబడిన ప్రత్యేక ID","t0026":"ప్రొవైడర్: నిర్వాహక సంస్థ ఛానల్ ID","t0027":"వివరణ: సంస్థ వివరించే వివరాలు","t0028":"homeUrl: సంస్థ యొక్క హోమ్పేజీ url","t0029":"సంస్థ కోడ్:సంస్థ యొక్క ఏకైక కోడ్, ఏదైనా ఉంటే,","t0030":"సంస్థ రకం:సంస్థ రకం,అటువంటి, NGO,ప్రాధమిక పాఠశాల, ఉన్నత పాఠశాల మొదలైనవి","t0031":"ప్రాధాన్య భాష: సంస్థ కోసం భాషా ప్రాధాన్యతలను, ఏదైనా ఉంటే","t0032":"సంప్రదింపు వివరాలు: సంస్థ యొక్క ఫోన్ నంబర్ మరియు ఇమెయిల్ ID. వివరాలు సింగిల్ కోట్స్లో కర్లీ బ్రాకెట్స్లో ఎంటర్ చెయ్యాలి. ఉదాహరణకు: [{'ఫోనేంబర్': '1234567890'}]","t0049":"కాలమ్ విలువ RootOrg True అయితే ఛానల్ తప్పనిసరి  ఇవ్వండి","t0050":"బాహ్య మరియు ప్రొవైడర్ పరస్పరం తప్పనిసరి","t0055":"అయ్యో ప్రకటన వివరాలు కనుగొనబడలేదు!","t0056":"దయచేసి మళ్లీ ప్రయత్నించండి...","t0058":"గా డౌన్లోడ్ చేయండి","t0059":"CSV","t0060":"ధన్యవాదాలు!","t0061":"అయ్యో ...","t0062":"మీరు ఇంకా ఈ కోర్సు కోసం బ్యాచ్ని సృష్టించలేదు. క్రొత్త బ్యాచ్ని సృష్టించండి మరియు మళ్లీ డాష్బోర్డ్ను తనిఖీ చేయండి.","t0063":"మీరు ఇంకా ఏ కోర్సును సృష్టించలేదు. క్రొత్త కోర్సు సృష్టించి, మళ్ళీ డాష్బోర్డ్ను తనిఖీ చేయండి.","t0064":"ఒకే రకంతో బహుళ చిరునామాలు ఎంచుకోబడ్డాయి. దయచేసి ఏదైనా మార్చండి.","t0065":"డౌన్లోడ్","t0070":"CSV ఫైల్ను డౌన్లోడ్ చేయండి. ఒకే సంస్థకు చెందిన వినియోగదారులు ఒకేసారి CSV ఫైల్లో అప్లోడ్ చేయగలరు.","t0071":"యూజర్ ఖాతాల కింది వివరాలు తప్పనిసరిగా నమోదు చేయండి:","t0072":"మొదటి పేరు: వాడుకరి యొక్క మొదటి పేరు, వర్ణమాల విలువ.","t0073":"ఫోన్ లేదా ఇమెయిల్: వినియోగదారు ఫోన్ నంబర్ (పది అంకెల మొబైల్ నంబర్) లేదా ఇమెయిల్ ID. ఇద్దరిలో ఒకరు అందించవలసి ఉంటుంది, అయితే అందుబాటులో ఉన్నట్లయితే రెండింటినీ అందించడం మంచిది.","t0074":"యూజర్పేరు: సంస్థ ద్వారా వినియోగదారుకు కేటాయించిన ప్రత్యేక పేరు, ఆల్ఫాన్యూమెరిక్.","t0076":"గమనిక: CSV ఫైల్ లోని అన్ని ఇతర నిలువు వరుసలు, అవి నింపి వివరాలను సూచించడానికి, ఐచ్ఛికం","t0077":"నమోదు వినియోగదారులు","t0078":"స్థానం Id: ఒక ప్రత్యేక సంస్థ కోసం ఒక ప్రకటన విషయం గుర్తిస్తుంది","t0079":"locationCode: స్థాన సంకేతాలు యొక్క కామాతో వేరుచేయబడిన జాబితా","t0081":"DIKSHA పై సైన్ అప్ చేసినందుకు ధన్యవాదాలు. ధృవీకరణ కోసం మేము ఒక sms OTP ను పంపాము. నమోదు ప్రక్రియను పూర్తి చేయడానికి మీ ఫోన్ నంబర్ OTP తో ధృవీకరించండి.","t0082":"DIKSHA పై సైన్ అప్ చేసినందుకు ధన్యవాదాలు. ధృవీకరణ కోసం మేము ఒక ఇమెయిల్ OTP ను పంపించాము. నమోదు ప్రక్రియను పూర్తి చేయడానికి OTP తో మీ ఇమెయిల్ ID ని ధృవీకరించండి.","t0083":"మీరు మొబైల్ నంబర్ ధృవీకరణ కోసం OTP తో SMS ను అందుకుంటారు.","t0084":"మీరు ఇమెయిల్ ID ధృవీకరణ కోసం OTP తో ఇమెయిల్ను అందుకుంటారు.","t0085":"నివేదిక మొదటి 10,000 మంది పాల్గొనేవారి డేటాను చూపుతుంది. బ్యాచ్లో పాల్గొనేవారి యొక్క పురోగతిని వీక్షించడానికి డౌన్ లోడ్ క్లిక్ చేయండి.","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"గమనికలు లేదా శీర్షిక కోసం శోధించండి","t0002":"మీ వ్యాఖ్యను జోడించండి","t0005":"బ్యాచ్ సలహాదారులను ఎంచుకోండి","t0006":"బ్యాచ్ సభ్యులను ఎంచుకోండి"},"lnk":{"announcement":"ప్రకటన డాష్బోర్డ్","assignedToMe":"నాకు కేటాయించబడింది","contentProgressReport":"కంటెంట్ ప్రోగ్రెస్ రిపోర్ట్","contentStatusReport":"కంటెంట్ స్థితి నివేదిక","createdByMe":"నాకు సృష్టించింది","dashboard":"నిర్వాహక డాష్బోర్డ్","detailedConsumptionMatrix":"వివరణాత్మక వినియోగం మాట్రిక్స్","detailedConsumptionReport":"వివరణాత్మక వినియోగ నివేదిక","footerContact":"ప్రశ్నలకు సంప్రదించండి:","footerDIKSHAForMobile":"DIKSHA కోసం మొబైల్","footerDikshaVerticals":"DIKSHA నిలువు","footerHelpCenter":"సహాయ కేంద్రం","footerPartners":"భాగస్వాములు","footerTnC":"వాడుక నియమాలు","logout":"లాగౌట్","myactivity":"నా క్రియాకలాపం","profile":"ప్రొఫైల్","textbookProgressReport":"టెక్స్ట్ బుక్ ప్రోగ్రెస్ రిపోర్ట్","viewall":"అన్నింటినీ వీక్షించండి","workSpace":"కార్యస్థలం"},"pgttl":{"takeanote":"గమనిక తీసుకోండి"},"prmpt":{"deletenote":"ఈ గమనికను ఖచ్చితంగా తొలగించాలా?","enteremailID":"మీ ఇమెయిల్ Id ను నమోదు చేయండి","enterphoneno":"10 అంకెల ఫోన్ నంబర్ను నమోదు చేయండి","search":"అన్వేషించు","userlocation":"నగర"},"scttl":{"blkuser":"వినియోగదారుని బ్లాక్ చేయి","contributions":"సహాయకులు","instructions":"సూచనలను:","signup":"సైన్ అప్","todo":"చెయ్యవలసిన","error":"Error:"},"snav":{"shareViaLink":"లింక్ ద్వారా భాగస్వామ్యం చేయబడింది","submittedForReview":"సమీక్ష కోసం సమర్పించారు"},"tab":{"all":"అన్ని","community":"సమూహాలు","courses":"కోర్సులు","help":"సహాయం","home":"హోమ్","profile":"ప్రొఫైల్","resources":"గ్రంధాలయం","users":"వినియోగదారులు","workspace":"కార్యస్థలం","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"కోర్సు ముగిసింది","messages":{"emsg":{"m0001":"ఇప్పుడు నమోదు చేయలేరు. తరువాత మళ్ళీ ప్రయత్నించండి","m0003":"మీరు ప్రొవైడర్ మరియు బాహ్య Id లేదా సంస్థ Id నమోదు చేయాలి","m0005":"ఏదో తప్పు జరిగింది, దయచేసి కొంత సమయం లో ప్రయత్నించండి ...","m0007":"పరిమాణం తక్కువగా ఉండాలి","m0008":"కంటెంట్ను కాపీ చేయడం సాధ్యం కాదు. తరువాత మళ్ళీ ప్రయత్నించండి","m0009":"ఇప్పుడు నమోదు చేయలేరు. తర్వాత మళ్లీ ప్రయత్నించండి","m0014":"మొబైల్ నంబర్ను నవీకరిస్తోంది విఫలమైంది","m0015":"ఇమెయిల్ ID ని నవీకరిస్తోంది విఫలమైంది","m0016":"పొందడంలో స్థితి విఫలమైంది.తరువాత మళ్ళీ ప్రయత్నించండి","m0017":"పొందుతున్న జిల్లాలు విఫలమయ్యాయి. తరువాత మళ్ళీ ప్రయత్నించండి","m0018":"ప్రొఫైల్ని నవీకరించడం విఫలమైంది","m0019":"నివేదిక డౌన్లోడ్ చేయబడదు, తర్వాత మళ్లీ ప్రయత్నించండి","m0020":"యూజర్ అప్డేట్ విఫలమైంది. తరువాత మళ్ళీ ప్రయత్నించండి","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"పొందుపర్చిన కోర్సులు విఫలమయ్యాయి, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి","m0002":"ఇతర కోర్సులు పొందడంలో విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి ...","m0003":"కోర్సు షెడ్యూల్ వివరాలను పొందడం సాధ్యం కాదు.","m0004":"డేటాను పొందడంలో  విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0030":"గమనిక సృష్టించడం విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి","m0032":"గమనిక తొలగించడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0033":"గమనిక పొందడంలో విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0034":"గమనికను నవీకరించడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0041":"విద్య తొలగింపు విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి","m0042":"అనుభవం తొలగింపు విఫలమైంది. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి...","m0043":"చిరునామా తొలగింపు విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి","m0048":"వినియోగదారు ప్రొఫైల్ను నవీకరించడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0049":"డేటాను లోడ్ చేయలేకపోయింది","m0050":"అభ్యర్థన సమర్పించడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0051":"ఏదో తప్పు జరిగినది. దయచేసి కాసేపు ఆగక ప్రయత్నించండి...","m0054":"బ్యాచ్ వివరాలను పొందడం విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి ...","m0056":"వినియోగదారులు జాబితాను పొందడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0076":"దయచేసి తప్పనిసరి ఫీల్డ్లను నమోదు చేయండి","m0077":"శోధన ఫలితాన్ని పొందడం విఫలమైంది","m0079":"కేటాయింపు బ్యాడ్జ్ విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి...","m0080":"బ్యాడ్జ్ని పొందడంలో విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి ...","m0082":"నమోదు కోసం ఈ కోర్సు తెరవబడలేదు","m0085":"ఒక సాంకేతిక లోపం ఉంది.మళ్ళీ ప్రయత్నించండి","m0086":"ఈ కోర్సు రచయితచే రిటైర్ చేయబడింది, అందుకే ఇక అందుబాటులో లేదు.","m0087":"దయచేసి వేచి ఉండండి","m0088":"మేము వివరాలను పొందుతున్నాము","m0089":"ఏ అంశాలు / ఉప అంశాలు కనుగొనబడలేదు","m0091":"కొంటేంట్‌ను కాపీ చేయలేకపోింది. దయచేసి కొంత సేపటి తర్వాత ప్రయత్నించండి","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0094":"Could not download, try again later...","m0090":"Could not download. Try again later","m0093":"{FailedContentLength} content(s) upload failed","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"ఈ కోర్సు తగనిదిగా ఫ్లాగ్ చేయబడింది మరియు ప్రస్తుతం సమీక్షలో ఉంది. దయచేసి తర్వాత మళ్లీ తనిఖీ చేయండి.","m0005":"దయచేసి చెల్లుబాటు అయ్యే చిత్ర ఫైల్ను అప్లోడ్ చేయండి.మద్దతు రకం ఫైలు: jpeg, jpg, png. రిష్టపరిమాణం: 4MB","m0017":"ప్రొఫైల్ పరిపూర్ణత","m0022":"గత 7 రోజులకు గణాంకాలు","m0023":"గత 14 రోజులకు గణాంకాలు","m0024":"గత 5 వారాల కోసం గణాంకాలు","m0025":"ప్రారంభమయ్యే గణాంకాలు","m0026":"హాయ్, ఈ కోర్సు ఇప్పుడు అందుబాటులో లేదు. ఇది సృష్టికర్త కొన్ని మార్పులను కోర్సులో చేసింది.","m0027":"హాయ్, ఈ కంటెంట్ ఇప్పుడు అందుబాటులో లేదు. ఇది సృష్టికర్త కొన్ని మార్పులను కలిగి ఉంది.","m0034":"కంటెంట్ బాహ్య వనరు నుండి వచ్చినప్పుడు, ఇది కొంతకాలం ప్రారంభమవుతుంది.","m0035":"అనధికారిక ప్రవేశము","m0036":"కంటెంట్ బాహ్యంగా హోస్ట్ చెయ్యబడింది, కంటెంట్ను వీక్షించడానికి దయచేసి ప్రివ్యూ క్లిక్ చేయండి","m0040":"ఆపరేషన్ ఇప్పటికీ పురోగతిలో ఉంది, కొంత సమయం తర్వాత దయచేసి ప్రయత్నించండి.","m0041":"మీ ప్రొఫైల్","m0042":"% పూర్తి","m0043":"మీ ప్రొఫైల్కు చెల్లుబాటు అయ్యే ఇమెయిల్ ID లేదు.మీ ఇమెయిల్ ID ని నవీకరించండి.","m0044":"డౌన్లోడ్ విఫలమైంది!","m0045":"డౌన్లోడ్ విఫలమైంది. కొంతకాలం తర్వాత మళ్లీ ప్రయత్నించండి.","m0047":"You can only select 100 participants","m0060":"If you have two accounts with {instance}, click","m0061":"to","m0062":"Else, click","m0063":"combine usage details of both accounts, and","m0064":"delete the other account","m0065":"Account merge initiated successfully","m0066":"you will be notified once it is completed","m0067":"Could not initiate the account merge. Click the Merge Account option in the Profile menu and try again","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0073":"Click Create New to create a new {instance} account.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"గమనిక విజయవంతంగా సృష్టించబడింది ...","m0013":"గమనిక విజయవంతంగా నవీకరించబడింది","m0014":"విద్య విజయవంతంగా తొలగించబడింది","m0015":"అనుభవం విజయవంతంగా తొలగించబడింది","m0016":"చిరునామా విజయవంతంగా తొలగించబడింది","m0018":"ప్రొఫైల్ చిత్రం విజయవంతంగా నవీకరించబడింది","m0019":"వివరణ విజయవంతంగా నవీకరించబడింది","m0020":"విద్య విజయవంతంగా నవీకరించబడింది ...","m0021":"అనుభవం విజయవంతంగా నవీకరించబడింది","m0022":"అదనపు సమాచారం విజయవంతంగా నవీకరించబడింది","m0023":"చిరునామా విజయవంతంగా నవీకరించబడింది","m0024":"క్రొత్త విద్య విజయవంతంగా జోడించబడింది","m0025":"క్రొత్త అనుభవం విజయవంతంగా జోడించబడింది","m0026":"క్రొత్త చిరునామా విజయవంతంగా జోడించబడింది","m0028":"పాత్రలు విజయవంతంగా నవీకరించబడ్డాయి","m0029":"యూజర్ విజయవంతంగా తొలగించారు","m0030":"వినియోగదారులు విజయవంతంగా అప్లోడ్ చేశారు","m0031":"సంస్థలు విజయవంతంగా అప్లోడ్ చేయబడ్డాయి ...","m0032":"స్థితి విజయవంతంగా పొందింది ...","m0035":"org రకం విజయవంతంగా జోడించబడింది","m0036":"కోర్సు ఈ బ్యాచ్ కోసం విజయవంతంగా నమోదు చేయబడింది ...","m0037":"విజయవంతంగా నవీకరించబడింది","m0038":"నైపుణ్యాలు విజయవంతంగా నవీకరించబడ్డాయి ...","m0039":"విజయవంతంగా సైన్ అప్ చేయండి, దయచేసి లాగిన్ అవ్వండి","m0040":"ప్రొఫైల్ ఫీల్డ్ దృశ్యమానత విజయవంతంగా నవీకరించబడింది","m0042":"కంటెంట్ విజయవంతంగా కాపీ చేయబడింది","m0043":"ఆమోదం విజయవంతమైంది","m0044":"బ్యాడ్జ్ విజయవంతంగా కేటాయించబడింది ...","m0045":"విజయవంతంగా బ్యాచ్ నుండి యూజర్ తీసివేయబడింది ...","m0046":"ప్రొఫైల్ విజయవంతంగా నవీకరించబడింది","m0047":"మీ మొబైల్ నంబర్ నవీకరించబడింది.","m0048":"మీ ఇమెయిల్ ID నవీకరించబడింది.","m0049":"యూజర్ విజయవంతంగా నవీకరించబడింది","m0050":"ఈ కంటెంట్ను రేట్ చేసినందుకు ధన్యవాదాలు!","m0053":"కంటెంట్ డౌన్లోడ్ కోసం క్యూలో జోడించబడింది","moo41":"ప్రకటన విజయవంతంగా రద్దు చేయబడింది","m0055":"Updating...","m0056":"You should be online to update the content","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0054":"{UploadedContentLength} content(s) uploaded successfully","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"ఎటువంటి ఫలితాలు లభించలేదు","m0007":"దయచేసి ఇంకేదైనా వెతకండి.","m0008":"ఫలితాలు లేవు","m0009":"ప్లే చేయలేరు, దయచేసి మళ్ళీ ప్రయత్నించండి లేదా ముగించండి","m0022":"సమీక్ష కోసం మీ చిత్తుప్రతుల్లో ఒకదాన్ని సమర్పించండి. సమీక్ష తర్వాత ప్రచురించబడింది కంటెంట్","m0024":"పత్రం, వీడియో లేదా ఏదైనా ఇతర మద్దతు ఉన్న ఫార్మాట్ను అప్లోడ్ చేయండి. మీరు ఇంకా దేన్నీ అప్లోడ్ చేయలేదు","m0033":"సమీక్ష కోసం మీ చిత్తుప్రతుల్లో ఒకదాన్ని సమర్పించండి. మీరు ఇంకా సమీక్ష కోసం ఏ కంటెంట్ను సమర్పించలేదు","m0035":"సమీక్షించడానికి కంటెంట్ లేదు","m0060":"మీ ప్రొఫైల్ను బలోపేతం చేయండి","m0062":"సరైన డిగ్రీని నమోదు చేయండి","m0063":"చెల్లుబాటు అయ్యే చిరునామా లైన్ 1 ను నమోదు చేయండి","m0064":"నగరం నమోదు చేయండి","m0065":"చెల్లుబాటు అయ్యే పిన్ కోడ్ను నమోదు చేయండి","m0066":"మొదటి పేరు నమోదు చేయండి","m0067":"దయచేసి చెల్లుబాటు అయ్యే ఫోన్ నంబర్ను అందించండి","m0069":"భాషను ఎంచుకోండి","m0070":"సంస్థ పేరు నమోదు చేయండి","m0072":"చెల్లుబాటు అయ్యే వృత్తి / పని టైటిల్ నమోదు చేయండి","m0073":"చెల్లుబాటు అయ్యే సంస్థ నమోదు చేయండి","m0077":"మేము మీ అభ్యర్థనను సమర్పిస్తున్నాము ...","m0080":"దయచేసి csv రూపంలో మాత్రమే ఫైల్ను అప్లోడ్ చేయండి","m0081":"ఏ బ్యాచ్లు దొరకలేదు","m0083":"మీరు ఇంకా ఏ ఒక్కరితోనూ కంటెంట్ను భాగస్వామ్యం చేయలేదు","m0087":"దయచేసి చెల్లుబాటు అయ్యే యూజర్ పేరును నమోదు చేసి, కనీసం 5 అక్షరాలను కలిగి ఉండాలి","m0088":"దయచేసి చెల్లుబాటు అయ్యే పాస్వర్డ్ను నమోదు చేయండి","m0089":"దయచేసి చెల్లుబాటు అయ్యే ఇమెయిల్ను నమోదు చేయండి","m0090":"దయచేసి భాషలను ఎంచుకోండి","m0091":"దయచేసి చెల్లుబాటు అయ్యే ఫోన్ నంబర్ను నమోదు చేయండి","m0094":"చెల్లుబాటు అయ్యే శాతం నమోదు చేయండి","m0095":"మీ అభ్యర్థన విజయవంతంగా పొందింది. మీ రిజిస్ట్రేటెడ్ ఇమెయిల్ చిరునామా తరువాత ఫైల్ పంపబడుతుంది. దయచేసి, మీ ఇమెయిల్లను క్రమంగా తనిఖీ చేయండి.","m0104":"చెల్లుబాటు అయ్యే గ్రేడ్ నమోదు చేయండి","m0108":"మీ పురోగతి","m0113":"చెల్లుబాటు అయ్యే ప్రారంభ తేదీని నమోదు చేయండి","m0116":"ఎంచుకున్న గమనికను తొలగిస్తోంది..","m0120":"ఆడటానికి కంటెంట్ లేదు","m0121":"కంటెంట్ ఇంకా జోడించబడలేదు","m0122":"మీ రాష్ట్రం త్వరలో ఈ QR కోడ్ కోసం కంటెంట్‌ను జోడిస్తుంది. ఇది త్వరలో అందుబాటులో ఉంటుంది.","m0123":"మిమ్మల్ని సహకారిగా జోడించడానికి స్నేహితుని అడగండి. ఇదే ఇమెయిల్ ద్వారా మీకు తెలియజేయబడుతుంది.","m0125":"రిసోర్స్, బుక్, కోర్సు, కలెక్షన్ లేదా అప్లోడ్ సృష్టించడం ప్రారంభించండి. ప్రస్తుతానికి మీ వద్ద పని-లో-పురోగతి డ్రాఫ్ట్ లేదు","m0126":"దయచేసి బోర్డ్ను ఎంచుకోండి","m0127":"దయచేసి మీడియం ఎంచుకోండి","m0128":"దయచేసి తరగతి ఎంచుకోండి","m0129":"నిబంధనలు మరియు షరతులను లోడ్ చేస్తోంది.","m0130":"మేము జిల్లాలను పొందుతున్నాము","m0131":"నివేదికలు కనుగొనబడలేదు","m0132":"మీ డౌన్లోడ్ అభ్యర్థన మేము అందుకున్నాము .మీ రిజిస్టర్డ్ ఇమెయిల్ ID కు త్వరలోనే ఫైల్ పంపబడుతుంది.","m0134":"Enrolment ","m0135":"Enter a valid date","m0136":"Last Date for Enrolment:","m0139":"DOWNLOADED","m0140":"DOWNLOADING","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0133":"Browse and download, or upload content to start using the desktop app","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"},"m0138":"FAILED"},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"సంస్థ పేరు","participants":"పాల్గొనే","resourceService":{"frmelmnts":{"lbl":{"userId":"వినియోగదారుని గుర్తింపు"}}},"t0065":"డౌన్లోడ్ ఫైల్"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","courseName":"Course Name","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","disablePopupText":"This content can not be deleted","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","submittedForReview":"Submitted for review","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","shareViaLink":"Shared via link","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid start date","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
+{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"సరిపోలే రికార్డ్లు కనుగొనబడలేదు","Mobile":"మొబైల్","SearchIn":"{శోధనలో కంటెంట్ రకం} లో శోధించండి","Select":"ఎంచుకోండి","aboutthecourse":"శిక్షణ సమాచారం","active":"క్రియాశీల","addDistrict":"జిల్లాను జోడించండి","addEmailID":"ఇమెయిల్ ఐడిని జోడించండి","addPhoneNo":"మొబైల్ నంబర్ను జోడించండి","addState":"రాష్ట్ర జోడించండి","addlInfo":"అదనపు సమాచారం","addnote":"గమనిక చేర్చు","addorgtype":"సంస్థ రకం జోడించండి","address":"చిరునామా","addressline1":"చిరునామా లైన్ 1","addressline2":"చిరునామా లైన్ 2","anncmnt":"ప్రకటన","anncmntall":"అన్ని ప్రకటనలు","anncmntcancelconfirm":"మీరు ఈ ప్రకటనను ఖచ్చితంగా నిలిపివేయాలనుకుంటున్నారా?","anncmntcancelconfirmdescrption":"ఈ చర్య తర్వాత వినియోగదారులు ఈ ప్రకటనను చూడలేరు","anncmntcreate":"ప్రకటనను సృష్టించండి","anncmntdtlsattachments":"జోడింపులను","anncmntdtlssenton":"పంపబడింది","anncmntdtlsview":"చూడు","anncmntdtlsweblinks":"వెబ్ లింకులు","anncmntinboxannmsg":"ప్రకటనలు","anncmntinboxseeall":"అన్నింటిని చూడు","anncmntlastupdate":"చివరిగా వినియోగించిన వినియోగ వినియోగ డేటా","anncmntmine":"నా ప్రకటనలు","anncmntnotfound":"ఏ ప్రకటన కనుగొనబడలేదు!","anncmntoutboxdelete":"తొలగించు","anncmntoutboxresend":"మళ్లీ పంపి","anncmntplzcreate":"దయచేసి ప్రకటనను సృష్టించండి","anncmntreadmore":"...ఇంకా చదవండి","anncmntsent":"పంపిన అన్ని ప్రకటనలను చూపుతుంది","anncmnttblactions":"ఆచరణలు","anncmnttblname":"పేరు","anncmnttblpublished":"ప్రచురించిన","anncmnttblreceived":"అందుకుంది","anncmnttblseen":"చూసిన","anncmnttblsent":"పంపిన","attributions":"ఆరోపణలను","author":"రచయిత","badgeassignconfirmation":"మీరు ఖచ్చితంగా ఈ కంటెంట్కు బ్యాడ్జ్ను జారీ చేయాలనుకుంటున్నారా?","batchdescription":"బ్యాచ్ వివరణ","batchdetails":"బ్యాచ్ వివరాలు","batchenddate":"ఆఖరి తేది","batches":"బ్యాచ్లు","batchmembers":"బ్యాచ్ యొక్క సభ్యులు","batchstartdate":"ప్రారంబపు తేది","birthdate":"జన్మదిన (dd / mm / yyyy)","block":"బ్లాక్","blocked":"బ్లాక్","blockedUserError":"వినియోగదారు ఖాతా బ్లాక్ చేయబడింది.దయచేసి నిర్వాహకుడిని సంప్రదించండి","blog":"బ్లాగ్","board":"బోర్డు / విశ్వవిద్యాలయ","boards":"బోర్డ్","browserSuggestions":"మెరుగైన అనుభవం కోసం మీరు అప్గ్రేడ్ లేదా ఇన్స్టాల్ చేస్తారని మేము సూచిస్తున్నాము","certificationAward":"యోగ్యతాపత్రాలు & అవార్డులు","channel":"ఛానల్","chkuploadsts":"అప్లోడ్ స్థితిని తనిఖీ చేయండి","chooseAll":"అన్ని ఎంచుకోండి","city":"నగరం","class":"తరగతి","classes":"తరగతులు","clickHere":"ఇక్కడ నొక్కండి","completed":"పూర్తయింది","completedCourse":"కోర్సు ముగిసింది","concept":"భావనలు","confirmPassword":"పాస్వర్డ్ను నిర్ధారించండి","confirmblock":"మీరు బ్లాక్ చేయాలనుకుంటున్నారా?","connectInternet":"దయచేసి కంటెంట్ను వీక్షించడానికి ఇంటర్నెట్కు కనెక్ట్ చేయండి","contentCredits":"కంటెంట్ క్రెడిట్స్","contentinformation":"కంటెంట్ సమాచారం","contentname":"కంటెంట్ పేరు","contents":"విషయాల","continue":"కొనసాగించు","contributors":"రచనలు పంపేవారు","copy":"కాపీ","copycontent":"కంటెంట్ను కాపీ చేస్తోంది ...","country":"దేశం","countryCode":"దేశం కోడ్","courseCreatedBy":"సృష్టికర్త","coursecreatedon":"సృష్టించబడింది","coursestructure":"కోర్సు నిర్మాణం","createUserSuccessWithEmail":"మీ ఇమెయిల్ ID ధృవీకరించబడింది. కొనసాగించడానికి సైన్ ఇన్ చేయండి.","createUserSuccessWithPhone":"మీ ఫోన్ నంబర్ ధృవీకరించబడింది. కొనసాగించడానికి సైన్ ఇన్ చేయండి.","createdon":"సృష్టించబడింది","creationdataset":"సృష్టి","creator":"సృష్టికర్త","creators":"సృష్టికర్తలు","credits":"క్రెడిట్స్","current":"ప్రస్తుత","currentlocation":"ప్రస్తుత స్తలం","curriculum":"పాఠ్య ప్రణాళిక","dashboardfiveweeksfilter":"గత 5 వారాలు","dashboardfourteendaysfilter":"గత 14 రోజులు","dashboardfrombeginingfilter":"ప్రారంభం నుండి","dashboardnobatchselected":"ఏ బ్యాచ్ ఎంపిక లేదు!","dashboardnobatchselecteddesc":"దయచేసి పైన జాబితా నుండి ఒక బ్యాచ్ని ఎంచుకోండి","dashboardnocourseselected":"ఏ కోర్సు ఎంచుకోలేదు!","dashboardnocourseselecteddesc":"దయచేసి పైన జాబితా నుండి ఒక కోర్సు ఎంచుకోండి","dashboardnoorgselected":"ఏ సంస్థ ఎంచుకోలేదు!","dashboardnoorgselecteddesc":"దయచేసి ఎగువ జాబితా నుండి ఒక సంస్థను ఎంచుకోండి","dashboardselectorg":"సంస్థ ఎంచుకోండి","dashboardsevendaysfilter":"గత 7 రోజులు","dashboardsortbybatchend":"బ్యాచ్ ముగింపు","dashboardsortbyenrolledon":"నమోదు చేయబడిన తేదీ","dashboardsortbyorg":"సంస్థ","dashboardsortbystatus":"స్థితి","dashboardsortbyusername":"వాడకందారు పేరు","degree":"డిగ్రీ","delete":"తొలగించండి","deletenote":"గమనికను తొలగించండి","description":"వివరణ","designation":"హోదా","dialCode":"QR కోడ్","dialCodeDescription":"డయల్ కోడ్ మీ పాఠ పుస్తకంలోని QR కోడ్ క్రింద ఉన్న 6 అంకెల ఆల్ఫాన్యూమరిక్ కోడ్","dialCodeDescriptionGetPage":"QR కోడ్ మీ టెక్స్ట్ బుక్లో QR కోడ్ చిత్రం క్రింద ఉన్న 6 అంకెల ఆల్ఫాన్యూమరిక్ కోడ్.","dikshaForMobile":"మొబైల్ కోసం DIKSHA","district":"జిల్లా","dob":"పుట్టిన తేది","done":"పూర్తి","downloadDikshaForMobile":"మొబైల్ కోసం DIKSHA డౌన్లోడ్ చేయండి","downloadThe":"గా డౌన్లోడ్ చేయండి","dropcomment":"వ్యాఖ్యను జోడించండి","ecmlarchives":"Ecml  దస్తావేజులు","edit":"మార్చు","editPersonalDetails":"వ్యక్తిగత వివరాలను సవరించండి","editUserDetails":"వినియోగదారు యొక్క వివరాలను సవరించండి","education":"విద్య","eightCharacters":"8 లేదా ఎక్కువ అక్షరాలను ఉపయోగించండి","email":"ఇమెయిల్ ఐడి","emptycomments":"వ్యాఖ్యలు లేవు","enddate":"ఆఖరి తేది","enjoyedContent":"ఈ కంటెంట్ ఆనందించారు","enrollcourse":"కోర్సు నమోదు చేయండి","enterDialCode":"6 అంకెల QR కోడ్ను నమోదు చేయండి","enterOTP":"OTP ను నమోదు చేయండి","enterQrCode":"QR కోడ్ నమోదు చేయండి","epubarchives":"Epub దస్తావేజులు","errorConfirmPassword":"గుత్త పదములు సరి పోవట్లేదు","experience":"అనుభవం","expiredBatchWarning":"బ్యాచ్ {EndDate} లో ముగిసింది, కనుక మీ పురోగతి నవీకరించబడదు.","explore":"అన్వేషించు","exploreContentOn":"{instance} లో కంటెంట్ను అన్వేషించండి","explorecontentfrom":"నుండి కంటెంట్ను  అన్వేషించండి","exprdbtch":"బ్యాచ్ ముగిసింది","extlid":"Org బాహ్యid","facebook":"ఫేస్బుక్","failres":"వైఫల్యం ఫలితాలు","fetchingBlocks":"దయచేసి మేము బ్లాక్స్ పొందుతున్నప్పుడు వేచి ఉండండి","fetchingSchools":"దయచేసి మేము పాఠశాలలను పొందుతున్నప్పుడు వేచి ఉండండి","filterby":"వడపోత వివరాలు","filters":"ఫిల్టర్లు","first":"ప్రధమ","firstName":"మొదటి పేరు","flaggedby":"ఫ్లాగ్ చేసారు","flaggeddescription":"వివరణను ఫ్లాగ్ చేసారు","flaggedreason":"ఫ్లాగ్డ్ కారణం","fnameLname":"మీ మొదటి మరియు చివరి పేరు నమోదు చేయండి","for":"కోసం","forDetails":"వివరాల కోసం","forMobile":"మొబైల్ కోసం","forSearch":"{searchstring} కోసం","fullName":"పూర్తి పేరు","gender":"లింగము","getUnlimitedAccess":"మీ మొబైల్ ఫోన్‌లో పాఠ్యపుస్తకాలు, పాఠాలు మరియు శిక్షణలకు ఆఫ్‌లైన్‌లో అపరిమిత ప్రాప్యతను పొందండి.","goback":"రద్దుచేయడం","grade":"గ్రేడ్","grades":"తరగతులు","graphStat":"గ్రాఫ్ గణాంకాలు","h5parchives":"H5p  దస్తావేజులు","homeUrl":"హోమ్ Url","htmlarchives":"Html  దస్తావేజులు","imagecontents":"చిత్రం కంటెంట్","inAll":"\"అన్ని\" లో","inUsers":"వినియోగదారులు","inactive":"క్రియారహితంగా","institute":"సంస్థ పేరు","isRootOrg":"RootOrg ఉంది","iscurrentjob":"ఇది మీ ప్రస్తుత ఉద్యోగమా","keywords":"కీవర్డ్లు","language":"భాష (లు) తెలిసినవి","last":"చివరనున్న","lastAccessed":"చివరిగా ప్రాప్తి చేసింది:","lastName":"చివరి పేరు","lastupdate":"చివరి నవీకరణ","learners":"అభ్యాసకులు","linkCopied":"లింక్ క్లిప్బోర్డ్కి కాపీ చేయబడింది","linkedContents":"లింక్ చేయబడిన కంటెంట్","linkedIn":"లింకెడిన్","location":"నగర","lockPopupTitle":"{collaborator} ప్రస్తుతం {కంటెంట్ పేరు} లో పని చేస్తున్నారు. తరువాత మళ్ళీ ప్రయత్నించండి.","markas":"గుర్తు వంటి","medium":"మాధ్యమం","mentors":"మార్గదర్శకులు","mobileEmailInfoText":"DIKSHA లో సైన్ ఇన్ చేయడానికి మీ మొబైల్ నంబర్ లేదా ఇమెయిల్ ID ని నమోదు చేయండి","mobileNumber":"మొబైల్ నంబర్","mobileNumberInfoText":"డిక్షాకు లాగిన్ అవ్వడానికి మీ మొబైల్ నంబర్ నమోదు చేయండి","more":"మరింత","myBadges":"నా బ్యాడ్జ్లు","mynotebook":"నా నోట్బుక్","mynotes":"నా గమనికలు","name":"పేరు","nameRequired":"పేరు అవసరం","next":"ముందుకు సాగు","noContentToPlay":"ఆడటానికి కంటెంట్ లేదు","noDataFound":"డేటా కనుగొనబడలేదు","online":"మీరు ఆన్లైన్లో ఉన్నారు","opndbtch":"ఓపెన్ బ్యాచ్లు","orgCode":"సంస్థ కోడ్","orgId":"సంస్థ ఐడి","orgType":"సంస్థ రకం","organization":"సంస్థ","orgname":"సంస్థ పేరు","orgtypes":"సంస్థ రకం","ownership":"యజమానత్వము","participants":"పాల్గొనే","password":"సాంకేతిక పదము","pdfcontents":"pdf కంటెంట్","percentage":"శాతం","permanent":"శాశ్వతమైన","phone":"ఫోను నంబరు","phoneNumber":"ఫోన్ నంబర్","phoneOrEmail":"ఫోన్ నంబర్ లేదా ఇమెయిల్ id ను నమోదు చేయండి","phoneVerfied":"ఫోన్ ధృవీకరించబడింది","phonenumber":"ఫోను నంబరు","pincode":"పిన్ కోడ్","playContent":"కంటెంట్ను ఆడండి","plslgn":"ఈ సెషన్ గడువు ముగిసింది. $ {Instance} ని ఉపయోగించడం కొనసాగించడానికి మళ్ళీ లాగిన్ చెయ్యండి.","position":"స్థానం","preferredLanguage":"ప్రాధాన్య భాష","previous":"మునుపటి","processid":"ప్రాసెస్ ID","profilePopup":"మీకు సంబంధించిన కంటెంట్ను కనుగొనడానికి, ఈ క్రింది వివరాలను అప్డేట్ చేయండి:","provider":"org ప్రొవైడర్","publicFooterGetAccess":"DIKSHA వేదిక ఉపాధ్యాయులు, విద్యార్ధులు మరియు తల్లిదండ్రులు సూచించిన పాఠశాల పాఠ్యాంశానికి సంబంధించిన అభ్యాస సామగ్రిని ప్రోత్సహిస్తుంది. DIKSHA అనువర్తనాన్ని డౌన్లోడ్ చేసుకోండి మరియు మీ పాఠ్యపుస్తకాలలో సులభంగా QR కోడ్ను పాఠ్యపుస్తకాలలో స్కాన్ చేయండి.","reEnterPassword":"పాస్వర్డ్ను మళ్లీ నమోదు చేయండి","readless":"తక్కువ చదవండి ...","readmore":"...ఇంకా చదవండి","redirectMsg":"ఈ కంటెంట్ వెలుపల హోస్ట్ చేయబడింది","redirectWaitMsg":"దయచేసి కంటెంట్ లోడ్ అవుతున్నప్పుడు వేచి ఉండండి","removeAll":"అన్ని తీసివెయ్","reportUpdatedOn":"ఈ నివేదిక చివరిగా నవీకరించబడింది","resendOTP":"OTP ను మళ్ళీ పంపు","resentOTP":"OTP కోరింది. OTP ను ఎంటర్ చెయ్యండి.","resourcetype":"వనరు రకం","retired":"రిటైర్","role":"పాత్ర","roles":"పాత్రలు","rootOrg":"రూట్ org","sameEmailId":"మీ ప్రొఫైల్తో అనుసంధానించబడిన ఈ ఇమెయిల్ ID అదే","samePhoneNo":"మీ ప్రొఫైల్తో అనుసంధానించబడిన ఈ మొబైల్ నంబర్ అదే","school":"పాఠశాల","search":"అన్వేషించు","searchForContent":"6 అంకెల QR కోడ్ను నమోదు చేయండి","searchUserName":"యూజర్ పేరును శోధించండి","seladdresstype":"చిరునామా రకాన్ని ఎంచుకోండి","selectAll":"అన్ని ఎంచుకోండి","selectBlock":"బ్లాక్ ఎంచుకోండి","selectDistrict":"జిల్లాను ఎంచుకోండి","selectSchool":"పాఠశాల ఎంచుకోండి","selectState":"రాష్ట్రము ఎంచుకోండి","selected":"ఎంపికైంది","selectreason":"ఒక కారణాన్ని ఎంచుకోండి","sesnexrd":"సెషన్ ముగిసిపోయింది","setRole":"వినియోగదారుని సవరించండి","share":"షేర్ చెయ్యండి","sharelink":"లింక్ ద్వారా భాగస్వామ్యం చేయండి","showLess":"తక్కువ చూపించు","showingResults":"ఫలితాలను చూపుతుంది","showingResultsFor":"{SearchString} కోసం ఫలితాలను చూపుతోంది","signUp":"సైన్ అప్","signinenrollHeader":"శిక్షణ నమోదిత వినియోగదారులకు మాత్రమే. కోర్సును యాక్సెస్ చేయడానికి లాగిన్ అవ్వండి.","signinenrollTitle":"ఈ కోర్సు కోసం నమోదు చేయడానికి సైన్ ఇన్ చేయండి:","skillTags":"నైపుణ్యం టాగ్లు","sltBtch":"దయచేసి కొనసాగడానికి బ్యాచ్ని ఎంచుకోండి","socialmedialinks":"సోషల్ మీడియా లింకులు","sortby":"క్రమంలో పెట్టండి","startExploringContent":"DIAL కోడ్ను నమోదు చేయడం ద్వారా కంటెంట్ను అన్వేషించడం ప్రారంభించండి","startExploringContentBySearch":"శోధన ఎంపిక లేదా QR కోడ్లను ఉపయోగించి కంటెంట్ను అన్వేషించండి","startdate":"ప్రారంబపు తేది","state":"రాష్ట్రము","stateRecord":"రాష్ట్ర రికార్డుల ప్రకారం","subject":"పాఠ్యాంశము","subjects":"విషయాలను","subjectstaught":"విషయం (లు) బోధించారు","submitOTP":"OTP ని సమర్పించండి","subtopic":"సబ్ టాపిక్","successres":"విజయం ఫలితాలు","summary":"సారాంశం","tableNotAvailable":"ఈ నివేదిక కోసం టేబుల్ అందుబాటులో లేదు","takenote":"గమనించండి","tcfrom":"నుండి","tcno":"కాదు","tcto":"చివరి తేదీ","tcyes":"అవును","tenDigitPhone":"10 అంకెల ఫోన్ నంబర్","termsAndCond":"నిబంధనలు మరియు షరతులు","termsAndCondAgree":"నేను ఉపయోగ నిబంధనలు మరియు షరతులకు అంగీకరిస్తున్నాను","theme":"నేపథ్యం","title":"శీర్షిక","toTryAgain":"మళ్ళీ ప్రయత్నించండి.","topic":"విషయము","topics":"విషయాలు","trainingAttended":"శిక్షణలు హాజరయ్యాయి","twitter":"ట్విట్టర్","unableToUpdateEmail":"ఇమెయిల్ ID ని అప్డేట్ చేయలేకపోతున్నారా?","unableToUpdateMobile":"మొబైల్ నంబర్ను నవీకరించడం సాధ్యం కాలేదు?","unableToVerifyEmail":"ఇమెయిల్ ఐడిని ధృవీకరించలేకపోయింది?","unableToVerifyPhone":"ఫోన్ నంబర్ను ధృవీకరించడం సాధ్యం కాలేదు","unenrollMsg":"మీరు నిజంగా ఈ బ్యాచ్ నుండి నమోదు చేయాలనుకుంటున్నారా?","unenrollTitle":"బ్యాచ్ నమోదు తీసివేత","uniqueEmail":"మీ ఇమెయిల్ ఐడి ఇప్పటికే నమోదు చెయ్యబడింది","uniqueEmailId":"ఈ ఇమెయిల్ ID ఇప్పటికే ఉపయోగంలో ఉంది. దయచేసి మరొక ఇమెయిల్ ID ని నమోదు చేయండి.","uniqueMobile":"This mobile number is already registered. Enter another mobile number","uniquePhone":"మీ ఫోన్ నంబర్ ఇప్పటికే నమోదు చేయబడింది","updateEmailId":"ఇమెయిల్ ID అప్డేట్ చేయండి","updatePhoneNo":"మొబైల్ నంబర్ను నవీకరించండి","updatedon":"నవీకరించబడింది","updateorgtype":"సంస్థ రకం అప్‌డేట్ చెయ్యండి","upldfile":"అప్లోడ్ చేసిన ఫైల్","uploadContent":"కంటెంట్ను అప్లోడ్ చేయండి","uploadEcarFromPd":"కంటెంట్ను దిగుమతి చెయ్యడానికి ఒక పెన్ డ్రైవ్ నుండి .ecarఫైళ్లను ఎంచుకోండి","userFilterForm":"వినియోగదారులు  శోధించండి","userID":"వినియోగదారుని Id","userId":"వినియోగదారుని గుర్తింపు","userType":"యూజర్ రకం","username":"వాడకందారు పేరు","validEmail":"చెల్లుబాటు అయ్యే ఇమెయిల్ ఐడిని నమోదు చేయండి","validPassword":"చెల్లుబాటు అయ్యే పాస్వర్డ్ను నమోదు చేయండి","validPhone":"చెల్లుబాటు అయ్యే 10 అంకెల ఫోన్ నంబర్ను నమోదు చేయండి","videos":"వీడియోలు","viewless":"తక్కువ వీక్షించండి","viewmore":"మరింత వీక్షించండి","viewworkspace":"మీ కార్యస్థలంను వీక్షించండి","whatsQRCode":"QR కోడ్ ఏమిటి?","whatwentwrong":"ఏమి తప్పు జరిగింది?","whatwentwrongdesc":"ఏమి తప్పు జరిగిందో మాకు తెలపండి. మేము దీన్ని వీలైనంత త్వరగా సమీక్షించి, ఈ సమస్యను పరిష్కరించడానికి ఖచ్చితమైన కారణాలను పేర్కొనండి. మీ అభిప్రాయం తెలియచేసినందుకు ధన్యవాదములు!","worktitle":"ఉద్యోగము / పని టైటిల్","wrongEmailOTP":"మీరు తప్పు OTP ను ఎంటర్ చేసారు. మీ ఇమెయిల్ ID లో పొందిన OTP ను నమోదు చేయండి. OTP కు 30 నిమిషాలు మాత్రమే చెల్లుతుంది.","wrongPhoneOTP":"మీరు తప్పు OTP ను ఎంటర్ చేసారు. మీ ఫోన్ నంబర్లో పొందిన OTP ను ఎంటర్ చెయ్యండి. 30 నిమిషాలు మాత్రమే OTP చెల్లుతుంది.","yop":"పాసింగ్ సంవత్సరం","indPhoneCode":91,"offline":"You are offline","howToVideo":"How to video","limitsOfArtificialIntell":"Limits of artificial intelligence","howToUseDiksha":"How to use {instance} desktop app","watchVideo":"See Video","manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","recoverAccount":"Recover Account","mergeAccount":"Merge Account","enterEmailID":"Enter email address","phoneRequired":"Mobile number is required","emailPhonenotRegistered":"Email address / Mobile number is not registered with {instance}","enterName":"Enter name","enterNameNotMatch":"The entry does not match the name registered with {instance}","receiveOTP":"Where would you like to receive the OTP?","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","otpSentTo":"OTP has been sent to","itis":"It is","validFor":"valid for 30 min","otpMandatory":"OTP is mandatory","otpValidated":"OTP validated successfully","newPassword":"New Password","enterEightCharacters":"Enter at least 8 characters","passwordMismatch":"Password mismatch, enter the correct password","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","enternameAsRegisteredInAccount":"and the name as on the {instance} account","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","certificateIssuedTo":"Certificate issued to","certificatesIssued":"Certificates Issued","completingCourseSuccessfully":"For successfully completing the training,","contactStateAdmin":"Contact your state admin to add more participants to this batch","contentcopiedtitle":"This content is derived from","contenttype":"Content","copyRight":"Copyright","noCreditsAvailable":"No credits available","courseCredits":"Credits","createdInstanceName":"Created on {instance} by","dashboardcertificateStatus":"Certificate Status","deviceId":"Device ID","downloadCourseQRCode":"Download Training QR Code","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadingContent":"Preparing to download {contentName}...","enrollmentenddate":"Enrolment End Date","enterCertificateCode":"Enter the certificate code here","enterValidCertificateCode":"Enter a valid Certificate Code","errorMessage":"Error message","externalId":"External Id","lang":"Language","licenseTerms":"License Terms","onDiksha":"on {instance} on","originalAuthor":"Original Author","publishedBy":"Published by","publishedOnInstanceName":"Published on {instance} by","recentlyAdded":"Recently Added","contentType":"Content Type","returnToCourses":"Return to Trainings","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","updatecollection":"Update All","updatecontent":"Update Content","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","verifyingCertificate":"Verifying your certificate","view":"View","watchCourseVideo":"Watch Video","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","exportingContent":"Preparing to copy {contentName}...","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","versionKey":"Version:","releaseDateKey":"Release Date:","supportedLanguages":"Supported Languages:","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","desktopAppFeature001":"Free unlimited content","desktopAppFeature002":"Multilingual support","desktopAppFeature003":"Play content offline","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","contentsUploaded":"Contents are being uploaded","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from","noBookfoundTitle":"Board is adding books","noBookfoundSubTitle":"Your board is yet to add more books. Tap the button to see more books and content on {instance}","noBookfoundButtonText":"See more books and contents"},"btn":{"add":"కలుపు","addingToLibrary":"లైబ్రరీకి జోడింపబడుతోంది","apply":"అనువర్తించు","cancel":"రద్దు చేయు","cancelCapitalize":"రద్దు చేయు","clear":"స్పష్టమైన","close":"ముగిసింది","contentImport":"ఫైల్లను అప్లోడ్ చేయండి","copyLink":"లింక్ను కాపీ చేయండి","create":"సృష్టించు","download":"డౌన్లోడ్","downloadCompleted":"డౌన్లోడ్ పూర్తయింది","downloadPending":"డౌన్లోడ్ పెండింగ్లో ఉంది","edit":"మార్చు","enroll":"నమోదుచేయి","login":"లాగిన్","next":"తరువాత","no":"కాదు","ok":"సరే","previous":"విషయాల","remove":"తొలగించు","reset":"రీసెట్","resume":"పునఃప్రారంభం","resumecourse":"కోర్సు కొనసాగించండి","save":"సేవ్ చెయ్యండి","selectContentFiles":"ఫైల్ (లు) ఎంచుకోండి","selectLanguage":"భాషను ఎంచుకోండి","selrole":"పాత్ర ఎంచుకోండి","signin":"సైన్ ఇన్ చేయండి","signup":"నమోదు చేసుకోండి","submit":"సబ్మిట్ చెయ్యి","submitbtn":"సమర్పించండి","tryagain":"మళ్ళీ ప్రయత్నించండి","unenroll":"శిక్షణను వదిలివేయండి","update":"అప్‌డేట్","viewCourseStatsDashboard":"శిక్షణ డాష్‌బోర్డ్‌ను చూడండి","viewcoursestats":"కోర్సు గణాంకాలను వీక్షించండి","viewless":"తక్కువ వీక్షించండి","viewmore":"మరింత వీక్షించండి","yes":"అవును","yesiamsure":"సరే","downloadPdf":"Help","downloadCertificate":"Download Certificate","merge":"Merge","myLibrary":"My Downloads","verify":"Verify","viewdetails":"View Details","downloadFailed":"Download failed","downloadAppForWindows64":"Download for Windows (64-bit)","downloadInstruction":"See download instructions","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","chksts":"Check status","smplcsv":"Download sample CSV","uploadorgscsv":"Upload organizations CSV","uploadusrscsv":"Upload users CSV","createNew":"Create New","addToLibrary":"Download to My Library","export":"Copy to pen drive","browse":"Browse Online","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"},"addedToLibrary":"Added To Library"},"drpdn":{"female":"మహిళ","male":"పురుషుడు","transgender":"లింగమార్పిడి"},"instn":{"t0002":"మీరు ఒక CSV ఫైల్ లో ఒక సమయంలో 199 సంస్థల వివరాలను జోడించవచ్చు లేదా అప్లోడ్ చేయవచ్చు","t0007":"OrgName కాలమ్ తప్పనిసరి. ఈ కాలమ్లో సంస్థ పేరును నమోదు చేయండి","t0011":"మీరు ప్రాసెస్ID తో పురోగతిని ట్రాక్ చేయవచ్చు","t0012":"దయచేసి మీ సూచన కోసం ప్రాసెస్ ID ని సేవ్ చేయండి. ప్రాసెస్ ID తో పురోగతిని ట్రాక్ చేయవచ్చు","t0013":"సూచన కోసం csv ఫైల్ను డౌన్లోడ్ చేయండి","t0015":"సంస్థలను అప్లోడ్ చేయండి","t0016":"వినియోగదారులను అప్లోడ్ చేయండి","t0020":"నైపుణ్యాన్ని జోడించడానికి టైప్ చేయడాన్ని ప్రారంభించండి","t0021":"ప్రత్యేక క్రమంలో ప్రతి సంస్థ పేరును నమోదు చేయండి","t0022":"అన్ని ఇతర నిలువు వరుసలలో వివరాలను నమోదు చేయడం తప్పనిసరి కాదు","t0023":"isRootOrg: ఈ కాలమ్కు చెల్లుబాటు అయ్యే విలువలు ట్రూ ఫాల్స్","t0024":"ఛానల్: మాస్టర్ సంస్థ సృష్టి సమయంలో ప్రత్యేక ID అందించబడుతుంది","t0025":"externalId: నిర్వాహక సంస్థ యొక్క రిపోజిటరీలో ప్రతి సంస్థతో అనుబంధించబడిన ప్రత్యేక ID","t0026":"ప్రొవైడర్: నిర్వాహక సంస్థ ఛానల్ ID","t0027":"వివరణ: సంస్థ వివరించే వివరాలు","t0028":"homeUrl: సంస్థ యొక్క హోమ్పేజీ url","t0029":"సంస్థ కోడ్:సంస్థ యొక్క ఏకైక కోడ్, ఏదైనా ఉంటే,","t0030":"సంస్థ రకం:సంస్థ రకం,అటువంటి, NGO,ప్రాధమిక పాఠశాల, ఉన్నత పాఠశాల మొదలైనవి","t0031":"ప్రాధాన్య భాష: సంస్థ కోసం భాషా ప్రాధాన్యతలను, ఏదైనా ఉంటే","t0032":"సంప్రదింపు వివరాలు: సంస్థ యొక్క ఫోన్ నంబర్ మరియు ఇమెయిల్ ID. వివరాలు సింగిల్ కోట్స్లో కర్లీ బ్రాకెట్స్లో ఎంటర్ చెయ్యాలి. ఉదాహరణకు: [{'ఫోనేంబర్': '1234567890'}]","t0049":"కాలమ్ విలువ RootOrg True అయితే ఛానల్ తప్పనిసరి  ఇవ్వండి","t0050":"బాహ్య మరియు ప్రొవైడర్ పరస్పరం తప్పనిసరి","t0055":"అయ్యో ప్రకటన వివరాలు కనుగొనబడలేదు!","t0056":"దయచేసి మళ్లీ ప్రయత్నించండి...","t0058":"గా డౌన్లోడ్ చేయండి","t0059":"CSV","t0060":"ధన్యవాదాలు!","t0061":"అయ్యో ...","t0062":"మీరు ఇంకా ఈ కోర్సు కోసం బ్యాచ్ని సృష్టించలేదు. క్రొత్త బ్యాచ్ని సృష్టించండి మరియు మళ్లీ డాష్బోర్డ్ను తనిఖీ చేయండి.","t0063":"మీరు ఇంకా ఏ కోర్సును సృష్టించలేదు. క్రొత్త కోర్సు సృష్టించి, మళ్ళీ డాష్బోర్డ్ను తనిఖీ చేయండి.","t0064":"ఒకే రకంతో బహుళ చిరునామాలు ఎంచుకోబడ్డాయి. దయచేసి ఏదైనా మార్చండి.","t0065":"డౌన్లోడ్","t0070":"CSV ఫైల్ను డౌన్లోడ్ చేయండి. ఒకే సంస్థకు చెందిన వినియోగదారులు ఒకేసారి CSV ఫైల్లో అప్లోడ్ చేయగలరు.","t0071":"యూజర్ ఖాతాల కింది వివరాలు తప్పనిసరిగా నమోదు చేయండి:","t0072":"మొదటి పేరు: వాడుకరి యొక్క మొదటి పేరు, వర్ణమాల విలువ.","t0073":"ఫోన్ లేదా ఇమెయిల్: వినియోగదారు ఫోన్ నంబర్ (పది అంకెల మొబైల్ నంబర్) లేదా ఇమెయిల్ ID. ఇద్దరిలో ఒకరు అందించవలసి ఉంటుంది, అయితే అందుబాటులో ఉన్నట్లయితే రెండింటినీ అందించడం మంచిది.","t0074":"యూజర్పేరు: సంస్థ ద్వారా వినియోగదారుకు కేటాయించిన ప్రత్యేక పేరు, ఆల్ఫాన్యూమెరిక్.","t0076":"గమనిక: CSV ఫైల్ లోని అన్ని ఇతర నిలువు వరుసలు, అవి నింపి వివరాలను సూచించడానికి, ఐచ్ఛికం","t0077":"నమోదు వినియోగదారులు","t0078":"స్థానం Id: ఒక ప్రత్యేక సంస్థ కోసం ఒక ప్రకటన విషయం గుర్తిస్తుంది","t0079":"locationCode: స్థాన సంకేతాలు యొక్క కామాతో వేరుచేయబడిన జాబితా","t0081":"DIKSHA పై సైన్ అప్ చేసినందుకు ధన్యవాదాలు. ధృవీకరణ కోసం మేము ఒక sms OTP ను పంపాము. నమోదు ప్రక్రియను పూర్తి చేయడానికి మీ ఫోన్ నంబర్ OTP తో ధృవీకరించండి.","t0082":"DIKSHA పై సైన్ అప్ చేసినందుకు ధన్యవాదాలు. ధృవీకరణ కోసం మేము ఒక ఇమెయిల్ OTP ను పంపించాము. నమోదు ప్రక్రియను పూర్తి చేయడానికి OTP తో మీ ఇమెయిల్ ID ని ధృవీకరించండి.","t0083":"మీరు మొబైల్ నంబర్ ధృవీకరణ కోసం OTP తో SMS ను అందుకుంటారు.","t0084":"మీరు ఇమెయిల్ ID ధృవీకరణ కోసం OTP తో ఇమెయిల్ను అందుకుంటారు.","t0085":"నివేదిక మొదటి 10,000 మంది పాల్గొనేవారి డేటాను చూపుతుంది. బ్యాచ్లో పాల్గొనేవారి యొక్క పురోగతిని వీక్షించడానికి డౌన్ లోడ్ క్లిక్ చేయండి.","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"గమనికలు లేదా శీర్షిక కోసం శోధించండి","t0002":"మీ వ్యాఖ్యను జోడించండి","t0005":"బ్యాచ్ సలహాదారులను ఎంచుకోండి","t0006":"బ్యాచ్ సభ్యులను ఎంచుకోండి"},"lnk":{"announcement":"ప్రకటన డాష్బోర్డ్","assignedToMe":"నాకు కేటాయించబడింది","contentProgressReport":"కంటెంట్ ప్రోగ్రెస్ రిపోర్ట్","contentStatusReport":"కంటెంట్ స్థితి నివేదిక","createdByMe":"నాకు సృష్టించింది","dashboard":"నిర్వాహక డాష్బోర్డ్","detailedConsumptionMatrix":"వివరణాత్మక వినియోగం మాట్రిక్స్","detailedConsumptionReport":"వివరణాత్మక వినియోగ నివేదిక","footerContact":"ప్రశ్నలకు సంప్రదించండి:","footerDIKSHAForMobile":"DIKSHA కోసం మొబైల్","footerDikshaVerticals":"DIKSHA నిలువు","footerHelpCenter":"సహాయ కేంద్రం","footerPartners":"భాగస్వాములు","footerTnC":"వాడుక నియమాలు","logout":"లాగౌట్","myactivity":"నా క్రియాకలాపం","profile":"ప్రొఫైల్","textbookProgressReport":"టెక్స్ట్ బుక్ ప్రోగ్రెస్ రిపోర్ట్","viewall":"అన్నింటినీ వీక్షించండి","workSpace":"కార్యస్థలం"},"pgttl":{"takeanote":"గమనిక తీసుకోండి"},"prmpt":{"deletenote":"ఈ గమనికను ఖచ్చితంగా తొలగించాలా?","enteremailID":"మీ ఇమెయిల్ Id ను నమోదు చేయండి","enterphoneno":"10 అంకెల ఫోన్ నంబర్ను నమోదు చేయండి","search":"అన్వేషించు","userlocation":"నగర"},"scttl":{"blkuser":"వినియోగదారుని బ్లాక్ చేయి","contributions":"సహాయకులు","instructions":"సూచనలను:","signup":"సైన్ అప్","todo":"చెయ్యవలసిన","error":"Error:"},"snav":{"shareViaLink":"లింక్ ద్వారా భాగస్వామ్యం చేయబడింది","submittedForReview":"సమీక్ష కోసం సమర్పించారు"},"tab":{"all":"అన్ని","community":"సమూహాలు","courses":"కోర్సులు","help":"సహాయం","home":"హోమ్","profile":"ప్రొఫైల్","resources":"గ్రంధాలయం","users":"వినియోగదారులు","workspace":"కార్యస్థలం","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"కోర్సు ముగిసింది","messages":{"emsg":{"m0001":"ఇప్పుడు నమోదు చేయలేరు. తరువాత మళ్ళీ ప్రయత్నించండి","m0003":"మీరు ప్రొవైడర్ మరియు బాహ్య Id లేదా సంస్థ Id నమోదు చేయాలి","m0005":"ఏదో తప్పు జరిగింది, దయచేసి కొంత సమయం లో ప్రయత్నించండి ...","m0007":"పరిమాణం తక్కువగా ఉండాలి","m0008":"కంటెంట్ను కాపీ చేయడం సాధ్యం కాదు. తరువాత మళ్ళీ ప్రయత్నించండి","m0009":"ఇప్పుడు నమోదు చేయలేరు. తర్వాత మళ్లీ ప్రయత్నించండి","m0014":"మొబైల్ నంబర్ను నవీకరిస్తోంది విఫలమైంది","m0015":"ఇమెయిల్ ID ని నవీకరిస్తోంది విఫలమైంది","m0016":"పొందడంలో స్థితి విఫలమైంది.తరువాత మళ్ళీ ప్రయత్నించండి","m0017":"పొందుతున్న జిల్లాలు విఫలమయ్యాయి. తరువాత మళ్ళీ ప్రయత్నించండి","m0018":"ప్రొఫైల్ని నవీకరించడం విఫలమైంది","m0019":"నివేదిక డౌన్లోడ్ చేయబడదు, తర్వాత మళ్లీ ప్రయత్నించండి","m0020":"యూజర్ అప్డేట్ విఫలమైంది. తరువాత మళ్ళీ ప్రయత్నించండి","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"పొందుపర్చిన కోర్సులు విఫలమయ్యాయి, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి","m0002":"ఇతర కోర్సులు పొందడంలో విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి ...","m0003":"కోర్సు షెడ్యూల్ వివరాలను పొందడం సాధ్యం కాదు.","m0004":"డేటాను పొందడంలో  విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0030":"గమనిక సృష్టించడం విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి","m0032":"గమనిక తొలగించడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0033":"గమనిక పొందడంలో విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0034":"గమనికను నవీకరించడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0041":"విద్య తొలగింపు విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి","m0042":"అనుభవం తొలగింపు విఫలమైంది. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి...","m0043":"చిరునామా తొలగింపు విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి","m0048":"వినియోగదారు ప్రొఫైల్ను నవీకరించడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0049":"డేటాను లోడ్ చేయలేకపోయింది","m0050":"అభ్యర్థన సమర్పించడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0051":"ఏదో తప్పు జరిగినది. దయచేసి కాసేపు ఆగక ప్రయత్నించండి...","m0054":"బ్యాచ్ వివరాలను పొందడం విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి ...","m0056":"వినియోగదారులు జాబితాను పొందడం విఫలమైంది, దయచేసి తర్వాత మళ్ళీ ప్రయత్నించండి ...","m0076":"దయచేసి తప్పనిసరి ఫీల్డ్లను నమోదు చేయండి","m0077":"శోధన ఫలితాన్ని పొందడం విఫలమైంది","m0079":"కేటాయింపు బ్యాడ్జ్ విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి...","m0080":"బ్యాడ్జ్ని పొందడంలో విఫలమైంది, దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి ...","m0082":"నమోదు కోసం ఈ కోర్సు తెరవబడలేదు","m0085":"ఒక సాంకేతిక లోపం ఉంది.మళ్ళీ ప్రయత్నించండి","m0086":"ఈ కోర్సు రచయితచే రిటైర్ చేయబడింది, అందుకే ఇక అందుబాటులో లేదు.","m0087":"దయచేసి వేచి ఉండండి","m0088":"మేము వివరాలను పొందుతున్నాము","m0089":"ఏ అంశాలు / ఉప అంశాలు కనుగొనబడలేదు","m0091":"కొంటేంట్‌ను కాపీ చేయలేకపోింది. దయచేసి కొంత సేపటి తర్వాత ప్రయత్నించండి","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0094":"Could not download, try again later...","m0090":"Could not download. Try again later","m0093":"{FailedContentLength} content(s) upload failed","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"ఈ కోర్సు తగనిదిగా ఫ్లాగ్ చేయబడింది మరియు ప్రస్తుతం సమీక్షలో ఉంది. దయచేసి తర్వాత మళ్లీ తనిఖీ చేయండి.","m0005":"దయచేసి చెల్లుబాటు అయ్యే చిత్ర ఫైల్ను అప్లోడ్ చేయండి.మద్దతు రకం ఫైలు: jpeg, jpg, png. రిష్టపరిమాణం: 4MB","m0017":"ప్రొఫైల్ పరిపూర్ణత","m0022":"గత 7 రోజులకు గణాంకాలు","m0023":"గత 14 రోజులకు గణాంకాలు","m0024":"గత 5 వారాల కోసం గణాంకాలు","m0025":"ప్రారంభమయ్యే గణాంకాలు","m0026":"హాయ్, ఈ కోర్సు ఇప్పుడు అందుబాటులో లేదు. ఇది సృష్టికర్త కొన్ని మార్పులను కోర్సులో చేసింది.","m0027":"హాయ్, ఈ కంటెంట్ ఇప్పుడు అందుబాటులో లేదు. ఇది సృష్టికర్త కొన్ని మార్పులను కలిగి ఉంది.","m0034":"కంటెంట్ బాహ్య వనరు నుండి వచ్చినప్పుడు, ఇది కొంతకాలం ప్రారంభమవుతుంది.","m0035":"అనధికారిక ప్రవేశము","m0036":"కంటెంట్ బాహ్యంగా హోస్ట్ చెయ్యబడింది, కంటెంట్ను వీక్షించడానికి దయచేసి ప్రివ్యూ క్లిక్ చేయండి","m0040":"ఆపరేషన్ ఇప్పటికీ పురోగతిలో ఉంది, కొంత సమయం తర్వాత దయచేసి ప్రయత్నించండి.","m0041":"మీ ప్రొఫైల్","m0042":"% పూర్తి","m0043":"మీ ప్రొఫైల్కు చెల్లుబాటు అయ్యే ఇమెయిల్ ID లేదు.మీ ఇమెయిల్ ID ని నవీకరించండి.","m0044":"డౌన్లోడ్ విఫలమైంది!","m0045":"డౌన్లోడ్ విఫలమైంది. కొంతకాలం తర్వాత మళ్లీ ప్రయత్నించండి.","m0047":"You can only select 100 participants","m0060":"If you have two accounts with {instance}, click","m0061":"to","m0062":"Else, click","m0063":"combine usage details of both accounts, and","m0064":"delete the other account","m0065":"Account merge initiated successfully","m0066":"you will be notified once it is completed","m0067":"Could not initiate the account merge. Click the Merge Account option in the Profile menu and try again","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0073":"Click Create New to create a new {instance} account.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"గమనిక విజయవంతంగా సృష్టించబడింది ...","m0013":"గమనిక విజయవంతంగా నవీకరించబడింది","m0014":"విద్య విజయవంతంగా తొలగించబడింది","m0015":"అనుభవం విజయవంతంగా తొలగించబడింది","m0016":"చిరునామా విజయవంతంగా తొలగించబడింది","m0018":"ప్రొఫైల్ చిత్రం విజయవంతంగా నవీకరించబడింది","m0019":"వివరణ విజయవంతంగా నవీకరించబడింది","m0020":"విద్య విజయవంతంగా నవీకరించబడింది ...","m0021":"అనుభవం విజయవంతంగా నవీకరించబడింది","m0022":"అదనపు సమాచారం విజయవంతంగా నవీకరించబడింది","m0023":"చిరునామా విజయవంతంగా నవీకరించబడింది","m0024":"క్రొత్త విద్య విజయవంతంగా జోడించబడింది","m0025":"క్రొత్త అనుభవం విజయవంతంగా జోడించబడింది","m0026":"క్రొత్త చిరునామా విజయవంతంగా జోడించబడింది","m0028":"పాత్రలు విజయవంతంగా నవీకరించబడ్డాయి","m0029":"యూజర్ విజయవంతంగా తొలగించారు","m0030":"వినియోగదారులు విజయవంతంగా అప్లోడ్ చేశారు","m0031":"సంస్థలు విజయవంతంగా అప్లోడ్ చేయబడ్డాయి ...","m0032":"స్థితి విజయవంతంగా పొందింది ...","m0035":"org రకం విజయవంతంగా జోడించబడింది","m0036":"కోర్సు ఈ బ్యాచ్ కోసం విజయవంతంగా నమోదు చేయబడింది ...","m0037":"విజయవంతంగా నవీకరించబడింది","m0038":"నైపుణ్యాలు విజయవంతంగా నవీకరించబడ్డాయి ...","m0039":"విజయవంతంగా సైన్ అప్ చేయండి, దయచేసి లాగిన్ అవ్వండి","m0040":"ప్రొఫైల్ ఫీల్డ్ దృశ్యమానత విజయవంతంగా నవీకరించబడింది","m0042":"కంటెంట్ విజయవంతంగా కాపీ చేయబడింది","m0043":"ఆమోదం విజయవంతమైంది","m0044":"బ్యాడ్జ్ విజయవంతంగా కేటాయించబడింది ...","m0045":"విజయవంతంగా బ్యాచ్ నుండి యూజర్ తీసివేయబడింది ...","m0046":"ప్రొఫైల్ విజయవంతంగా నవీకరించబడింది","m0047":"మీ మొబైల్ నంబర్ నవీకరించబడింది.","m0048":"మీ ఇమెయిల్ ID నవీకరించబడింది.","m0049":"యూజర్ విజయవంతంగా నవీకరించబడింది","m0050":"ఈ కంటెంట్ను రేట్ చేసినందుకు ధన్యవాదాలు!","m0053":"కంటెంట్ డౌన్లోడ్ కోసం క్యూలో జోడించబడింది","moo41":"ప్రకటన విజయవంతంగా రద్దు చేయబడింది","m0055":"Updating...","m0056":"You should be online to update the content","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0054":"{UploadedContentLength} content(s) uploaded successfully","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"ఎటువంటి ఫలితాలు లభించలేదు","m0007":"దయచేసి ఇంకేదైనా వెతకండి.","m0008":"ఫలితాలు లేవు","m0009":"ప్లే చేయలేరు, దయచేసి మళ్ళీ ప్రయత్నించండి లేదా ముగించండి","m0022":"సమీక్ష కోసం మీ చిత్తుప్రతుల్లో ఒకదాన్ని సమర్పించండి. సమీక్ష తర్వాత ప్రచురించబడింది కంటెంట్","m0024":"పత్రం, వీడియో లేదా ఏదైనా ఇతర మద్దతు ఉన్న ఫార్మాట్ను అప్లోడ్ చేయండి. మీరు ఇంకా దేన్నీ అప్లోడ్ చేయలేదు","m0033":"సమీక్ష కోసం మీ చిత్తుప్రతుల్లో ఒకదాన్ని సమర్పించండి. మీరు ఇంకా సమీక్ష కోసం ఏ కంటెంట్ను సమర్పించలేదు","m0035":"సమీక్షించడానికి కంటెంట్ లేదు","m0060":"మీ ప్రొఫైల్ను బలోపేతం చేయండి","m0062":"సరైన డిగ్రీని నమోదు చేయండి","m0063":"చెల్లుబాటు అయ్యే చిరునామా లైన్ 1 ను నమోదు చేయండి","m0064":"నగరం నమోదు చేయండి","m0065":"చెల్లుబాటు అయ్యే పిన్ కోడ్ను నమోదు చేయండి","m0066":"మొదటి పేరు నమోదు చేయండి","m0067":"దయచేసి చెల్లుబాటు అయ్యే ఫోన్ నంబర్ను అందించండి","m0069":"భాషను ఎంచుకోండి","m0070":"సంస్థ పేరు నమోదు చేయండి","m0072":"చెల్లుబాటు అయ్యే వృత్తి / పని టైటిల్ నమోదు చేయండి","m0073":"చెల్లుబాటు అయ్యే సంస్థ నమోదు చేయండి","m0077":"మేము మీ అభ్యర్థనను సమర్పిస్తున్నాము ...","m0080":"దయచేసి csv రూపంలో మాత్రమే ఫైల్ను అప్లోడ్ చేయండి","m0081":"ఏ బ్యాచ్లు దొరకలేదు","m0083":"మీరు ఇంకా ఏ ఒక్కరితోనూ కంటెంట్ను భాగస్వామ్యం చేయలేదు","m0087":"దయచేసి చెల్లుబాటు అయ్యే యూజర్ పేరును నమోదు చేసి, కనీసం 5 అక్షరాలను కలిగి ఉండాలి","m0088":"దయచేసి చెల్లుబాటు అయ్యే పాస్వర్డ్ను నమోదు చేయండి","m0089":"దయచేసి చెల్లుబాటు అయ్యే ఇమెయిల్ను నమోదు చేయండి","m0090":"దయచేసి భాషలను ఎంచుకోండి","m0091":"దయచేసి చెల్లుబాటు అయ్యే ఫోన్ నంబర్ను నమోదు చేయండి","m0094":"చెల్లుబాటు అయ్యే శాతం నమోదు చేయండి","m0095":"మీ అభ్యర్థన విజయవంతంగా పొందింది. మీ రిజిస్ట్రేటెడ్ ఇమెయిల్ చిరునామా తరువాత ఫైల్ పంపబడుతుంది. దయచేసి, మీ ఇమెయిల్లను క్రమంగా తనిఖీ చేయండి.","m0104":"చెల్లుబాటు అయ్యే గ్రేడ్ నమోదు చేయండి","m0108":"మీ పురోగతి","m0113":"చెల్లుబాటు అయ్యే ప్రారంభ తేదీని నమోదు చేయండి","m0116":"ఎంచుకున్న గమనికను తొలగిస్తోంది..","m0120":"ఆడటానికి కంటెంట్ లేదు","m0121":"కంటెంట్ ఇంకా జోడించబడలేదు","m0122":"మీ రాష్ట్రం త్వరలో ఈ QR కోడ్ కోసం కంటెంట్‌ను జోడిస్తుంది. ఇది త్వరలో అందుబాటులో ఉంటుంది.","m0123":"మిమ్మల్ని సహకారిగా జోడించడానికి స్నేహితుని అడగండి. ఇదే ఇమెయిల్ ద్వారా మీకు తెలియజేయబడుతుంది.","m0125":"రిసోర్స్, బుక్, కోర్సు, కలెక్షన్ లేదా అప్లోడ్ సృష్టించడం ప్రారంభించండి. ప్రస్తుతానికి మీ వద్ద పని-లో-పురోగతి డ్రాఫ్ట్ లేదు","m0126":"దయచేసి బోర్డ్ను ఎంచుకోండి","m0127":"దయచేసి మీడియం ఎంచుకోండి","m0128":"దయచేసి తరగతి ఎంచుకోండి","m0129":"నిబంధనలు మరియు షరతులను లోడ్ చేస్తోంది.","m0130":"మేము జిల్లాలను పొందుతున్నాము","m0131":"నివేదికలు కనుగొనబడలేదు","m0132":"మీ డౌన్లోడ్ అభ్యర్థన మేము అందుకున్నాము .మీ రిజిస్టర్డ్ ఇమెయిల్ ID కు త్వరలోనే ఫైల్ పంపబడుతుంది.","m0134":"Enrolment ","m0135":"Enter a valid date","m0136":"Last Date for Enrolment:","m0139":"DOWNLOADED","m0140":"DOWNLOADING","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0133":"Browse and download, or upload content to start using the desktop app","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"},"m0138":"FAILED"},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again  later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"సంస్థ పేరు","participants":"పాల్గొనే","resourceService":{"frmelmnts":{"lbl":{"userId":"వినియోగదారుని గుర్తింపు"}}},"t0065":"డౌన్లోడ్ ఫైల్"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","courseName":"Course Name","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","disablePopupText":"This content can not be deleted","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","submittedForReview":"Submitted for review","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","shareViaLink":"Shared via link","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"Submit one of your drafts for review. Content is published only after a review","m0023":"We are fetching uploaded content...","m0024":"Upload a document, video, or any other supported format. You have not uploaded anything yet","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"Submit one of your drafts for review. You have not yet submitted any content for review","m0034":"We are deleting the content...","m0035":"There is no content to review","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You have not shared content with any one yet","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid start date","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"Ask a friend to add you as a collaborator. You will be notified of the same via email.","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"Start creating Resource, Book, Course, Collection or Upload. You have no work-in-progress draft at the moment","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
diff --git a/src/app/resourcebundles/json/ur.json b/src/app/resourcebundles/json/ur.json
index 65cacf13c081d569ce6b35bd0c7a9708b85f8f54..72f83e06acf2c063b85e354e36cd0ac0efcf07f4 100644
--- a/src/app/resourcebundles/json/ur.json
+++ b/src/app/resourcebundles/json/ur.json
@@ -1 +1 @@
-{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"کوئی ملتا هوا ریکارڈ نہیں ملا","Mobile":"موبائل","SearchIn":"{تلاش مواد کی قسم} میں تلاش کریں","Select":"منتخب کریں","aboutthecourse":"نصاب کے بارے میں","active":"فعال","addDistrict":"ضلع شامل کریں","addEmailID":"ای میل آئی ڈی شامل کریں","addPhoneNo":"موبائل نمبر شامل کریں","addState":"ریاست شامل کریں","addlInfo":"اضافی معلومات","addnote":"نوٹ شامل کریں","addorgtype":"تنظیم کی قسم شامل کریں","address":"پتہ","addressline1":"پتہ لائن 1","addressline2":"پتہ لائن 2","anncmnt":"اعلان","anncmntall":"تمام اعيلانات","anncmntcancelconfirm":"کیا آپ واقعی یہ اعلان دکھانا بند کرنا چاہتے ہیں؟","anncmntcancelconfirmdescrption":"اس کارروائی کے بعد صارفین اس اعلان کو نہیں دیکھ سکیں گے","anncmntcreate":"اعلان تخلیق کریں","anncmntdtlsattachments":"منسلکات","anncmntdtlssenton":"کو بھیجا گیا","anncmntdtlsview":"ملاحظہ کریں","anncmntdtlsweblinks":"ویب لنکس","anncmntinboxannmsg":"اعلان","anncmntinboxseeall":"تمام دیکھیں","anncmntlastupdate":"کھپت ڈیٹا پچھلی بار اپ ڈیٹ کیا گیا ہے","anncmntmine":"میرے اعلانات","anncmntnotfound":"کوئی اعلان نہیں ملا","anncmntoutboxdelete":"مٹا دیں","anncmntoutboxresend":"دوبارہ بھیجئے","anncmntplzcreate":"براہ کرم اعلان کی تخلیق کریں","anncmntreadmore":"...مزید پڑھیئے","anncmntsent":"تمام بھیجے جانے والے اعلان کو دکھا یا جا رہا ہے","anncmnttblactions":"اعمال","anncmnttblname":"نام","anncmnttblpublished":"اشاعت","anncmnttblreceived":"موصول ہوا","anncmnttblseen":"دیکھ لیا","anncmnttblsent":"بھیج دیا","attributions":"حصول","author":"مصنف","badgeassignconfirmation":"کیا آپ واقعی اس مواد پر بیج جاری کرنا چاہتے ہیں؟","batchdescription":"بیچ کی وضاحت","batchdetails":"بیچ کی تفصیلات","batchenddate":"ختم ہونے کی تاریخ","batches":"بیچز","batchmembers":"بیچ کے ممبران","batchstartdate":"شروع کرنے کی تاریخ","birthdate":"تاریخ پیدائش (dd/mm/yyyy)","block":"بلاک","blocked":"بلاک","blockedUserError":"صارف کا اکاؤنٹ بلاک کر دیا گیا ہے. براہ کرم منتظم سے رابطہ کریں.","blog":"بلاگ","board":"بورڈ / یونیورسٹی","boards":"بورڈ","browserSuggestions":"بہتر تجربے کے لئے ہم تجویز کرتے ہیں کہ آپ اپ ڈیٹ یا انسٹال کریں","certificateIssuedTo":"سرٹیفیکیٹ جاری کیا گیا","certificatesIssued":"سرٹیفیکیٹ جاری کیا گیا","certificationAward":"سرٹیفکیٹ اور ایوارڈز","channel":"چینل","chkuploadsts":"اپ لوڈ کا سٹیٹس چیک کریں","chooseAll":"سب کا انتخاب کریں","city":"شہر","class":"جماعت","classes":"جماعت","clickHere":"یہاں کلک کریں","completed":"مکمل ہوا","completedCourse":"مکمل کئے گئے کورس","concept":"خاکہ","confirmPassword":"پاس ورڈ کي تصدیق","confirmblock":"کیا آپ کو یقیناً بلاک کرنا ہے","connectInternet":"مواد کو دیکھنے کے لئے براہ مہربانی انٹرنیٹ سے رابطہ کریں","contactStateAdmin":"اس بیچ میں اور امیدوار درج کرانے کیلئے اپنے ریاست کے منتظم سے رابطہ کریں","contentCredits":"مواد کریڈٹس","contentcopiedtitle":"یہ مواد ماخوذ کردہ ہے","contentinformation":"مواد کی معلومات","contentname":"مواد کا نام","contents":"مواد ","contentsUploaded":"فہرست اپ لوڈ کی جا رہی ہیں","contenttype":"مواد","continue":"جاری رکھیئے","contributors":"شراکت دار","copy":"کاپی کریں","copyRight":"کاپی رائیٹ","copycontent":"مواد کاپی کریں ...","country":"ملک","countryCode":"ملک کا کوڈ","courseCreatedBy":"کی طرف سے تخلیق","courseCredits":"کریڈٹس","coursecreatedon":"پرتخلیق","coursestructure":"نصاب کی بناوٹ","createUserSuccessWithEmail":"آپ کی ای میل آئی ڈی کی تصدیق ہو گئی ہے.جاری رکھنے کیلئے سائن ان کریں","createUserSuccessWithPhone":"آپ کے فون نمبر کی تصدیق کی گئی ہے. جاری رکھنے کیلئے سائن ان کریں.","createdInstanceName":"{instance} پر تخلیق کردہ","createdon":"پر تخلیق کیا","creationdataset":"تخلیق","creator":"خالق","creators":"تخلیق کار","credits":"کریڈٹس","current":"موجودہ","currentlocation":"موجودہ مقام","curriculum":"نصاب","dashboardcertificateStatus":"سرٹیفیکیٹ حالت","dashboardfiveweeksfilter":"گزشتہ 5 ہفتے","dashboardfourteendaysfilter":"گزشتہ 14 دن","dashboardfrombeginingfilter":"شروعات سے","dashboardnobatchselected":"کوئی بیچ منتخب نہیں کیا گیا!","dashboardnobatchselecteddesc":"آگے بڑھنے کیلئےایک بیچ منتخب کریں","dashboardnocourseselected":"کوئی نصاب منتخب نہیں!","dashboardnocourseselecteddesc":"براہ کرم مندرجہ بالا فہرست سے نصاب منتخب کریں.","dashboardnoorgselected":"کوئی تنظیم منتخب نہیں","dashboardnoorgselecteddesc":"مندرجہ بالا فہرست سے ایک تنظیم منتخب کریں","dashboardselectorg":"تنظیم منتخب کریں","dashboardsevendaysfilter":"گزشتہ 7 دنوں میں","dashboardsortbybatchend":"پر بیچ ختم","dashboardsortbyenrolledon":"پر اندراج","dashboardsortbyorg":"تنظیم","dashboardsortbystatus":"سٹیٹس","dashboardsortbyusername":"صارف کا نام","degree":"ڈگری","delete":"مٹائں","deletenote":"نوٹ مٹا دیں","description":"تفصیل","designation":"عہدہ","desktopAppFeature001":"مفت لامحدود مواد","desktopAppFeature002":"معاون بہزبانی ","desktopAppFeature003":"مواد آف لائن چلائیں","dialCode":"QR کوڈ","dialCodeDescription":"ڈائل کوڈ آپ کے درسی کتاب میں QR کوڈ کے تحت پایا گیا 6 عددی حروف تہجی کوڈ ہے","dialCodeDescriptionGetPage":"QR کوڈ آپ کے ٹیکسٹ بک میں QR کوڈ کی تصویر کے نیچے پایا گیا 6 عددی حروف تہجی کوڈ ہے.","dikshaForMobile":"موبائل کے لئے DIKSHA","district":"ضلع","dob":"پیدائش کی تاریخ","done":"ہو گیا","downloadDikshaForMobile":"موبائل کے لئے DIKSHA ڈاؤن لوڈ کریں","downloadDikshaLite":"دیکشا لائٹ ڈیسک ٹاپ ایپلیکیشن ڈاؤن لوڈ کریں","downloadThe":"ڈاؤن لوڈ کریں","dropcomment":"تبصرہ شامل کریں","ecmlarchives":"Ecml  آرکائیو","edit":"ترمیم","editPersonalDetails":"ذاتی تفصیلات میں ترمیم کریں","editUserDetails":"صارف کی تفصیلات میں ترمیم کریں","education":"تعلیم","eightCharacters":"8 یا زیادہ حروف استعمال کریں","email":"ای میل آئ ڈی","emailPhonenotRegistered":"ای میل ID/فون نمبر {instance} پر درج نھی ہے","emptycomments":"کوئی تبصرہ نہیں","enddate":"ختم ہونے کی تاریخ","enjoyedContent":"اس مواد کا لطف اٹھایا","enrollcourse":"نصاب میں داخلہ","enrollmentenddate":"اندراج ختم ہونے کی تاریخ","enterCertificateCode":"سرٹیفیکیٹ کوڈ یہاں درج کریں","enterDialCode":"6 عددی QR کوڈ درج کریں","enterEmailID":"ای میل آئ ڈی درج کریں","enterName":"نام درج کریں","enterOTP":"OTP درج کریں","enterQrCode":"کیو آ ر  کوڈ درج کریں","enterValidCertificateCode":"درست سرٹیفیکیٹ درج کریں","epubarchives":"ایپب آرکائیو","errorConfirmPassword":"پاس ورڈ میچ نہیں کررہے","experience":"تجربہ","expiredBatchWarning":"بیچ {EndDate} پر ختم ہوگیا ہے، لہٰذا آپ کی پیش رفت کو اپ ڈیٹ نہیں کیا جائے گا.","explore":"تلاش کریں","exploreContentOn":"مواد تلاش کریں","explorecontentfrom":"مواد میں سے تلاش کریں","exportingContent":"براہ کرم - {مواد کا نام} کو برآمد کرتے وقت انتظار کریں","exprdbtch":"ختم شدہ بیچ","extlid":"org بیرونی آئ ڈی","facebook":"فیس بک","failres":"ناکامی کے نتائج","fetchingBlocks":"براہ کرم انتظار کریں ہم بلاکس لا رہے ہیں","fetchingSchools":"براہ کرم انتظار کریں ہم اسکول کی لسٹ لا ہے ہیں","filterby":"فلٹر کریں","filters":"موجود فلٹر","first":"پہلا","firstName":"پہلا نام","flaggedby":"نے نامناسِبَت کا نِشان لگایا","flaggeddescription":"نامناسِبَت پرچم شدہ وضاحت","flaggedreason":"نامناسِبَت کے نِشان کی وجہ","fnameLname":"اپنا پہلا اور خاندانی نام درج کریں","for":"کے لئے","forDetails":"تفصیلات کے لئے","forMobile":"موبائل کے لئے","forSearch":"{searchString} کے لئے","fullName":"پورا نام","gender":"صنف","getUnlimitedAccess":"اپنے موبائل فون پر آف لائن درسی کتابیں، سبق اور کورسز کی لامحدود رسائی حاصل کریں.","goback":"منسوخ کرنا","grade":"درجہ","grades":"درجے","graphStat":"گراف کے اعداد و شمار","h5parchives":"H5p  آرکائیو","homeUrl":"ہوم یو آر ایل","howToUseDiksha":"DIKSHA ڈیسک ٹاپ ایپ کا استعمال کیسے کریں","howToVideo":"ویڈیو کس طرح بنایئں","htmlarchives":"Html  آرکائیو","imagecontents":"تصویر کے مواد","inAll":"\"تمام\" میں","inUsers":"صارفین میں","inactive":"غیر فعال","institute":"ادارے کا نام","isRootOrg":"روٹورگ ہے","iscurrentjob":"کیا یہ آپ کی موجودہ نوکری ہے","itis":"یہ ہے","keywords":"مطلوبہ الفاظ","language":"زبان(یں) واقف ہیں","last":"آخری","lastAccessed":"آخری بار رسائی حاصل کی گئی:","lastName":"خاندانی نام","lastupdate":"گزشتہ اپ ڈیٹ","learners":"سیکھنے والے","licenseTerms":"لائسنس شرائط","limitsOfArtificialIntell":"مصنوعی انٹیلی جنس کی خامیاں","linkCopied":"لنک کلپ بورڈ پر کاپی کی گئی","linkedContents":"منسلک مواد","linkedIn":"لنکڈان","location":"مقام","lockPopupTitle":"{شراکت دار} فی الحال {مواد کے نام} پر کام کر رہا ہے. بعد میں دوبارہ کوشش کریں.","markas":"نشان زد کریں","medium":"ذریع","mentors":"معلم","mergeAccount":"اکاؤنٹ ضم ","mobileEmailInfoText":"DIKSHA پر سائن ان کرنے کیلئے اپنے موبائل نمبر یا ای میل آئ ڈی درج کریں","mobileNumber":"موبائل نمبر","mobileNumberInfoText":"DIKSHA میں لاگ ان کرنے کے لئے اپنا موبائل نمبر درج کریں","more":"مزید","myBadges":"میرے بیج","mynotebook":"میری نوٹ بک","mynotes":"میرے نوٹس","name":"نام","nameRequired":"نام مطلوب ہے","newPassword":"نیا پاس ورڈ ","next":"اگلا","noContentToPlay":"دکھانے کے لئے کوئ مواد نہیں ","noDataFound":"کوئی ڈیٹا نہیں ملا","offline":"آپ آف لائن ہیں","onDiksha":"پر {instance} پر","online":"آپ  آن لائن ہیں","opndbtch":"بیچ کھولیں","orgCode":"org کوڈ","orgId":"Org آئ ڈی","orgType":"تنظیم کی قسم","organization":"تنظیم","orgname":"تنظیم کا نام","orgtypes":"تنظیم کی قسم","originalAuthor":"اصل مصنف","otpMandatory":"OTP لازمی ہیں","otpSentTo":"OTP بھیجا گیا ہے","otpValidated":"OTP کامیابی سے توثیق شدہ کیا گیا","ownership":"مالکیت","participants":"امیدوار","password":"پاس ورڈ","passwordMismatch":"پاس ورڈ میچ نہیں کررہے، براہ کرم درست پاس ورڈ درج کریں","pdfcontents":"پی ڈی ایف کے مواد","percentage":"فیصد","permanent":"مستقل","phone":"فون نمبر","phoneNumber":"فون نمبر","phoneOrEmail":"فون نمبر یا ای میل آئی ڈی درج کریں","phoneRequired":"فون نمبر مطلوب ہے","phoneVerfied":"فون کی تصدیق","phonenumber":"فون نمبر","pincode":"پن کوڈ","playContent":"مواد چلایۓ","plslgn":"یہ سیشن ختم ہوگیا ہے {instance}$  کا استعمال جاری رکھنے کیلئے دوبارہ لاگ ان کریں.","position":"عہدہ","preferredLanguage":"ترجیحی زبان","previous":"پچھلا","processid":"پروسس شناخت","profilePopup":"آپ کے متعلق  مواد دریافت کرنے کے لئے، درج ذیل تفصیلات کو اپ ڈیٹ کریں ...","provider":"org فراہم کنندہ","publicFooterGetAccess":"DIKSHA پلیٹ فارم اساتذہ، طالب علموں اور والدین کو پیش کردہ اسکول نصاب سے متعلق سیکھنے والی مواد کو مشغول کرتی ہے. DIKSHAapp کو ڈاؤن لوڈ کریں اور اپنے درسوں کو آسان رسائی کے لۓ اپنی درسی کتابوں میں QR کوڈ اسکین کریں.","publishedBy":"اشاعت کردہ","publishedOnInstanceName":"کے ذریعے {instance} پر اشاعت کیا گیا ہے","reEnterPassword":"پاس ورڈ دوبارہ درج کریں.","readless":"کم پڑھئیے","readmore":"...مزید پڑھئے","recoverAccount":"اکاؤنٹ بازیافت کریں۔","redirectMsg":"اس مواد کی بیرونی طور پر میزبانی کی جاتی ہے","redirectWaitMsg":"مواد  لوڈ ہونے تک انتظار کریں","releaseDateKey":"شائع کی تاریخ:","removeAll":"سب کو ہٹا دیں","reportUpdatedOn":"یہ رپورٹ آخری بار اپ ڈیٹ کی گئی تھی","resendOTP":"OTP دوبارہ بھیجیں","resentOTP":"OTP دوبارہ بھیجا گیا ہے.OTP درج کریں","resourcetype":"وسائل کی قسم","retired":"ریٹائرڈ","returnToCourses":"نصاب پر واپس جائیں","role":"کردار","roles":"کردار","rootOrg":"روٹ org","sameEmailId":"یہ ای میل ID وہی ہے جو آپ کے پروفائل میں منسلک ہے","samePhoneNo":"یہ موبائل نمبر وہی ہے جو آپ کے پروفائل میں منسلک ہے","school":"اسکول","search":"تلاش کریں","searchForContent":"6 عددی QR کوڈ درج کریں","searchUserName":"صارف کا نام تلاش کریں","seladdresstype":"پتہ کی قسم منتخب کریں","selectAll":"تمام منتخب کریں","selectBlock":"بلاک منتخب کریں","selectDistrict":"ضلع منتخب کریں","selectSchool":"اسکول منتخب کریں","selectState":"ریاست منتخب کریں","selected":"منتخب شدہ","selectreason":"ایک وجہ منتخب کریں","sesnexrd":"سیشن ختم ہو گیا ہے","setRole":"صارف کو ترمیم کریں","share":"شیئر کریں","sharelink":"لنک کے ذریعے شیئر کریں-","showLess":"کم دکھائیے","showingResults":"نتائج دکھا رہا ہے","showingResultsFor":"{searchString} کے نتائج","signUp":"رجسٹر کریں","signinenrollHeader":"نصاب رجسٹرڈ صارفین کے لئے ہیں. نصاب تک پہنچنے کے لئے لاگ ان کریں.","signinenrollTitle":"اس نصاب میں داخلے  کے لئےلاگ ان کریں.","skillTags":"مہارت ٹیگز","sltBtch":"آگے بڑھنے کے لئے براہ کرم ایک بیچ منتخب کریں","socialmedialinks":"سوشل میڈیا کے لنکس","sortby":"ترتیب سے","startExploringContent":"DIAL کوڈ درج کرکے مواد کی تلاش شروع کریں","startExploringContentBySearch":"QR کوڈ کا استعمال کرتے ہوئے مواد تلاش کریں","startdate":"شروع کرنے کی تاریخ","state":"ریاست","stateRecord":"ریاستی ریکارڈ کے مطابق","subject":"مضمون","subjects":"مضامین","subjectstaught":"موضوع سکھایا","submitOTP":"OTP جمع کریں","subtopic":"ذیلی موضوع","successres":"کامیابی کے نتائج","summary":"خلاصہ","supportedLanguages":"معاون زبانیں:","tableNotAvailable":"اس رپورٹ کے لئے ٹیبل دستیاب نہیں ہے","takenote":"نوٹ لیں","tcfrom":"کب سے","tcno":"نہیں","tcto":"کب تک ","tcyes":"ہاں","tenDigitPhone":"10 عددی موبائیل نمبر","termsAndCond":"شرائط و ضوابط","termsAndCondAgree":"میں استعمال کیےگۓ شرائط و ضوابط سے اتفاق کرتا ہوں","theme":"موضوع","title":"عنوان","toTryAgain":"کے لئے دوبارہ کوشش کریں","topic":"موضوع","topics":"عنوانات","trainingAttended":"ٹریننگ میں شرکت","twitter":"ٹویٹر","unableToUpdateEmail":"ای میل آئ ڈی کو اپ ڈیٹ کرنے میں ناکامی ہوئ","unableToUpdateMobile":"موبائل نمبر کو اپ ڈیٹ کرنے میں ناکامی ہوئ","unableToVerifyEmail":"ای میل آئ ڈی کی تصدیق کرنے میں ناکام؟","unableToVerifyPhone":"فون نمبر کی تصدیق کرنے میں قاصر","unenrollMsg":"کیا آپ اس بیچ سے غیراندراج کرنا چاہتے ہیں؟","unenrollTitle":"بیچ نام نہاد","uniqueEmail":"آپ کی ای میل آئی ڈی پہلے ہی رجسٹرڈ ہے","uniqueEmailId":"یہ ای میل آئی ڈی پہلے ہی استعمال میں ہے. براہ کرم کوئ اور ای میل  آئی ڈی درج کریں.","uniqueMobile":"یہ موبائل نمبر پہلے ہی رجسٹرڈ ہے. ایک اور موبائل نمبر درج کریں.","uniquePhone":"آپ کا فون نمبر پہلے ہی رجسٹرڈ ہے","updateEmailId":"ای میل  آئی ڈی اپ ڈیٹ کریں","updatePhoneNo":"موبائل نمبر اپ ڈیٹ کریں","updatedon":"پر اپ ڈیٹ ہوا","updateorgtype":"تنظیم کی قسم اپ ڈیٹ کریں","upldfile":"اپ لوڈ کی ہوئ فائل","uploadContent":"مواد اپ لوڈ کریں","uploadEcarFromPd":"مواد درآمد کرنے کے لئے ایک پین ڈرائیو سے  ecar. فائلوں کو اپ لوڈ کریں","userFilterForm":"صارفین تلاش کریں","userID":"صارف آئ ڈی","userId":"صارف کی آئ ڈی","userType":"صارف کی قسم","username":"صارف کا نام","validEmail":"ایک درست ای میل آئ ڈی درج کریں","validFor":"۳۰ منٹ کے لئے درست","validPassword":"درست حروفے مخفي درج کریں","validPhone":"ایک درست 10 عددی موبائیل نمبر درج کریں","verifyingCertificate":"سرٹیفیکیٹ کی تصدیق کی جا رہی ہے","versionKey":"تبدیل صورت:","videos":"ویڈیوز","view":"ملاحظہ کریں","viewless":"کم ملاحظہ کریں","viewmore":"مزید دیکھیں","viewworkspace":"اپنے کام کی جگہ دیکھیں","watchCourseVideo":"ویڈیو دیکھئیے","watchVideo":"ویڈیو دیکھئیے","whatsQRCode":"QR کوڈ کیا ہے؟","whatwentwrong":"کیاغلط ہوا؟","whatwentwrongdesc":"ہمیں بتایئے کہ کیا غلط ہوا.صحیح وجوہات کا ذکر کریں تاکہ ہم اس کا جلد از جلد جائزہ لیں اور اس مسئلے کو حل کریں.آپ کی رائے کا شکریہ!","worktitle":"پيشھ/ عہدہ","wrongEmailOTP":"آپ نے ایک غلط OTP درج کیا ہے. آپ کے ای میل آئ ڈی پر موصول ہوا OTP درج کریں. OTP صرف 30 منٹ کے لئے درست ہے.","wrongPhoneOTP":"آپ نے ایک غلط OTP درج کیا ہے. آپ کے فون نمبر پر وصول کردہ OTP درج کریں. OTP صرف 30 منٹ کے لئے درست ہے.","yop":"پاس کرنے کا سال ","indPhoneCode":91,"manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","enterNameNotMatch":"The entry does not match the name registered with {instance}","receiveOTP":"Where would you like to receive the OTP?","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","enterEightCharacters":"Enter at least 8 characters","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","enternameAsRegisteredInAccount":"and the name as on the {instance} account","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","completingCourseSuccessfully":"For successfully completing the training,","noCreditsAvailable":"No credits available","deviceId":"Device ID","downloadCourseQRCode":"Download Training QR Code","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadingContent":"Preparing to download {contentName}...","errorMessage":"Error message","externalId":"External Id","lang":"Language","recentlyAdded":"Recently Added","contentType":"Content Type","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","updatecollection":"Update All","updatecontent":"Update Content","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from"},"btn":{"add":"شامل کریں","addToLibrary":"لائبریری میں شامل کریں","addedToLibrary":"لائبریری میں شامل کیا گیا","addingToLibrary":"لائبریری میں شامل کیا گیا","apply":"لاگو کریں","browse":"براؤز کریں","cancel":"منسوخ کریں","cancelCapitalize":"منسوخ کریں","chksts":"سٹیٹس چیک کریں","clear":"مٹایئں","close":"بند کریں","contentImport":"فائلیں اپ لوڈ کریں","copyLink":"کاپی کریں لنکس","create":"تخلیق کریں","download":"ڈاؤن لوڈ","downloadCertificate":"سرٹیفیکیٹ ڈاؤن لوڈ کریں","downloadCompleted":"ڈاؤن لوڈ مکمل ہوا","downloadDikshaForWindows":"وینڈوز (۶۴ - bit) کیلئے ڈاؤن لوڈ کریں","downloadFailed":"ڈاؤن لوڈ کرنا ناکام ہوگیا","downloadInstruction":"ڈاؤن لوڈ ہدایات دیکھیں","downloadManager":"ڈاؤن لوڈ مینیجر","downloadPdf":"پی ڈی ایف ڈاؤن لوڈ کریں","downloadPending":"ڈاؤن لوڈ جاری ہے","edit":"ترمیم","enroll":"نصاب میں داخلہ","export":"برآمد کریں","login":"لاگ ان کریں","merge":"ضم","myLibrary":"میری لائبریری","next":"آگے","no":"نہیں","ok":"ٹھیک ہے","previous":"گزشتہ","remove":"ہٹایئں","reset":"ری سیٹ کریں","resume":"دوبارہ شروع کریں","resumecourse":"نصاب دوبارہ شروع کریں","save":"محفوظ کریں","selectContentFiles":"فائل منتخب کریں","selectLanguage":"زبان منتخب کریں","selrole":"کردار کا انتخاب کریں","signin":"سائن ان کریں","signup":"رجسٹر کریں","smplcsv":"سی ایس وی کا نمونہ ڈاؤن لوڈ کریں.","submit":"جمع کریں","submitbtn":"جمع کریں","tryagain":"دوبارہ کوشش کریں.","unenroll":"نصاب سے غیر اندراج","update":"اپ ڈیٹ","uploadorgscsv":"تنظیموں کی سی ایس وی اپ لوڈ  کریں","uploadusrscsv":"صارفین کی سی ایس وی اپ لوڈ کریں","verify":"تصدیق","viewCourseStatsDashboard":"نصاب کا ڈش بورڈ دیکھیں","viewcoursestats":"نصاب کے اعداد و شمار دیکھیں","viewless":"کم ملاحظہ کریں","viewmore":"مزید دیکھئیے","yes":"ہاں","yesiamsure":"ہاں مجھے یقین ہے","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"خاتون","male":"مرد","transgender":"ٹرانسجینڈر"},"instn":{"t0002":"آپ ایک وقت میں 199 سے زائد تنظیمات کی تفصیلات ایک سی ایس وی فائل میں شامل یا اپ لوڈ کرسکتے ہیں","t0007":"OrgName کالم لازمی ہے. اس کالم میں تنظیم کا نام درج کریں","t0011":"آپ پروسس آئ ڈی کےذریعے پیش رفت کو ٹریک کرسکتے ہیں","t0012":"براہ کرم آپ کے حوالہ کے لئے پروسس آئ ڈی کو محفوظ کریں. آپ پروسس آئ ڈی کے زریعے پیش رفت  کو ٹریک کرسکتے ہیں","t0013":"حوالہ کے لئے سی وی ایس فائل ڈاؤن لوڈ کریں","t0015":"تنظیمات کو اپ لوڈ کریں","t0016":"صارفین کو اپ لوڈ کریں","t0020":"مہارت شامل کرنے کے لئے ٹائپنگ شروع کریں ","t0021":"الگ الگ قطار میں ہر تنظیم کے نام درج کریں","t0022":"دیگر تمام کالمز میں تفصیلات درج کرنا اختیاری ہے:","t0023":"IsRootorg:اس کالم کے لئے درست اقدار حقیقت جھوٹ ہیں","t0024":"چینل: ماسٹر تنظیم کی تخلیق کے دوران فراہم کردہ منفرد آئ ڈی","t0025":"بیرونی آئ ڈی: انتظامی تنظیم کے ذخائر میں ہر تنظیم کے ساتھ منسلک منفرد ID","t0026":"فراہم کنندہ: منتظم تنظیم کے چینل ID","t0027":"وضاحت: تنظیم بیان کرنے کی تفصیلات","t0028":"ہوم Url:تنظیم کا ہوم پیج یو آر ایل","t0029":"orgCode: تنظیم کے منفرد کوڈ، اگر کوئی ہے،","t0030":"orgType: تنظیم کی قسم، جیسے این جی او، پرائمری اسکول، ثانوی اسکول وغیرہ","t0031":"ترجیحی زبان: تنظیم کے لئے زبان کی ترجیحات، اگر کوئی ہو","t0032":"رابطہ تفصیل:تنظیم کا فون نمبر اور ای میل آئ ڈی. تفصیلات ایک سنگل کوٹس میں کرلی بریکٹ کے اندر درج ہونا چاہئے. مثال کے طور پر: [{'فون نمبر ':' 1234567890 '}]","t0049":"چینل لازمی ہے اگر کالم کا وصف isRootOrg سچ ہے تو","t0050":"بیرونی آئ ڈی اور فراہم کنندہ باہمی طور پر لازمی ہیں","t0055":"اوٗپس اعلان کی تفصیلات نہیں ملی!","t0056":"برائے مہربانی دوبارہ کوشش کریں...","t0058":"کے طور پر ڈاؤن لوڈ کریں","t0059":"سی ایس وی","t0060":"شکریہ","t0061":"اوپس..","t0062":"اس نصاب  کے لئے آپ نے ابھی تک  بیچ نہیں بنایا ہے. نیا بیچ بنائیں اور ڈیش بورڈ دوبارہ دیکھیں.","t0063":"آپ نے ابھی تک کوئی نصاب نہیں بنایا ہے. نیا نصاب بنائیں اور ڈیش بورڈ دوبارہ چیک کریں۔","t0064":"ایک ہی قسم کے منتخب کردہ ایک سے زیادہ پتے.  براہ کرم کسی ایک کو تبدیل کریں.","t0065":"ڈاؤن لوڈ","t0070":"سی ایس وی فائل ڈاؤن لوڈ کریں.ایک ہی تنظیم سے تعلق رکھنے والے صارفین کو ایک ہی وقت  میں  ایک ہی سی ایس وی فائل میں اپ لوڈ کیا جا سکتا ہے.","t0071":"صارف اکاؤنٹس کے مندرجہ ذیل لازمی تفصیلات درج کریں:","t0072":"پہلا نام:صارف کا پہلا نام،حروف تہجی","t0073":"فون یا ای میل:صارف کا فون نمبر (دس عدد موبائل نمبر) یا ای میل آئ ڈی.دونوں میں سے ایک کو فراہم کرنا ہوگا، تاہم، اگر دستیاب ہوتو دونوں فراہم کرنے کے لئے مشورہ دیا جاتا ہے","t0074":"صارف کا  نام:تنظیم کے ذریعہ صارف کو منفرد نام تفویض کيا گیا ہے،حروف تہجی","t0076":"نوٹ: سی وی ایس فائل کے دیگر تمام کالم اختیاری ہیں،ان کو بھرنے کے بارے میں تفصیلات کے لئے، سےحوالہ لیجیئے","t0077":"صارفین رجسٹر کریں.","t0078":"مقام آئی ڈی: ایک ایسی شناخت جس میں کسی خاص تنظیم کے عنوان کے اعلان کا اشارہ ہو","t0079":"مقام کا کوڈ:کوما کے ذریعےعلیحدہ کیئے مقام کوڈ کی فہرست","t0081":"دیکشہ پر سائن اپ کرنے کے لئے آپ کا شکریہ.ہم نے ایک sms OTP کو تصدیق کے لئے بھیجا ہے.رجسٹریشن کے عمل کو مکمل کرنے کے لئے آپ کے فون نمبر کو OTP کے ذریعے تصدیق کریں.","t0082":"دیکشہ پر سائن اپ کرنے کے لئے آپ کا شکریہ.ہم نے OTP ای میل کو تصدیق کے لئے بھیجا ہے.رجسٹریشن کے عمل کو مکمل کرنے کے لئے آپ کے ای میل آئ ڈی کو OTP کے ذریعے تصدیق کریں.","t0083":"آپ کو موبائل نمبر کی توثیق کے لئے OTP کے ساتھ ایک ایس ایم ایس مل جائے گا.","t0084":"آپ کو ای میل آئ ڈی کی تصدیق کے لئے OTP کے ساتھ ایک ای میل مل جائے گا.","t0085":"رپورٹ پہلے 10،000 شرکاء کا  ڈاٹا دکھا رہی ہے. بیچ میں تمام شرکاء کی ترقی کو دیکھنے کے لئے ڈاؤن لوڈ پر کلک کریں.","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"نوٹس یا عنوان کی تلاش کریں","t0002":"اپنا تبصرہ شامل کریں","t0005":"بیچ مشیر منتخب کریں","t0006":"بیچ کے ممبران کو منتخب کریں"},"lnk":{"announcement":"اعلان کا ڈیش بورڈ","assignedToMe":"میرے لئے تفویض کیا گیا","contentProgressReport":"مواد کی ترقی کی رپورٹ","contentStatusReport":"مواد کی حالت کی رپورٹ","createdByMe":"میری طرف سے تخلیق","dashboard":"انتظامیہ ڈیش بورڈ","detailedConsumptionMatrix":"تفصیلی کھپت میٹرکس","detailedConsumptionReport":"تفصیلی کھپت رپورٹ","footerContact":"سوالات کے لئے رابطہ کیجئے:","footerDIKSHAForMobile":"موبائل کے لئے DIKSHA","footerDikshaVerticals":"DIKSHA عمودی ","footerHelpCenter":"مدد سنٹر","footerPartners":"شراکت دار","footerTnC":"استعمال کے شرائط","logout":"لاگ آوٹ","myactivity":"میری سرگرمی","profile":"پروفائل","textbookProgressReport":"ٹیکسٹ بک ترقی کی رپورٹ","viewall":"سب ملاحظہ کریں","workSpace":"کام کی جگہ"},"pgttl":{"takeanote":"نوٹ کر یں"},"prmpt":{"deletenote":"کیا آپ کو یقیناً یہ نوٹ مٹانا ہے؟","enteremailID":"اپنی ای میل آئ ڈی درج کریں","enterphoneno":"10 عددی فون نمبر درج کریں","search":"تلاش کریں","userlocation":"مقام"},"scttl":{"blkuser":"صارف کو بلاک کریں","contributions":"شراکت","instructions":"ہدایات:","signup":"رجسٹر کریں","todo":"کرنے کے لئے","error":"Error:"},"snav":{"shareViaLink":"لنک کے ذریعے مشترکہ","submittedForReview":"جائزہ لینے کے لئے جمع"},"tab":{"all":"سب","community":"گروہ","courses":"نصاب","help":"مدد","home":"ہوم","profile":"پروفائل","resources":"دار الکتب","users":"صارفین","workspace":"کام کی جگہ","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"مکمل کئے گئے کورس","messages":{"emsg":{"m0001":"ابھی اندراج نہیں کر سکتے.بعد میں دوبارہ کوشش کریں","m0003":"آپ کو فراہم کنندہ اور بیرونی شناخت یا تنظیم کی شناخت درج کرنا چاہئے","m0005":"کچھ غلط ہو گیا، براہ کرم کچھ وقت بعد کوشش کریں ....","m0007":"سائز سے کم ہونا چاہئے","m0008":"مواد کاپی کرنے سے قاصر. بعد میں دوبارہ کوشش کریں","m0009":"ابھی غیر اندراج نہیں کیا جا سکتا ہے. بعد میں دوبارہ کوشش کریں","m0014":"موبائل نمبر کو اپ ڈیٹ کرنا ناکام ہوگیا","m0015":"ای میل آئ ڈی اپ ڈیٹ کرنا ناکام ہوا","m0016":"ریاست حاصل کرنے میں ناکامی ہوئ. بعد میں دوبارہ کوشش کریں","m0017":"ضلاع حاصل کرنے میں ناکامی ہوئ. بعد میں دوبارہ کوشش کریں","m0018":"پروفائل اپ ڈیٹ کرنا ناکام ہوا","m0019":"رپورٹ ڈاؤن لوڈ کنے میں ناکامی ہوئ ، بعد میں دوبارہ کوشش کریں","m0020":"صارف اپ ڈیٹ کرنا ناکام ہوگیا. بعد میں دوبارہ کوشش کریں","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"اندراج نصاب کو حاصل کرنے میں  ناکامی ہوئ، براہ کرم بعد میں دوبارہ کوشش کریں ...","m0002":"دوسرے نصاب  حاصل کرنے میں ناکامی ہوئ، بعد میں دوبارہ کوشش کریں۔۔۔","m0003":"نصاب کے شیڈول کی تفصیل حاصل کرنے میں ناکامی ہوئ۔","m0004":"ڈیٹا حاصل کرنے میں ناکامی ہوئ، براہ کرم تھوڑی دیر بعد دوبارہ کوشش کریں ...","m0030":"نوٹ تخلیق کرنے میں ناکامی ہوئ،بعد میں دوبارہ کوشش کریں۔۔۔","m0032":"نوٹ ہٹانے میں ناکامی ہوئ،بعد میں دوبارہ کوشش کریں۔۔۔","m0033":"نوٹ حاصل کرنے میں ناکامی ہوئ، براہ کرم تھوڑی دیر بعد دوبارہ کوشش کریں ...","m0034":"نوٹ اپ ڈیٹ کرنے میں ناکامی ہوئ،بعد میں دوبارہ کوشش کریں۔۔۔","m0041":"تعلیم مٹانے مین ناکامی ہوئ، براہ کرم بعد میں دوبارہ کوشش کریں..","m0042":"تجربہ مٹانا ناکام ہوا۔","m0043":"پتہ مٹانا ناکام ہو گیا، براہ کرم کچھ دیر بعد دوبارہ کوشش کریں...","m0048":"صارف پروفائل کو اپ ڈیٹ کرنے میں ناکامی ہوئ، براہ کرم بعد میں دوبارہ کوشش کریں ...","m0049":"ڈیٹا لوڈ کرنے میں قاصر","m0050":"درخواست جمع کرنے میں ناکامی ہوئ،بعد میں دوبارہ کوشش کریں۔۔۔","m0051":"کچھ غلط ہو گیا. براہ کرم کچھ دیر بعد دوبارہ کوشش کریں...","m0054":"بیچ تفصیل لانا ناکام ہوا، براہ کرم کچھ دیر بعد پھر سے کوشش کریں۔۔۔","m0056":"صارفین کی فہرست لانا ناکام ہوا، براہ کرم کچھ دیر بعد پھر سے کوشش کریں۔۔","m0076":"براہ کرم لازمی خانے بھریں","m0077":"تلاش کے نتیجے حاصل کرنے میں ناکامی ہوئ","m0079":"بیج تفویض کرنا ناکام ہوگیا، براہ کرم کچھ دیر بعد دوبارہ کوشش کریں...","m0080":"بیج حاصل کرنے میں ناکامی ہوئ، براہ کرم تھوڑی دیر بعد دوبارہ کوشش کریں ...","m0082":"یہ نصاب داخلے  کے لئے کھلا نہیں ہے.","m0085":"ایک تکنیکی خرابی ہو گئ تھی. دوبارہ کوشش کریں.","m0086":"یہ کورس مصنف کی طرف سے ریٹائرکردیا گیا ہے اور اس وجہ سے اب دستیاب نہیں ہے.","m0087":"برائے مہربانی انتظار کریں.","m0088":"ہم تفصیلات حاصل کر رہے ہیں.","m0089":"کوئی مضامین / ذیلی موضوعات نہیں ملے","m0090":"ڈاؤن لوڈ ناکام ہوگیا، کچھ دیر بعد کوشش کریں.","m0091":"مواد برآمد کرنا ناکام ہوگیا","m0093":"{FailedContentLength} مواد اپ لوڈ ناکام","m0094":"ڈاؤن لوڈ ناکام ہوگیا، کچھ دیر بعد دوبارہ کوشش کریں...","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"یہ نصاب نامناسب طور پر نشان دہ کیا گیا ہے اور فی الحال جائزے کے تحت ہے۔ ","m0005":"براہ کرم ایک درست تصویرکی فائل اپ لوڈ کریں. معاون فائل کی اقسام: jpeg، jpg، png. زیادہ سے زیادہ سائز: 4MB.","m0017":"پروفائل تکمیل","m0022":"گزشتہ 7 دنوں کے اعداد و شمار","m0023":"گزشتہ 14 دنوں کے اعداد و شمار","m0024":"گزشتہ 5 ہفتوں کے اعداد و شمار","m0025":"ابتدا سے اعداد و شمار","m0026":"ہیلو، یہ نصاب اب دستیاب نہیں ہے. یہ ممکن ہے کہ خالق نے نصاب  میں کچھ تبدیلییاں کی ہوں.","m0027":"ہیلو، یہ مواد اب دستیاب نہیں ہے. یہ امکان ہے کہ خالق نے مواد میں کچھ تبدیلییں کی ہیں.","m0034":"چونکہ مواد بیرونی ذریعہ سے ہے، یہ تھوڑی دیر میں کھولا جاےگا۔","m0035":"غیر اجازت رسائی","m0036":"مواد کی بیرونی طور پر میزبانی کی جاتی ہے، مواد ملاحظہ کرنے کے لئے براہ مہربانی پیش نظارے پر کلک کریں","m0040":"عمل ابھی تک جاری ہے، برائے مہربانی کچھ دیر بعد کوشش کریں","m0041":"آپ کا پروفائل ہے","m0042":"% مکمل","m0043":"آپ کی پروفائل میں ایک درست ای میل ID نہیں ہے. براہ کرم اپنے ای میل آئ ڈی کو اپ ڈیٹ کریں.","m0044":"ڈاؤن لوڈ ناکام ہوگیا!","m0045":"ڈاؤن لوڈ ناکام ہوگیا ہے. براہ کرم کچھ دیر بعد دوبارہ کوشش کریں.","m0047":"آپ صرف ۱۰۰ امیدوار کو منتخب کر سکتے ہیں","m0061":"کو","m0062":"ورنہ، کلک","m0064":"دوسرے اکاؤنٹ مٹا دیں","m0065":"اکاؤنٹ ضم  کو کامیابی سے شروع کیا گیا","m0066":"مکمل ہونے پر آپکو آگاہ کیا جائیگا","m0067":"اکاؤنٹ ضم شروع نہیں کیا گیا ہے. براہ کرم کچھ دیر بعد کوشش کریں","m0060":"If you have two accounts with {instance}, click","m0063":"combine usage details of both accounts, and","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0073":"Click Create New to create a new {instance} account.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"نوٹ کامیابی سے تخلیق کیا گیا ","m0013":"نوٹ کامیابی سے اپ ڈیٹ ہوا۔۔۔","m0014":"تعلیم کامیابی سے  مٹا دی گئی","m0015":"تجربے کو کامیابی سے مٹا دیا گیا","m0016":"پتہ کامیابی سے مٹا دیا گیا","m0018":"پروفائل کی تصویر کامیابی سے اپ ڈیٹ کی گئی","m0019":"تفصیل کامیابی سے اپ ڈیٹ کی گئی","m0020":"تعلیم کامیابی سے اپ ڈیٹ کی گئی","m0021":"تجربے کو کامیابی سے اپ ڈیٹ کیا گیا","m0022":"اضافی معلومات کامیابی سے اپ ڈیٹ کی گئی","m0023":"پتہ کامیابی سے اپ ڈیٹ ہوا","m0024":"نئی تعلیم کامیابی سے شامل ہوگئی","m0025":"نیا تجربہ کامیابی سے شامل کیا گیا","m0026":"نیا پتہ کامیابی سے شامل کيا گیا","m0028":"کردار کو کامیابی سے اپ ڈیٹ کیا گیا","m0029":"صارف کامیابی سے مٹا دیا گیا","m0030":"صارفین کو کامیابی سے اپ لوڈ کیا گیا ","m0031":"تنظیم کامیابی سے اپ لوڈ کی گئی","m0032":"سٹیٹس کامیابی سے لایا گیا","m0035":"تنظیم کی قسم کامیابی سے شاملل کي گئی","m0036":"نصاب کو کامیابی سے اس بیچ میں داخل کیا گیا ...","m0037":"کامیابی سے اپ ڈیٹ کيا گیا","m0038":"مہارت کامیابی سے اپ ڈیٹ  کی گئی","m0039":"سائن اپ کامیاب ھوا،برائے کرم لاگ ان کریں....","m0040":"پروفائل فیلڈ کی مرئیت کامیابی سے اپ ڈیٹ کی گئی","m0042":"مواد کو کامیابی سے نقل کیا گیا","m0043":"تصدیق کامیاب ہوئ","m0044":"بیج کامیابی سے تفویض کیا گیا","m0045":"صارف کو کامیابی سے بیچ سے غیر اندراج کیا گیا ہے...","m0046":"پروفائل کامیابی سے اپ ڈیٹ کی گئی","m0047":"آپ کے موبائل نمبر کو اپ ڈیٹ کیا گیا ہے.","m0048":"آپ کا ای میل ID اپ ڈیٹ کی گئ","m0049":"صارف کو کامیابی سے اپ ڈیٹ کیا گیا","m0050":"اس مواد کی درجہ بندی کے لئے آپ کا شکریہ!","m0053":"ڈاؤن لوڈ کے لئے قطار میں شامل کردہ مواد","moo41":"اعلان کامیابی سے منسوخ کردیا گیا","m0055":"Updating...","m0056":"You should be online to update the content","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0054":"{UploadedContentLength} content(s) uploaded successfully","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"کوئی نتیجہ نہیں ملا","m0007":"براہ کرم کچھ اور تلاش کریں","m0008":"نتیجہ - نہیں","m0009":"دکھانے سے قاصر،  براہ کرم دوبارہ کوشش کریں یا بند کردیں","m0022":"تجزیہ کیلئے اپنے ڈرافٹ میں سے ایک جمع کریں. مواد صرف جائزے کے بعد ہی شائع ہوتا ہے","m0024":"ایک دستاویز، ویڈیو، یا کسی دوسرے سپورٹڈ فارمیٹ میں اپ لوڈ کریں. آپ نے ابھی تک کچھ بھی اپ لوڈ نہیں کیا ہے","m0033":"تجزیہ کیلئے اپنے ڈرافٹ میں سے ایک جمع کریں. آپ نے جائزہ لینے کے لئے ابھی تک کوئی مواد پیش نہیں کیا ہے","m0035":"جائزہ لینے کے لئے کوئی مواد نہیں ہے","m0060":"اپنی پروفائل کو مضبوط بنائیں","m0062":"درست ڈگری درج کریں","m0063":"درست پتا لائن 1 درج کریں","m0064":"شہر درج کریں","m0065":"درست پن کوڈ درج کریں ","m0066":"پہلا نام درج کریں","m0067":"براہ کرم ایک درست فون نمبر فراہم کریں","m0069":"زبان منتخب کریں","m0070":"ادارے کا نام درج کریں","m0072":"درست پيشھ / عہدہ درج کریں","m0073":"درست تنظیم درج کریں","m0077":"ہم آپ کی درخواست جمع کررہے ہیں ...","m0080":"براہ کرم صرف سی ایس وی کی شکل میں فائل اپ لوڈ کریں","m0081":"کوئی بھی بیچ نہیں ملا","m0083":"آپ نے ابھی تک کسی کے ساتھ مواد کا اشتراک نہیں کیا ہے","m0087":"براہ کرم ایک درست صارف نام درج کریں، کم سے کم 5 کردار ہونا ضروری ہے","m0088":"براہ کرم درست حروفے مخفي درج کریں","m0089":"ایک درست ای میل درج کریں","m0090":"براہ کرم زبانیں منتخب کریں","m0091":"درست فون نمبر درج کریں","m0094":"درست فی صد درج کریں","m0095":"آپ کی درخواست کامیابی سے موصول ہوئی ہے. فائل کو بعد میں آپ کے رجسٹرڈ ای میل پتے پر  بھیج دیا جائے گا. براہ کرم باقاعدگی سے اپنے  ای میلز چیک کریں.","m0104":"درست درجہ درج کریں","m0108":"آپ کی پیش رفت","m0113":"درست آغاز کی تاریخ درج کریں","m0116":"منتخب کردہ نوٹ مٹایا جا رہا ہے ...","m0120":"کوئ مواد موجود نہیں ","m0121":"مواد ابھی تک شامل نہیں ہے","m0122":"آپکا ریاست جلد ہی اس QR کوڈ کیلئےموادشامل کریگا- یہ جلد ہی دستیاب ہوگا-","m0123":"ایک دوست سے پوچھیں کہ آپ کو کسی شریک کے طور پر شامل کرنا ہے. آپ کو  ای میل کے ذریعے مطلع کیا جائے گا.","m0125":"وسائل، کتاب، کورس، مجموعہ یا اپ لوڈ بنانے شروع کریں. آپ اس وقت کوئی کام میں پیش رفت کا مسودہ نہیں رکھتے ہیں","m0126":"براہ کرم بورڈ منتخب کریں","m0127":"براہ کرم ذریع کا انتخاب کریں","m0128":"براہ کرم اپنی جماعت کا انتخاب کریں","m0129":"شرائط و ضوابط کی لوڈنگ جاری ہیں","m0130":"ہم ضلع حاصل کر رہے ہیں","m0131":"کوئی رپورٹ نہیں ملی","m0132":"ہمیں آپ کے ڈاؤن لوڈ کی درخواست موصول ہوئی ہے. فائل کو آپ کے رجسٹرڈ ای میل آئ ڈی پر جلد ہی بھیج دیا جائے گا.","m0133":"ڈیسک ٹاپ ایپ کا استعمال  شروع کرنے کیلئے مواد براؤز اور ڈاؤن لوڈ کریں یا اپ لوڈ کریں","m0134":"اندراج","m0135":"براہ کرم درست تاریخ درج کریں","m0136":"اندراج کی آخری تاریخ:","m0139":"DOWNLOADED","m0140":"DOWNLOADING","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"},"m0138":"FAILED"},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"تنظیم کا نام","participants":"امیدوار","resourceService":{"frmelmnts":{"lbl":{"userId":"صارف آئ ڈی"}}},"t0065":"فائل ڈاؤن لوڈ کریں"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"You don't have any published content...","m0023":"We are fetching uploaded content...","m0024":"You don't have any uploaded content...","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"You don't have any content for review...","m0034":"We are deleting the content...","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You don't have any limited publish content...","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"You are not collaborating on any content yet","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"No content to display. Start Creating Now","m0035":"There is no content to review","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file
+{"consumption":{"frmelmnts":{"lbl":{"noMatchingRecordFound":"کوئی ملتا هوا ریکارڈ نہیں ملا","Mobile":"موبائل","SearchIn":"{تلاش مواد کی قسم} میں تلاش کریں","Select":"منتخب کریں","aboutthecourse":"نصاب کے بارے میں","active":"فعال","addDistrict":"ضلع شامل کریں","addEmailID":"ای میل آئی ڈی شامل کریں","addPhoneNo":"موبائل نمبر شامل کریں","addState":"ریاست شامل کریں","addlInfo":"اضافی معلومات","addnote":"نوٹ شامل کریں","addorgtype":"تنظیم کی قسم شامل کریں","address":"پتہ","addressline1":"پتہ لائن 1","addressline2":"پتہ لائن 2","anncmnt":"اعلان","anncmntall":"تمام اعيلانات","anncmntcancelconfirm":"کیا آپ واقعی یہ اعلان دکھانا بند کرنا چاہتے ہیں؟","anncmntcancelconfirmdescrption":"اس کارروائی کے بعد صارفین اس اعلان کو نہیں دیکھ سکیں گے","anncmntcreate":"اعلان تخلیق کریں","anncmntdtlsattachments":"منسلکات","anncmntdtlssenton":"کو بھیجا گیا","anncmntdtlsview":"ملاحظہ کریں","anncmntdtlsweblinks":"ویب لنکس","anncmntinboxannmsg":"اعلان","anncmntinboxseeall":"تمام دیکھیں","anncmntlastupdate":"کھپت ڈیٹا پچھلی بار اپ ڈیٹ کیا گیا ہے","anncmntmine":"میرے اعلانات","anncmntnotfound":"کوئی اعلان نہیں ملا","anncmntoutboxdelete":"مٹا دیں","anncmntoutboxresend":"دوبارہ بھیجئے","anncmntplzcreate":"براہ کرم اعلان کی تخلیق کریں","anncmntreadmore":"...مزید پڑھیئے","anncmntsent":"تمام بھیجے جانے والے اعلان کو دکھا یا جا رہا ہے","anncmnttblactions":"اعمال","anncmnttblname":"نام","anncmnttblpublished":"اشاعت","anncmnttblreceived":"موصول ہوا","anncmnttblseen":"دیکھ لیا","anncmnttblsent":"بھیج دیا","attributions":"حصول","author":"مصنف","badgeassignconfirmation":"کیا آپ واقعی اس مواد پر بیج جاری کرنا چاہتے ہیں؟","batchdescription":"بیچ کی وضاحت","batchdetails":"بیچ کی تفصیلات","batchenddate":"ختم ہونے کی تاریخ","batches":"بیچز","batchmembers":"بیچ کے ممبران","batchstartdate":"شروع کرنے کی تاریخ","birthdate":"تاریخ پیدائش (dd/mm/yyyy)","block":"بلاک","blocked":"بلاک","blockedUserError":"صارف کا اکاؤنٹ بلاک کر دیا گیا ہے. براہ کرم منتظم سے رابطہ کریں.","blog":"بلاگ","board":"بورڈ / یونیورسٹی","boards":"بورڈ","browserSuggestions":"بہتر تجربے کے لئے ہم تجویز کرتے ہیں کہ آپ اپ ڈیٹ یا انسٹال کریں","certificateIssuedTo":"سرٹیفیکیٹ جاری کیا گیا","certificatesIssued":"سرٹیفیکیٹ جاری کیا گیا","certificationAward":"سرٹیفکیٹ اور ایوارڈز","channel":"چینل","chkuploadsts":"اپ لوڈ کا سٹیٹس چیک کریں","chooseAll":"سب کا انتخاب کریں","city":"شہر","class":"جماعت","classes":"جماعت","clickHere":"یہاں کلک کریں","completed":"مکمل ہوا","completedCourse":"مکمل کئے گئے کورس","concept":"خاکہ","confirmPassword":"پاس ورڈ کي تصدیق","confirmblock":"کیا آپ کو یقیناً بلاک کرنا ہے","connectInternet":"مواد کو دیکھنے کے لئے براہ مہربانی انٹرنیٹ سے رابطہ کریں","contactStateAdmin":"اس بیچ میں اور امیدوار درج کرانے کیلئے اپنے ریاست کے منتظم سے رابطہ کریں","contentCredits":"مواد کریڈٹس","contentcopiedtitle":"یہ مواد ماخوذ کردہ ہے","contentinformation":"مواد کی معلومات","contentname":"مواد کا نام","contents":"مواد ","contentsUploaded":"فہرست اپ لوڈ کی جا رہی ہیں","contenttype":"مواد","continue":"جاری رکھیئے","contributors":"شراکت دار","copy":"کاپی کریں","copyRight":"کاپی رائیٹ","copycontent":"مواد کاپی کریں ...","country":"ملک","countryCode":"ملک کا کوڈ","courseCreatedBy":"کی طرف سے تخلیق","courseCredits":"کریڈٹس","coursecreatedon":"پرتخلیق","coursestructure":"نصاب کی بناوٹ","createUserSuccessWithEmail":"آپ کی ای میل آئی ڈی کی تصدیق ہو گئی ہے.جاری رکھنے کیلئے سائن ان کریں","createUserSuccessWithPhone":"آپ کے فون نمبر کی تصدیق کی گئی ہے. جاری رکھنے کیلئے سائن ان کریں.","createdInstanceName":"{instance} پر تخلیق کردہ","createdon":"پر تخلیق کیا","creationdataset":"تخلیق","creator":"خالق","creators":"تخلیق کار","credits":"کریڈٹس","current":"موجودہ","currentlocation":"موجودہ مقام","curriculum":"نصاب","dashboardcertificateStatus":"سرٹیفیکیٹ حالت","dashboardfiveweeksfilter":"گزشتہ 5 ہفتے","dashboardfourteendaysfilter":"گزشتہ 14 دن","dashboardfrombeginingfilter":"شروعات سے","dashboardnobatchselected":"کوئی بیچ منتخب نہیں کیا گیا!","dashboardnobatchselecteddesc":"آگے بڑھنے کیلئےایک بیچ منتخب کریں","dashboardnocourseselected":"کوئی نصاب منتخب نہیں!","dashboardnocourseselecteddesc":"براہ کرم مندرجہ بالا فہرست سے نصاب منتخب کریں.","dashboardnoorgselected":"کوئی تنظیم منتخب نہیں","dashboardnoorgselecteddesc":"مندرجہ بالا فہرست سے ایک تنظیم منتخب کریں","dashboardselectorg":"تنظیم منتخب کریں","dashboardsevendaysfilter":"گزشتہ 7 دنوں میں","dashboardsortbybatchend":"پر بیچ ختم","dashboardsortbyenrolledon":"پر اندراج","dashboardsortbyorg":"تنظیم","dashboardsortbystatus":"سٹیٹس","dashboardsortbyusername":"صارف کا نام","degree":"ڈگری","delete":"مٹائں","deletenote":"نوٹ مٹا دیں","description":"تفصیل","designation":"عہدہ","desktopAppFeature001":"مفت لامحدود مواد","desktopAppFeature002":"معاون بہزبانی ","desktopAppFeature003":"مواد آف لائن چلائیں","dialCode":"QR کوڈ","dialCodeDescription":"ڈائل کوڈ آپ کے درسی کتاب میں QR کوڈ کے تحت پایا گیا 6 عددی حروف تہجی کوڈ ہے","dialCodeDescriptionGetPage":"QR کوڈ آپ کے ٹیکسٹ بک میں QR کوڈ کی تصویر کے نیچے پایا گیا 6 عددی حروف تہجی کوڈ ہے.","dikshaForMobile":"موبائل کے لئے DIKSHA","district":"ضلع","dob":"پیدائش کی تاریخ","done":"ہو گیا","downloadDikshaForMobile":"موبائل کے لئے DIKSHA ڈاؤن لوڈ کریں","downloadDikshaLite":"دیکشا لائٹ ڈیسک ٹاپ ایپلیکیشن ڈاؤن لوڈ کریں","downloadThe":"ڈاؤن لوڈ کریں","dropcomment":"تبصرہ شامل کریں","ecmlarchives":"Ecml  آرکائیو","edit":"ترمیم","editPersonalDetails":"ذاتی تفصیلات میں ترمیم کریں","editUserDetails":"صارف کی تفصیلات میں ترمیم کریں","education":"تعلیم","eightCharacters":"8 یا زیادہ حروف استعمال کریں","email":"ای میل آئ ڈی","emailPhonenotRegistered":"ای میل ID/فون نمبر {instance} پر درج نھی ہے","emptycomments":"کوئی تبصرہ نہیں","enddate":"ختم ہونے کی تاریخ","enjoyedContent":"اس مواد کا لطف اٹھایا","enrollcourse":"نصاب میں داخلہ","enrollmentenddate":"اندراج ختم ہونے کی تاریخ","enterCertificateCode":"سرٹیفیکیٹ کوڈ یہاں درج کریں","enterDialCode":"6 عددی QR کوڈ درج کریں","enterEmailID":"ای میل آئ ڈی درج کریں","enterName":"نام درج کریں","enterOTP":"OTP درج کریں","enterQrCode":"کیو آ ر  کوڈ درج کریں","enterValidCertificateCode":"درست سرٹیفیکیٹ درج کریں","epubarchives":"ایپب آرکائیو","errorConfirmPassword":"پاس ورڈ میچ نہیں کررہے","experience":"تجربہ","expiredBatchWarning":"بیچ {EndDate} پر ختم ہوگیا ہے، لہٰذا آپ کی پیش رفت کو اپ ڈیٹ نہیں کیا جائے گا.","explore":"تلاش کریں","exploreContentOn":"مواد تلاش کریں","explorecontentfrom":"مواد میں سے تلاش کریں","exportingContent":"براہ کرم - {مواد کا نام} کو برآمد کرتے وقت انتظار کریں","exprdbtch":"ختم شدہ بیچ","extlid":"org بیرونی آئ ڈی","facebook":"فیس بک","failres":"ناکامی کے نتائج","fetchingBlocks":"براہ کرم انتظار کریں ہم بلاکس لا رہے ہیں","fetchingSchools":"براہ کرم انتظار کریں ہم اسکول کی لسٹ لا ہے ہیں","filterby":"فلٹر کریں","filters":"موجود فلٹر","first":"پہلا","firstName":"پہلا نام","flaggedby":"نے نامناسِبَت کا نِشان لگایا","flaggeddescription":"نامناسِبَت پرچم شدہ وضاحت","flaggedreason":"نامناسِبَت کے نِشان کی وجہ","fnameLname":"اپنا پہلا اور خاندانی نام درج کریں","for":"کے لئے","forDetails":"تفصیلات کے لئے","forMobile":"موبائل کے لئے","forSearch":"{searchString} کے لئے","fullName":"پورا نام","gender":"صنف","getUnlimitedAccess":"اپنے موبائل فون پر آف لائن درسی کتابیں، سبق اور کورسز کی لامحدود رسائی حاصل کریں.","goback":"منسوخ کرنا","grade":"درجہ","grades":"درجے","graphStat":"گراف کے اعداد و شمار","h5parchives":"H5p  آرکائیو","homeUrl":"ہوم یو آر ایل","howToUseDiksha":"DIKSHA ڈیسک ٹاپ ایپ کا استعمال کیسے کریں","howToVideo":"ویڈیو کس طرح بنایئں","htmlarchives":"Html  آرکائیو","imagecontents":"تصویر کے مواد","inAll":"\"تمام\" میں","inUsers":"صارفین میں","inactive":"غیر فعال","institute":"ادارے کا نام","isRootOrg":"روٹورگ ہے","iscurrentjob":"کیا یہ آپ کی موجودہ نوکری ہے","itis":"یہ ہے","keywords":"مطلوبہ الفاظ","language":"زبان(یں) واقف ہیں","last":"آخری","lastAccessed":"آخری بار رسائی حاصل کی گئی:","lastName":"خاندانی نام","lastupdate":"گزشتہ اپ ڈیٹ","learners":"سیکھنے والے","licenseTerms":"لائسنس شرائط","limitsOfArtificialIntell":"مصنوعی انٹیلی جنس کی خامیاں","linkCopied":"لنک کلپ بورڈ پر کاپی کی گئی","linkedContents":"منسلک مواد","linkedIn":"لنکڈان","location":"مقام","lockPopupTitle":"{شراکت دار} فی الحال {مواد کے نام} پر کام کر رہا ہے. بعد میں دوبارہ کوشش کریں.","markas":"نشان زد کریں","medium":"ذریع","mentors":"معلم","mergeAccount":"اکاؤنٹ ضم ","mobileEmailInfoText":"DIKSHA پر سائن ان کرنے کیلئے اپنے موبائل نمبر یا ای میل آئ ڈی درج کریں","mobileNumber":"موبائل نمبر","mobileNumberInfoText":"DIKSHA میں لاگ ان کرنے کے لئے اپنا موبائل نمبر درج کریں","more":"مزید","myBadges":"میرے بیج","mynotebook":"میری نوٹ بک","mynotes":"میرے نوٹس","name":"نام","nameRequired":"نام مطلوب ہے","newPassword":"نیا پاس ورڈ ","next":"اگلا","noContentToPlay":"دکھانے کے لئے کوئ مواد نہیں ","noDataFound":"کوئی ڈیٹا نہیں ملا","offline":"آپ آف لائن ہیں","onDiksha":"پر {instance} پر","online":"آپ  آن لائن ہیں","opndbtch":"بیچ کھولیں","orgCode":"org کوڈ","orgId":"Org آئ ڈی","orgType":"تنظیم کی قسم","organization":"تنظیم","orgname":"تنظیم کا نام","orgtypes":"تنظیم کی قسم","originalAuthor":"اصل مصنف","otpMandatory":"OTP لازمی ہیں","otpSentTo":"OTP بھیجا گیا ہے","otpValidated":"OTP کامیابی سے توثیق شدہ کیا گیا","ownership":"مالکیت","participants":"امیدوار","password":"پاس ورڈ","passwordMismatch":"پاس ورڈ میچ نہیں کررہے، براہ کرم درست پاس ورڈ درج کریں","pdfcontents":"پی ڈی ایف کے مواد","percentage":"فیصد","permanent":"مستقل","phone":"فون نمبر","phoneNumber":"فون نمبر","phoneOrEmail":"فون نمبر یا ای میل آئی ڈی درج کریں","phoneRequired":"فون نمبر مطلوب ہے","phoneVerfied":"فون کی تصدیق","phonenumber":"فون نمبر","pincode":"پن کوڈ","playContent":"مواد چلایۓ","plslgn":"یہ سیشن ختم ہوگیا ہے {instance}$  کا استعمال جاری رکھنے کیلئے دوبارہ لاگ ان کریں.","position":"عہدہ","preferredLanguage":"ترجیحی زبان","previous":"پچھلا","processid":"پروسس شناخت","profilePopup":"آپ کے متعلق  مواد دریافت کرنے کے لئے، درج ذیل تفصیلات کو اپ ڈیٹ کریں ...","provider":"org فراہم کنندہ","publicFooterGetAccess":"DIKSHA پلیٹ فارم اساتذہ، طالب علموں اور والدین کو پیش کردہ اسکول نصاب سے متعلق سیکھنے والی مواد کو مشغول کرتی ہے. DIKSHAapp کو ڈاؤن لوڈ کریں اور اپنے درسوں کو آسان رسائی کے لۓ اپنی درسی کتابوں میں QR کوڈ اسکین کریں.","publishedBy":"اشاعت کردہ","publishedOnInstanceName":"کے ذریعے {instance} پر اشاعت کیا گیا ہے","reEnterPassword":"پاس ورڈ دوبارہ درج کریں.","readless":"کم پڑھئیے","readmore":"...مزید پڑھئے","recoverAccount":"اکاؤنٹ بازیافت کریں۔","redirectMsg":"اس مواد کی بیرونی طور پر میزبانی کی جاتی ہے","redirectWaitMsg":"مواد  لوڈ ہونے تک انتظار کریں","releaseDateKey":"شائع کی تاریخ:","removeAll":"سب کو ہٹا دیں","reportUpdatedOn":"یہ رپورٹ آخری بار اپ ڈیٹ کی گئی تھی","resendOTP":"OTP دوبارہ بھیجیں","resentOTP":"OTP دوبارہ بھیجا گیا ہے.OTP درج کریں","resourcetype":"وسائل کی قسم","retired":"ریٹائرڈ","returnToCourses":"نصاب پر واپس جائیں","role":"کردار","roles":"کردار","rootOrg":"روٹ org","sameEmailId":"یہ ای میل ID وہی ہے جو آپ کے پروفائل میں منسلک ہے","samePhoneNo":"یہ موبائل نمبر وہی ہے جو آپ کے پروفائل میں منسلک ہے","school":"اسکول","search":"تلاش کریں","searchForContent":"6 عددی QR کوڈ درج کریں","searchUserName":"صارف کا نام تلاش کریں","seladdresstype":"پتہ کی قسم منتخب کریں","selectAll":"تمام منتخب کریں","selectBlock":"بلاک منتخب کریں","selectDistrict":"ضلع منتخب کریں","selectSchool":"اسکول منتخب کریں","selectState":"ریاست منتخب کریں","selected":"منتخب شدہ","selectreason":"ایک وجہ منتخب کریں","sesnexrd":"سیشن ختم ہو گیا ہے","setRole":"صارف کو ترمیم کریں","share":"شیئر کریں","sharelink":"لنک کے ذریعے شیئر کریں-","showLess":"کم دکھائیے","showingResults":"نتائج دکھا رہا ہے","showingResultsFor":"{searchString} کے نتائج","signUp":"رجسٹر کریں","signinenrollHeader":"نصاب رجسٹرڈ صارفین کے لئے ہیں. نصاب تک پہنچنے کے لئے لاگ ان کریں.","signinenrollTitle":"اس نصاب میں داخلے  کے لئےلاگ ان کریں.","skillTags":"مہارت ٹیگز","sltBtch":"آگے بڑھنے کے لئے براہ کرم ایک بیچ منتخب کریں","socialmedialinks":"سوشل میڈیا کے لنکس","sortby":"ترتیب سے","startExploringContent":"DIAL کوڈ درج کرکے مواد کی تلاش شروع کریں","startExploringContentBySearch":"QR کوڈ کا استعمال کرتے ہوئے مواد تلاش کریں","startdate":"شروع کرنے کی تاریخ","state":"ریاست","stateRecord":"ریاستی ریکارڈ کے مطابق","subject":"مضمون","subjects":"مضامین","subjectstaught":"موضوع سکھایا","submitOTP":"OTP جمع کریں","subtopic":"ذیلی موضوع","successres":"کامیابی کے نتائج","summary":"خلاصہ","supportedLanguages":"معاون زبانیں:","tableNotAvailable":"اس رپورٹ کے لئے ٹیبل دستیاب نہیں ہے","takenote":"نوٹ لیں","tcfrom":"کب سے","tcno":"نہیں","tcto":"کب تک ","tcyes":"ہاں","tenDigitPhone":"10 عددی موبائیل نمبر","termsAndCond":"شرائط و ضوابط","termsAndCondAgree":"میں استعمال کیےگۓ شرائط و ضوابط سے اتفاق کرتا ہوں","theme":"موضوع","title":"عنوان","toTryAgain":"کے لئے دوبارہ کوشش کریں","topic":"موضوع","topics":"عنوانات","trainingAttended":"ٹریننگ میں شرکت","twitter":"ٹویٹر","unableToUpdateEmail":"ای میل آئ ڈی کو اپ ڈیٹ کرنے میں ناکامی ہوئ","unableToUpdateMobile":"موبائل نمبر کو اپ ڈیٹ کرنے میں ناکامی ہوئ","unableToVerifyEmail":"ای میل آئ ڈی کی تصدیق کرنے میں ناکام؟","unableToVerifyPhone":"فون نمبر کی تصدیق کرنے میں قاصر","unenrollMsg":"کیا آپ اس بیچ سے غیراندراج کرنا چاہتے ہیں؟","unenrollTitle":"بیچ نام نہاد","uniqueEmail":"آپ کی ای میل آئی ڈی پہلے ہی رجسٹرڈ ہے","uniqueEmailId":"یہ ای میل آئی ڈی پہلے ہی استعمال میں ہے. براہ کرم کوئ اور ای میل  آئی ڈی درج کریں.","uniqueMobile":"یہ موبائل نمبر پہلے ہی رجسٹرڈ ہے. ایک اور موبائل نمبر درج کریں.","uniquePhone":"آپ کا فون نمبر پہلے ہی رجسٹرڈ ہے","updateEmailId":"ای میل  آئی ڈی اپ ڈیٹ کریں","updatePhoneNo":"موبائل نمبر اپ ڈیٹ کریں","updatedon":"پر اپ ڈیٹ ہوا","updateorgtype":"تنظیم کی قسم اپ ڈیٹ کریں","upldfile":"اپ لوڈ کی ہوئ فائل","uploadContent":"مواد اپ لوڈ کریں","uploadEcarFromPd":"مواد درآمد کرنے کے لئے ایک پین ڈرائیو سے  ecar. فائلوں کو اپ لوڈ کریں","userFilterForm":"صارفین تلاش کریں","userID":"صارف آئ ڈی","userId":"صارف کی آئ ڈی","userType":"صارف کی قسم","username":"صارف کا نام","validEmail":"ایک درست ای میل آئ ڈی درج کریں","validFor":"۳۰ منٹ کے لئے درست","validPassword":"درست حروفے مخفي درج کریں","validPhone":"ایک درست 10 عددی موبائیل نمبر درج کریں","verifyingCertificate":"سرٹیفیکیٹ کی تصدیق کی جا رہی ہے","versionKey":"تبدیل صورت:","videos":"ویڈیوز","view":"ملاحظہ کریں","viewless":"کم ملاحظہ کریں","viewmore":"مزید دیکھیں","viewworkspace":"اپنے کام کی جگہ دیکھیں","watchCourseVideo":"ویڈیو دیکھئیے","watchVideo":"ویڈیو دیکھئیے","whatsQRCode":"QR کوڈ کیا ہے؟","whatwentwrong":"کیاغلط ہوا؟","whatwentwrongdesc":"ہمیں بتایئے کہ کیا غلط ہوا.صحیح وجوہات کا ذکر کریں تاکہ ہم اس کا جلد از جلد جائزہ لیں اور اس مسئلے کو حل کریں.آپ کی رائے کا شکریہ!","worktitle":"پيشھ/ عہدہ","wrongEmailOTP":"آپ نے ایک غلط OTP درج کیا ہے. آپ کے ای میل آئ ڈی پر موصول ہوا OTP درج کریں. OTP صرف 30 منٹ کے لئے درست ہے.","wrongPhoneOTP":"آپ نے ایک غلط OTP درج کیا ہے. آپ کے فون نمبر پر وصول کردہ OTP درج کریں. OTP صرف 30 منٹ کے لئے درست ہے.","yop":"پاس کرنے کا سال ","indPhoneCode":91,"manage":"Manage","contentManager":"Content Manager","downloading":"Downloading","downloadingPaused":"Downloading paused","uploading":"Uploading","waitingForUpload":"Waiting to upload","waitingForDownload":"Waiting to download","uploadPaused":"Upload paused. Click resume to continue","downloadPaused":"Download paused. Click resume to continue","downloadFailed":"Download failed. Try again","uploadFailed":"Upload Failed. Try again","cancelUpload":"Cancel the upload?","cancelDownload":"Cancel the download?","enterNameNotMatch":"The entry does not match the name registered with {instance}","receiveOTP":"Where would you like to receive the OTP?","willsendOTP":"You will receive an OTP. After you validate it, you can recover your account","enterEightCharacters":"Enter at least 8 characters","enterEmailPhoneAsRegisteredInAccount":"Enter email address/mobile number registered with {instance}","enternameAsRegisteredInAccount":"and the name as on the {instance} account","getOTP":"Get OTP","onlineOnly":"Online only","manageuser":"Manage User","mycourses":"My Courses","mytrainings":"My Trainings","profile":{"State":"State","selectState":"Select State","District":"District","selectDistrict":"Select District ","Board":"Board","selectBoard":"Select Board ","Medium":"Medium","selectMedium":"Select Medium ","Subjects":"Subjects","selectSubjects":"Select Subjects ","Classes":"Classes","selectClasses":"Select Classes ","updatePreferenceHeader":"To discover content relevant to you, update the following details ","yourLocation":"Your Location","yourLocationHeader":"Your location details helps us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit"},"browse":"Online Library","admindshheader":{"index":"Serial No.","districts":"Districts","blocks":"Blocks","schools":"Schools","teachers":"Regd. Teachers"},"authorofsourcecontent":"Author of Source Content","completingCourseSuccessfully":"For successfully completing the training,","noCreditsAvailable":"No credits available","deviceId":"Device ID","downloadCourseQRCode":"Download Training QR Code","downloadQRCode":{"tooltip":"Click to download QR codes and link them to the published training"},"downloadingContent":"Preparing to download {contentName}...","errorMessage":"Error message","externalId":"External Id","lang":"Language","recentlyAdded":"Recently Added","contentType":"Content Type","searchContent":"Type text to search for content. e.g. 'Story'","tncLabel":"I understand and accept the","tncLabelLink":"{instance} Terms of Use","updatecollection":"Update All","updatecontent":"Update Content","passwd":"Password must contain a minimum of 8 characters including numerals, lower and upper case alphabets and special characters.","passwderr":"Password cannot be same as your username.","open":"Open","saveToPenDrive":"Save to Pen drive","goToMyDownloads":"Go to \"My Downloads\" to find this content","lastUpdatedOn":"Last updated on","stateVerified":"State verified user","noDownloads":"No downloads available","enterValidName":"Enter a valid name. Only alphabets are allowed.","improveYourExperience":"Improve your experience","incompatibleBrowser":"You seem to have an incompatible browser or browser version","installAppTitle":"{instance} - National Teachers Platform for India","installAppFree":"Free","installAppPlayStore":"Available on Play Store","installAppDesc":"Store lessons, textbooks and content offline on your device","installApp":"INSTALL APP","viewInBrowser":"VIEW IN BROWSER","graphs":"Graphs","tables":"Data","downloadCsv":"Download data CSV","graphNotAvailable":"This report does not have graphs ","helpUsRatingContent":"Help us by rating this content","play":"PLAY","emailVerfied":"Email verified","orgName":"Org Name","downloadAppLite":"Download {instance} Lite Desktop App","desktopAppDescription":"Install {instance} desktop app to explore downloaded content or to play content from external devices. {instance} Desktop App provides","accountRecoveryDescription":"A recovery account helps you to regain access to your account if you are locked out or forget your password. Choose the recovery account type and enter details","addRecoveryAccount":"Add recovery account","updateRecoveryId":"Update Recovery ID","addRecoveryId":"Add Recovery ID","emailAddress":"Email address","duplicateEmailAddress":"This email address is the same as that linked to your profile","duplicatePhoneNumber":"This mobile number is the same as that linked to your profile","uploadmsg":"Upload the CSV file in the required format","uploadcsvfile":"Upload CSV file","errorinupload":"Error in Upload Users","errorMsg":"To copy the error to a text editor, click the copy to clipboard button","userVarification":"User Verification","enterfullName":"Enter Full name","faqheader":"Frequently asked questions (FAQs)","EnterPassword":"Enter password","fieldsmarked":"Fields marked with an asterisk (*) are mandatory","mandatory":") are mandatory","loginto":"Login to {instance}","OTPhasbeensent":"OTP has been sent","toYourEmailPhone":"to < email address/mobile number >","OTPvalid":"OTP is valid for 30 minutes","registerOn":"Register on {instance}","provideDetails":"Provide details to register on {instance}","register":"Register","oneTimePassword":"One Time Password (OTP)","submit":"Submit","CCbyLicense":"All content here is licensed under a Creative Commons license (CC-BY 4.0) unless otherwise noted.","appUpdateAvailable":"New Update Available!","appUpdateDescription":"Click on the link to get the new version of the desktop app","haventFoundAnyOtherissue":"Haven't found what are you looking for?","reportOtherIssue":"Report Other issue","reportAnIssue":"Report an issue","tellUsMoreAboutProblem":"Tell us more about the problem you faced","typeHere":"Type Here ...","characterleft":"Characters left","issueReportedSuccessfuly":"Issue reported successfully","issueReportedSuccessfulySubNote":"Note: Your issue will be automatically sent to {instance} while online","submitIssueButton":"Submit Issue","validDescription":"Enter valid description","errorWhileGeneratingTicket":"There was a technical error, try again later.","playVideo":"Play Video","learn_more":"Learn more about how to use {instance}","filterContentBy":"Filter content by","showingResultsForwithCount":"Showing {count} results for \"{searchString}\" from","OTPhasbeensentToEmail":"OTP has been sent to your Email Address","OTPhasbeensentToPhone":"OTP has been sent to your Mobile Number","downloadBooks":"Download books to access while offline","allDownloads":"All downloads will be automatically added to","import":"Download books to access while offline","library":"Online Library","drive":"Pendrive or External Drives","loadContentFrom":"Load content from","availableForContribution":"Available for contribution","desktop":{"app":"{instance} Lite Desktop App","update":"Update {instance} Desktop","updateAvailable":"Update available for version","about_us":"About {instance}","explore":"Explore more content","find_more":"Find more textbooks and content on {instance}","yourSearch":"Your search for - \"{key}\"","notMatchContent":"did not match any content","Suggestions":"Suggestions","SuggestionsText1":"Make sure that all words are spelled correctly.","SuggestionsText2":"Try different keywords","SuggestionsText3":"Try more general keywords.","allDownloads":"All downloads","board":"by {board}","updateTextbook":"Update Textbook","downloadBook":"Download Book","deleteContent":"Deleting content {name} will remove it from My Downloads. Click Delete to continue.","deleteCollection":"Deleting textbook {name} will remove it from My Downloads. Click Delete to continue.\n\n","creditsAndLicenceInfo":"Credits And Licence Info","content":"Content","deleteBook":"Delete Book","authorOfSourceContent":"Author of the source content","telemetry":"Telemetry","termsOfUse":"Terms of Use","storageSpaceRunningOutHeader":"Insufficient storage space","failedListLabel":"Could not download or import file(s). Remove unwanted files from your computer and try again","lowMemory":"The app maybe slow as your computer has low memory","lastShared":"Last shared:"},"content":{"DESCRIPTION":"DESCRIPTION","ContentInformation":"Content Information","BOARD":"BOARD","MEDIUM":"MEDIUM","CLASS":"CLASS","SUBJECT":"SUBJECT","LicenseTerms":"License Terms","CreatedOnBy":"CREATED ON {instance} BY","AUTHOR":"AUTHOR","CREATEDON":"CREATED ON","LASTUPDATEDON":"LAST UPDATED ON","KEYWORDS":"KEYWORDS","RESOURCETYPE":"RESOURCE TYPE","COPYRIGHT":"COPYRIGHT"},"selectChapter":"Select Chapter","fromTheTextBook":"from the textbook","downloadAppRecommended":"Recommended for your PC","downloadAppOtherversions":"Other versions","section":"Section","useThis":"Use this:","noResultFoundFor":"No results found for \"{query}\" from","noBookfoundTitle":"Board is adding books","noBookfoundSubTitle":"Your board is yet to add more books. Tap the button to see more books and content on {instance}","noBookfoundButtonText":"See more books and contents"},"btn":{"add":"شامل کریں","addToLibrary":"لائبریری میں شامل کریں","addedToLibrary":"لائبریری میں شامل کیا گیا","addingToLibrary":"لائبریری میں شامل کیا گیا","apply":"لاگو کریں","browse":"براؤز کریں","cancel":"منسوخ کریں","cancelCapitalize":"منسوخ کریں","chksts":"سٹیٹس چیک کریں","clear":"مٹایئں","close":"بند کریں","contentImport":"فائلیں اپ لوڈ کریں","copyLink":"کاپی کریں لنکس","create":"تخلیق کریں","download":"ڈاؤن لوڈ","downloadCertificate":"سرٹیفیکیٹ ڈاؤن لوڈ کریں","downloadCompleted":"ڈاؤن لوڈ مکمل ہوا","downloadDikshaForWindows":"وینڈوز (۶۴ - bit) کیلئے ڈاؤن لوڈ کریں","downloadFailed":"ڈاؤن لوڈ کرنا ناکام ہوگیا","downloadInstruction":"ڈاؤن لوڈ ہدایات دیکھیں","downloadManager":"ڈاؤن لوڈ مینیجر","downloadPdf":"پی ڈی ایف ڈاؤن لوڈ کریں","downloadPending":"ڈاؤن لوڈ جاری ہے","edit":"ترمیم","enroll":"نصاب میں داخلہ","export":"برآمد کریں","login":"لاگ ان کریں","merge":"ضم","myLibrary":"میری لائبریری","next":"آگے","no":"نہیں","ok":"ٹھیک ہے","previous":"گزشتہ","remove":"ہٹایئں","reset":"ری سیٹ کریں","resume":"دوبارہ شروع کریں","resumecourse":"نصاب دوبارہ شروع کریں","save":"محفوظ کریں","selectContentFiles":"فائل منتخب کریں","selectLanguage":"زبان منتخب کریں","selrole":"کردار کا انتخاب کریں","signin":"سائن ان کریں","signup":"رجسٹر کریں","smplcsv":"سی ایس وی کا نمونہ ڈاؤن لوڈ کریں.","submit":"جمع کریں","submitbtn":"جمع کریں","tryagain":"دوبارہ کوشش کریں.","unenroll":"نصاب سے غیر اندراج","update":"اپ ڈیٹ","uploadorgscsv":"تنظیموں کی سی ایس وی اپ لوڈ  کریں","uploadusrscsv":"صارفین کی سی ایس وی اپ لوڈ کریں","verify":"تصدیق","viewCourseStatsDashboard":"نصاب کا ڈش بورڈ دیکھیں","viewcoursestats":"نصاب کے اعداد و شمار دیکھیں","viewless":"کم ملاحظہ کریں","viewmore":"مزید دیکھئیے","yes":"ہاں","yesiamsure":"ہاں مجھے یقین ہے","viewdetails":"View Details","downloadAppForWindows64":"Download for Windows (64-bit)","retry":"Retry","pause":"Pause","pausing":"Pausing","resuming":"Resuming","canceling":"Canceling","canceled":"Canceled","completed":"Completed","profile":{"edit":"Edit","submit":"Submit"},"takeTour":"Take Tour","print":"Print","createNew":"Create New","connectToInternet":"Connect to the Internet to play the content","copytoclipboard":"Copy to clipboard","back":"Back","loadContent":"Load Content","downloadDesktopApp":"Download Desktop App","downloadAppForLinux":"Download for Ubuntu","downloadAppForWindows32":"Download for Windows (32-bit)","desktop":{"shareTelemetry":"Share Telemetry"}},"drpdn":{"female":"خاتون","male":"مرد","transgender":"ٹرانسجینڈر"},"instn":{"t0002":"آپ ایک وقت میں 199 سے زائد تنظیمات کی تفصیلات ایک سی ایس وی فائل میں شامل یا اپ لوڈ کرسکتے ہیں","t0007":"OrgName کالم لازمی ہے. اس کالم میں تنظیم کا نام درج کریں","t0011":"آپ پروسس آئ ڈی کےذریعے پیش رفت کو ٹریک کرسکتے ہیں","t0012":"براہ کرم آپ کے حوالہ کے لئے پروسس آئ ڈی کو محفوظ کریں. آپ پروسس آئ ڈی کے زریعے پیش رفت  کو ٹریک کرسکتے ہیں","t0013":"حوالہ کے لئے سی وی ایس فائل ڈاؤن لوڈ کریں","t0015":"تنظیمات کو اپ لوڈ کریں","t0016":"صارفین کو اپ لوڈ کریں","t0020":"مہارت شامل کرنے کے لئے ٹائپنگ شروع کریں ","t0021":"الگ الگ قطار میں ہر تنظیم کے نام درج کریں","t0022":"دیگر تمام کالمز میں تفصیلات درج کرنا اختیاری ہے:","t0023":"IsRootorg:اس کالم کے لئے درست اقدار حقیقت جھوٹ ہیں","t0024":"چینل: ماسٹر تنظیم کی تخلیق کے دوران فراہم کردہ منفرد آئ ڈی","t0025":"بیرونی آئ ڈی: انتظامی تنظیم کے ذخائر میں ہر تنظیم کے ساتھ منسلک منفرد ID","t0026":"فراہم کنندہ: منتظم تنظیم کے چینل ID","t0027":"وضاحت: تنظیم بیان کرنے کی تفصیلات","t0028":"ہوم Url:تنظیم کا ہوم پیج یو آر ایل","t0029":"orgCode: تنظیم کے منفرد کوڈ، اگر کوئی ہے،","t0030":"orgType: تنظیم کی قسم، جیسے این جی او، پرائمری اسکول، ثانوی اسکول وغیرہ","t0031":"ترجیحی زبان: تنظیم کے لئے زبان کی ترجیحات، اگر کوئی ہو","t0032":"رابطہ تفصیل:تنظیم کا فون نمبر اور ای میل آئ ڈی. تفصیلات ایک سنگل کوٹس میں کرلی بریکٹ کے اندر درج ہونا چاہئے. مثال کے طور پر: [{'فون نمبر ':' 1234567890 '}]","t0049":"چینل لازمی ہے اگر کالم کا وصف isRootOrg سچ ہے تو","t0050":"بیرونی آئ ڈی اور فراہم کنندہ باہمی طور پر لازمی ہیں","t0055":"اوٗپس اعلان کی تفصیلات نہیں ملی!","t0056":"برائے مہربانی دوبارہ کوشش کریں...","t0058":"کے طور پر ڈاؤن لوڈ کریں","t0059":"سی ایس وی","t0060":"شکریہ","t0061":"اوپس..","t0062":"اس نصاب  کے لئے آپ نے ابھی تک  بیچ نہیں بنایا ہے. نیا بیچ بنائیں اور ڈیش بورڈ دوبارہ دیکھیں.","t0063":"آپ نے ابھی تک کوئی نصاب نہیں بنایا ہے. نیا نصاب بنائیں اور ڈیش بورڈ دوبارہ چیک کریں۔","t0064":"ایک ہی قسم کے منتخب کردہ ایک سے زیادہ پتے.  براہ کرم کسی ایک کو تبدیل کریں.","t0065":"ڈاؤن لوڈ","t0070":"سی ایس وی فائل ڈاؤن لوڈ کریں.ایک ہی تنظیم سے تعلق رکھنے والے صارفین کو ایک ہی وقت  میں  ایک ہی سی ایس وی فائل میں اپ لوڈ کیا جا سکتا ہے.","t0071":"صارف اکاؤنٹس کے مندرجہ ذیل لازمی تفصیلات درج کریں:","t0072":"پہلا نام:صارف کا پہلا نام،حروف تہجی","t0073":"فون یا ای میل:صارف کا فون نمبر (دس عدد موبائل نمبر) یا ای میل آئ ڈی.دونوں میں سے ایک کو فراہم کرنا ہوگا، تاہم، اگر دستیاب ہوتو دونوں فراہم کرنے کے لئے مشورہ دیا جاتا ہے","t0074":"صارف کا  نام:تنظیم کے ذریعہ صارف کو منفرد نام تفویض کيا گیا ہے،حروف تہجی","t0076":"نوٹ: سی وی ایس فائل کے دیگر تمام کالم اختیاری ہیں،ان کو بھرنے کے بارے میں تفصیلات کے لئے، سےحوالہ لیجیئے","t0077":"صارفین رجسٹر کریں.","t0078":"مقام آئی ڈی: ایک ایسی شناخت جس میں کسی خاص تنظیم کے عنوان کے اعلان کا اشارہ ہو","t0079":"مقام کا کوڈ:کوما کے ذریعےعلیحدہ کیئے مقام کوڈ کی فہرست","t0081":"دیکشہ پر سائن اپ کرنے کے لئے آپ کا شکریہ.ہم نے ایک sms OTP کو تصدیق کے لئے بھیجا ہے.رجسٹریشن کے عمل کو مکمل کرنے کے لئے آپ کے فون نمبر کو OTP کے ذریعے تصدیق کریں.","t0082":"دیکشہ پر سائن اپ کرنے کے لئے آپ کا شکریہ.ہم نے OTP ای میل کو تصدیق کے لئے بھیجا ہے.رجسٹریشن کے عمل کو مکمل کرنے کے لئے آپ کے ای میل آئ ڈی کو OTP کے ذریعے تصدیق کریں.","t0083":"آپ کو موبائل نمبر کی توثیق کے لئے OTP کے ساتھ ایک ایس ایم ایس مل جائے گا.","t0084":"آپ کو ای میل آئ ڈی کی تصدیق کے لئے OTP کے ساتھ ایک ای میل مل جائے گا.","t0085":"رپورٹ پہلے 10،000 شرکاء کا  ڈاٹا دکھا رہی ہے. بیچ میں تمام شرکاء کی ترقی کو دیکھنے کے لئے ڈاؤن لوڈ پر کلک کریں.","t0066":"Score Report","t0067":"Provide the details below for suggesting content that is relevant for you","t0086":"Copy Content from Pendrive","t0087":"Offline Library","t0088":"Browse online for {instance} content","t0089":"How to use {instance} app","t0090":"Copy {instance} files (eg. Maths_01.ecar) from your pen drive to My Library to play them offline","t0091":"Click My Library to access all your offline content","t0092":"Download content when you are online from {instance} to My Library","t0093":"Watch detailed videos to understand how to use the {instance} desktop app","t0094":"How do I load content to the {instance} desktop app?","t0095":"How do I download content from {instance} Library?","t0096":"My Downloads: How do I play content?","t0097":"How do I copy content to my pen drive?","t0098":"File format for user list upload:","t0099":"Name * (Name of the user as per state records)","t0100":"Identifier * (Mobile number OR email address - either one of the two is mandatory)","t0101":"State * (The State that the user belongs to)","t0102":"Ext Org ID * (School ID as provided in {instance})","t0103":"Ext User ID * (State ID of the user)","t0104":"Input Status (Active, Inactive) * - Enter the record status as provided by the state administrator","t0105":"Roles (System roles to be assigned to the user)","t0106":"Save file as .csv before upload"},"intxt":{"t0001":"نوٹس یا عنوان کی تلاش کریں","t0002":"اپنا تبصرہ شامل کریں","t0005":"بیچ مشیر منتخب کریں","t0006":"بیچ کے ممبران کو منتخب کریں"},"lnk":{"announcement":"اعلان کا ڈیش بورڈ","assignedToMe":"میرے لئے تفویض کیا گیا","contentProgressReport":"مواد کی ترقی کی رپورٹ","contentStatusReport":"مواد کی حالت کی رپورٹ","createdByMe":"میری طرف سے تخلیق","dashboard":"انتظامیہ ڈیش بورڈ","detailedConsumptionMatrix":"تفصیلی کھپت میٹرکس","detailedConsumptionReport":"تفصیلی کھپت رپورٹ","footerContact":"سوالات کے لئے رابطہ کیجئے:","footerDIKSHAForMobile":"موبائل کے لئے DIKSHA","footerDikshaVerticals":"DIKSHA عمودی ","footerHelpCenter":"مدد سنٹر","footerPartners":"شراکت دار","footerTnC":"استعمال کے شرائط","logout":"لاگ آوٹ","myactivity":"میری سرگرمی","profile":"پروفائل","textbookProgressReport":"ٹیکسٹ بک ترقی کی رپورٹ","viewall":"سب ملاحظہ کریں","workSpace":"کام کی جگہ"},"pgttl":{"takeanote":"نوٹ کر یں"},"prmpt":{"deletenote":"کیا آپ کو یقیناً یہ نوٹ مٹانا ہے؟","enteremailID":"اپنی ای میل آئ ڈی درج کریں","enterphoneno":"10 عددی فون نمبر درج کریں","search":"تلاش کریں","userlocation":"مقام"},"scttl":{"blkuser":"صارف کو بلاک کریں","contributions":"شراکت","instructions":"ہدایات:","signup":"رجسٹر کریں","todo":"کرنے کے لئے","error":"Error:"},"snav":{"shareViaLink":"لنک کے ذریعے مشترکہ","submittedForReview":"جائزہ لینے کے لئے جمع"},"tab":{"all":"سب","community":"گروہ","courses":"نصاب","help":"مدد","home":"ہوم","profile":"پروفائل","resources":"دار الکتب","users":"صارفین","workspace":"کام کی جگہ","contribute":"Contribute"},"desktop":{"btn":{"completing":"completing"}}},"completedCourse":"مکمل کئے گئے کورس","messages":{"emsg":{"m0001":"ابھی اندراج نہیں کر سکتے.بعد میں دوبارہ کوشش کریں","m0003":"آپ کو فراہم کنندہ اور بیرونی شناخت یا تنظیم کی شناخت درج کرنا چاہئے","m0005":"کچھ غلط ہو گیا، براہ کرم کچھ وقت بعد کوشش کریں ....","m0007":"سائز سے کم ہونا چاہئے","m0008":"مواد کاپی کرنے سے قاصر. بعد میں دوبارہ کوشش کریں","m0009":"ابھی غیر اندراج نہیں کیا جا سکتا ہے. بعد میں دوبارہ کوشش کریں","m0014":"موبائل نمبر کو اپ ڈیٹ کرنا ناکام ہوگیا","m0015":"ای میل آئ ڈی اپ ڈیٹ کرنا ناکام ہوا","m0016":"ریاست حاصل کرنے میں ناکامی ہوئ. بعد میں دوبارہ کوشش کریں","m0017":"ضلاع حاصل کرنے میں ناکامی ہوئ. بعد میں دوبارہ کوشش کریں","m0018":"پروفائل اپ ڈیٹ کرنا ناکام ہوا","m0019":"رپورٹ ڈاؤن لوڈ کنے میں ناکامی ہوئ ، بعد میں دوبارہ کوشش کریں","m0020":"صارف اپ ڈیٹ کرنا ناکام ہوگیا. بعد میں دوبارہ کوشش کریں","m0021":"Unable to update location. Try again later","m0022":"Unable to update user preference. Please try again after some time.","m0023":"Unable to raise a ticket because you're not connected to the internet","m0024":"Unable to load content. Try again later","desktop":{"offlineStatus":"You are offline","telemetryExportEMsg":"Telemetry Export Failed. Please try again later....","telemetryInfoEMsg":"Unable to get telemetry info. Please try again later..."},"m0076":"No data available to download "},"fmsg":{"m0001":"اندراج نصاب کو حاصل کرنے میں  ناکامی ہوئ، براہ کرم بعد میں دوبارہ کوشش کریں ...","m0002":"دوسرے نصاب  حاصل کرنے میں ناکامی ہوئ، بعد میں دوبارہ کوشش کریں۔۔۔","m0003":"نصاب کے شیڈول کی تفصیل حاصل کرنے میں ناکامی ہوئ۔","m0004":"ڈیٹا حاصل کرنے میں ناکامی ہوئ، براہ کرم تھوڑی دیر بعد دوبارہ کوشش کریں ...","m0030":"نوٹ تخلیق کرنے میں ناکامی ہوئ،بعد میں دوبارہ کوشش کریں۔۔۔","m0032":"نوٹ ہٹانے میں ناکامی ہوئ،بعد میں دوبارہ کوشش کریں۔۔۔","m0033":"نوٹ حاصل کرنے میں ناکامی ہوئ، براہ کرم تھوڑی دیر بعد دوبارہ کوشش کریں ...","m0034":"نوٹ اپ ڈیٹ کرنے میں ناکامی ہوئ،بعد میں دوبارہ کوشش کریں۔۔۔","m0041":"تعلیم مٹانے مین ناکامی ہوئ، براہ کرم بعد میں دوبارہ کوشش کریں..","m0042":"تجربہ مٹانا ناکام ہوا۔","m0043":"پتہ مٹانا ناکام ہو گیا، براہ کرم کچھ دیر بعد دوبارہ کوشش کریں...","m0048":"صارف پروفائل کو اپ ڈیٹ کرنے میں ناکامی ہوئ، براہ کرم بعد میں دوبارہ کوشش کریں ...","m0049":"ڈیٹا لوڈ کرنے میں قاصر","m0050":"درخواست جمع کرنے میں ناکامی ہوئ،بعد میں دوبارہ کوشش کریں۔۔۔","m0051":"کچھ غلط ہو گیا. براہ کرم کچھ دیر بعد دوبارہ کوشش کریں...","m0054":"بیچ تفصیل لانا ناکام ہوا، براہ کرم کچھ دیر بعد پھر سے کوشش کریں۔۔۔","m0056":"صارفین کی فہرست لانا ناکام ہوا، براہ کرم کچھ دیر بعد پھر سے کوشش کریں۔۔","m0076":"براہ کرم لازمی خانے بھریں","m0077":"تلاش کے نتیجے حاصل کرنے میں ناکامی ہوئ","m0079":"بیج تفویض کرنا ناکام ہوگیا، براہ کرم کچھ دیر بعد دوبارہ کوشش کریں...","m0080":"بیج حاصل کرنے میں ناکامی ہوئ، براہ کرم تھوڑی دیر بعد دوبارہ کوشش کریں ...","m0082":"یہ نصاب داخلے  کے لئے کھلا نہیں ہے.","m0085":"ایک تکنیکی خرابی ہو گئ تھی. دوبارہ کوشش کریں.","m0086":"یہ کورس مصنف کی طرف سے ریٹائرکردیا گیا ہے اور اس وجہ سے اب دستیاب نہیں ہے.","m0087":"برائے مہربانی انتظار کریں.","m0088":"ہم تفصیلات حاصل کر رہے ہیں.","m0089":"کوئی مضامین / ذیلی موضوعات نہیں ملے","m0090":"ڈاؤن لوڈ ناکام ہوگیا، کچھ دیر بعد کوشش کریں.","m0091":"مواد برآمد کرنا ناکام ہوگیا","m0093":"{FailedContentLength} مواد اپ لوڈ ناکام","m0094":"ڈاؤن لوڈ ناکام ہوگیا، کچھ دیر بعد دوبارہ کوشش کریں...","m0092":"Could not fetch the download list ","m0095":"Failed to fetch the CSV file, try again later","m0096":"Could not update. Try again later","m0097":"Action failed due to a technical error. Try again","m0099":"Sending content for review failed, please try again later...","m00100":"Rejecting content failed, please try again later...","m00101":"Publishing content failed, please try again later...","m0098":"Updating content failed, try again later"},"imsg":{"m0001":"یہ نصاب نامناسب طور پر نشان دہ کیا گیا ہے اور فی الحال جائزے کے تحت ہے۔ ","m0005":"براہ کرم ایک درست تصویرکی فائل اپ لوڈ کریں. معاون فائل کی اقسام: jpeg، jpg، png. زیادہ سے زیادہ سائز: 4MB.","m0017":"پروفائل تکمیل","m0022":"گزشتہ 7 دنوں کے اعداد و شمار","m0023":"گزشتہ 14 دنوں کے اعداد و شمار","m0024":"گزشتہ 5 ہفتوں کے اعداد و شمار","m0025":"ابتدا سے اعداد و شمار","m0026":"ہیلو، یہ نصاب اب دستیاب نہیں ہے. یہ ممکن ہے کہ خالق نے نصاب  میں کچھ تبدیلییاں کی ہوں.","m0027":"ہیلو، یہ مواد اب دستیاب نہیں ہے. یہ امکان ہے کہ خالق نے مواد میں کچھ تبدیلییں کی ہیں.","m0034":"چونکہ مواد بیرونی ذریعہ سے ہے، یہ تھوڑی دیر میں کھولا جاےگا۔","m0035":"غیر اجازت رسائی","m0036":"مواد کی بیرونی طور پر میزبانی کی جاتی ہے، مواد ملاحظہ کرنے کے لئے براہ مہربانی پیش نظارے پر کلک کریں","m0040":"عمل ابھی تک جاری ہے، برائے مہربانی کچھ دیر بعد کوشش کریں","m0041":"آپ کا پروفائل ہے","m0042":"% مکمل","m0043":"آپ کی پروفائل میں ایک درست ای میل ID نہیں ہے. براہ کرم اپنے ای میل آئ ڈی کو اپ ڈیٹ کریں.","m0044":"ڈاؤن لوڈ ناکام ہوگیا!","m0045":"ڈاؤن لوڈ ناکام ہوگیا ہے. براہ کرم کچھ دیر بعد دوبارہ کوشش کریں.","m0047":"آپ صرف ۱۰۰ امیدوار کو منتخب کر سکتے ہیں","m0061":"کو","m0062":"ورنہ، کلک","m0064":"دوسرے اکاؤنٹ مٹا دیں","m0065":"اکاؤنٹ ضم  کو کامیابی سے شروع کیا گیا","m0066":"مکمل ہونے پر آپکو آگاہ کیا جائیگا","m0067":"اکاؤنٹ ضم شروع نہیں کیا گیا ہے. براہ کرم کچھ دیر بعد کوشش کریں","m0060":"If you have two accounts with {instance}, click","m0063":"combine usage details of both accounts, and","m0072":"Could not merge accounts because the password entered is incorrect.\n","m0073":"Click Create New to create a new {instance} account.","m0074":"Your location details help us to suggest content that is useful to you. Is the location given correct? if not, select your correct location and click Submit","m0070":"Account {identifierValue} already exists on {instance}, If this is your account, click Merge to","m0080":"Could not initiate Account Merge. Log in through your state portal and try again","m0081":"Merging of accounts is in progress. You will receive a notification on your registered email address/mobile number when it is complete","m0071":"Cancel to create new {instance} Account","m0141":"Create new to create a {instance} account.","m0075":"Your Location","m0048":"You must be connected to the internet to view content","m0049":"Have a textbook downloaded on your system/ pen drive? Click the link below to upload","m0050":"Load textbooks to access them offline","desktop":{"m001":"All usage data is synced to the server."}},"smsg":{"m0009":"نوٹ کامیابی سے تخلیق کیا گیا ","m0013":"نوٹ کامیابی سے اپ ڈیٹ ہوا۔۔۔","m0014":"تعلیم کامیابی سے  مٹا دی گئی","m0015":"تجربے کو کامیابی سے مٹا دیا گیا","m0016":"پتہ کامیابی سے مٹا دیا گیا","m0018":"پروفائل کی تصویر کامیابی سے اپ ڈیٹ کی گئی","m0019":"تفصیل کامیابی سے اپ ڈیٹ کی گئی","m0020":"تعلیم کامیابی سے اپ ڈیٹ کی گئی","m0021":"تجربے کو کامیابی سے اپ ڈیٹ کیا گیا","m0022":"اضافی معلومات کامیابی سے اپ ڈیٹ کی گئی","m0023":"پتہ کامیابی سے اپ ڈیٹ ہوا","m0024":"نئی تعلیم کامیابی سے شامل ہوگئی","m0025":"نیا تجربہ کامیابی سے شامل کیا گیا","m0026":"نیا پتہ کامیابی سے شامل کيا گیا","m0028":"کردار کو کامیابی سے اپ ڈیٹ کیا گیا","m0029":"صارف کامیابی سے مٹا دیا گیا","m0030":"صارفین کو کامیابی سے اپ لوڈ کیا گیا ","m0031":"تنظیم کامیابی سے اپ لوڈ کی گئی","m0032":"سٹیٹس کامیابی سے لایا گیا","m0035":"تنظیم کی قسم کامیابی سے شاملل کي گئی","m0036":"نصاب کو کامیابی سے اس بیچ میں داخل کیا گیا ...","m0037":"کامیابی سے اپ ڈیٹ کيا گیا","m0038":"مہارت کامیابی سے اپ ڈیٹ  کی گئی","m0039":"سائن اپ کامیاب ھوا،برائے کرم لاگ ان کریں....","m0040":"پروفائل فیلڈ کی مرئیت کامیابی سے اپ ڈیٹ کی گئی","m0042":"مواد کو کامیابی سے نقل کیا گیا","m0043":"تصدیق کامیاب ہوئ","m0044":"بیج کامیابی سے تفویض کیا گیا","m0045":"صارف کو کامیابی سے بیچ سے غیر اندراج کیا گیا ہے...","m0046":"پروفائل کامیابی سے اپ ڈیٹ کی گئی","m0047":"آپ کے موبائل نمبر کو اپ ڈیٹ کیا گیا ہے.","m0048":"آپ کا ای میل ID اپ ڈیٹ کی گئ","m0049":"صارف کو کامیابی سے اپ ڈیٹ کیا گیا","m0050":"اس مواد کی درجہ بندی کے لئے آپ کا شکریہ!","m0053":"ڈاؤن لوڈ کے لئے قطار میں شامل کردہ مواد","moo41":"اعلان کامیابی سے منسوخ کردیا گیا","m0055":"Updating...","m0056":"You should be online to update the content","m0059":"Content successfully copied","m0060":"Content updated successfully","m0061":"Content sent for review...","m0062":"Content rejected successfully...","m0063":"Content published successfully","m0064":"Content removed successfully","m0051":"Content successfully added to your library","m0052":"Content successfully exported","m0054":"{UploadedContentLength} content(s) uploaded successfully","m0057":"Location updated successfully","m0058":"User preference updated successfully...","desktop":{"telemetryExportSMsg":"Telemetry Exported Successfully"}},"stmsg":{"m0006":"کوئی نتیجہ نہیں ملا","m0007":"براہ کرم کچھ اور تلاش کریں","m0008":"نتیجہ - نہیں","m0009":"دکھانے سے قاصر،  براہ کرم دوبارہ کوشش کریں یا بند کردیں","m0022":"تجزیہ کیلئے اپنے ڈرافٹ میں سے ایک جمع کریں. مواد صرف جائزے کے بعد ہی شائع ہوتا ہے","m0024":"ایک دستاویز، ویڈیو، یا کسی دوسرے سپورٹڈ فارمیٹ میں اپ لوڈ کریں. آپ نے ابھی تک کچھ بھی اپ لوڈ نہیں کیا ہے","m0033":"تجزیہ کیلئے اپنے ڈرافٹ میں سے ایک جمع کریں. آپ نے جائزہ لینے کے لئے ابھی تک کوئی مواد پیش نہیں کیا ہے","m0035":"جائزہ لینے کے لئے کوئی مواد نہیں ہے","m0060":"اپنی پروفائل کو مضبوط بنائیں","m0062":"درست ڈگری درج کریں","m0063":"درست پتا لائن 1 درج کریں","m0064":"شہر درج کریں","m0065":"درست پن کوڈ درج کریں ","m0066":"پہلا نام درج کریں","m0067":"براہ کرم ایک درست فون نمبر فراہم کریں","m0069":"زبان منتخب کریں","m0070":"ادارے کا نام درج کریں","m0072":"درست پيشھ / عہدہ درج کریں","m0073":"درست تنظیم درج کریں","m0077":"ہم آپ کی درخواست جمع کررہے ہیں ...","m0080":"براہ کرم صرف سی ایس وی کی شکل میں فائل اپ لوڈ کریں","m0081":"کوئی بھی بیچ نہیں ملا","m0083":"آپ نے ابھی تک کسی کے ساتھ مواد کا اشتراک نہیں کیا ہے","m0087":"براہ کرم ایک درست صارف نام درج کریں، کم سے کم 5 کردار ہونا ضروری ہے","m0088":"براہ کرم درست حروفے مخفي درج کریں","m0089":"ایک درست ای میل درج کریں","m0090":"براہ کرم زبانیں منتخب کریں","m0091":"درست فون نمبر درج کریں","m0094":"درست فی صد درج کریں","m0095":"آپ کی درخواست کامیابی سے موصول ہوئی ہے. فائل کو بعد میں آپ کے رجسٹرڈ ای میل پتے پر  بھیج دیا جائے گا. براہ کرم باقاعدگی سے اپنے  ای میلز چیک کریں.","m0104":"درست درجہ درج کریں","m0108":"آپ کی پیش رفت","m0113":"درست آغاز کی تاریخ درج کریں","m0116":"منتخب کردہ نوٹ مٹایا جا رہا ہے ...","m0120":"کوئ مواد موجود نہیں ","m0121":"مواد ابھی تک شامل نہیں ہے","m0122":"آپکا ریاست جلد ہی اس QR کوڈ کیلئےموادشامل کریگا- یہ جلد ہی دستیاب ہوگا-","m0123":"ایک دوست سے پوچھیں کہ آپ کو کسی شریک کے طور پر شامل کرنا ہے. آپ کو  ای میل کے ذریعے مطلع کیا جائے گا.","m0125":"وسائل، کتاب، کورس، مجموعہ یا اپ لوڈ بنانے شروع کریں. آپ اس وقت کوئی کام میں پیش رفت کا مسودہ نہیں رکھتے ہیں","m0126":"براہ کرم بورڈ منتخب کریں","m0127":"براہ کرم ذریع کا انتخاب کریں","m0128":"براہ کرم اپنی جماعت کا انتخاب کریں","m0129":"شرائط و ضوابط کی لوڈنگ جاری ہیں","m0130":"ہم ضلع حاصل کر رہے ہیں","m0131":"کوئی رپورٹ نہیں ملی","m0132":"ہمیں آپ کے ڈاؤن لوڈ کی درخواست موصول ہوئی ہے. فائل کو آپ کے رجسٹرڈ ای میل آئ ڈی پر جلد ہی بھیج دیا جائے گا.","m0133":"ڈیسک ٹاپ ایپ کا استعمال  شروع کرنے کیلئے مواد براؤز اور ڈاؤن لوڈ کریں یا اپ لوڈ کریں","m0134":"اندراج","m0135":"براہ کرم درست تاریخ درج کریں","m0136":"اندراج کی آخری تاریخ:","m0139":"DOWNLOADED","m0140":"DOWNLOADING","m0141":"Data unavailable to generate Score Report","m0142":"PAUSED","m0143":"DOWNLOAD","m0092":"Please enter a valid first name","m0137":"Some of the content(s) can only be played when your computer is connected to the Internet. Click Continue to play","m0030":"No textbooks available","m0031":"This imports/ downloads contents from {instance} Online Library when you are connected to Internet","m0036":"This adds contents from your pendrive/ external device connected to {instance} app.","desktop":{"deleteMessage":"Only downloaded content can be played offline","noContentMessage":"Content is coming soon","deleteContentSuccessMessage":"Content deleted successfully","deleteTextbookSuccessMessage":"Textbook deleted successfully","onlineStatus":"You are online"},"m0138":"FAILED"},"desktop":{"stmsg":{"m0142":"This content can only be played online"},"emsg":{"termsOfUse":"Unable to display Terms Of Use. Try again  later","noConnectionTerms":"Connect to the Internet to view the Terms of Use"}},"etmsg":{"desktop":{"deleteContentErrorMessage":"Unable to delete content. Try again later","deleteTextbookErrorMessage":"Unable to delete the textbook. Try again "}}},"orgname":"تنظیم کا نام","participants":"امیدوار","resourceService":{"frmelmnts":{"lbl":{"userId":"صارف آئ ڈی"}}},"t0065":"فائل ڈاؤن لوڈ کریں"},"creation":{"frmelmnts":{"btn":{"yes":"Yes","no":"No","back":"Back","tryagain":"Try again","close":"Close","accept":"Accept","discard":"Discard","anncmntconfirmrecipients":"Confirm recipients","anncmntpreview":"Preview announcement","anncmntsendanncmnt":"Send announcement","anncmnteditrecipients":"Edit recipients","anncmntselectrecipients":"Select recipients","anncmntdtlsview":"View","anncmntgotit":"Got it","save":"Save","addMembers":"Add members","createbatch":"Create batch","cancel":"Cancel","update":"Update","updatebatch":"Update batch","checkListComment":"Comment","checklistCancel":"Cancel","checklistPublish":"Publish","checkListRequestChanges":"Request changes","publish":"Publish","requestChanges":"Request changes","startcreating":"Start creating","login":"Login"},"lbl":{"name":"Name","Name":"Name","email":"Email ID","contact":"Contact","delete":"Delete","pleaseSelect":"Please Select","anncmntttlresend":"Resend Announcement","createnewanncmnt":"Create New Announcement","createnewanncmntdesc":"Fill in all the required fields to create the announcement.","resendanncmntdesc":"You can make any edits required and resend the announcement.","selectrecipient":"Select Announcement Recipients","selectrecipientdesc":"Select locations who should receive the announcement.","editrecipientdesc":"Edit locations who should receive the announcement.","confirmrecipient":"Confirm Announcement Recipients","confirmrecipientdesc":"Review and confirm your announcement recipients.","previewanncmnt":"Preview Announcement","previewanncmntdesc":"This is how your announcement will look.","anncmntstep":"STEP","anncmnttitle":"TITLE","anncmntfrom":"FROM","anncmntfromDesc":"Please enter organisation/department that has sent the announcement","anncmnttype":"ANNOUNCEMENT TYPE","anncmntdesc":"DESCRIPTION (OPTIONAL)","anncmntlink":"URL / WEBLINK","anncmntaddlink":"Add URL/weblink","anncmntaddlinkdesc":"(For example, you can link a Google Form)","anncmntaddmorelink":"Add Another URL/weblink","anncmntuploadfile":"UPLOAD ATTACHMENT","anncmntsentsuccess":"Announcement Sent!","anncmntsentdesc":"Your announcement has been sent to all your recipients. View all your announcement from the Announcement Dashboard.","anncmntcancel":"Are you sure you want to stop creating this announcement","anncmntcanceldesc":"You will lose your work if you close this announcement","organisation":"Organization","organisationName":"Organisation Name","subOrganisation":"Sub-Organization","selectSubOrganisation":"Select Sub-Organization","selectAll":"Select All","unselectAll":"UnSelect All","orgName":"orgName","SelectMentors":"Select Mentors","SelectParticipants":"Select Participants","selected":"Selected","mentors":"Mentors","participants":"Participants","searchMembers":"Search members","createnewbatch":"Create New Batch","createbatch":"Create Batch","batchdetails":"Batch Details","batchmentors":"MENTORS IN THE BATCH","batchselmentors":"SELECTED MENTORS","bacthmembers":"MEMBERS IN THE BATCH","batchparticipants":"SELECTED PARTICIPANTS","batchname":"NAME OF BATCH","aboutbatch":"ABOUT THIS BATCH","startdate":"START DATE","enrollmentenddate":"ENROLLMENT END DATE","enddate":"END DATE","natureofbatch":"BATCH TYPE","inviteonly":"Invite-only","open":"Open","discardChange":"Discard Changes","textbook":"Book","textbookdescription":"Build books using resources for an interesting learning experience.","course":"Course","coursedescription":"Design courses using books, collections and resources. Courses are for a duration, to achieve an objective.","lesson":"Resource","lessondescription":"Create different resources like story, game, activity, audio, video, using the inbuilt authoring tools.","collection":"Collection","collectiondescription":"Compile resources of your choice.","lessonplandescription":"Frame lesson plans with structured sections for an efficient learning experience.","lessonplan":"Lesson Plan","contentupload":"Upload Content","contentuploaddescription":"You can upload content here.","contentCaps":"CONTENT","lastupdate":"Last update","statusCaps":"STATUS","flagReview":"Flag Review","pendingSince":"Pending since","deletecontent":"Delete Content","deleteconfirm":"Are you sure to delete this content?","deletepublishedcontent":"Retire Content","deletepublishedconfirm":"Retire myself from the content?","checkListPublish":"Publish","checklistCancel":"Cancel","showFilters":"Show Filters","sortby":"Sort by","designcourse":"Design Course","createtextbook":"Create Book","createlessontext":"Create Resource","createcollection":"Create Collection","createlessonplan":"Create Lesson Plan","viewCaps":"VIEW","editCaps":"EDIT","authorCaps":"AUTHOR","lastupdatedCaps":"Last Updated","content":"Content","status":"Status","edit":"Edit","author":"Author","publhwarng":"You have given some review comments or suggestions, they will be lost if content is published. Do you want to publish?","play":"Play","assessment":"Course Assessment","courseassessment":"CourseAssessment","assessmentdescription":"Create assessments for courses using the in-built authoring tools","createassessment":"Create Assessment","contentLabel":"Content","courseName":"Course Name","disablePopupText":"This content can not be deleted","contactStateAdminToAdd":"Please contact your state admin to add more participants to this batch"},"prmpt":{"search":"Search","searchContent":"Search content"},"intxt":{"t0006":"Select batch members","t0005":"Select batch mentors","t0007":"Update Batch Details","t0015":"View Batch Details"},"instn":{"t0052":"Please enter description for this announcement (Max: 1200 chars)","t0053":"Enter web url (starting with http or https)","t0054":"Note: At least one of 'Description' or 'URL / weblink' or 'Attachment' must be provided.","t0057":"Please enter relevant title for this announcement (Max: 100 chars)","t0080":"Please wait...Loading comments"},"scttl":{"myworkspace":"My Workspace"},"snav":{"start":"Create","draft":"Drafts","inreview":"Review Submissions","published":"Published","alluploads":"All Uploads","upForReview":"Up For Review","flagged":"Flagged","limitedPublishing":"Limited Publishing","allmycontents":"All My Content","flagReviewer":"Flag Review","Collaboratingon":"Collaborations","submittedForReview":"Submitted for review","shareViaLink":"Shared via link"},"lnk":{"coursebacthes":"Course Batches","createdByMe":"Created by me","assignedToMe":"Assigned to me"}},"messages":{"stmsg":{"m0008":"no-results","m0009":"Unable to play, please try again or close.","m0011":"We are fetching draft content...","m0012":"You don't have any draft content...","m0019":"You don't have any content in review...","m0020":"You don't have any batches...","m0021":"We are fetching published content...","m0022":"You don't have any published content...","m0023":"We are fetching uploaded content...","m0024":"You don't have any uploaded content...","m0025":"We are fetching content detail...","m0032":"We are fetching up for review content...","m0033":"You don't have any content for review...","m0034":"We are deleting the content...","m0038":"We are fetching flagged content...","m0039":"You don't have any flagged content...","m0081":"No batches found","m0082":"We are fetching limited published content...","m0083":"You don't have any limited publish content...","m0101":"Please enter a valid url","m0105":"Title is required","m0106":"Title is too long","m0107":"From is required","m0108":"Your Progress","m0109":"Descripton is too long","m0110":"We are fetching all content...","m0111":"Looks like there is nothing to show here. Please go to “Create” to start creating content","m0112":"Content is coming soon","m0113":"Enter valid startdate","m0135":"Enter a valid date","m0114":"Name is required","m0115":"We are fetching flagged review content...","m0117":"From is too long","m0123":"You are not collaborating on any content yet","m0124":"We are fetching collaborating content...","m0119":"We are updating batch...","m0125":"No content to display. Start Creating Now","m0035":"There is no content to review","m0126":"Start creating Resource, Book, Course, Collection or Upload"},"emsg":{"m0004":"Cannot preview now. Try again later","m0005":"Something went wrong, please try in some time....","m0006":"Please select recipient(s)","m0011":"Fetching review comments failed","m0010":"Creating review comments failed","m0012":"Something went wrong while saving your preferences. Please go to your profile to save your preferences","m0013":"You don't have permission to edit this content"},"imsg":{"m0020":"location is removed sucessfully.","m0027":"Hi, this content is not available now. It is likely that the creator has made some changes to the content.","m0037":"To close this resource, save and click the X icon.","m0038":"To close this","m0039":"please save and click on X icon.","m0046":"You can only select 100 participants."},"fmsg":{"m0004":"Fetching data failed, please try again later...","m0006":"Fetching draft content failed, please try again later...","m0007":"Creating lesson failed. Please login again to create lesson.","m0008":"Creating book failed. Please login again to create book.","m0009":"Creating course failed. Please login again to create course.","m0010":"Creating collection failed. Please login again to create collection.","m0012":"Fetching review content failed, please try again later...","m0013":"Fetching published content failed, please try again later...","m0014":"Fetching uploaded content failed, please try again later...","m0015":"Fetching content detail failed, please try again later...","m0019":"Publishing content failed, please try again later...","m0020":"Rejecting content failed, please try again later...","m0021":"Fetching up for review content failed, please try again later...","m0022":"Deleting content failed, please try again later...","m0023":"Fetching flagged content failed, please try again later...","m0024":"Accepting flag failed, please try again later...","m0025":"Discarding flag failed, please try again later...","m0052":"Creating batch failed, please try again later...","m0053":"Adding users to batch is failed, please try again later...","m0054":"Fetching batch detail failed, please try again later...","m0056":"Fetching users list failed, please try again later...","m0064":"Fetching limited published content failed, please try again later...","m0078":"Creating content failed. Please login again to create content.","m0081":"Fetching all content failed, please try again later...","m0083":"Fetching flagged review content failed, please try again later...","m0084":"Fetching collaborating content failed, please try again later...","m0085":"Fetching CSV failed, please try again later..."},"smsg":{"m0004":"Content published successfully...","m0005":"Content rejected successfully...","m0006":"Content deleted successfully...","m0007":"Flag accepted successfully...","m0008":"Flag discarded successfully...","m0033":"Batch created successfully...","m0034":"Batch updated successfully..."}}}}
\ No newline at end of file