-
Notifications
You must be signed in to change notification settings - Fork 69
/
gt_cached.json
4444 lines (4444 loc) · 289 KB
/
gt_cached.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"": {
"ar": "",
"en": "",
"es": "",
"fr": "",
"it": ""
},
"\nCurrent ticket : ": {
"en": "Current ticket :",
"es": "billete actual:",
"fr": "billet actuel:",
"it": "attuali del biglietto:"
},
"\nOffice : ": {
"en": "Office :",
"es": "Oficina:",
"fr": "Bureau :",
"it": "Ufficio :"
},
"\nTask : ": {
"en": "Task :",
"es": "tarea:",
"fr": "T\u00e2che :",
"it": "Compito :"
},
"\nTickets ahead : ": {
"en": "Tickets ahead :",
"es": "Boletos con anticipaci\u00f3n:",
"fr": "Billets \u00e0 venir:",
"it": "Biglietti in anticipo:"
},
" Opps, a critical error has occurred, we will be ": {
"ar": "\u062d\u062f\u062b \u062e\u0637\u0623 \u0641\u0627\u062f\u062d \u0641\u064a \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0646\u0638\u0627\u0645 , \u0633\u0646\u0643\u0648\u0646 \u0634\u0627\u0643\u0631\u064a\u0646 \u0644\u0643 \u0625\u0646 ",
"en": " Opps, a critical error has occurred, we will be ",
"es": " un error cr\u00edtico ha ocurrido. ",
"fr": " une erreur critique est survenue. veuillez ",
"it": " si \u00e8 verificato un errore critico. "
},
" grateful if you can help fixing it, by reporting to us at : <br><br> ": {
"ar": "\u0642\u0645\u062a \u0628\u062a\u0628\u0644\u064a\u063a\u0646\u0627 \u0639\u0646\u0647 , \u0644\u064a\u062a\u0645 \u0625\u0635\u0644\u0627\u062d\u0647 \u0641\u064a \u0623\u0642\u0631\u0628 \u0648\u0642\u062a <br><br>",
"en": " grateful if you can help fixing it, by reporting to us at : <br><br> ",
"es": "Por favor reporte este error a nosotros en: <br><br> ",
"fr": " nous signaler cette erreur sur: <br><br> ",
"it": " per favore segnalacelo su: : <br><br> "
},
" under Mozilla Public License version 2.0 . <br><br>": {
"ar": " Mozilla Public License version 2.0 . <br>",
"en": " under Mozilla Public License version 2.0 . <br><br>",
"es": " Mozilla Public License version 2.0 . <br><br>",
"fr": " Visitez-nous pour plus d'informations :<br> ",
"it": "Mozilla Public License version 2.0 . <br><br>"
},
" visit us for more infos and how-tos :<br> ": {
"ar": "\u0644\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0648 \u0627\u0644\u0634\u0631\u0648\u062d\u0627\u062a , \u0642\u0645 \u0628\u0632\u064a\u0627\u0631\u0629 : <br>",
"en": " visit us for more infos and how-tos :<br> ",
"es": " vis\u00edtenos para m\u00e1s informaci\u00f3n sobre : <br>",
"fr": "quitter",
"it": " visitaci per maggiori informazioni su :<br> "
},
", This work is a free, open-source project licensed ": {
"ar": "\u062d\u0642\u0648\u0642 \u0646\u0634\u0631 \u0647\u0630\u0627 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0645\u062d\u0641\u0648\u0638\u0629 \u0648 \u062a\u062e\u0636\u0639 \u0644\u0631\u062e\u0635\u0629 \u0627\u0644\u0628\u0631\u0627\u0645\u062c \u0627\u0644\u062d\u0631\u0629 \u0648 \u0645\u0641\u062a\u0648\u062d\u0629 \u0627\u0644\u0645\u0635\u062f\u0631 ",
"en": ", This work is a free, open-source project licensed ",
"es": ", Este trabajo es un proyecto gratuito de c\u00f3digo abierto con licencia bajo ",
"fr": " Mozilla Public License version 2.0 . <br><br>",
"it": ", questo lavoro \u00e8 un progetto open source gratuito concesso in licenza "
},
"1 time": {
"ar": "1 \u0645\u0631\u0629",
"en": "1 time",
"es": "1 vez",
"fr": "Une fois",
"it": "1 volta"
},
"10 times": {
"ar": "10 \u0645\u0631\u0627\u062a",
"en": "10 times",
"es": "10 veces",
"fr": "10 fois",
"it": "10 volte"
},
"2 times": {
"ar": "2 \u0645\u0631\u0627\u062a",
"en": "2 times",
"es": "2 veces",
"fr": "2 fois",
"it": "2 volte"
},
"3 times": {
"ar": ".\u062b\u0644\u0627\u062b \u0645\u0631\u0627\u062a",
"en": "3 times",
"es": "3 veces",
"fr": "3 fois",
"it": "3 volte"
},
"4 times": {
"ar": "4 \u0645\u0631\u0627\u062a",
"en": "4 times",
"es": "4 veces",
"fr": "4 fois",
"it": "4 volte"
},
"5 times": {
"ar": "5 \u0645\u0631\u0627\u062a",
"en": "5 times",
"es": "5 veces",
"fr": "5 fois",
"it": "5 volte"
},
"6 times": {
"ar": "6 \u0645\u0631\u0627\u062a",
"en": "6 times",
"es": "6 veces",
"fr": "6 fois",
"it": "6 volte"
},
"7 times": {
"ar": "7 \u0645\u0631\u0627\u062a",
"en": "7 times",
"es": "7 veces",
"fr": "7 fois",
"it": "7 volte"
},
"8 times": {
"ar": "8 \u0645\u0631\u0627\u062a",
"en": "8 times",
"es": "8 veces",
"fr": "8 fois",
"it": "8 volte"
},
"9 times": {
"ar": "9 \u0645\u0631\u0627\u062a",
"en": "9 times",
"es": "9 veces",
"fr": "9 fois",
"it": "9 volte"
},
"A sound tune that will be played whenever the customer select a task of his choice": {
"ar": "\u0646\u063a\u0645\u0629 \u0635\u0648\u062a \u064a\u062a\u0645 \u062a\u0634\u063a\u064a\u0644\u0647\u0627 \u0639\u0646\u062f\u0645\u0627 \u064a\u062e\u062a\u0627\u0631 \u0627\u0644\u0639\u0645\u064a\u0644 \u0645\u0647\u0645\u0629 \u0645\u0646 \u0627\u062e\u062a\u064a\u0627\u0631\u0647",
"en": "A sound tune that will be played whenever the customer select a task of his choice",
"es": "Una canci\u00f3n sonora que se reproducir\u00e1 siempre que el cliente seleccione una tarea de su elecci\u00f3n",
"fr": "Une m\u00e9lodie sonore qui sera jou\u00e9e chaque fois que le client choisit une t\u00e2che de son choix",
"it": "Una melodia che verr\u00e0 riprodotta ogni volta che il cliente seleziona un compito a sua scelta"
},
"A sound tune that will be played whenever the customer ticket has been pulled . As well as a text to speech announcement which will be played in the language selected": {
"ar": "\u0646\u063a\u0645\u0629 \u0635\u0648\u062a \u0633\u062a\u0644\u0639\u0628 \u0643\u0644\u0645\u0627 \u062a\u0645 \u0633\u062d\u0628 \u062a\u0630\u0643\u0631\u0629 \u0627\u0644\u0639\u0645\u064a\u0644. \u0641\u0636\u0644\u0627 \u0639\u0646 \u0625\u0639\u0644\u0627\u0646 \u0627\u0644\u0646\u0635 \u0625\u0644\u0649 \u0627\u0644\u062e\u0637\u0627\u0628 \u0627\u0644\u0630\u064a \u0633\u064a\u062a\u0645 \u0644\u0639\u0628\u0647 \u0628\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u0629",
"en": "A sound tune that will be played whenever the customer ticket has been pulled . As well as a text to speech announcement which will be played in the language selected",
"es": "Una melod\u00eda sonora que se reproducir\u00e1 cada vez que se retire el ticket del cliente. Adem\u00e1s de un anuncio de texto a discurso que se reproducir\u00e1 en el idioma seleccionado",
"fr": "Un morceau sonore qui sera jou\u00e9 chaque fois que le ticket client a \u00e9t\u00e9 tir\u00e9. Ainsi qu'une annonce texte-discours qui sera jou\u00e9e dans la langue s\u00e9lectionn\u00e9e",
"it": "Una melodia che verr\u00e0 riprodotta ogni volta che viene estratto il ticket del cliente. Cos\u00ec come un annuncio di sintesi vocale che verr\u00e0 riprodotto nella lingua selezionata"
},
"API": {
"ar": "API",
"en": "API",
"es": "API",
"fr": "API",
"it": "API"
},
"API documentation": {
"ar": "\u0648\u062b\u0627\u0626\u0642 API",
"en": "API documentation",
"es": "documentaci\u00f3n de la API",
"fr": "documentation de l'API",
"it": "documentazione API"
},
"About FQM": {
"ar": "\u0639\u0646 \u0627\u0644\u0646\u0638\u0627\u0645",
"en": "About FQM",
"es": "sobre FQM",
"fr": "\u00e0 propos de FQM",
"it": "su FQM"
},
"Actions": {
"ar": "\u0623\u0641\u0639\u0627\u0644",
"en": "Actions",
"es": "Comportamiento",
"fr": "actes",
"it": "Azioni"
},
"Activated": {
"ar": "\u0645\u0641\u0639\u0644",
"en": "Activated",
"es": "Activado",
"fr": "Activ\u00e9",
"it": "Attivato"
},
"Add": {
"ar": "\u0625\u0636\u0627\u0641\u0629",
"en": "Add",
"es": "A\u00f1adir",
"fr": "Ajouter",
"it": "Inserisci"
},
"Add a slide": {
"ar": "\u0623\u0636\u0641 \u0634\u0631\u064a\u062d\u0629",
"en": "Add a slide",
"es": "A\u00f1adir una diapositiva",
"fr": "Ajouter une diapositive",
"it": "Aggiungi una diapositiva"
},
"Add common task": {
"ar": "\u0625\u0636\u0627\u0641\u0629 \u0645\u0647\u0645\u0629 \u0645\u0634\u062a\u0631\u0643\u0629",
"en": "Add common task",
"es": "A\u00f1adir tarea com\u00fan",
"fr": "Ajouter une t\u00e2che commune",
"it": "Aggiungi un'attivit\u00e0 comune"
},
"Add media": {
"ar": "\u0623\u0636\u0641 \u0627\u0644\u0648\u0633\u0627\u0626\u0637",
"en": "Add media",
"es": "Agregar medios",
"fr": "Ajouter des m\u00e9dias",
"it": "Aggiungi media"
},
"Add new office": {
"ar": "\u0625\u0636\u0627\u0641\u0629 \u0645\u0643\u062a\u0628 \u062c\u062f\u064a\u062f",
"en": "Add new office",
"es": "A\u00f1adir nueva oficina",
"fr": "Ajouter un nouveau bureau",
"it": "Aggiungi nuovo ufficio"
},
"Add new task": {
"ar": "\u0625\u0636\u0627\u0641\u0629 \u0645\u0647\u0645\u0629 \u062c\u062f\u064a\u062f\u0629",
"en": "Add new task",
"es": "Agregar nueva tarea",
"fr": "Ajouter une nouvelle t\u00e2che",
"it": "Aggiungi nuova attivit\u00e0"
},
"Add new user": {
"ar": "\u0625\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645 \u062c\u062f\u064a\u062f",
"en": "Add new user",
"es": "A\u00f1adir nuevo usuario",
"fr": "Ajouter un nouvel utilisateur",
"it": "Aggiungi nuovo utente"
},
"Add office": {
"ar": "\u0623\u0636\u0641 \u0645\u0643\u062a\u0628",
"en": "Add office",
"es": "Agregar oficina",
"fr": "Ajouter un bureau",
"it": "Aggiungi ufficio"
},
"Add task": {
"ar": "\u0625\u0636\u0627\u0641\u0629 \u0645\u0647\u0645\u0629",
"en": "Add task",
"es": "Agregar tarea",
"fr": "Ajouter une t\u00e2che",
"it": "Aggiungi attivit\u00e0"
},
"Add token": {
"ar": "\u0625\u0636\u0627\u0641\u0629 \u0631\u0645\u0632",
"en": "Add token",
"es": "A\u00f1adir s\u00edmbolo",
"fr": "Ajouter jeton",
"it": "Aggiungere Token"
},
"Add user": {
"ar": "\u0625\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645",
"en": "Add user",
"es": "Agregar usuario",
"fr": "Ajouter un utilisateur",
"it": "Aggiungi utente"
},
"Additional preferences and settings to control certain features within the display screen": {
"ar": "\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0648\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0625\u0636\u0627\u0641\u064a\u0629 \u0644\u0644\u0633\u064a\u0637\u0631\u0629 \u0639\u0644\u0649 \u0645\u064a\u0632\u0627\u062a \u0645\u0639\u064a\u0646\u0629 \u0641\u064a \u0634\u0627\u0634\u0629 \u0627\u0644\u0639\u0631\u0636",
"en": "Additional preferences and settings to control certain features within the display screen",
"es": "preferencias y ajustes adicionales para controlar ciertas funciones dentro de la pantalla de visualizaci\u00f3n",
"fr": "pr\u00e9f\u00e9rences et param\u00e8tres suppl\u00e9mentaires pour contr\u00f4ler certaines fonctions au sein de l'\u00e9cran d'affichage",
"it": "preferenze e le impostazioni aggiuntive per controllare alcune funzioni all'interno dello schermo di visualizzazione"
},
"Administration": {
"ar": "\u0627\u0644\u0627\u062f\u0627\u0631\u0629",
"en": "Administration",
"es": "Administraci\u00f3n",
"fr": "Administration",
"it": "Amministrazione"
},
"Administrators": {
"ar": "\u0627\u0644\u0645\u0633\u0624\u0648\u0644\u064a\u0646",
"en": "Administrators",
"es": "Administradores",
"fr": "Administrateurs",
"it": "Amministratori"
},
"Alias : gives you the ability to change the default naming of the main components into something relevant to your environment. Changes will effect printed, registered tickets and text-to-speech announcements.": {
"ar": "\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631: \u064a\u0645\u0646\u062d\u0643 \u0627\u0644\u0642\u062f\u0631\u0629 \u0639\u0644\u0649 \u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u0644\u0644\u0645\u0643\u0648\u0646\u0627\u062a \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0625\u0644\u0649 \u0634\u064a\u0621 \u0630\u064a \u0635\u0644\u0629 \u0628\u0628\u064a\u0626\u062a\u0643. \u0633\u062a\u0624\u062b\u0631 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0639\u0644\u0649 \u0627\u0644\u0646\u0634\u0631\u0627\u062a \u0627\u0644\u0645\u0637\u0628\u0648\u0639\u0629 \u0648\u0627\u0644\u0645\u0633\u062c\u0644\u0629 \u0648\u0625\u0639\u0644\u0627\u0646\u0627\u062a \u062a\u062d\u0648\u064a\u0644 \u0627\u0644\u0646\u0635 \u0625\u0644\u0649 \u0643\u0644\u0627\u0645.",
"en": "Alias : gives you the ability to change the default naming of the main components into something relevant to your environment. Changes will effect printed, registered tickets and text-to-speech announcements.",
"es": "Alias: le da la capacidad de cambiar el nombre predeterminado de los componentes principales en algo relevante para su entorno. Los cambios afectar\u00e1n los boletos impresos, registrados y los anuncios de texto a voz.",
"fr": "Alias: vous permet de modifier la d\u00e9nomination par d\u00e9faut des composants principaux en quelque chose de pertinent pour votre environnement. Les changements auront une incidence sur les billets imprim\u00e9s et enregistr\u00e9s et les annonces textuelles.",
"it": "Alias: ti d\u00e0 la possibilit\u00e0 di cambiare la denominazione predefinita dei componenti principali in qualcosa di rilevante per il tuo ambiente. Le modifiche avranno effetto su biglietti stampati, registrati e annunci da testo a voce."
},
"Alias must be at least of 2 and at most 10 letters": {
"ar": "\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 2 \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 \u0648\u0639\u0644\u0649 \u0627\u0644\u0623\u0643\u062b\u0631 10 \u0623\u062d\u0631\u0641",
"en": "Alias must be at least of 2 and at most 10 letters",
"es": "Alias \u200b\u200bdebe tener al menos 2 y como m\u00e1ximo 10 letras",
"fr": "L'alias doit \u00eatre au moins de 2 et au plus 10 lettres",
"it": "L'alias deve essere almeno di 2 e al massimo 10 lettere"
},
"Alias template": {
"ar": "\u0642\u0627\u0644\u0628 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631",
"en": "Alias template",
"es": "Plantilla Alias",
"fr": "Alias \u200b\u200bmod\u00e8le",
"it": "Modello alias"
},
"Aliases": {
"ar": "\u0627\u0633\u0645\u0627\u0621 \u0645\u0633\u062a\u0639\u0627\u0631\u0629",
"en": "Aliases",
"es": "Alias",
"fr": "Alias",
"it": "alias"
},
"All credit reserved to the author of FQM version ": {
"ar": " \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u062d\u0634\u0648\u062f \u0627\u0644\u062d\u0631 \u0627\u0644\u0646\u0633\u062e\u0629 ",
"en": "All credit reserved to the author of FQM version ",
"es": "Todo el cr\u00e9dito reservado al autor de la versi\u00f3n FQM ",
"fr": ", Ce travail est un projet libre et open-source sous licence ",
"it": "Tutto il credito \u00e8 riservato all'autore della versione FQM "
},
"All credit reserved to the author of FQM. This work is a free, open-source project licensed under Mozilla Public License version 2.0 .": {
"ar": "\u062c\u0645\u064a\u0639 \u0627\u0644\u0627\u0626\u062a\u0645\u0627\u0646 \u0645\u062d\u0641\u0648\u0638\u0629 \u0644\u0645\u0624\u0644\u0641 FQM. \u0647\u0630\u0627 \u0627\u0644\u0639\u0645\u0644 \u0647\u0648 \u0645\u0634\u0631\u0648\u0639 \u0645\u062c\u0627\u0646\u064a \u0645\u0641\u062a\u0648\u062d \u0627\u0644\u0645\u0635\u062f\u0631 \u0645\u0631\u062e\u0635 \u0628\u0645\u0648\u062c\u0628 \u0627\u0644\u0625\u0635\u062f\u0627\u0631 2.0 \u0645\u0646 Mozilla Public License.",
"en": "All credit reserved to the author of FQM. This work is a free, open-source project licensed under Mozilla Public License version 2.0 .",
"es": "Todo el cr\u00e9dito reservado al autor de FQM. Este trabajo es un proyecto gratuito de c\u00f3digo abierto con licencia de Mozilla Public License versi\u00f3n 2.0.",
"fr": "Tout le cr\u00e9dit r\u00e9serv\u00e9 \u00e0 l'auteur de FQM. Ce travail est un projet libre et open-source sous licence publique Mozilla version 2.0.",
"it": "Tutto il credito \u00e8 riservato all'autore di FQM. Questo lavoro \u00e8 un progetto open source gratuito concesso in licenza con Mozilla Public License versione 2.0."
},
"All tickets": {
"ar": "\u062c\u0645\u064a\u0639 \u0627\u0644\u062a\u0630\u0627\u0643\u0631",
"en": "All tickets",
"es": "Todos los boletos",
"fr": "Tous les billets",
"it": "Tutti i biglietti"
},
"All users": {
"ar": "\u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646",
"en": "All users",
"es": "Todos los usuarios",
"fr": "Tous les utilisateurs",
"it": "Tutti gli utenti"
},
"Allowing the admin and his assigned operators to manage the flow of tickets, by adding, modifying offices and task which are the virtual representation of the actual offices, tasks on-which tickets will be stored and pulled from to ease the process of dealing with queue management.": {
"ar": "\u0627\u0644\u0633\u0645\u0627\u062d \u0644\u0644\u0645\u0633\u0626\u0648\u0644\u064a\u0646 \u0648\u0627\u0644\u0645\u0634\u063a\u0644\u064a\u0646 \u0627\u0644\u0645\u0639\u064a\u0646\u064a\u0646 \u0644\u0647 \u0628\u0625\u062f\u0627\u0631\u0629 \u062a\u062f\u0641\u0642 \u0627\u0644\u062a\u0630\u0627\u0643\u0631 \u060c \u0639\u0646 \u0637\u0631\u064a\u0642 \u0625\u0636\u0627\u0641\u0629 \u0648\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0643\u0627\u062a\u0628 \u0648\u0627\u0644\u0645\u0647\u0627\u0645 \u0627\u0644\u062a\u064a \u062a\u0645\u062b\u0644 \u0627\u0644\u062a\u0645\u062b\u064a\u0644 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a \u0644\u0644\u0645\u0643\u0627\u062a\u0628 \u0627\u0644\u0641\u0639\u0644\u064a\u0629 \u060c \u0648\u0633\u064a\u062a\u0645 \u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u0647\u0627\u0645 \u0627\u0644\u062a\u064a \u064a\u062a\u0645 \u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u062a\u0630\u0627\u0643\u0631 \u0639\u0644\u064a\u0647\u0627 \u0648\u0633\u062d\u0628\u0647\u0627 \u0644\u062a\u0633\u0647\u064a\u0644 \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062a\u0639\u0627\u0645\u0644 \u0645\u0639 \u0627\u0644\u0637\u0627\u0628\u0648\u0631 \u0625\u062f\u0627\u0631\u0629.",
"en": "Allowing the admin and his assigned operators to manage the flow of tickets, by adding, modifying offices and task which are the virtual representation of the actual offices, tasks on-which tickets will be stored and pulled from to ease the process of dealing with queue management.",
"es": "Permitir que el administrador y sus operadores asignados administren el flujo de tickets, agregando, modificando oficinas y tareas, que son la representaci\u00f3n virtual de las oficinas reales, tareas en las cuales se almacenar\u00e1n y extraer\u00e1n tickets para facilitar el proceso de hacer frente a la cola administraci\u00f3n.",
"fr": "Permettre \u00e0 l'administrateur et \u00e0 ses op\u00e9rateurs assign\u00e9s de g\u00e9rer le flux de tickets, en ajoutant, en modifiant les bureaux et les t\u00e2ches qui sont la repr\u00e9sentation virtuelle des bureaux r\u00e9els, les t\u00e2ches sur lesquelles les tickets seront stock\u00e9s et retir\u00e9s pour faciliter le traitement de la file la gestion.",
"it": "Consentire all'amministratore e ai suoi operatori assegnati di gestire il flusso di biglietti, aggiungendo, modificando uffici e attivit\u00e0 che rappresentano la rappresentazione virtuale degli uffici effettivi, attivit\u00e0 su cui i ticket verranno archiviati e prelevati per facilitare il processo di gestione della coda gestione."
},
"Allowing the admin and his permitted operators to add an office, that will later on contain multiple task and tickets, that will be always referenced to the created office via its chosen unique number and prefix, which will be used as a visual key code to reference tickets to their offices.": {
"ar": "\u0627\u0644\u0633\u0645\u0627\u062d \u0644\u0644\u0645\u0633\u0624\u0648\u0644 \u0648\u0645\u0634\u063a\u0644\u064a\u0647 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0644\u0647\u0645 \u0628\u0625\u0636\u0627\u0641\u0629 \u0645\u0643\u062a\u0628 \u060c \u0648\u0627\u0644\u0630\u064a \u0633\u064a\u062d\u062a\u0648\u064a \u0644\u0627\u062d\u0642\u064b\u0627 \u0639\u0644\u0649 \u0645\u0647\u0627\u0645 \u0648\u062a\u0630\u0627\u0643\u0631 \u0645\u062a\u0639\u062f\u062f\u0629 \u060c \u0648\u0627\u0644\u062a\u064a \u0633\u064a\u062a\u0645 \u0627\u0644\u0631\u062c\u0648\u0639 \u0625\u0644\u064a\u0647\u0627 \u062f\u0627\u0626\u0645\u064b\u0627 \u0625\u0644\u0649 \u0627\u0644\u0645\u0643\u062a\u0628 \u0627\u0644\u0630\u064a \u062a\u0645 \u0625\u0646\u0634\u0627\u0624\u0647 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0627\u0644\u0631\u0642\u0645 \u0648\u0627\u0644\u0641\u0631\u064a\u062f \u0627\u0644\u0644\u0630\u064a\u0646 \u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631\u0647\u0645\u0627 \u060c \u0648\u0627\u0644\u0630\u064a \u0633\u064a\u062a\u0645 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647 \u0643\u0631\u0645\u0632 \u0645\u0641\u062a\u0627\u062d \u0645\u0631\u0626\u064a \u0644\u0644\u0625\u0634\u0627\u0631\u0629 \u0625\u0644\u064a\u0647 \u062a\u0630\u0627\u0643\u0631 \u0644\u0645\u0643\u0627\u062a\u0628\u0647\u0645.",
"en": "Allowing the admin and his permitted operators to add an office, that will later on contain multiple task and tickets, that will be always referenced to the created office via its chosen unique number and prefix, which will be used as a visual key code to reference tickets to their offices.",
"es": "Permitir que el administrador y sus operadores permitidos agreguen una oficina, que luego contendr\u00e1 m\u00faltiples tareas y tickets, que siempre ser\u00e1n referenciados a la oficina creada a trav\u00e9s de su n\u00famero exclusivo y prefijo, que se usar\u00e1 como un c\u00f3digo de tecla visual para referencia entradas a sus oficinas.",
"fr": "Permettre \u00e0 l'administrateur et \u00e0 ses op\u00e9rateurs autoris\u00e9s d'ajouter un bureau, qui contiendra plus tard plusieurs t\u00e2ches et tickets, qui seront toujours r\u00e9f\u00e9renc\u00e9s au bureau cr\u00e9\u00e9 via son num\u00e9ro unique choisi et son pr\u00e9fixe, qui servira de code visuel pour r\u00e9f\u00e9rence des billets pour leurs bureaux.",
"it": "Consentendo all'amministratore e ai suoi operatori autorizzati di aggiungere un ufficio, che in seguito includer\u00e0 pi\u00f9 attivit\u00e0 e ticket, verr\u00e0 sempre fatto riferimento all'ufficio creato tramite il numero e il prefisso univoci scelti, che verranno utilizzati come codice di riferimento visivo per riferimento biglietti per i loro uffici."
},
"Allowing the admin and his permitted operators to replay the chosen audio announcements on the display screen.": {
"ar": "\u0627\u0644\u0633\u0645\u0627\u062d \u0644\u0644\u0645\u0634\u0631\u0641 \u0648\u0645\u0634\u063a\u0644\u064a\u0647 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0644\u0647\u0645 \u0628\u0625\u0639\u0627\u062f\u0629 \u0639\u0631\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a \u0627\u0644\u0635\u0648\u062a\u064a\u0629 \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u0629 \u0639\u0644\u0649 \u0634\u0627\u0634\u0629 \u0627\u0644\u0639\u0631\u0636.",
"en": "Allowing the admin and his permitted operators to replay the chosen audio announcements on the display screen.",
"es": "Permitir que el administrador y sus operadores autorizados reproduzcan los anuncios de audio elegidos en la pantalla de visualizaci\u00f3n.",
"fr": "Permettre \u00e0 l'administrateur et \u00e0 ses op\u00e9rateurs autoris\u00e9s de rejouer les annonces audio choisies sur l'\u00e9cran d'affichage.",
"it": "Consentendo all'amministratore e ai suoi operatori autorizzati di riprodurre gli annunci audio scelti sullo schermo del display."
},
"Allowing the user to customize every bit of the interface, which the customer be confronted and interacts with. Every element style has the option to be customized with its font, color, size and background color. Via the simple navigation bar on the side each main component is displayed with its own customizable element listed under it.": {
"ar": "\u0627\u0644\u0633\u0645\u0627\u062d \u0644\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0628\u062a\u062e\u0635\u064a\u0635 \u0643\u0644 \u062c\u0632\u0621 \u0645\u0646 \u0627\u0644\u0648\u0627\u062c\u0647\u0629 \u060c \u0627\u0644\u062a\u064a \u064a\u0648\u0627\u062c\u0647\u0647\u0627 \u0627\u0644\u0639\u0645\u064a\u0644 \u0648\u064a\u062a\u0641\u0627\u0639\u0644 \u0645\u0639\u0647\u0627. \u064a\u062d\u062a\u0648\u064a \u0643\u0644 \u0639\u0646\u0635\u0631 \u0645\u0646 \u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0639\u0646\u0635\u0631 \u0639\u0644\u0649 \u062e\u064a\u0627\u0631 \u062a\u062e\u0635\u064a\u0635\u0647 \u0645\u0639 \u0627\u0644\u062e\u0637 \u0648\u0627\u0644\u0644\u0648\u0646 \u0648\u0627\u0644\u062d\u062c\u0645 \u0648\u0644\u0648\u0646 \u0627\u0644\u062e\u0644\u0641\u064a\u0629. \u0639\u0628\u0631 \u0634\u0631\u064a\u0637 \u0627\u0644\u062a\u0646\u0642\u0644 \u0627\u0644\u0628\u0633\u064a\u0637 \u0639\u0644\u0649 \u0627\u0644\u062c\u0627\u0646\u0628 \u060c \u064a\u062a\u0645 \u0639\u0631\u0636 \u0643\u0644 \u0645\u0643\u0648\u0646 \u0631\u0626\u064a\u0633\u064a \u0645\u0639 \u0639\u0646\u0635\u0631 \u0642\u0627\u0628\u0644 \u0644\u0644\u062a\u062e\u0635\u064a\u0635 \u0645\u062f\u0631\u062c \u062a\u062d\u062a\u0647.",
"en": "Allowing the user to customize every bit of the interface, which the customer be confronted and interacts with. Every element style has the option to be customized with its font, color, size and background color. Via the simple navigation bar on the side each main component is displayed with its own customizable element listed under it.",
"es": "Permitiendo al usuario personalizar cada bit de la interfaz, con lo que el cliente se enfrenta e interact\u00faa. Cada estilo de elemento tiene la opci\u00f3n de personalizarse con su fuente, color, tama\u00f1o y color de fondo. A trav\u00e9s de la barra de navegaci\u00f3n simple en el costado, cada componente principal se muestra con su propio elemento personalizable listado debajo.",
"fr": "Permettre \u00e0 l'utilisateur de personnaliser chaque bit de l'interface, auquel le client est confront\u00e9 et interagit. Chaque style d'\u00e9l\u00e9ment a la possibilit\u00e9 d'\u00eatre personnalis\u00e9 avec sa police, sa couleur, sa taille et sa couleur d'arri\u00e8re-plan. Via la barre de navigation simple sur le c\u00f4t\u00e9, chaque composant principal est affich\u00e9 avec son propre \u00e9l\u00e9ment personnalisable r\u00e9pertori\u00e9 en dessous.",
"it": "Consentendo all'utente di personalizzare ogni bit dell'interfaccia, con cui il cliente pu\u00f2 confrontarsi e interagire. Ogni stile di elemento ha la possibilit\u00e0 di essere personalizzato con il suo carattere, colore, dimensione e colore di sfondo. Attraverso la semplice barra di navigazione sul lato, ogni componente principale viene visualizzato con il proprio elemento personalizzabile elencato sotto di esso."
},
"Allows the admin, permitted by admin operators to search with given parameters of ticket number, ticket prefix and or ticket date to reach to the specific ticket meant to be searched in a dynamic and fixable manner, that was well intended in design.": {
"ar": "\u064a\u0633\u0645\u062d \u0644\u0644\u0645\u0634\u0631\u0641 \u060c \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0628\u0647 \u0645\u0646 \u0642\u0650\u0628\u0644 \u0645\u0634\u063a\u0644\u064a \u0627\u0644\u0645\u0634\u0631\u0641 \u0628\u0627\u0644\u0628\u062d\u062b \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u0639\u0644\u0645\u0627\u062a \u0645\u0639\u064a\u0646\u0629 \u0645\u0646 \u0631\u0642\u0645 \u0627\u0644\u062a\u0630\u0643\u0631\u0629 \u060c \u0648\u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u062a\u0630\u0643\u0631\u0629 \u060c \u0623\u0648 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0630\u0643\u0631\u0629 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0627\u0644\u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0645\u062d\u062f\u062f\u0629 \u0627\u0644\u062a\u064a \u064a\u064f\u0641\u062a\u0631\u0636 \u0623\u0646 \u064a\u062a\u0645 \u0627\u0644\u0628\u062d\u062b \u0639\u0646\u0647\u0627 \u0628\u0637\u0631\u064a\u0642\u0629 \u062f\u064a\u0646\u0627\u0645\u064a\u0643\u064a\u0629 \u0642\u0627\u0628\u0644\u0629 \u0644\u0644\u062a\u062b\u0628\u064a\u062a \u060c \u0648\u0627\u0644\u062a\u064a \u0643\u0627\u0646\u062a \u0645\u0635\u0645\u0645\u0629 \u062c\u064a\u062f\u064b\u0627 \u0641\u064a \u0627\u0644\u062a\u0635\u0645\u064a\u0645.",
"en": "Allows the admin, permitted by admin operators to search with given parameters of ticket number, ticket prefix and or ticket date to reach to the specific ticket meant to be searched in a dynamic and fixable manner, that was well intended in design.",
"es": "Permite al administrador, permitido por los operadores administrativos, buscar con par\u00e1metros determinados de n\u00famero de ticket, prefijo de ticket y / o fecha del ticket para llegar al ticket espec\u00edfico destinado a ser buscado de una manera din\u00e1mica y reparable, que fue bien intencionado en el dise\u00f1o.",
"fr": "Permet \u00e0 l'administrateur, autoris\u00e9 par les op\u00e9rateurs admin de rechercher avec des param\u00e8tres donn\u00e9s du num\u00e9ro de ticket, du pr\u00e9fixe de ticket et / ou de la date du ticket pour atteindre le ticket sp\u00e9cifique destin\u00e9 \u00e0 \u00eatre recherch\u00e9 de mani\u00e8re dynamique et r\u00e9parable.",
"it": "Consente all'amministratore, autorizzato dagli amministratori, di cercare con determinati parametri il numero del biglietto, il prefisso del biglietto e la data del biglietto per raggiungere lo specifico biglietto destinato alla ricerca in modo dinamico e risolvibile, che era ben inteso nel design."
},
"Alternative printer driver": {
"ar": "\u0628\u0631\u0646\u0627\u0645\u062c \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0637\u0627\u0628\u0639\u0629 \u0627\u0644\u0628\u062f\u064a\u0644",
"en": "Alternative printer driver",
"es": "controlador de impresora Alternativa",
"fr": "pilote d'imprimante alternatif",
"it": "driver di stampa alternativo"
},
"Always show ticket number: ": {
"ar": "\u062a\u0638\u0647\u0631 \u062f\u0627\u0626\u0645\u0627 \u0631\u0642\u0645 \u0627\u0644\u062a\u0630\u0643\u0631\u0629:",
"en": "Always show ticket number:",
"es": "Siempre mostrar el n\u00famero del billete:",
"fr": "Toujours afficher le num\u00e9ro de billet:",
"it": "Mostra sempre il numero del biglietto:"
},
"Apply": {
"ar": "\u062a\u0637\u0628\u064a\u0642",
"en": "Apply",
"es": "Aplicar",
"fr": "Appliquer",
"it": "Applicare"
},
"Arabic": {
"ar": "\u0639\u0631\u0628\u0649",
"en": "Arabic",
"es": "Ar\u00e1bica",
"fr": "arabe",
"it": "Arabo"
},
"Are you really sure, you want to exit ?": {
"ar": "\u062a\u0631\u064a\u062f \u0628\u0627\u0644\u0641\u0639\u0644 , \u0627\u0644\u062e\u0631\u0648\u062c \u0648 \u0625\u064a\u0642\u0627\u0641 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u061f",
"en": "Are you really sure, you want to exit ?",
"es": "\u00bfEst\u00e1s realmente seguro, quieres salir?",
"fr": "\u00eates-vous s\u00fbr de vouloir quitter ?",
"it": "Sei proprio sicuro, vuoi uscire?"
},
"Attach prefix office letter: ": {
"ar": "\u0625\u0631\u0641\u0627\u0642 \u062e\u0637\u0627\u0628 \u0645\u0643\u062a\u0628 \u0627\u0644\u0628\u0627\u062f\u0626\u0629:",
"en": "Attach prefix office letter:",
"es": "Adjuntar la letra de la oficina de prefijo:",
"fr": "Joindre la lettre du pr\u00e9fixe:",
"it": "Allega la lettera dell'ufficio prefisso:"
},
"Audio file": {
"ar": "\u0645\u0644\u0641 \u0635\u0648\u062a\u064a",
"en": "Audio file",
"es": "Archivo de audio",
"fr": "Fichier audio",
"it": "File audio"
},
"Authentication Token : ": {
"ar": "\u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629 \u0631\u0645\u0632:",
"en": "Authentication Token :",
"es": "Token de autenticaci\u00f3n:",
"fr": "Jeton d'authentification:",
"it": "Autenticazione token:"
},
"Authentication tokens": {
"ar": "\u0627\u0644\u0631\u0645\u0648\u0632 \u0645\u0635\u0627\u062f\u0642\u0629",
"en": "Authentication tokens",
"es": "tokens de autenticaci\u00f3n",
"fr": "jetons d'authentification",
"it": "token di autenticazione"
},
"Auto reload": {
"ar": "\u0625\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644 \u062a\u0644\u0642\u0627\u0626\u064a",
"en": "Auto reload",
"es": "Recarga autom\u00e1tica",
"fr": "Rechargement automatique",
"it": "Ricarica automatica"
},
"Auto replaying the video : ": {
"ar": "\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a \u0644\u0644\u0641\u064a\u062f\u064a\u0648:",
"en": "Auto replaying the video :",
"es": "Reproducci\u00f3n autom\u00e1tica del video:",
"fr": "Lecture automatique de la vid\u00e9o:",
"it": "Riproduzione automatica del video:"
},
"Background": {
"ar": "\u062e\u0644\u0641\u064a\u0629",
"en": "Background",
"es": "Fondo",
"fr": "Contexte",
"it": "sfondo"
},
"Background Tasks": {
"ar": "\u0645\u0647\u0627\u0645 \u0641\u0649 \u0627\u0644\u062e\u0644\u0641\u064a\u0647",
"en": "Background Tasks",
"es": "Tarea en segundo plano",
"fr": "T\u00e2ches d'arri\u00e8re-plan",
"it": "attivit\u00e0 in background"
},
"Background tasks": {
"ar": "\u0645\u0647\u0627\u0645 \u0641\u0649 \u0627\u0644\u062e\u0644\u0641\u064a\u0647",
"en": "Background tasks",
"es": "Tarea en segundo plano",
"fr": "T\u00e2ches d'arri\u00e8re-plan",
"it": "attivit\u00e0 in background"
},
"Background tasks : gives you the ability to to automate some predefined repetitive but needed processes. Changes on the settings will effect ongoing background tasks, and will reset them accordingly.": {
"ar": "\u0645\u0647\u0627\u0645 \u0627\u0644\u062e\u0644\u0641\u064a\u0629: \u064a\u0645\u0646\u062d\u0643 \u0627\u0644\u0642\u062f\u0631\u0629 \u0639\u0644\u0649 \u0623\u062a\u0645\u062a\u0629 \u0628\u0639\u0636 \u0627\u0644\u0639\u0645\u0644\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u0643\u0631\u0631\u0629 \u0648\u0644\u0643\u0646 \u0647\u0646\u0627\u0643 \u062d\u0627\u062c\u0629 \u0645\u062d\u062f\u062f\u0629 \u0645\u0633\u0628\u0642\u0627. \u0633\u0648\u0641 \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0639\u0644\u0649 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u062a\u0624\u062b\u0631 \u0645\u0647\u0627\u0645 \u0627\u0644\u062e\u0644\u0641\u064a\u0629 \u0627\u0644\u062c\u0627\u0631\u064a\u0629\u060c \u0648\u0633\u0648\u0641 \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0648\u0641\u0642\u0627 \u0644\u0630\u0644\u0643.",
"en": "Background tasks : gives you the ability to to automate some predefined repetitive but needed processes. Changes on the settings will effect ongoing background tasks, and will reset them accordingly.",
"es": "tareas en segundo plano: le da la capacidad de automatizar algunos procesos repetitivos, pero necesarios predefinidos. Los cambios en los ajustes afectar\u00e1n a las tareas de fondo en curso y se restablecer\u00e1 en consecuencia.",
"fr": "Des t\u00e2ches de fond: vous donne la possibilit\u00e9 de d'automatiser certains processus r\u00e9p\u00e9titifs mais n\u00e9cessaires pr\u00e9d\u00e9finis. Les changements sur les r\u00e9glages effectuer les t\u00e2ches de fond en cours et seront les remettre en cons\u00e9quence.",
"it": "attivit\u00e0 in background: ti d\u00e0 la possibilit\u00e0 di automatizzare alcuni processi ripetitivi ma necessari predefiniti. Le modifiche sulle impostazioni influenzeranno le operazioni in background in corso, e li resettare conseguenza."
},
"Background tasks: allows you to automate some repetitive but needed processes": {
"ar": "\u0645\u0647\u0627\u0645 \u0627\u0644\u062e\u0644\u0641\u064a\u0629: \u064a\u0633\u0645\u062d \u0644\u0643 \u0644\u0623\u062a\u0645\u062a\u0629 \u0628\u0639\u0636 \u0627\u0644\u0639\u0645\u0644\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u0643\u0631\u0631\u0629 \u0648\u0644\u0643\u0646 \u0647\u0646\u0627\u0643 \u062d\u0627\u062c\u0629",
"en": "Background tasks: allows you to automate some repetitive but needed processes",
"es": "tareas en segundo plano: permite automatizar algunos procesos repetitivos, pero necesarios",
"fr": "Des t\u00e2ches de fond: vous permet d'automatiser certains processus r\u00e9p\u00e9titifs mais n\u00e9cessaires",
"it": "attivit\u00e0 in background: consente di automatizzare alcuni processi ripetitivi, ma necessari"
},
"Blue": {
"ar": "\u0623\u0632\u0631\u0642",
"en": "Blue",
"es": "Azul",
"fr": "Bleu",
"it": "Blu"
},
"CSV is a basic text files that is used to export database columns and rows into a simple text format, in-which each value is separated by a comma": {
"ar": "CSV \u0647\u064a \u0645\u0644\u0641\u0627\u062a \u0646\u0635\u064a\u0629 \u0623\u0633\u0627\u0633\u064a\u0629 \u062a\u064f\u0633\u062a\u062e\u062f\u0645 \u0644\u062a\u0635\u062f\u064a\u0631 \u0623\u0639\u0645\u062f\u0629 \u0642\u0627\u0639\u062f\u0629 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0648\u0627\u0644\u0635\u0641\u0648\u0641 \u0625\u0644\u0649 \u062a\u0646\u0633\u064a\u0642 \u0646\u0635 \u0628\u0633\u064a\u0637 \u060c \u062d\u064a\u062b \u064a\u062a\u0645 \u0641\u0635\u0644 \u0643\u0644 \u0642\u064a\u0645\u0629 \u0628\u0641\u0627\u0635\u0644\u0629",
"en": "CSV is a basic text files that is used to export database columns and rows into a simple text format, in-which each value is separated by a comma",
"es": "CSV es un archivo de texto b\u00e1sico que se usa para exportar columnas y filas de bases de datos en un formato de texto simple, en el cual cada valor est\u00e1 separado por una coma",
"fr": "CSV est un fichier texte de base utilis\u00e9 pour exporter des colonnes et des lignes de base de donn\u00e9es dans un format texte simple dans lequel chaque valeur est s\u00e9par\u00e9e par une virgule.",
"it": "CSV \u00e8 un file di testo di base che viene utilizzato per esportare colonne e righe del database in un semplice formato di testo, in cui ogni valore \u00e8 separato da una virgola"
},
"Cancel upload": {
"ar": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0631\u0641\u0639",
"en": "Cancel upload",
"es": "Cancelar carga",
"fr": "Annuler le t\u00e9l\u00e9chargement",
"it": "Annulla caricamento"
},
"Character to separate the CSV fields with :": {
"ar": "\u0627\u0644\u062d\u0631\u0641 \u0644\u0641\u0635\u0644 \u0627\u0644\u062d\u0642\u0648\u0644 CSV \u0645\u0639:",
"en": "Character to separate the CSV fields with :",
"es": "Car\u00e1cter para separar los campos CSV con:",
"fr": "Caract\u00e8re pour s\u00e9parer les champs de CSV avec:",
"it": "Carattere per separare i campi CSV con:"
},
"Character to separate the CSV fields with.": {
"en": "Character to separate the CSV fields with."
},
"Choose message font :": {
"ar": "\u0627\u062e\u062a\u0631 \u062e\u0637 \u0627\u0644\u0631\u0633\u0627\u0644\u0629:",
"en": "Choose message font :",
"es": "Elija la fuente del mensaje:",
"fr": "Choisissez la police du message:",
"it": "Scegli il carattere del messaggio:"
},
"Choose title background color : ": {
"ar": "\u0627\u062e\u062a\u0631 \u0644\u0648\u0646 \u062e\u0644\u0641\u064a\u0629 \u0627\u0644\u0639\u0646\u0648\u0627\u0646:",
"en": "Choose title background color :",
"es": "Elija el color de fondo del t\u00edtulo:",
"fr": "Choisissez la couleur d'arri\u00e8re-plan du titre:",
"it": "Scegli il colore di sfondo del titolo:"
},
"Choose title font : ": {
"ar": "\u0627\u062e\u062a\u0631 \u062e\u0637 \u0627\u0644\u0639\u0646\u0648\u0627\u0646:",
"en": "Choose title font :",
"es": "Elija la fuente del t\u00edtulo:",
"fr": "Choisissez la police de titre:",
"it": "Scegli il font del titolo:"
},
"Choose title font color : ": {
"ar": "\u0627\u062e\u062a\u0631 \u0644\u0648\u0646 \u062e\u0637 \u0627\u0644\u0639\u0646\u0648\u0627\u0646:",
"en": "Choose title font color :",
"es": "Elige el color de la fuente del t\u00edtulo:",
"fr": "Choisissez la couleur de police du titre:",
"it": "Scegli il colore del carattere del titolo:"
},
"Choose title font size :": {
"ar": "\u0627\u062e\u062a\u0631 \u062d\u062c\u0645 \u062e\u0637 \u0627\u0644\u0639\u0646\u0648\u0627\u0646:",
"en": "Choose title font size :",
"es": "Elige el tama\u00f1o de letra del t\u00edtulo:",
"fr": "Choisissez la taille de la police du titre:",
"it": "Scegli la dimensione del carattere del titolo:"
},
"Choose title font size : ": {
"ar": "\u0627\u062e\u062a\u0631 \u062d\u062c\u0645 \u062e\u0637 \u0627\u0644\u0639\u0646\u0648\u0627\u0646:",
"en": "Choose title font size :",
"es": "Elige el tama\u00f1o de letra del t\u00edtulo:",
"fr": "Choisissez la taille de la police du titre:",
"it": "Scegli la dimensione del carattere del titolo:"
},
"Close": {
"ar": "\u0642\u0631\u064a\u0628",
"en": "Close",
"es": "Cerca",
"fr": "Fermer",
"it": "Vicino"
},
"Colored background": {
"ar": "\u062e\u0644\u0641\u064a\u0629 \u0645\u0644\u0648\u0646\u0629",
"en": "Colored background",
"es": "Fondo de color",
"fr": "Arri\u00e8re-plan color\u00e9",
"it": "Sfondo colorato"
},
"Colored slides": {
"ar": "\u0627\u0644\u0634\u0631\u0627\u0626\u062d \u0627\u0644\u0645\u0644\u0648\u0646\u0629",
"en": "Colored slides",
"es": "Diapositivas de colores",
"fr": "Diapositives color\u00e9es",
"it": "Diapositive colorate"
},
"Completed": {
"ar": "\u0645\u0646\u062c\u0632",
"en": "Completed",
"es": "Terminado",
"fr": "Termin\u00e9",
"it": "Completato"
},
"Copy token": {
"ar": "\u0646\u0633\u062e\u0629 \u0631\u0645\u0632\u064a\u0629",
"en": "Copy token",
"es": "token de copia",
"fr": "jeton de copie",
"it": "Copia Token"
},
"Created": {
"ar": "\u062e\u0644\u0642\u062a",
"en": "Created",
"es": "Creado",
"fr": "Cr\u00e9\u00e9",
"it": "Creato"
},
"Critical Error": {
"ar": "\u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
"en": "Critical Error",
"es": "error cr\u00edtico",
"fr": "erreur critique",
"it": "errore critico"
},
"Current office": {
"ar": "\u0627\u0644\u0645\u0643\u062a\u0628 \u0627\u0644\u062d\u0627\u0644\u064a",
"en": "Current office",
"es": "Oficina actual",
"fr": "Bureau actuel",
"it": "Ufficio corrente"
},
"Current office meant to display the details of the lastly responsible office of pulling a ticket for processing": {
"ar": "\u064a\u0639\u062a\u0632\u0645 \u0627\u0644\u0645\u0643\u062a\u0628 \u0627\u0644\u062d\u0627\u0644\u064a \u0644\u0639\u0631\u0636 \u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0645\u0643\u062a\u0628 \u0627\u0644\u0645\u0633\u0624\u0648\u0644 \u0641\u064a \u0646\u0647\u0627\u064a\u0629 \u0627\u0644\u0645\u0637\u0627\u0641 \u0645\u0646 \u0633\u062d\u0628 \u062a\u0630\u0643\u0631\u0629 \u0644\u0644\u0645\u0639\u0627\u0644\u062c\u0629",
"en": "Current office meant to display the details of the lastly responsible office of pulling a ticket for processing",
"es": "La oficina actual tiene la intenci\u00f3n de mostrar los detalles de la \u00faltima oficina responsable de tirar un ticket para procesar",
"fr": "Bureau actuel destin\u00e9 \u00e0 afficher les d\u00e9tails du dernier bureau responsable de tirer un ticket pour le traitement",
"it": "L'ufficio corrente intendeva mostrare i dettagli dell'ultimo ufficio responsabile per l'estrazione di un biglietto per l'elaborazione"
},
"Current ticket": {
"ar": "\u0627\u0644\u062a\u0630\u0643\u0631\u0629 \u0627\u0644\u062d\u0627\u0644\u064a\u0629",
"en": "Current ticket",
"es": "Boleto actual",
"fr": "Billet actuel",
"it": "Biglietto corrente"
},
"Current ticket : ": {
"en": "Current ticket : ",
"es": "Billete actual : ",
"fr": "Billet actuel : ",
"it": "Biglietto corrente: "
},
"Current ticket meant to display the lastly pulled ticket by an office and it displays the ticket , its holder specified details": {
"ar": "\u0627\u0644\u062a\u0630\u0643\u0631\u0629 \u0627\u0644\u062d\u0627\u0644\u064a\u0629 \u062a\u0639\u0646\u064a \u0639\u0631\u0636 \u0627\u0644\u062a\u0630\u0643\u0631\u0629 \u0627\u0644\u062a\u064a \u0633\u062d\u0628\u062a \u0623\u062e\u064a\u0631\u064b\u0627 \u0645\u0646 \u0623\u062d\u062f \u0627\u0644\u0645\u0643\u0627\u062a\u0628 \u0648\u062a\u0639\u0631\u0636 \u0627\u0644\u062a\u0630\u0643\u0631\u0629 \u060c \u0648\u062d\u062f\u062f \u0635\u0627\u062d\u0628\u0647\u0627 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644",
"en": "Current ticket meant to display the lastly pulled ticket by an office and it displays the ticket , its holder specified details",
"es": "Boleto actual destinado a mostrar el \u00faltimo boleto extra\u00eddo por una oficina y muestra el boleto, su titular especific\u00f3 detalles",
"fr": "Billet en cours destin\u00e9 \u00e0 afficher le dernier billet tir\u00e9 par un bureau et il affiche le billet, son titulaire sp\u00e9cifi\u00e9 d\u00e9tails",
"it": "Biglietto attuale destinato a visualizzare l'ultimo biglietto estratto da un ufficio e visualizza il biglietto, i dettagli specificati dal titolare"
},
"Customization": {
"ar": "\u0627\u0644\u062a\u062e\u0635\u064a\u0635",
"en": "Customization",
"es": "Personalizaci\u00f3n",
"fr": "Personnalisation",
"it": "Personalizzazione"
},
"Customize": {
"ar": "\u064a\u0639\u062f\u0644 \u0623\u0648 \u064a\u0643\u064a\u0641",
"es": "Personalizar",
"fr": "Personnaliser",
"it": "personalizzare"
},
"Database": {
"ar": "\u0642\u0627\u0639\u062f\u0629 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a",
"en": "Database",
"es": "Base de datos",
"fr": "Base de donn\u00e9es",
"it": "Banca dati"
},
"Deactivated": {
"ar": "\u0645\u0639\u0637\u0644",
"en": "Deactivated",
"es": "Desactivado",
"fr": "D\u00e9sactiv\u00e9",
"it": "Disattivato"
},
"Delete": {
"ar": "\u062d\u0630\u0641",
"en": "Delete",
"es": "Borrar",
"fr": "Effacer",
"it": "Elimina"
},
"Delete all": {
"ar": "\u062d\u0630\u0641 \u0627\u0644\u0643\u0644",
"en": "Delete all",
"es": "Eliminar todos",
"fr": "Supprimer tout",
"it": "Cancella tutto"
},
"Description": {
"ar": "\u0648\u0635\u0641",
"en": "Description",
"es": "Descripci\u00f3n",
"fr": "La description",
"it": "Descrizione"
},
"Disable": {
"ar": "\u062a\u0639\u0637\u064a\u0644",
"en": "Disable",
"es": "Inhabilitar",
"fr": "D\u00e9sactiver",
"it": "disattivare"
},
"Disable audio notification": {
"ar": "\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0625\u062e\u0637\u0627\u0631 \u0627\u0644\u0635\u0648\u062a\u064a",
"en": "Disable audio notification",
"es": "Deshabilitar notificaci\u00f3n de audio",
"fr": "D\u00e9sactiver la notification audio",
"it": "Disattiva la notifica audio"
},
"Disable audio notification ..": {
"ar": "\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a \u0627\u0644\u0635\u0648\u062a\u064a\u0629 ..",
"es": "Desactiva la notificaci\u00f3n de audio.",
"fr": "D\u00e9sactiver la notification audio",
"it": "Disattiva la notifica audio .."
},
"Disable or enable slide-show :": {
"ar": "\u062a\u0639\u0637\u064a\u0644 \u0623\u0648 \u062a\u0645\u0643\u064a\u0646 \u0639\u0631\u0636 \u0627\u0644\u0634\u0631\u0627\u0626\u062d:",
"en": "Disable or enable slide-show :",
"es": "Deshabilitar o habilitar la presentaci\u00f3n de diapositivas:",
"fr": "D\u00e9sactiver ou activer le diaporama:",
"it": "Disabilita o abilita la presentazione:"
},
"Disable rotation": {
"ar": "\u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u062f\u0648\u0631\u0627\u0646",
"en": "Disable rotation",
"es": "Deshabilitar rotaci\u00f3n",
"fr": "D\u00e9sactiver la rotation",
"it": "Disabilitare la rotazione"
},
"Display Slideshow": {
"ar": "\u0639\u0631\u0636 \u0627\u0644\u0634\u0631\u0627\u0626\u062d",
"en": "Display Slideshow",
"es": "Mostrar presentaci\u00f3n",
"fr": "Afficher le diaporama",
"it": "Mostra presentazione"
},
"Display Video": {
"ar": "\u0639\u0631\u0636 \u0627\u0644\u0641\u064a\u062f\u064a\u0648",
"en": "Display Video",
"es": "Mostrar video",
"fr": "Afficher la vid\u00e9o",
"it": "Mostra video"
},
"Display Video settings": {
"ar": "\u0639\u0631\u0636 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0641\u064a\u062f\u064a\u0648",
"en": "Display Video settings",
"es": "Mostrar configuraci\u00f3n de video",
"fr": "Afficher les param\u00e8tres vid\u00e9o",
"it": "Visualizza le impostazioni video"
},
"Display screen": {
"ar": "\u0634\u0627\u0634\u0629 \u0639\u0631\u0636",
"en": "Display screen",
"es": "Pantalla de visualizaci\u00f3n",
"fr": "\u00c9cran d'affichage",
"it": "Schermo"
},
"Display slideshow": {
"ar": "\u0639\u0631\u0636 \u0627\u0644\u0634\u0631\u0627\u0626\u062d",
"en": "Display slideshow",
"es": "Mostrar diapositivas",
"fr": "Afficher le diaporama",
"it": "Mostra presentazione"
},
"Display video": {
"ar": "\u0639\u0631\u0636 \u0627\u0644\u0641\u064a\u062f\u064a\u0648",
"en": "Display video",
"es": "Mostrar video",
"fr": "Afficher la vid\u00e9o",
"it": "Mostra video"
},
"Displays all existing tickets from all offices in a descending order from the newest to the oldest, and given the admin and permitted operators the options of resetting to zero or deleting all offices properly. As well as few indicators and counters that displays the number of offices, total, processed and waiting tickets accordingly.": {
"ar": "\u064a\u0639\u0631\u0636 \u062c\u0645\u064a\u0639 \u0627\u0644\u062a\u0630\u0627\u0643\u0631 \u0627\u0644\u062d\u0627\u0644\u064a\u0629 \u0645\u0646 \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0643\u0627\u062a\u0628 \u0628\u062a\u0631\u062a\u064a\u0628 \u062a\u0646\u0627\u0632\u0644\u064a \u0645\u0646 \u0627\u0644\u0623\u062d\u062f\u062b \u0625\u0644\u0649 \u0627\u0644\u0623\u0642\u062f\u0645 \u060c \u0645\u0639 \u0625\u0639\u0637\u0627\u0621 \u0627\u0644\u0645\u0634\u0631\u0641\u064a\u0646 \u0648\u0627\u0644\u0645\u0634\u0631\u0641\u064a\u0646 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0644\u0647\u0645 \u062e\u064a\u0627\u0631\u0627\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0623\u0648 \u062d\u0630\u0641 \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0643\u0627\u062a\u0628 \u0628\u0634\u0643\u0644 \u0635\u062d\u064a\u062d. \u0628\u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0639\u062f\u062f \u0642\u0644\u064a\u0644 \u0645\u0646 \u0627\u0644\u0645\u0624\u0634\u0631\u0627\u062a \u0648\u0627\u0644\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0639\u0631\u0636 \u0639\u062f\u062f \u0627\u0644\u0645\u0643\u0627\u062a\u0628 \u0648\u062a\u062c\u0627\u0631\u0628\u0647\u0627 \u0627\u0644\u0625\u062c\u0645\u0627\u0644\u064a\u0629 \u0648\u0645\u0639\u0627\u0644\u062c\u062a\u0647\u0627 \u0648\u062a\u0646\u062a\u0638\u0631\u0647\u0627 \u0648\u0641\u0642\u0627\u064b \u0644\u0630\u0644\u0643.",
"en": "Displays all existing tickets from all offices in a descending order from the newest to the oldest, and given the admin and permitted operators the options of resetting to zero or deleting all offices properly. As well as few indicators and counters that displays the number of offices, total, processed and waiting tickets accordingly.",
"es": "Muestra todos los tickets existentes de todas las oficinas en orden descendente desde el m\u00e1s nuevo al m\u00e1s antiguo, y le da al administrador y a los operadores permitidos las opciones de restablecer a cero o eliminar todas las oficinas de manera adecuada. Adem\u00e1s de algunos indicadores y contadores que muestran la cantidad de oficinas, totales, procesadas y listas de espera en consecuencia.",
"fr": "Affiche tous les tickets existants de tous les bureaux dans un ordre d\u00e9croissant du plus r\u00e9cent au plus ancien, et donne \u00e0 l'administrateur et aux op\u00e9rateurs autoris\u00e9s les options de remise \u00e0 z\u00e9ro ou de suppression de tous les bureaux correctement. Ainsi que peu d'indicateurs et de compteurs qui affichent le nombre de bureaux, le total, les tickets trait\u00e9s et en attente en cons\u00e9quence.",
"it": "Visualizza tutti i biglietti esistenti da tutti gli uffici in ordine decrescente dal pi\u00f9 recente al pi\u00f9 vecchio, e fornisce all'amministratore e agli operatori autorizzati le opzioni di ripristino a zero o l'eliminazione corretta di tutti gli uffici. Oltre a pochi indicatori e contatori che visualizzano il numero di uffici, biglietti totali, elaborati e in attesa di conseguenza."
},
"Do not assign video": {
"ar": "\u0647\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0639\u062f\u0645 \u062a\u0639\u064a\u064a\u0646",
"en": "Do not assign video",
"es": "Hacer v\u00eddeo no asignar",
"fr": "Ne vid\u00e9o pas assign",
"it": "Fare video non assegnazione"
},
"Duration": {
"ar": "\u0627\u0644\u0645\u062f\u0629 \u0627\u0644\u0632\u0645\u0646\u064a\u0629",
"en": "Duration",
"es": "Duraci\u00f3n",
"fr": "Dur\u00e9e",
"it": "Durata"
},
"Each: to repeat each announcement and notification": {
"ar": "\u0643\u0644: \u0644\u062a\u0643\u0631\u0627\u0631 \u0643\u0644 \u0625\u0639\u0644\u0627\u0646 \u0648\u0627\u0644\u0625\u062e\u0637\u0627\u0631",
"en": "Each: to repeat each announcement and notification",
"es": "Cada uno: para repetir cada anuncio y notificaci\u00f3n",
"fr": "Chacun: pour r\u00e9p\u00e9ter chaque annonce et notification",
"it": "Ciascuno: ripetere ogni annuncio e notifica"
},
"Eight seconds": {
"ar": "\u062b\u0645\u0627\u0646\u064a \u062b\u0648\u0627\u0646",
"en": "Eight seconds",
"es": "Ocho segundos",
"fr": "Huit secondes",
"it": "Otto secondi"
},
"Empty": {
"ar": "\u0641\u0627\u0631\u063a\u0629",
"en": "Empty",
"es": "Vac\u00edo",
"fr": "Vide",
"it": "Vuoto"
},
"Enable": {
"ar": "\u0645\u0643\u0646",
"en": "Enable",
"es": "Habilitar",
"fr": "Activer",
"it": "Abilitare"
},
"Enable caching text-to-speech announcements :": {
"ar": "\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u0624\u0642\u062a \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a \u062a\u062d\u0648\u064a\u0644 \u0627\u0644\u0646\u0635 \u0625\u0644\u0649 \u0643\u0644\u0627\u0645:",
"en": "Enable caching text-to-speech announcements :",
"es": "Habilitar cach\u00e9 de anuncios de texto a voz:",
"fr": "Activer la mise en cache des annonces texte de synth\u00e8se vocale:",
"it": "Attivare la cache annunci text-to-speech:"
},
"Enable deleting tickets :": {
"ar": "\u062a\u0645\u0643\u064a\u0646 \u062d\u0630\u0641 \u0627\u0644\u062a\u0630\u0627\u0643\u0631:",
"en": "Enable deleting tickets :",
"es": "Habilitar eliminaci\u00f3n de entradas:",
"fr": "Activer la suppression de billets:",
"it": "Attiva l'eliminazione di biglietti:"
},
"Enable or disable video : ": {
"ar": "\u062a\u0645\u0643\u064a\u0646 \u0623\u0648 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648:",
"en": "Enable or disable video :",
"es": "Habilitar o deshabilitar video:",
"fr": "Activer ou d\u00e9sactiver la vid\u00e9o:",
"it": "Abilita o disabilita il video:"
},
"Enable or disable video controls : ": {
"ar": "\u062a\u0645\u0643\u064a\u0646 \u0623\u0648 \u062a\u0639\u0637\u064a\u0644 \u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u062a\u062d\u0643\u0645 \u0641\u064a \u0627\u0644\u0641\u064a\u062f\u064a\u0648:",
"en": "Enable or disable video controls :",
"es": "Habilitar o deshabilitar los controles de video:",
"fr": "Activer ou d\u00e9sactiver les contr\u00f4les vid\u00e9o:",
"it": "Abilita o disabilita i controlli video:"
},
"English": {
"ar": "\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629",
"en": "English",
"es": "Ingl\u00e9s",
"fr": "Anglais",
"it": "inglese"
},
"Enter a duration in seconds to auto-reload the page in :": {
"ar": "\u0623\u062f\u062e\u0644 \u0645\u062f\u0629 \u0628\u0627\u0644\u062b\u0648\u0627\u0646\u064a \u0644\u0625\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0635\u0641\u062d\u0629 \u062a\u0644\u0642\u0627\u0626\u064a\u064b\u0627 \u0641\u064a:",
"en": "Enter a duration in seconds to auto-reload the page in :",
"es": "Ingrese una duraci\u00f3n en segundos para volver a cargar autom\u00e1ticamente la p\u00e1gina en:",
"fr": "Entrez une dur\u00e9e en secondes pour recharger automatiquement la page dans:",
"it": "Inserisci una durata in secondi per ricaricare automaticamente la pagina in:"
},
"Enter a notification message :": {
"ar": "\u0623\u062f\u062e\u0644 \u0631\u0633\u0627\u0644\u0629 \u0625\u0639\u0644\u0627\u0645:",
"en": "Enter a notification message :",
"es": "Ingrese un mensaje de notificaci\u00f3n:",
"fr": "Entrez un message de notification:",
"it": "Inserisci un messaggio di notifica:"
},
"Enter a slide title :": {
"ar": "\u0623\u062f\u062e\u0644 \u0639\u0646\u0648\u0627\u0646 \u0634\u0631\u064a\u062d\u0629:",
"en": "Enter a slide title :",
"es": "Ingrese un t\u00edtulo de diapositiva:",
"fr": "Entrez un titre de diapositive:",
"it": "Inserisci un titolo della diapositiva:"
},
"Enter a subtitle :": {
"ar": "\u0623\u062f\u062e\u0644 \u0639\u0646\u0648\u0627\u0646\u064b\u0627 \u0641\u0631\u0639\u064a\u064b\u0627:",
"en": "Enter a subtitle :",
"es": "Ingresa un subt\u00edtulo:",
"fr": "Entrez un sous-titre:",
"it": "Inserisci un sottotitolo:"
},
"Enter a text header : ": {
"en": "Enter a text header : "
},
"Enter a text sub-header : ": {
"en": "Enter a text sub-header : "
},
"Enter a title :": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0639\u0646\u0648\u0627\u0646:",
"en": "Enter a title :",
"es": "Ingresa un t\u00edtulo:",
"fr": "Entrez un titre:",
"it": "Inserisci un titolo:"
},
"Enter a title : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0639\u0646\u0648\u0627\u0646:",
"en": "Enter a title :",
"es": "Ingresa un t\u00edtulo:",
"fr": "Entrez un titre:",
"it": "Inserisci un titolo:"
},
"Enter a unique office name : ": {
"ar": "\u0625\u062f\u062e\u0627\u0644 \u0627\u0633\u0645 \u0627\u0644\u0645\u0643\u062a\u0628 \u0641\u0631\u064a\u062f\u0629 \u0645\u0646 \u0646\u0648\u0639\u0647\u0627:",
"en": "Enter a unique office name :",
"es": "Introduzca un nombre de la oficina \u00fanico:",
"fr": "Entrez un nom de bureau unique:",
"it": "Inserire un nome ufficio unico:"
},
"Enter a unique user name : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0633\u0645 \u0645\u0633\u062a\u062e\u062f\u0645 \u0641\u0631\u064a\u062f:",
"en": "Enter a unique user name :",
"es": "Ingrese un nombre de usuario \u00fanico:",
"fr": "Entrez un nom d'utilisateur unique:",
"it": "Inserisci un nome utente univoco:"
},
"Enter alias for Name : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 \u0644\u0644\u0627\u0633\u0645:",
"en": "Enter alias for Name :",
"es": "Ingresa un alias para Nombre:",
"it": "Inserisci alias per Nome:"
},
"Enter alias for Number : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 \u0644\u0644\u0631\u0642\u0645:",
"en": "Enter alias for Number :",
"es": "Ingresa un alias para N\u00famero:",
"it": "Inserisci alias per Numero:"
},
"Enter alias for Office : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 \u0644\u0640 Office:",
"en": "Enter alias for Office :",
"es": "Ingresa un alias para Office:",
"it": "Inserisci alias per Office:"
},
"Enter alias for Task : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 \u0644\u0644\u0645\u0647\u0645\u0629:",
"en": "Enter alias for Task :",
"es": "Ingresa un alias para Tarea:",
"it": "Inserisci alias per l'attivit\u00e0:"
},
"Enter alias for name : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 \u0644\u0644\u0627\u0633\u0645:",
"en": "Enter alias for name :",
"es": "Ingresa un alias para el nombre:",
"fr": "Entrez l'alias pour le nom:",
"it": "Inserisci alias per nome:"
},
"Enter alias for number : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 \u0644\u0644\u0631\u0642\u0645:",
"en": "Enter alias for number :",
"es": "Ingresa un alias para el n\u00famero:",
"fr": "Entrez un alias pour le num\u00e9ro:",
"it": "Inserisci un alias per il numero:"
},
"Enter alias for office : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0633\u0645\u064b\u0627 \u0645\u0633\u062a\u0639\u0627\u0631\u064b\u0627 \u0644\u0644\u0645\u0643\u062a\u0628:",
"en": "Enter alias for office :",
"es": "Ingresa un alias para la oficina:",
"fr": "Entrez l'alias pour le bureau:",
"it": "Inserisci un alias per l'ufficio:"
},
"Enter alias for task : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u0639\u0627\u0631 \u0644\u0644\u0645\u0647\u0645\u0629:",
"en": "Enter alias for task :",
"es": "Ingresa un alias para la tarea:",
"fr": "Entrez un alias pour la t\u00e2che:",
"it": "Inserisci un alias per l'attivit\u00e0:"
},
"Enter alias for ticket : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0633\u0645\u064b\u0627 \u0645\u0633\u062a\u0639\u0627\u0631\u064b\u0627 \u0644\u0644\u062a\u0630\u0643\u0631\u0629:",
"en": "Enter alias for ticket :",
"es": "Ingresa un alias para el ticket:",
"fr": "Entrez un alias pour le ticket:",
"it": "Inserisci l'alias per il ticket:"
},
"Enter password : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631:",
"en": "Enter password :",
"es": "Introducir la contrase\u00f1a :",
"fr": "Entrer le mot de passe :",
"it": "Inserire la password :"
},
"Enter token description : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0648\u0635\u0641 \u0631\u0645\u0632\u064a:",
"en": "Enter token description :",
"es": "Rellena el texto del token:",
"fr": "Saisir le jeton:",
"it": "Inserisci descrizione token:"
},
"Enter token name : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0627\u0633\u0645 \u0631\u0645\u0632\u064a:",
"en": "Enter token name :",
"es": "Introduce el nombre del token:",
"fr": "Entrez le nom symbolique:",
"it": "Inserisci il nome del token:"
},
"Enter unique title for the task : ": {
"ar": "\u0623\u062f\u062e\u0644 \u0639\u0646\u0648\u0627\u0646\u064b\u0627 \u0641\u0631\u064a\u062f\u064b\u0627 \u0644\u0644\u0645\u0647\u0645\u0629:",
"en": "Enter unique title for the task :",
"es": "Ingrese un t\u00edtulo \u00fanico para la tarea:",
"fr": "Entrez un titre unique pour la t\u00e2che:",
"it": "Immettere un titolo univoco per l'attivit\u00e0:"
},