-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathsk.dictionary.itop.core.php
More file actions
1221 lines (1141 loc) · 66.4 KB
/
sk.dictionary.itop.core.php
File metadata and controls
1221 lines (1141 loc) · 66.4 KB
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
<?php
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Core:DeletedObjectLabel' => '%1s (odstránené)',
'Core:DeletedObjectTip' => 'Objekt bol odstránený o %1$s (%2$s)',
'Core:UnknownObjectLabel' => 'Objekt nebol nájdený (trieda: %1$s, id: %2$d)',
'Core:UnknownObjectTip' => 'Objekt nebol nájdený. Mohol byť odstránený pred nejakým časom a záznam bol odvtedy nenávratne zmazaný.',
'Core:UniquenessDefaultError' => 'Uniqueness rule \'%1$s\' in error~~',
'Core:CheckConsistencyError' => 'Consistency rules not followed: %1$s~~',
'Core:CheckValueError' => 'Unexpected value for attribute \'%1$s\' (%2$s) : %3$s~~',
'Core:AttributeLinkedSet' => 'Pole objektov',
'Core:AttributeLinkedSet+' => 'Any kind of objects of the same class or subclass~~',
'Core:AttributeLinkedSetDuplicatesFound' => 'Duplicates in the \'%1$s\' field : %2$s~~',
'Core:AttributeDashboard' => 'Dashboard~~',
'Core:AttributeDashboard+' => '~~',
'Core:AttributePhoneNumber' => 'Phone number~~',
'Core:AttributePhoneNumber+' => '~~',
'Core:AttributeObsolescenceDate' => 'Obsolescence date~~',
'Core:AttributeObsolescenceDate+' => '~~',
'Core:AttributeTagSet' => 'List of tags~~',
'Core:AttributeTagSet+' => '~~',
'Core:AttributeSet:placeholder' => 'click to add~~',
'Core:Placeholder:CannotBeResolved' => '(%1$s : cannot be resolved)~~',
'Core:AttributeClassAttCodeSet:ItemLabel:AttributeFromClass' => '%1$s (%2$s)~~',
'Core:AttributeClassAttCodeSet:ItemLabel:AttributeFromOneChildClass' => '%1$s (%2$s from %3$s)~~',
'Core:AttributeClassAttCodeSet:ItemLabel:AttributeFromSeveralChildClasses' => '%1$s (%2$s from child classes)~~',
'Core:AttributeCaseLog' => 'Log~~',
'Core:AttributeCaseLog+' => '~~',
'Core:AttributeMetaEnum' => 'Computed enum~~',
'Core:AttributeMetaEnum+' => '~~',
'Core:AttributeLinkedSetIndirect' => 'Pole objektov (N-N)',
'Core:AttributeLinkedSetIndirect+' => 'Any kind of objects [subclass] of the same class~~',
'Core:AttributeInteger' => 'Celé číslo',
'Core:AttributeInteger+' => 'Numeric value (could be negative)~~',
'Core:AttributeDecimal' => 'Desatinné číslo',
'Core:AttributeDecimal+' => 'Decimal value (could be negative)~~',
'Core:AttributeBoolean' => 'Boolean',
'Core:AttributeBoolean+' => '~~',
'Core:AttributeBoolean/Value:null' => '~~',
'Core:AttributeBoolean/Value:yes' => 'Yes~~',
'Core:AttributeBoolean/Value:no' => 'No~~',
'Core:AttributeArchiveFlag' => 'Archive flag~~',
'Core:AttributeArchiveFlag/Value:yes' => 'Yes~~',
'Core:AttributeArchiveFlag/Value:yes+' => 'This object is visible only in archive mode~~',
'Core:AttributeArchiveFlag/Value:no' => 'No~~',
'Core:AttributeArchiveFlag/Label' => 'Archived~~',
'Core:AttributeArchiveFlag/Label+' => '~~',
'Core:AttributeArchiveDate/Label' => 'Archive date~~',
'Core:AttributeArchiveDate/Label+' => '~~',
'Core:AttributeObsolescenceFlag' => 'Obsolescence flag~~',
'Core:AttributeObsolescenceFlag/Value:yes' => 'Yes~~',
'Core:AttributeObsolescenceFlag/Value:yes+' => 'This object is excluded from the impact analysis, and hidden from search results~~',
'Core:AttributeObsolescenceFlag/Value:no' => 'No~~',
'Core:AttributeObsolescenceFlag/Label' => 'Obsolete~~',
'Core:AttributeObsolescenceFlag/Label+' => 'Computed dynamically on other attributes~~',
'Core:AttributeObsolescenceDate/Label' => 'Obsolescence date~~',
'Core:AttributeObsolescenceDate/Label+' => 'Approximative date at which the object has been considered obsolete~~',
'Core:AttributeString' => 'Reťazec',
'Core:AttributeString+' => 'Alphanumeric string~~',
'Core:AttributeClass' => 'Trieda',
'Core:AttributeClass+' => '~~',
'Core:AttributeApplicationLanguage' => 'Užívateľský jazyk',
'Core:AttributeApplicationLanguage+' => 'Language and country (EN US)~~',
'Core:AttributeFinalClass' => 'Trieda (auto)',
'Core:AttributeFinalClass+' => 'Real class of the object (automatically created by the core)~~',
'Core:AttributePassword' => 'Heslo',
'Core:AttributePassword+' => 'Password of an external device~~',
'Core:AttributeEncryptedString' => 'Zakódovaný reťazec',
'Core:AttributeEncryptedString+' => 'String encrypted with a local key~~',
'Core:AttributeEncryptUnknownLibrary' => 'Encryption library specified (%1$s) unknown~~',
'Core:AttributeEncryptFailedToDecrypt' => '** decryption error **~~',
'Core:AttributeText' => 'Text',
'Core:AttributeText+' => 'Multiline character string~~',
'Core:AttributeHTML' => 'HTML',
'Core:AttributeHTML+' => 'HTML string~~',
'Core:AttributeEmailAddress' => 'Emailova Adresa',
'Core:AttributeEmailAddress+' => 'Email address~~',
'Core:AttributeIPAddress' => 'IP Adresa',
'Core:AttributeIPAddress+' => 'IP address~~',
'Core:AttributeOQL' => 'OQL',
'Core:AttributeOQL+' => 'Object Query Language expression~~',
'Core:AttributeEnum' => 'Enum',
'Core:AttributeEnum+' => 'List of predefined alphanumeric strings~~',
'Core:AttributeTemplateString' => 'Predloha reťazca',
'Core:AttributeTemplateString+' => 'String containing placeholders~~',
'Core:AttributeTemplateText' => 'Predloha textu',
'Core:AttributeTemplateText+' => 'Text containing placeholders~~',
'Core:AttributeTemplateHTML' => 'Predloha HTML',
'Core:AttributeTemplateHTML+' => 'HTML containing placeholders~~',
'Core:AttributeDateTime' => 'Dátum/čas',
'Core:AttributeDateTime+' => 'Date and time (year-month-day hh:mm:ss)~~',
'Core:AttributeDateTime?SmartSearch' => '
<p>
Formát dátumu:<br/>
<b>yyyy-mm-dd hh:mm:ss</b><br/>
Príklad: 2011-07-19 18:40:00
</p>
<p>
Operatori:<br/>
<b>></b><em>dátum</em><br/>
<b><</b><em>dátum</em><br/>
<b>[</b><em>dátum</em>,<em>dátum</em><b>]</b>
</p>
<p>
Ak je čas vynechaný, predvolený čas je 00:00:00
</p>',
'Core:AttributeDate' => 'Dátum',
'Core:AttributeDate+' => 'Date (year-month-day)~~',
'Core:AttributeDate?SmartSearch' => '
<p>
Formát dátumu:<br/>
<b>yyyy-mm-dd</b><br/>
Príklad: 2011-07-19
</p>
<p>
Operatori:<br/>
<b>></b><em>dátum</em><br/>
<b><</b><em>dátum</em><br/>
<b>[</b><em>dátum</em>,<em>dátum</em><b>]</b>
</p>',
'Core:AttributeDeadline' => 'Dátum eskalácie',
'Core:AttributeDeadline+' => 'Date, displayed relatively to the current time~~',
'Core:AttributeExternalKey' => 'Externý kľúč',
'Core:AttributeExternalKey+' => 'External (or foreign) key~~',
'Core:AttributeHierarchicalKey' => 'Hierarchický kľúč',
'Core:AttributeHierarchicalKey+' => 'External (or foreign) key to the parent~~',
'Core:AttributeExternalField' => 'Externé pole',
'Core:AttributeExternalField+' => 'Field mapped to an external key~~',
'Core:AttributeURL' => 'URL',
'Core:AttributeURL+' => 'Absolute or relative URL as a text string~~',
'Core:AttributeBlob' => 'Binarny object',
'Core:AttributeBlob+' => 'Any binary content (document)~~',
'Core:AttributeOneWayPassword' => 'Jednorazové heslo',
'Core:AttributeOneWayPassword+' => 'One way encrypted (hashed) password~~',
'Core:AttributeTable' => 'Tabuľka',
'Core:AttributeTable+' => 'Indexed array having two dimensions~~',
'Core:AttributePropertySet' => 'Vlastnosti',
'Core:AttributePropertySet+' => 'List of untyped properties (name and value)~~',
'Core:AttributeFriendlyName' => 'Ľahko čitateľný názov',
'Core:AttributeFriendlyName+' => 'Attribute created automatically ; the friendly name is computed after several attributes~~',
'Core:FriendlyName-Label' => 'Ľahko čitateľný názov',
'Core:FriendlyName-Description' => 'Ľahko čitateľný názov',
'Core:AttributeTag' => 'Tags~~',
'Core:AttributeTag+' => '~~',
'Core:Context=REST/JSON' => 'REST~~',
'Core:Context=Synchro' => 'Synchro~~',
'Core:Context=Setup' => 'Setup~~',
'Core:Context=GUI:Console' => 'Console~~',
'Core:Context=CRON' => 'cron~~',
'Core:Context=GUI:Portal' => 'Portal~~',
]);
//////////////////////////////////////////////////////////////////////
// Classes in 'core/cmdb'
//////////////////////////////////////////////////////////////////////
//
//
// Class: CMDBChange
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:CMDBChange' => 'Zmena',
'Class:CMDBChange+' => 'Changes tracking~~',
'Class:CMDBChange/Attribute:date' => 'Dátum',
'Class:CMDBChange/Attribute:date+' => 'date and time at which the changes have been recorded~~',
'Class:CMDBChange/Attribute:userinfo' => 'Rozl. info',
'Class:CMDBChange/Attribute:userinfo+' => 'caller\'s defined information~~',
'Class:CMDBChange/Attribute:origin/Value:interactive' => 'User interaction in the GUI~~',
'Class:CMDBChange/Attribute:origin/Value:csv-import.php' => 'CSV import script~~',
'Class:CMDBChange/Attribute:origin/Value:csv-interactive' => 'CSV import in the GUI~~',
'Class:CMDBChange/Attribute:origin/Value:email-processing' => 'Email processing~~',
'Class:CMDBChange/Attribute:origin/Value:synchro-data-source' => 'Synchro. data source~~',
'Class:CMDBChange/Attribute:origin/Value:webservice-rest' => 'REST/JSON webservices~~',
'Class:CMDBChange/Attribute:origin/Value:webservice-soap' => 'SOAP webservices~~',
'Class:CMDBChange/Attribute:origin/Value:custom-extension' => 'By an extension~~',
]);
//
// Class: CMDBChangeOp
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:CMDBChangeOp' => 'Vykonanie Zmeny',
'Class:CMDBChangeOp+' => 'Change made by one person, at a single time, on a single object~~',
'Class:CMDBChangeOp/Attribute:change' => 'Zmena',
'Class:CMDBChangeOp/Attribute:change+' => '~~',
'Class:CMDBChangeOp/Attribute:date' => 'dátum',
'Class:CMDBChangeOp/Attribute:date+' => 'date and time of the change~~',
'Class:CMDBChangeOp/Attribute:userinfo' => 'užívateľ',
'Class:CMDBChangeOp/Attribute:userinfo+' => 'who made this change~~',
'Class:CMDBChangeOp/Attribute:objclass' => 'Trieda objektu',
'Class:CMDBChangeOp/Attribute:objclass+' => 'class name of the object on which the change was made~~',
'Class:CMDBChangeOp/Attribute:objkey' => 'ID objektu',
'Class:CMDBChangeOp/Attribute:objkey+' => 'id of the object on which the change was made~~',
'Class:CMDBChangeOp/Attribute:finalclass' => 'Typ',
'Class:CMDBChangeOp/Attribute:finalclass+' => 'type of change which was performed~~',
]);
//
// Class: CMDBChangeOpCreate
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:CMDBChangeOpCreate' => 'Vytvorenie objektu',
'Class:CMDBChangeOpCreate+' => 'Object creation tracking~~',
]);
//
// Class: CMDBChangeOpDelete
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:CMDBChangeOpDelete' => 'Vymazanie objektu',
'Class:CMDBChangeOpDelete+' => 'Object deletion tracking~~',
]);
//
// Class: CMDBChangeOpSetAttribute
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:CMDBChangeOpSetAttribute' => 'Zmena objektu',
'Class:CMDBChangeOpSetAttribute+' => 'Object properties change tracking~~',
'Class:CMDBChangeOpSetAttribute/Attribute:attcode' => 'Atribút',
'Class:CMDBChangeOpSetAttribute/Attribute:attcode+' => 'code of the modified property~~',
]);
//
// Class: CMDBChangeOpSetAttributeScalar
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:CMDBChangeOpSetAttributeScalar' => 'Zmena vlastnosti',
'Class:CMDBChangeOpSetAttributeScalar+' => 'Object scalar properties change tracking~~',
'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue' => 'Predchádzajúca hodnota',
'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue+' => 'previous value of the attribute~~',
'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue' => 'Nová hodnota',
'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue+' => 'new value of the attribute~~',
]);
// Used by CMDBChangeOp... & derived classes
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Change:ObjectCreated' => 'Objekt vytvorený',
'Change:ObjectDeleted' => 'Objekt odstránený',
'Change:ObjectModified' => 'Objekt upravený',
'Change:TwoAttributesChanged' => 'Edited %1$s and %2$s~~',
'Change:ThreeAttributesChanged' => 'Edited %1$s, %2$s and 1 other~~',
'Change:FourOrMoreAttributesChanged' => 'Edited %1$s, %2$s and %3$s others~~',
'Change:AttName_SetTo_NewValue_PreviousValue_OldValue' => '%1$s nastavené na %2$s (predchádzajúca hodnota: %3$s)',
'Change:AttName_SetTo' => '%1$s nastavené na %2$s',
'Change:Text_AppendedTo_AttName' => '%1$s pripojené k %2$s',
'Change:AttName_Changed_PreviousValue_OldValue' => '%1$s upravené, predchádzajúca hodnota: %2$s',
'Change:AttName_Changed' => '%1$s upravené',
'Change:AttName_EntryAdded' => '%1$s upravené, nový záznam pridaný.',
'Change:State_Changed_NewValue_OldValue' => 'Changed from %2$s to %1$s~~',
'Change:LinkSet:Added' => 'Pridané %1$s',
'Change:LinkSet:Removed' => 'Odstránené %1$s',
'Change:LinkSet:Modified' => 'Upravené %1$s',
]);
//
// Class: CMDBChangeOpSetAttributeBlob
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:CMDBChangeOpSetAttributeBlob' => 'Zmena údajov',
'Class:CMDBChangeOpSetAttributeBlob+' => 'data change tracking~~',
'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata' => 'Predchádzajúce údaje',
'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata+' => 'previous contents of the attribute~~',
]);
//
// Class: CMDBChangeOpSetAttributeText
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:CMDBChangeOpSetAttributeText' => 'Zmena textu',
'Class:CMDBChangeOpSetAttributeText+' => 'text change tracking~~',
'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata' => 'Predchádzajúce dáta',
'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata+' => 'previous contents of the attribute~~',
]);
//
// Class: Event
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Event' => 'Logovacia Udalosť',
'Class:Event+' => 'An application internal event~~',
'Class:Event/Attribute:message' => 'Správa',
'Class:Event/Attribute:message+' => 'short description of the event~~',
'Class:Event/Attribute:date' => 'Dátum',
'Class:Event/Attribute:date+' => 'date and time at which the changes have been recorded~~',
'Class:Event/Attribute:userinfo' => 'Informácie o užívateľovi',
'Class:Event/Attribute:userinfo+' => 'identification of the user that was doing the action that triggered this event~~',
'Class:Event/Attribute:finalclass' => 'Typ',
'Class:Event/Attribute:finalclass+' => 'Name of the final class: specifies the sort of event which occurred~~',
]);
//
// Class: EventNotification
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:EventNotification' => 'Notifikačná Udalosť',
'Class:EventNotification+' => 'Trace of a notification that has been sent~~',
'Class:EventNotification/Attribute:trigger_id' => 'Spúštač',
'Class:EventNotification/Attribute:trigger_id+' => '~~',
'Class:EventNotification/Attribute:action_id' => 'Akcia',
'Class:EventNotification/Attribute:action_id+' => '~~',
'Class:EventNotification/Attribute:object_id' => 'ID objektu',
'Class:EventNotification/Attribute:object_id+' => '',
]);
//
// Class: EventNotificationEmail
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:EventNotificationEmail' => 'Udalosť emitovania emailu',
'Class:EventNotificationEmail+' => 'Trace of an email that has been sent~~',
'Class:EventNotificationEmail/Attribute:to' => 'Komu',
'Class:EventNotificationEmail/Attribute:to+' => '~~',
'Class:EventNotificationEmail/Attribute:cc' => 'Kópia',
'Class:EventNotificationEmail/Attribute:cc+' => '~~',
'Class:EventNotificationEmail/Attribute:bcc' => 'Skrytá Kópia',
'Class:EventNotificationEmail/Attribute:bcc+' => '~~',
'Class:EventNotificationEmail/Attribute:from' => 'Od',
'Class:EventNotificationEmail/Attribute:from+' => 'Sender of the message~~',
'Class:EventNotificationEmail/Attribute:subject' => 'Predmet',
'Class:EventNotificationEmail/Attribute:subject+' => '~~',
'Class:EventNotificationEmail/Attribute:body' => 'Telo',
'Class:EventNotificationEmail/Attribute:body+' => '~~',
'Class:EventNotificationEmail/Attribute:attachments' => 'Prílohy',
'Class:EventNotificationEmail/Attribute:attachments+' => '~~',
]);
//
// Class: EventIssue
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:EventIssue' => 'Issue event',
'Class:EventIssue+' => 'Trace of an issue (warning, error, etc.)~~',
'Class:EventIssue/Attribute:issue' => 'Issue',
'Class:EventIssue/Attribute:issue+' => 'What happened~~',
'Class:EventIssue/Attribute:impact' => 'Dopad',
'Class:EventIssue/Attribute:impact+' => 'What are the consequences~~',
'Class:EventIssue/Attribute:page' => 'Strana',
'Class:EventIssue/Attribute:page+' => 'HTTP entry point~~',
'Class:EventIssue/Attribute:arguments_post' => 'Odoslané argumenty (POST)',
'Class:EventIssue/Attribute:arguments_post+' => 'HTTP POST arguments~~',
'Class:EventIssue/Attribute:arguments_get' => 'URL argumenty (GET)',
'Class:EventIssue/Attribute:arguments_get+' => 'HTTP GET arguments~~',
'Class:EventIssue/Attribute:callstack' => 'Zásobník volaní',
'Class:EventIssue/Attribute:callstack+' => '~~',
'Class:EventIssue/Attribute:data' => 'Dáta',
'Class:EventIssue/Attribute:data+' => 'More information~~',
]);
//
// Class: EventWebService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:EventWebService' => 'Udalosť Webovej služby',
'Class:EventWebService+' => 'Trace of a web service call~~',
'Class:EventWebService/Attribute:verb' => 'Slovný',
'Class:EventWebService/Attribute:verb+' => 'Name of the operation~~',
'Class:EventWebService/Attribute:result' => 'Výsledok',
'Class:EventWebService/Attribute:result+' => 'Overall success/failure~~',
'Class:EventWebService/Attribute:log_info' => 'Záznam Informácie',
'Class:EventWebService/Attribute:log_info+' => 'Result info log~~',
'Class:EventWebService/Attribute:log_warning' => 'Záznam Upozorenia',
'Class:EventWebService/Attribute:log_warning+' => 'Result warning log~~',
'Class:EventWebService/Attribute:log_error' => 'Záznam Chyby',
'Class:EventWebService/Attribute:log_error+' => 'Result error log~~',
'Class:EventWebService/Attribute:data' => 'Dáta',
'Class:EventWebService/Attribute:data+' => 'Result data~~',
]);
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:EventRestService' => 'REST/JSON call~~',
'Class:EventRestService+' => 'Trace of a REST/JSON service call~~',
'Class:EventRestService/Attribute:operation' => 'Operation~~',
'Class:EventRestService/Attribute:operation+' => 'Argument \'operation\'~~',
'Class:EventRestService/Attribute:version' => 'Version~~',
'Class:EventRestService/Attribute:version+' => 'Argument \'version\'~~',
'Class:EventRestService/Attribute:json_input' => 'Input~~',
'Class:EventRestService/Attribute:json_input+' => 'Argument \'json_data\'~~',
'Class:EventRestService/Attribute:code' => 'Code~~',
'Class:EventRestService/Attribute:code+' => 'Result code~~',
'Class:EventRestService/Attribute:json_output' => 'Response~~',
'Class:EventRestService/Attribute:json_output+' => 'HTTP response (json)~~',
'Class:EventRestService/Attribute:provider' => 'Provider~~',
'Class:EventRestService/Attribute:provider+' => 'PHP class implementing the expected operation~~',
]);
//
// Class: EventLoginUsage
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:EventLoginUsage' => 'Využívanosť prihlasovacieho mena',
'Class:EventLoginUsage+' => 'Connection to the application~~',
'Class:EventLoginUsage/Attribute:user_id' => 'Prihlasovacie meno',
'Class:EventLoginUsage/Attribute:user_id+' => '~~',
'Class:EventLoginUsage/Attribute:contact_name' => 'Užívateľské meno',
'Class:EventLoginUsage/Attribute:contact_name+' => '~~',
'Class:EventLoginUsage/Attribute:contact_email' => 'Užívateľský email',
'Class:EventLoginUsage/Attribute:contact_email+' => 'Email Address of the User~~',
]);
//
// Class: EventNotificationNewsroom
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:EventNotificationNewsroom' => 'News sent~~',
'Class:EventNotificationNewsroom+' => '~~',
'Class:EventNotificationNewsroom/Attribute:title' => 'Title~~',
'Class:EventNotificationNewsroom/Attribute:title+' => '~~',
'Class:EventNotificationNewsroom/Attribute:icon' => 'Icon~~',
'Class:EventNotificationNewsroom/Attribute:icon+' => '~~',
'Class:EventNotificationNewsroom/Attribute:priority' => 'Priority~~',
'Class:EventNotificationNewsroom/Attribute:priority+' => '~~',
'Class:EventNotificationNewsroom/Attribute:priority/Value:1' => 'Critical~~',
'Class:EventNotificationNewsroom/Attribute:priority/Value:1+' => 'Critical~~',
'Class:EventNotificationNewsroom/Attribute:priority/Value:2' => 'Urgent~~',
'Class:EventNotificationNewsroom/Attribute:priority/Value:2+' => 'Urgent~~',
'Class:EventNotificationNewsroom/Attribute:priority/Value:3' => 'Important~~',
'Class:EventNotificationNewsroom/Attribute:priority/Value:3+' => 'Important~~',
'Class:EventNotificationNewsroom/Attribute:priority/Value:4' => 'Standard~~',
'Class:EventNotificationNewsroom/Attribute:priority/Value:4+' => 'Standard~~',
'Class:EventNotificationNewsroom/Attribute:url' => 'URL~~',
'Class:EventNotificationNewsroom/Attribute:url+' => '~~',
'Class:EventNotificationNewsroom/Attribute:read' => 'Read~~',
'Class:EventNotificationNewsroom/Attribute:read+' => '~~',
'Class:EventNotificationNewsroom/Attribute:read/Value:no' => 'No~~',
'Class:EventNotificationNewsroom/Attribute:read/Value:no+' => 'No~~',
'Class:EventNotificationNewsroom/Attribute:read/Value:yes' => 'Yes~~',
'Class:EventNotificationNewsroom/Attribute:read/Value:yes+' => 'Yes~~',
'Class:EventNotificationNewsroom/Attribute:read_date' => 'Read date~~',
'Class:EventNotificationNewsroom/Attribute:read_date+' => '~~',
'Class:EventNotificationNewsroom/Attribute:contact_id' => 'Contact~~',
'Class:EventNotificationNewsroom/Attribute:contact_id+' => '~~',
]);
//
// Class: Action
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Action' => 'Vlastná akcia',
'Class:Action+' => 'User defined action~~',
'Class:Action/ComplementaryName' => '%1$s: %2$s~~',
'Class:Action/Attribute:name' => 'Názov',
'Class:Action/Attribute:name+' => '~~',
'Class:Action/Attribute:description' => 'Popis',
'Class:Action/Attribute:description+' => '~~',
'Class:Action/Attribute:status' => 'Stav',
'Class:Action/Attribute:status+' => 'This status drives the action behavior~~',
'Class:Action/Attribute:status/Value:test' => 'Test',
'Class:Action/Attribute:status/Value:test+' => '~~',
'Class:Action/Attribute:status/Value:enabled' => 'V produkcií',
'Class:Action/Attribute:status/Value:enabled+' => '~~',
'Class:Action/Attribute:status/Value:disabled' => 'Neaktívna',
'Class:Action/Attribute:status/Value:disabled+' => '~~',
'Class:Action/Attribute:trigger_list' => 'Súvisiace spúštače',
'Class:Action/Attribute:trigger_list+' => 'Triggers linked to this action~~',
'Class:Action/Attribute:asynchronous' => 'Asynchronous~~',
'Class:Action/Attribute:asynchronous+' => 'Whether this action should be executed in the background or not~~',
'Class:Action/Attribute:asynchronous/Value:use_global_setting' => 'Use global setting~~',
'Class:Action/Attribute:asynchronous/Value:yes' => 'Yes~~',
'Class:Action/Attribute:asynchronous/Value:no' => 'No~~',
'Class:Action/Attribute:finalclass' => 'Typ',
'Class:Action/Attribute:finalclass+' => 'Name of the final class~~',
'Action:WarningNoTriggerLinked' => 'Warning, no trigger is linked to the action. It will not be active until it has at least 1.~~',
'Action:last_executions_tab' => 'Last executions~~',
'Action:last_executions_tab_panel_title' => 'Executions of this action (%1$s)~~',
'Action:last_executions_tab_limit_days' => 'past %1$s days~~',
'Action:last_executions_tab_limit_none' => 'no limit~~',
]);
//
// Class: ActionNotification
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:ActionNotification' => 'Upozornenie',
'Class:ActionNotification+' => 'Notification Action (abstract)~~',
]);
//
// Class: ActionEmail
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:ActionEmail' => 'Emailová notifikácia',
'Class:ActionEmail+' => '~~',
'Class:ActionEmail/Attribute:status+' => 'This status drives who will be notified:
- Being tested: just the Test recipient,
- In production: all (To, cc and Bcc)
- Inactive: no-one~~',
'Class:ActionEmail/Attribute:status/Value:test+' => 'Only the Test recipient is notified~~',
'Class:ActionEmail/Attribute:status/Value:enabled+' => 'All To, Cc and Bcc emails are notified~~',
'Class:ActionEmail/Attribute:status/Value:disabled+' => 'The email notification will not be sent~~',
'Class:ActionEmail/Attribute:test_recipient' => 'Testovací príjemca',
'Class:ActionEmail/Attribute:test_recipient+' => 'Destination email address used instead of To, Cc and Bcc when notification is being tested~~',
'Class:ActionEmail/Attribute:from' => 'Od',
'Class:ActionEmail/Attribute:from+' => 'Either a static email address or a placeholder like $this->agent_id->email$.
The latest may not be accepted by some email servers.~~',
'Class:ActionEmail/Attribute:from_label' => 'From (label)~~',
'Class:ActionEmail/Attribute:from_label+' => 'Either a static label or a placeholder like $this->agent_id->friendlyname$~~',
'Class:ActionEmail/Attribute:reply_to' => 'Odpoveď na',
'Class:ActionEmail/Attribute:reply_to+' => 'Either a static email address or a placeholder like $this->team_id->email$.
If omitted the From (email) is used.~~',
'Class:ActionEmail/Attribute:reply_to_label' => 'Reply to (label)~~',
'Class:ActionEmail/Attribute:reply_to_label+' => 'Either a static label or a placeholder like $this->team_id->friendlyname$.
If omitted the From (label) is used.~~',
'Class:ActionEmail/Attribute:to' => 'Komu',
'Class:ActionEmail/Attribute:to+' => 'To: an OQL query returning objects having an email field.
While editing, click on the magnifier to get pertinent examples.
You can use in the OQL :this->attribute_code with an attribute code of the object which triggered the Notification. Then test your OQL syntax using the play icon.~~',
'Class:ActionEmail/Attribute:cc' => 'Kópia',
'Class:ActionEmail/Attribute:cc+' => 'Carbon Copy: an OQL query returning objects having an email field.
While editing, click on the magnifier to get pertinent examples.
You can use in the OQL :this->attribute_code with an attribute code of the object which triggered the Notification. Then test your OQL syntax using the play icon.~~',
'Class:ActionEmail/Attribute:bcc' => 'Skrytá kópia',
'Class:ActionEmail/Attribute:bcc+' => 'Blind Carbon Copy: an OQL query returning objects having an email field.
While editing, click on the magnifier to get pertinent examples~~',
'Class:ActionEmail/Attribute:subject' => 'Predmet',
'Class:ActionEmail/Attribute:subject+' => 'Title of the email. Can contain placeholders like $this->attribute_code$~~',
'Class:ActionEmail/Attribute:body' => 'Telo',
'Class:ActionEmail/Attribute:body+' => 'Contents of the email. Can contain placeholders like:
- $this->attribute_code$ any attribute of the object triggering the notification,
- $this->html(attribute_code)$ same as above but displayed in html format,
- $this->hyperlink()$ hyperlink in the backoffice to the object triggering the notification,
- $this->hyperlink(portal)$ hyperlink in the portal to the object triggering the notification,
- $this->head_html(case_log_attribute)$ last reply in html format of a caselog attribute,
- $this->attribute_external_key->attribute$ recursive syntax for any remote attribute,
- $current_contact->attribute$ attribute of the Person who triggered the notification~~',
'Class:ActionEmail/Attribute:importance' => 'Dôležitosť',
'Class:ActionEmail/Attribute:importance+' => 'Importance flag set on the generated email~~',
'Class:ActionEmail/Attribute:importance/Value:low' => 'Nízka',
'Class:ActionEmail/Attribute:importance/Value:low+' => '~~',
'Class:ActionEmail/Attribute:importance/Value:normal' => 'Normálna',
'Class:ActionEmail/Attribute:importance/Value:normal+' => '~~',
'Class:ActionEmail/Attribute:importance/Value:high' => 'Vysoká',
'Class:ActionEmail/Attribute:importance/Value:high+' => '~~',
'Class:ActionEmail/Attribute:language' => 'Language~~',
'Class:ActionEmail/Attribute:language+' => 'Language to use for placeholders ($xxx$) inside the message (state, importance, priority, etc)~~',
'Class:ActionEmail/Attribute:html_template' => 'HTML template~~',
'Class:ActionEmail/Attribute:html_template+' => 'Optional HTML template wrapping around the content of the \'Body\' attribute below, useful for tailored email layouts (in the template, content of the \'Body\' attribute will replace the $content$ placeholder)~~',
'Class:ActionEmail/Attribute:ignore_notify' => 'Ignore the Notify flag~~',
'Class:ActionEmail/Attribute:ignore_notify+' => 'If set to \'Yes\' the \'Notify\' flag on Contacts has no effect.~~',
'Class:ActionEmail/Attribute:ignore_notify/Value:no' => 'No~~',
'Class:ActionEmail/Attribute:ignore_notify/Value:yes' => 'Yes~~',
'ActionEmail:main' => 'Message~~',
'ActionEmail:trigger' => 'Triggers~~',
'ActionEmail:recipients' => 'Contacts~~',
'ActionEmail:preview_tab' => 'Preview~~',
'ActionEmail:preview_tab+' => 'Preview of the eMail template~~',
'ActionEmail:preview_warning' => 'The actual eMail may look different in the eMail client than this preview in your browser.~~',
'ActionEmail:preview_more_info' => 'For more information about the CSS features supported by the different eMail clients, refer to %1$s~~',
'ActionEmail:content_placeholder_missing' => 'The placeholder "%1$s" was not found in the HTML template. The content of the field "%2$s" will not be included in the generated emails.~~',
]);
//
// Class: ActionNewsroom
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'ActionNewsroom:trigger' => 'Trigger~~',
'ActionNewsroom:content' => 'Message~~',
'ActionNewsroom:settings' => 'Settings~~',
'Class:ActionNewsroom' => 'Notification by Newsroom~~',
'Class:ActionNewsroom+' => '~~',
'Class:ActionNewsroom/Attribute:title' => 'Title~~',
'Class:ActionNewsroom/Attribute:title+' => 'Title of the news. Can contain placeholders like $this->attribute_code$~~',
'Class:ActionNewsroom/Attribute:message' => 'Message~~',
'Class:ActionNewsroom/Attribute:message+' => 'Contents of the news, in Markdown format not HTML. Can contain placeholders like:
- $this->attribute_code$ any attribute of the object triggering the notification,
- $this->attribute_external_key->attribute$ recursive syntax for any remote attribute,
- $current_contact->attribute$ attribute of the Person who triggered the notification~~',
'Class:ActionNewsroom/Attribute:icon' => 'Icon~~',
'Class:ActionNewsroom/Attribute:icon+' => 'Icon to appear next to the news in the newsroom.
- If filled, the custom icon will be used
- Else the icon of the triggering object if there is one (e.g. picture of a Person),
- Else the icon of the triggering object class,
- Otherwise, the application compact logo will be used~~',
'Class:ActionNewsroom/Attribute:priority' => 'Priority~~',
'Class:ActionNewsroom/Attribute:priority+' => 'News will be ordered by decreasing priority, when displayed in the Newsroom popup~~',
'Class:ActionNewsroom/Attribute:priority/Value:1' => 'Critical~~',
'Class:ActionNewsroom/Attribute:priority/Value:1+' => 'Critical~~',
'Class:ActionNewsroom/Attribute:priority/Value:2' => 'Urgent~~',
'Class:ActionNewsroom/Attribute:priority/Value:2+' => 'Urgent~~',
'Class:ActionNewsroom/Attribute:priority/Value:3' => 'Important~~',
'Class:ActionNewsroom/Attribute:priority/Value:3+' => 'Important~~',
'Class:ActionNewsroom/Attribute:priority/Value:4' => 'Standard~~',
'Class:ActionNewsroom/Attribute:priority/Value:4+' => 'Standard~~',
'Class:ActionNewsroom/Attribute:test_recipient_id' => 'Test recipient~~',
'Class:ActionNewsroom/Attribute:test_recipient_id+' => 'Person used instead of Recipients when notification is being tested~~',
'Class:ActionNewsroom/Attribute:recipients' => 'Recipients~~',
'Class:ActionNewsroom/Attribute:recipients+' => 'An OQL query returning Contact objects~~',
'Class:ActionNewsroom/Attribute:url' => 'URL~~',
'Class:ActionNewsroom/Attribute:url+' => 'By default, it points to the object triggering the notification. But you can also specify a custom URL.~~',
]);
//
// Class: Trigger
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Trigger' => 'Spúštač',
'Class:Trigger+' => 'Custom event handler~~',
'Class:Trigger/ComplementaryName' => '%1$s, class restriction: %2$s~~',
'Class:Trigger/Attribute:description' => 'Popis',
'Class:Trigger/Attribute:description+' => 'Be precise as your users will base their potential unsubscription on this information~~',
'Class:Trigger/Attribute:action_list' => 'Spúšťané akcie',
'Class:Trigger/Attribute:action_list+' => 'Actions performed when the trigger is activated~~',
'Class:Trigger/Attribute:finalclass' => 'Typ',
'Class:Trigger/Attribute:finalclass+' => 'Name of the final class~~',
'Class:Trigger/Attribute:context' => 'Context~~',
'Class:Trigger/Attribute:context+' => 'Context to allow the trigger to start~~',
'Class:Trigger/Attribute:complement' => 'Additional information~~',
'Class:Trigger/Attribute:complement+' => 'Computed automatically in english for triggers derived from TriggerOnObject~~',
'Class:Trigger/Attribute:subscription_policy' => 'Subscription policy~~',
'Class:Trigger/Attribute:subscription_policy+' => 'Allows users to unsubscribe from the trigger~~',
'Class:Trigger/Attribute:subscription_policy/Value:allow_no_channel' => 'Allow complete unsubscription~~',
'Class:Trigger/Attribute:subscription_policy/Value:force_at_least_one_channel' => 'Force at least one channel (News or Email)~~',
'Class:Trigger/Attribute:subscription_policy/Value:force_all_channels' => 'Deny unsubscription~~',
]);
//
// Class: TriggerOnObject
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnObject' => 'Spúštač (pre danú triedu)',
'Class:TriggerOnObject+' => 'Trigger on a given class of objects~~',
'Class:TriggerOnObject/Attribute:target_class' => 'Cieľová trieda',
'Class:TriggerOnObject/Attribute:target_class+' => 'Objects in this class will activate the trigger~~',
'Class:TriggerOnObject/Attribute:filter' => 'Filter~~',
'Class:TriggerOnObject/Attribute:filter+' => 'Limit the object list (of the target class) which will activate the trigger~~',
'TriggerOnObject:WrongFilterQuery' => 'Wrong filter query: %1$s~~',
'TriggerOnObject:WrongFilterClass' => 'The filter query must return objects of class "%1$s"~~',
]);
//
// Class: TriggerOnPortalUpdate
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnPortalUpdate' => 'Spúštač (pri aktualizácií z portálu)',
'Class:TriggerOnPortalUpdate+' => 'Trigger on an end-user\'s update from the portal~',
]);
//
// Class: TriggerOnStateChange
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnStateChange' => 'Spúšťač (pri zmene stavu)',
'Class:TriggerOnStateChange+' => 'Trigger on object state change~~',
'Class:TriggerOnStateChange/Attribute:state' => 'Stav',
'Class:TriggerOnStateChange/Attribute:state+' => '~~',
]);
//
// Class: TriggerOnStateEnter
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnStateEnter' => 'Spúštač (pri vstupe do stavu)',
'Class:TriggerOnStateEnter+' => 'Trigger on object state change - entering~~',
]);
//
// Class: TriggerOnStateLeave
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnStateLeave' => 'Spúštač (pri opustení stavu)',
'Class:TriggerOnStateLeave+' => 'Trigger on object state change - leaving~~',
]);
//
// Class: TriggerOnObjectCreate
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnObjectCreate' => 'Spúštač (pri vytvoreni objektu)',
'Class:TriggerOnObjectCreate+' => 'Trigger on object creation of [a child class of] the given class~~',
]);
//
// Class: TriggerOnObjectDelete
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnObjectDelete' => 'Trigger (on object deletion)~~',
'Class:TriggerOnObjectDelete+' => 'Trigger on object deletion of [a child class of] the given class~~',
]);
//
// Class: TriggerOnObjectUpdate
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnObjectUpdate' => 'Trigger (on object update)~~',
'Class:TriggerOnObjectUpdate+' => 'Trigger on object update of [a child class of] the given class~~',
'Class:TriggerOnObjectUpdate/Attribute:target_attcodes' => 'Target fields~~',
'Class:TriggerOnObjectUpdate/Attribute:target_attcodes+' => '~~',
]);
//
// Class: TriggerOnObjectMention
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnObjectMention' => 'Trigger (on object mention)~~',
'Class:TriggerOnObjectMention+' => 'Trigger on mention (@xxx) of an object of [a child class of] the given class in a log attribute~~',
'Class:TriggerOnObjectMention/Attribute:mentioned_filter' => 'Mentioned filter~~',
'Class:TriggerOnObjectMention/Attribute:mentioned_filter+' => 'Limit the list of mentioned objects which will activate the trigger. If empty, any mentioned object (of any class) will activate it.~~',
]);
//
// Class: TriggerOnAttributeBlobDownload
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnAttributeBlobDownload' => 'Trigger (on object\'s document download)~~',
'Class:TriggerOnAttributeBlobDownload+' => 'Trigger on object\'s document field download of [a child class of] the given class~~',
'Class:TriggerOnAttributeBlobDownload/Attribute:target_attcodes' => 'Target fields~~',
'Class:TriggerOnAttributeBlobDownload/Attribute:target_attcodes+' => '~~',
]);
//
// Class: TriggerOnThresholdReached
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:TriggerOnThresholdReached' => 'Spúštač (pri prekročení hranice)',
'Class:TriggerOnThresholdReached+' => 'Trigger on Stop-Watch threshold reached~~',
'Class:TriggerOnThresholdReached/Attribute:stop_watch_code' => 'Stopky',
'Class:TriggerOnThresholdReached/Attribute:stop_watch_code+' => '~~',
'Class:TriggerOnThresholdReached/Attribute:threshold_index' => 'Hranica',
'Class:TriggerOnThresholdReached/Attribute:threshold_index+' => '~~',
]);
//
// Class: lnkTriggerAction
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:lnkTriggerAction' => 'Akcia/Spúštač',
'Class:lnkTriggerAction+' => 'Link between a trigger and an action~~',
'Class:lnkTriggerAction/Attribute:action_id' => 'Akcia',
'Class:lnkTriggerAction/Attribute:action_id+' => 'The action to be executed~~',
'Class:lnkTriggerAction/Attribute:action_name' => 'Akcia',
'Class:lnkTriggerAction/Attribute:action_name+' => '~~',
'Class:lnkTriggerAction/Attribute:trigger_id' => 'Spúštač',
'Class:lnkTriggerAction/Attribute:trigger_id+' => '~~',
'Class:lnkTriggerAction/Attribute:trigger_name' => 'Spúštač',
'Class:lnkTriggerAction/Attribute:trigger_name+' => '~~',
'Class:lnkTriggerAction/Attribute:order' => 'Príkaz',
'Class:lnkTriggerAction/Attribute:order+' => 'Actions execution order~~',
]);
//
// Synchro Data Source
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:SynchroDataSource' => 'Synchronizovaný zdroj dát',
'Class:SynchroDataSource/Attribute:name' => 'Názov',
'Class:SynchroDataSource/Attribute:name+' => '~~',
'Class:SynchroDataSource/Attribute:description' => 'Popis',
'Class:SynchroDataSource/Attribute:status' => 'Stav',
'Class:SynchroDataSource/Attribute:scope_class' => 'Cieľová trieda',
'Class:SynchroDataSource/Attribute:scope_class+' => 'A Synchro Data Source can only populate a single '.ITOP_APPLICATION_SHORT.' class~~',
'Class:SynchroDataSource/Attribute:user_id' => 'Užívateľ',
'Class:SynchroDataSource/Attribute:notify_contact_id' => 'Notifikovať kontakt',
'Class:SynchroDataSource/Attribute:notify_contact_id+' => 'Contact to notify in case of error~~',
'Class:SynchroDataSource/Attribute:url_icon' => 'URL ikonky',
'Class:SynchroDataSource/Attribute:url_icon+' => 'Hyperlink a (small) image representing the application with which '.ITOP_APPLICATION_SHORT.' is synchronized.
This icon is shown in the tooltip of the “Lock” symbol on '.ITOP_APPLICATION_SHORT.' synchronized object~~',
'Class:SynchroDataSource/Attribute:url_application' => 'URL aplikácie',
'Class:SynchroDataSource/Attribute:url_application+' => 'Hyperlink to the object in the external application corresponding to a synchronized '.ITOP_APPLICATION_SHORT.' object.
Possible placeholders: $this->attribute$ and $replica->primary_key$.
The hyperlink is displayed in the tooltip appearing on the “Lock” symbol of any synchronized '.ITOP_APPLICATION_SHORT.' object~~',
'Class:SynchroDataSource/Attribute:reconciliation_policy' => 'Harmonizačná politika',
'Class:SynchroDataSource/Attribute:reconciliation_policy+' => '"Use the attributes": '.ITOP_APPLICATION_SHORT.' object matches replica values for each Synchro attributes flagged for Reconciliation.
"Use primary_key": the column primary_key of the replica is expected to contain the identifier of the '.ITOP_APPLICATION_SHORT.' object~~',
'Class:SynchroDataSource/Attribute:full_load_periodicity' => 'Intervaly plného zaťaženia',
'Class:SynchroDataSource/Attribute:full_load_periodicity+' => 'A complete reload of all data must occur at least as often as specified here~~',
'Class:SynchroDataSource/Attribute:action_on_zero' => 'Akcia pri hodnote nula',
'Class:SynchroDataSource/Attribute:action_on_zero+' => 'Action taken when the search returns no object~~',
'Class:SynchroDataSource/Attribute:action_on_one' => 'Akcia pri hodnote jedna',
'Class:SynchroDataSource/Attribute:action_on_one+' => 'Action taken when the search returns exactly one object~~',
'Class:SynchroDataSource/Attribute:action_on_multiple' => 'Akcia pri viacerých',
'Class:SynchroDataSource/Attribute:action_on_multiple+' => 'Action taken when the search returns more than one object~~',
'Class:SynchroDataSource/Attribute:user_delete_policy' => 'Užívatelia s povolením',
'Class:SynchroDataSource/Attribute:user_delete_policy+' => 'Who is allowed to delete synchronized objects~~',
'Class:SynchroDataSource/Attribute:delete_policy/Value:never' => 'Nikto',
'Class:SynchroDataSource/Attribute:delete_policy/Value:depends' => 'Len administrátori',
'Class:SynchroDataSource/Attribute:delete_policy/Value:always' => 'Všetci povolení užívatelia',
'Class:SynchroDataSource/Attribute:delete_policy_update' => 'Aktualizačné pravidlá',
'Class:SynchroDataSource/Attribute:delete_policy_update+' => 'A list of "field_name:value;":
"field_name" must be a valid field of the Target class.
"value" must be an authorised value for that field.~~',
'Class:SynchroDataSource/Attribute:delete_policy_retention' => 'Doba po ktorú je odstraňovanie pozdržané',
'Class:SynchroDataSource/Attribute:delete_policy_retention+' => 'How much time an obsolete object is kept before being deleted~~',
'Class:SynchroDataSource/Attribute:database_table_name' => 'Tabuľka dát',
'Class:SynchroDataSource/Attribute:database_table_name+' => 'Name of the table to store the synchronization data. If left empty, a default name will be computed.~~',
'Class:SynchroDataSource/Attribute:status/Value:implementation' => 'Implementácia',
'Class:SynchroDataSource/Attribute:status/Value:obsolete' => 'Vyradené',
'Class:SynchroDataSource/Attribute:status/Value:production' => 'Produkcia',
'Class:SynchroDataSource/Attribute:scope_restriction' => 'Obmedzenie rozsahu',
'Class:SynchroDataSource/Attribute:reconciliation_policy/Value:use_attributes' => 'Použiť atribúty',
'Class:SynchroDataSource/Attribute:reconciliation_policy/Value:use_primary_key' => 'Použiť pole "Primárny kľúč"',
'Class:SynchroDataSource/Attribute:action_on_zero/Value:create' => 'Vytvoriť',
'Class:SynchroDataSource/Attribute:action_on_zero/Value:error' => 'Chyba',
'Class:SynchroDataSource/Attribute:action_on_one/Value:error' => 'Chyba',
'Class:SynchroDataSource/Attribute:action_on_one/Value:update' => 'Aktualizácia',
'Class:SynchroDataSource/Attribute:action_on_multiple/Value:create' => 'Vytvoriť',
'Class:SynchroDataSource/Attribute:action_on_multiple/Value:error' => 'Chyba',
'Class:SynchroDataSource/Attribute:action_on_multiple/Value:take_first' => 'Vziať prvý (náhodný?)',
'Class:SynchroDataSource/Attribute:delete_policy' => 'Politika odstraňovania',
'Class:SynchroDataSource/Attribute:delete_policy+' => 'What to do when a replica becomes obsolete:
"Ignore": do nothing, the associated object remains as is in iTop.
"Delete": Delete the associated object in iTop (and the replica in the data table).
"Update": Update the associated object as specified by the Update rules (see below).
"Update then Delete": apply the "Update rules". When Retention Duration expires, execute a "Delete" ~~',
'Class:SynchroDataSource/Attribute:delete_policy/Value:delete' => 'Odstrániť',
'Class:SynchroDataSource/Attribute:delete_policy/Value:ignore' => 'Ignorovať',
'Class:SynchroDataSource/Attribute:delete_policy/Value:update' => 'Aktualizovať',
'Class:SynchroDataSource/Attribute:delete_policy/Value:update_then_delete' => 'Aktualizovať, potom odstrániť',
'Class:SynchroDataSource/Attribute:attribute_list' => 'Zoznam atribútov',
'Class:SynchroDataSource/Attribute:user_delete_policy/Value:administrators' => 'Len administrátori',
'Class:SynchroDataSource/Attribute:user_delete_policy/Value:everybody' => 'Všetci majú povolené odstraňovať takéto objekty',
'Class:SynchroDataSource/Attribute:user_delete_policy/Value:nobody' => 'Nikto',
'SynchroDataSource:Description' => 'Popis',
'SynchroDataSource:Reconciliation' => 'Hľadať & harmonizáciu',
'SynchroDataSource:Deletion' => 'Pravidlá odstraňovania',
'SynchroDataSource:Status' => 'Stav',
'SynchroDataSource:Information' => 'Informácia',
'SynchroDataSource:Definition' => 'Definícia',
'Core:SynchroAttributes' => 'Atribúty',
'Core:SynchroStatus' => 'Stav',
'Core:Synchro:ErrorsLabel' => 'Chyby',
'Core:Synchro:CreatedLabel' => 'Vytvorené',
'Core:Synchro:ModifiedLabel' => 'Upravené',
'Core:Synchro:UnchangedLabel' => 'Nezmenené',
'Core:Synchro:ReconciledErrorsLabel' => 'Chyby',
'Core:Synchro:ReconciledLabel' => 'Schválené',
'Core:Synchro:ReconciledNewLabel' => 'Vytvorené',
'Core:SynchroReconcile:Yes' => 'Áno',
'Core:SynchroReconcile:No' => 'Nie',
'Core:SynchroUpdate:Yes' => 'Áno',
'Core:SynchroUpdate:No' => 'Nie',
'Core:Synchro:LastestStatus' => 'Posledný stav',
'Core:Synchro:History' => 'Synchronizačná História',
'Core:Synchro:NeverRun' => 'Táto synchronizácia nikdy nebežala. Zatiaľ bez záznamu .',
'Core:Synchro:SynchroEndedOn_Date' => 'Posledná synchronizácia skončila: %1$s.',
'Core:Synchro:SynchroRunningStartedOn_Date' => 'The Synchronizácia spustené %1$s stále beží...',
'Core:Synchro:label_repl_ignored' => 'Ignorované (%1$s)',
'Core:Synchro:label_repl_disappeared' => 'Zmiznuté (%1$s)',
'Core:Synchro:label_repl_existing' => 'Existujúce (%1$s)',
'Core:Synchro:label_repl_new' => 'Nové (%1$s)',
'Core:Synchro:label_obj_deleted' => 'Odstránené (%1$s)',
'Core:Synchro:label_obj_obsoleted' => 'Vyradené (%1$s)',
'Core:Synchro:label_obj_disappeared_errors' => 'Chyby (%1$s)',
'Core:Synchro:label_obj_disappeared_no_action' => 'Bez akcie (%1$s)',
'Core:Synchro:label_obj_unchanged' => 'Nezmenené (%1$s)',
'Core:Synchro:label_obj_updated' => 'Aktualizované (%1$s)',
'Core:Synchro:label_obj_updated_errors' => 'Chyby (%1$s)',
'Core:Synchro:label_obj_new_unchanged' => 'Nezmenené (%1$s)',
'Core:Synchro:label_obj_new_updated' => 'Aktualizované (%1$s)',
'Core:Synchro:label_obj_created' => 'Vytvorené (%1$s)',
'Core:Synchro:label_obj_new_errors' => 'Chyby (%1$s)',
'Core:SynchroLogTitle' => '%1$s - %2$s',
'Core:Synchro:Nb_Replica' => 'Spracovaných replík: %1$s',
'Core:Synchro:Nb_Class:Objects' => '%1$s: %2$s',
'Class:SynchroDataSource/Error:AtLeastOneReconciliationKeyMustBeSpecified' => 'Aspoň jeden harmonizačný kľúč musí byť špecifikovaný, alebo harmonizačná politika musí obsahovať používanie primárneho kľúča.',
'Class:SynchroDataSource/Error:DeleteRetentionDurationMustBeSpecified' => 'Doba po ktorú je odstraňovanie pozdržané musí byť špecifikovaná, keďže objekty budú odstránené po ich označení ako vyradené',
'Class:SynchroDataSource/Error:DeletePolicyUpdateMustBeSpecified' => 'Vyradené objekty majú byť aktualizované, ale žiadna aktualizácia nie je špecifikovaná.',
'Class:SynchroDataSource/Error:DataTableAlreadyExists' => 'Tabuľka %1$s už existuje v databáze. Prosím použite iné meno pre synchronizačnú dátovú tabuľku.',
'Core:SynchroReplica:PublicData' => 'Verejné dáta',
'Core:SynchroReplica:PrivateDetails' => 'Skryté detaily',
'Core:SynchroReplica:BackToDataSource' => 'Návrat späť na synchronizáčný zdroj dát: %1$s',
'Core:SynchroReplica:ListOfReplicas' => 'Zoznam replík',
'Core:SynchroAttExtKey:ReconciliationById' => 'ID (primárny kľúč)',
'Core:SynchroAtt:attcode' => 'Atribút',
'Core:SynchroAtt:attcode+' => 'Field of the object~~',
'Core:SynchroAtt:reconciliation' => 'Harmonizácia ?',
'Core:SynchroAtt:reconciliation+' => 'Used for searching~~',
'Core:SynchroAtt:update' => 'Aktualizácia',
'Core:SynchroAtt:update+' => 'Used to update the object~~',
'Core:SynchroAtt:update_policy' => 'Politika aktualizácií',
'Core:SynchroAtt:update_policy+' => 'Behavior of the updated field~~',
'Core:SynchroAtt:reconciliation_attcode' => 'Harmonizačný kľúč',
'Core:SynchroAtt:reconciliation_attcode+' => 'Attribute Code for the External Key Reconciliation~~',
'Core:SyncDataExchangeComment' => '(Synchronizácia dát)',
'Core:Synchro:ListOfDataSources' => 'Zoznam zdrojov dát:',
'Core:Synchro:LastSynchro' => 'Posledná synchronizácia:',
'Core:Synchro:ThisObjectIsSynchronized' => 'Tento objekt je synchronizovaný s externým zdrojom dát',
'Core:Synchro:TheObjectWasCreatedBy_Source' => 'Objekt bol <b>vytvorený</b> externým zdrojom dát %1$s',
'Core:Synchro:TheObjectCanBeDeletedBy_Source' => 'Objekt <b>môže byť odstránený</b> externým zdrojom dát %1$s',
'Core:Synchro:TheObjectCannotBeDeletedByUser_Source' => '<b>Nemôžete odstrániť tento objekt</b> pretože je vlastnený externým zdrojom dát %1$s',
'TitleSynchroExecution' => 'Vykonanie synchronizácie',
'Class:SynchroDataSource:DataTable' => 'Databázová tabuľka: %1$s',
'Core:SyncDataSourceObsolete' => 'Dátový zdroj je označený ako vyradený. Operácia zrušená.',
'Core:SyncDataSourceAccessRestriction' => 'Iba adminstrátori alebo užívateľ špecifikovaný v dátovom zdroji môžu vykonať túto operáciu. Operácia zrušená.',
'Core:SyncTooManyMissingReplicas' => 'Žiaden záznam nebol po určitý čas dotknutý (všetky objekty by mohli byť odstránené). Prosím skontrolujte, že proces, ktorý zapisuje do synchronizačnej tabuľky, stále beží. Operácia zrušená.',
'Core:SyncSplitModeCLIOnly' => 'Synchronizácia môže byť vykonaná po častiach iba ak bola spustená v móde CLI',
'Core:Synchro:ListReplicas_AllReplicas_Errors_Warnings' => '%1$s replík, %2$s chýb, %3$s upozornení.',
'Core:SynchroReplica:TargetObject' => 'Synchronizovaný objekt: %1$s',
'Class:AsyncSendEmail' => 'Email (asynchrónny)',
'Class:AsyncSendEmail/Attribute:to' => 'Komu',
'Class:AsyncSendEmail/Attribute:subject' => 'Predmet',
'Class:AsyncSendEmail/Attribute:body' => 'Telo',
'Class:AsyncSendEmail/Attribute:header' => 'Hlavička',
'Class:CMDBChangeOpSetAttributeOneWayPassword' => 'Zakódované heslo',
'Class:CMDBChangeOpSetAttributeOneWayPassword/Attribute:prev_pwd' => 'Predchádzajúca hodnota',
'Class:CMDBChangeOpSetAttributeEncrypted' => 'Zakódované pole',
'Class:CMDBChangeOpSetAttributeEncrypted/Attribute:prevstring' => 'Predchádzajúca hodnota',
'Class:CMDBChangeOpSetAttributeCaseLog' => 'Záznam o riešení',
'Class:CMDBChangeOpSetAttributeCaseLog/Attribute:lastentry' => 'Posledný záznam',
'Class:SynchroAttribute' => 'Synchronizovaný atribút',
'Class:SynchroAttribute/Attribute:sync_source_id' => 'Synchronizovaný zdroj dát',
'Class:SynchroAttribute/Attribute:attcode' => 'Kód atribútu',
'Class:SynchroAttribute/Attribute:update' => 'Aktualizovať',
'Class:SynchroAttribute/Attribute:reconcile' => 'Harmonizovať',
'Class:SynchroAttribute/Attribute:update_policy' => 'Politika aktualizácií',
'Class:SynchroAttribute/Attribute:update_policy/Value:master_locked' => 'Uzamknuté',
'Class:SynchroAttribute/Attribute:update_policy/Value:master_unlocked' => 'Odomknuté',
'Class:SynchroAttribute/Attribute:update_policy/Value:write_if_empty' => 'Inicializovať, ak je prázdne',
'Class:SynchroAttribute/Attribute:finalclass' => 'Trieda',
'Class:SynchroAttExtKey' => 'Synchronizačný atribút (ExtKey)',
'Class:SynchroAttExtKey/Attribute:reconciliation_attcode' => 'Harmonizačný atribút',
'Class:SynchroAttLinkSet' => 'Synchronizačný atribút (linkset)',
'Class:SynchroAttLinkSet/Attribute:row_separator' => 'Oddelovač riadkov',
'Class:SynchroAttLinkSet/Attribute:attribute_separator' => 'Oddelovač atribútov',
'Class:SynchroLog' => 'Synchronizačný záznam',
'Class:SynchroLog/Attribute:sync_source_id' => 'Synchronizovaný zdroj dát',
'Class:SynchroLog/Attribute:start_date' => 'Dátum začiatku',
'Class:SynchroLog/Attribute:end_date' => 'Dátum ukončenia',
'Class:SynchroLog/Attribute:status' => 'Stav',
'Class:SynchroLog/Attribute:status/Value:completed' => 'Ukončené',
'Class:SynchroLog/Attribute:status/Value:error' => 'Chyba',
'Class:SynchroLog/Attribute:status/Value:running' => 'Stále bežiace',
'Class:SynchroLog/Attribute:stats_nb_replica_seen' => 'Počet videných replík',
'Class:SynchroLog/Attribute:stats_nb_replica_total' => 'Počet replík celkom',
'Class:SynchroLog/Attribute:stats_nb_obj_deleted' => 'Počet odstránených objektov',
'Class:SynchroLog/Attribute:stats_nb_obj_deleted_errors' => 'Počet chýb počas odstraňovania',
'Class:SynchroLog/Attribute:stats_nb_obj_obsoleted' => 'Počet objektov označených ako vyradené',
'Class:SynchroLog/Attribute:stats_nb_obj_obsoleted_errors' => 'Počet chýb počas označovania objektov ako vyradené',
'Class:SynchroLog/Attribute:stats_nb_obj_created' => 'Počet vytvorených objektov',
'Class:SynchroLog/Attribute:stats_nb_obj_created_errors' => 'Počet chýb počas vytvárania',
'Class:SynchroLog/Attribute:stats_nb_obj_updated' => 'Počet aktualizovaných objektov',
'Class:SynchroLog/Attribute:stats_nb_obj_updated_errors' => 'Počet chýb počas aktualizácie',
'Class:SynchroLog/Attribute:stats_nb_replica_reconciled_errors' => 'Počet chýb počas harmonizácie',
'Class:SynchroLog/Attribute:stats_nb_replica_disappeared_no_action' => 'Počet zmiznutých replík',
'Class:SynchroLog/Attribute:stats_nb_obj_new_updated' => 'Počet aktualizovaných objektov',
'Class:SynchroLog/Attribute:stats_nb_obj_new_unchanged' => 'Počet nezmenených objektov',
'Class:SynchroLog/Attribute:last_error' => 'Posledná chyba',
'Class:SynchroLog/Attribute:traces' => 'Stopy',
'Class:SynchroReplica' => 'Synchronizačná replika',
'Class:SynchroReplica/Attribute:sync_source_id' => 'Synchronizovaný zdroj dát',
'Class:SynchroReplica/Attribute:dest_id' => 'Cieľový objekt (ID)',
'Class:SynchroReplica/Attribute:dest_class' => 'Cieľový Typ',
'Class:SynchroReplica/Attribute:status_last_seen' => 'Naposledy videná',
'Class:SynchroReplica/Attribute:status' => 'Stav',
'Class:SynchroReplica/Attribute:status/Value:modified' => 'Upravená',
'Class:SynchroReplica/Attribute:status/Value:new' => 'Nová',
'Class:SynchroReplica/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:SynchroReplica/Attribute:status/Value:orphan' => 'Sirota',
'Class:SynchroReplica/Attribute:status/Value:synchronized' => 'Synchronizovaná',
'Class:SynchroReplica/Attribute:status_dest_creator' => 'Objekt vytvorený ?',
'Class:SynchroReplica/Attribute:status_last_error' => 'Posledná chyba',
'Class:SynchroReplica/Attribute:status_last_warning' => 'Upozornenia',
'Class:SynchroReplica/Attribute:info_creation_date' => 'Dátum vytvorenia',
'Class:SynchroReplica/Attribute:info_last_modified' => 'Dátum poslednej úpravy',
'Class:appUserPreferences' => 'Užívateľské preferencie',
'Class:appUserPreferences/Attribute:userid' => 'Užívateľ',
'Class:appUserPreferences/Attribute:preferences' => 'Preferencie',
'Core:ExecProcess:Code1' => 'Nesprávny príkaz alebo príkaz skončil s chybami (napr. nesprávne meno skriptu)',
'Core:ExecProcess:Code255' => 'PHP chyba (pri parsovaní, alebo počas behu)',
'Core:Duration_Seconds' => '%1$ds',