forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_localizations_sk.dart
More file actions
9974 lines (6907 loc) · 263 KB
/
Copy pathapp_localizations_sk.dart
File metadata and controls
9974 lines (6907 loc) · 263 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
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'app_localizations.dart';
// ignore_for_file: type=lint
/// The translations for Slovak (`sk`).
class AppLocalizationsSk extends AppLocalizations {
AppLocalizationsSk([String locale = 'sk']) : super(locale);
@override
String get sessionExpiredSignInAgain => 'Platnosť relácie vypršala — prihláste sa znova.';
@override
String get appTitle => 'Omi';
@override
String get conversationTab => 'Konverzácia';
@override
String get transcriptTab => 'Prepis';
@override
String get actionItemsTab => 'Úlohy';
@override
String get deleteConversationTitle => 'Odstrániť konverzáciu?';
@override
String get deleteConversationMessage =>
'Tým sa tiež vymažú súvisiace spomienky, úlohy a zvukové súbory. Túto akciu nie je možné vrátiť späť.';
@override
String get confirm => 'Potvrdiť';
@override
String get cancel => 'Zrušiť';
@override
String get ok => 'OK';
@override
String get delete => 'Zmazať';
@override
String get add => 'Pridať';
@override
String get update => 'Aktualizovať';
@override
String get save => 'Uložiť';
@override
String get edit => 'Upraviť';
@override
String get close => 'Zavrieť';
@override
String get clear => 'Vymazať';
@override
String get copyTranscript => 'Kopírovať prepis';
@override
String get copySummary => 'Kopírovať zhrnutie';
@override
String get copyConversationId => 'Kopírovať ID konverzácie';
@override
String get conversationIdCopied => 'ID konverzácie skopírované do schránky';
@override
String get testPrompt => 'Otestovať výzvu';
@override
String get reprocessConversation => 'Znovu spracovať konverzáciu';
@override
String get deleteConversation => 'Odstrániť konverzáciu';
@override
String get contentCopied => 'Obsah bol skopírovaný do schránky';
@override
String get failedToUpdateStarred => 'Nepodarilo sa aktualizovať stav obľúbenej.';
@override
String get conversationUrlNotShared => 'URL konverzácie sa nepodarilo zdieľať.';
@override
String get errorProcessingConversation => 'Chyba pri spracovaní konverzácie. Skúste to prosím neskôr.';
@override
String get noInternetConnection => 'Žiadne internetové pripojenie';
@override
String get unableToDeleteConversation => 'Nepodarilo sa odstrániť konverzáciu';
@override
String get somethingWentWrong => 'Niečo sa pokazilo! Skúste to prosím neskôr.';
@override
String get copyErrorMessage => 'Skopírovať chybovú správu';
@override
String get errorCopied => 'Chybová správa bola skopírovaná do schránky';
@override
String get remaining => 'Zostáva';
@override
String get loading => 'Načítava sa...';
@override
String get loadingDuration => 'Načítava sa trvanie...';
@override
String secondsCount(int count) {
return '$count sekúnd';
}
@override
String get people => 'Ľudia';
@override
String get addNewPerson => 'Pridať novú osobu';
@override
String get editPerson => 'Upraviť osobu';
@override
String get createPersonHint => 'Vytvorte novú osobu a naučte Omi rozpoznávať aj jej hlas!';
@override
String get speechProfile => 'Rečový Profil';
@override
String sampleNumber(int number) {
return 'Vzorka $number';
}
@override
String get settings => 'Nastavenia';
@override
String get language => 'Jazyk';
@override
String get selectLanguage => 'Vyberte jazyk';
@override
String get deleting => 'Odstraňuje sa...';
@override
String get pleaseCompleteAuthentication =>
'Dokončite prosím autentifikáciu vo vašom prehliadači. Po dokončení sa vráťte do aplikácie.';
@override
String get failedToStartAuthentication => 'Nepodarilo sa spustiť autentifikáciu';
@override
String get importStarted => 'Import bol spustený! Budete upozornení, keď bude dokončený.';
@override
String get failedToStartImport => 'Nepodarilo sa spustiť import. Skúste to prosím znova.';
@override
String get couldNotAccessFile => 'Nepodarilo sa pristúpiť k vybranému súboru';
@override
String get askOmi => 'Opýtať sa Omi';
@override
String get done => 'Hotovo';
@override
String get disconnected => 'Odpojené';
@override
String get searching => 'Vyhľadávanie...';
@override
String get connectDevice => 'Pripojiť zariadenie';
@override
String get monthlyLimitReached => 'Dosiahli ste váš mesačný limit.';
@override
String get checkUsage => 'Skontrolovať využitie';
@override
String get syncingRecordings => 'Synchronizujú sa nahrávky';
@override
String get recordingsToSync => 'Nahrávky na synchronizáciu';
@override
String get allCaughtUp => 'Všetko je aktuálne';
@override
String get sync => 'Synchronizovať';
@override
String get pendantUpToDate => 'Prívesok je aktuálny';
@override
String get allRecordingsSynced => 'Všetky nahrávky sú synchronizované';
@override
String get syncingInProgress => 'Prebieha synchronizácia';
@override
String get readyToSync => 'Pripravené na synchronizáciu';
@override
String get tapSyncToStart => 'Ťuknite na Synchronizovať pre spustenie';
@override
String get pendantNotConnected => 'Prívesok nie je pripojený. Pripojte ho pre synchronizáciu.';
@override
String get everythingSynced => 'Všetko je už synchronizované.';
@override
String get recordingsNotSynced => 'Máte nahrávky, ktoré ešte nie sú synchronizované.';
@override
String get syncingBackground => 'Budeme naďalej synchronizovať vaše nahrávky na pozadí.';
@override
String get noConversationsYet => 'Zatiaľ žiadne konverzácie';
@override
String get noStarredConversations => 'Žiadne konverzácie s hviezdičkou';
@override
String get starConversationHint =>
'Ak chcete označiť konverzáciu hviezdičkou, otvorte ju a ťuknite na ikonu hviezdy v hlavičke.';
@override
String get searchConversations => 'Hľadať konverzácie...';
@override
String selectedCount(int count, Object s) {
return '$count vybraných';
}
@override
String get merge => 'Zlúčiť';
@override
String get mergeConversations => 'Zlúčiť konverzácie';
@override
String mergeConversationsMessage(int count) {
return 'Toto zlúči $count konverzácií do jednej. Celý obsah bude zlúčený a znovu vygenerovaný.';
}
@override
String get mergingInBackground => 'Zlučovanie prebieha na pozadí. Môže to chvíľu trvať.';
@override
String get failedToStartMerge => 'Nepodarilo sa spustiť zlučovanie';
@override
String get askAnything => 'Spýtajte sa na čokoľvek';
@override
String get noMessagesYet => 'Zatiaľ žiadne správy!\nPrečo nespustíte konverzáciu?';
@override
String get deletingMessages => 'Odstraňovanie vašich správ z pamäte Omi...';
@override
String get messageCopied => '✨ Správa skopírovaná do schránky';
@override
String get cannotReportOwnMessage => 'Nemôžete nahlásiť vlastné správy.';
@override
String get reportMessage => 'Nahlásiť správu';
@override
String get reportMessageConfirm => 'Naozaj chcete nahlásiť túto správu?';
@override
String get messageReported => 'Správa bola úspešne nahlásená.';
@override
String get thankYouFeedback => 'Ďakujeme za vašu spätnú väzbu!';
@override
String get clearChat => 'Vymazať chat';
@override
String get clearChatConfirm => 'Naozaj chcete vymazať chat? Túto akciu nie je možné vrátiť späť.';
@override
String get maxFilesLimit => 'Môžete nahrať maximálne 4 súbory naraz';
@override
String get chatWithOmi => 'Chat s Omi';
@override
String get apps => 'Aplikácie';
@override
String get noAppsFound => 'Nenašli sa žiadne aplikácie';
@override
String get tryAdjustingSearch => 'Skúste upraviť vyhľadávanie alebo filtre';
@override
String get createYourOwnApp => 'Vytvorte si vlastnú aplikáciu';
@override
String get buildAndShareApp => 'Vytvorte a zdieľajte vlastnú aplikáciu';
@override
String get searchApps => 'Hľadať aplikácie...';
@override
String get myApps => 'Vytvorené mnou';
@override
String get installedApps => 'Nainštalované aplikácie';
@override
String get unableToFetchApps =>
'Nepodarilo sa načítať aplikácie :(\n\nSkontrolujte prosím svoje internetové pripojenie a skúste to znova.';
@override
String get aboutOmi => 'O Omi';
@override
String get privacyPolicy => 'Zásady ochrany osobných údajov';
@override
String get visitWebsite => 'Navštíviť webovú stránku';
@override
String get helpOrInquiries => 'Pomoc alebo otázky?';
@override
String get joinCommunity => 'Pridajte sa ku komunite!';
@override
String get membersAndCounting => '8000+ členov a ich počet rastie.';
@override
String get deleteAccountTitle => 'Odstrániť účet';
@override
String get deleteAccountConfirm => 'Naozaj chcete odstrániť svoj účet?';
@override
String get cannotBeUndone => 'Túto akciu nie je možné vrátiť späť.';
@override
String get allDataErased => 'Všetky vaše spomienky a konverzácie budú natrvalo odstránené.';
@override
String get appsDisconnected => 'Vaše aplikácie a integrácie budú okamžite odpojené.';
@override
String get exportBeforeDelete =>
'Pred odstránením účtu môžete exportovať svoje údaje, ale po odstránení ich nebude možné obnoviť.';
@override
String get deleteAccountCheckbox =>
'Rozumiem, že odstránenie môjho účtu je trvalé a všetky údaje vrátane spomienok a konverzácií budú stratené a nebude ich možné obnoviť.';
@override
String get areYouSure => 'Ste si istí?';
@override
String get deleteAccountFinal =>
'Táto akcia je nezvratná a natrvalo odstráni váš účet a všetky súvisiace údaje. Naozaj chcete pokračovať?';
@override
String get deleteNow => 'Odstrániť teraz';
@override
String get goBack => 'Vrátiť sa';
@override
String get checkBoxToConfirm =>
'Začiarknite políčko na potvrdenie, že rozumiete, že odstránenie vášho účtu je trvalé a nezvratné.';
@override
String get profile => 'Profil';
@override
String get name => 'Meno';
@override
String get email => 'E-mail';
@override
String get customVocabulary => 'Vlastný Slovník';
@override
String get identifyingOthers => 'Identifikácia Ostatných';
@override
String get paymentMethods => 'Platobné Metódy';
@override
String get conversationDisplay => 'Zobrazenie Konverzácií';
@override
String get dataPrivacy => 'Ochrana Údajov';
@override
String get userId => 'ID Používateľa';
@override
String get notSet => 'Nenastavené';
@override
String get userIdCopied => 'ID používateľa bolo skopírované do schránky';
@override
String get systemDefault => 'Predvolené nastavenie systému';
@override
String get planAndUsage => 'Plán a využitie';
@override
String get offlineSync => 'Offline synchronizácia';
@override
String get autoSync => 'Automatická synchronizácia';
@override
String get autoSyncDescription => 'Automaticky synchronizovať offline nahrávky pri pripojení zariadenia';
@override
String get deviceSettings => 'Nastavenia zariadenia';
@override
String get integrations => 'Integrácie';
@override
String get feedbackBug => 'Spätná väzba / chyba';
@override
String get helpCenter => 'Centrum pomoci';
@override
String get developerSettings => 'Nastavenia vývojára';
@override
String get getOmiForMac => 'Získať Omi pre Mac';
@override
String get referralProgram => 'Odporúčací program';
@override
String get signOut => 'Odhlásiť Sa';
@override
String get appAndDeviceCopied => 'Podrobnosti o aplikácii a zariadení boli skopírované';
@override
String get wrapped2025 => 'Zhrnutie 2025';
@override
String get yourPrivacyYourControl => 'Vaše súkromie, vaša kontrola';
@override
String get privacyIntro =>
'V Omi sa zaväzujeme chrániť vaše súkromie. Táto stránka vám umožňuje kontrolovať, ako sú vaše údaje ukladané a používané.';
@override
String get learnMore => 'Dozvedieť sa viac...';
@override
String get dataProtectionLevel => 'Úroveň ochrany údajov';
@override
String get dataProtectionDesc =>
'Vaše údaje sú predvolene zabezpečené silným šifrovaním. Skontrolujte svoje nastavenia a budúce možnosti ochrany súkromia nižšie.';
@override
String get appAccess => 'Prístup aplikácií';
@override
String get appAccessDesc =>
'Nasledujúce aplikácie majú prístup k vašim údajom. Ťuknutím na aplikáciu spravujte jej oprávnenia.';
@override
String get noAppsExternalAccess => 'Žiadne nainštalované aplikácie nemajú externý prístup k vašim údajom.';
@override
String get deviceName => 'Názov zariadenia';
@override
String get deviceId => 'ID zariadenia';
@override
String get firmware => 'Firmvér';
@override
String get sdCardSync => 'Synchronizácia SD karty';
@override
String get hardwareRevision => 'Revízia hardvéru';
@override
String get modelNumber => 'Číslo modelu';
@override
String get manufacturer => 'Výrobca';
@override
String get doubleTap => 'Dvojité ťuknutie';
@override
String get ledBrightness => 'Jas LED';
@override
String get micGain => 'Zosilnenie mikrofónu';
@override
String get disconnect => 'Odpojiť';
@override
String get forgetDevice => 'Zabudnúť zariadenie';
@override
String get chargingIssues => 'Problémy s nabíjaním';
@override
String get disconnectDevice => 'Odpojiť zariadenie';
@override
String get unpairDevice => 'Zrušiť párovanie zariadenia';
@override
String get unpairAndForget => 'Zrušiť párovanie a zabudnúť zariadenie';
@override
String get deviceDisconnectedMessage => 'Vaše Omi bolo odpojené 😔';
@override
String get deviceUnpairedMessage =>
'Zariadenie odpárované. Prejdite do Nastavenia > Bluetooth a zabudnite zariadenie na dokončenie odpárovania.';
@override
String get unpairDialogTitle => 'Zrušiť párovanie zariadenia';
@override
String get unpairDialogMessage =>
'Týmto sa zruší párovanie zariadenia, aby sa mohlo pripojiť k inému telefónu. Budete musieť prejsť do Nastavenia > Bluetooth a zabudnúť zariadenie pre dokončenie procesu.';
@override
String get deviceNotConnected => 'Zariadenie nie je pripojené';
@override
String get connectDeviceMessage =>
'Pripojte svoje zariadenie Omi pre prístup\nk nastaveniam a prispôsobeniu zariadenia';
@override
String get deviceInfoSection => 'Informácie o zariadení';
@override
String get customizationSection => 'Prispôsobenie';
@override
String get hardwareSection => 'Hardvér';
@override
String get v2Undetected => 'V2 nebolo zistené';
@override
String get v2UndetectedMessage =>
'Zistili sme, že máte zariadenie V1 alebo vaše zariadenie nie je pripojené. Funkcia SD karty je dostupná len pre zariadenia V2.';
@override
String get endConversation => 'Ukončiť konverzáciu';
@override
String get pauseResume => 'Pozastaviť/Pokračovať';
@override
String get starConversation => 'Označiť konverzáciu hviezdičkou';
@override
String get doubleTapAction => 'Akcia dvojitého ťuknutia';
@override
String get endAndProcess => 'Ukončiť a spracovať konverzáciu';
@override
String get pauseResumeRecording => 'Pozastaviť/Pokračovať nahrávanie';
@override
String get starOngoing => 'Označiť prebiehajúcu konverzáciu hviezdičkou';
@override
String get off => 'Vyp.';
@override
String get max => 'Maximum';
@override
String get mute => 'Stlmiť';
@override
String get quiet => 'Tiché';
@override
String get normal => 'Normálne';
@override
String get high => 'Vysoké';
@override
String get micGainDescMuted => 'Mikrofón je stlmený';
@override
String get micGainDescLow => 'Veľmi tiché - pre hlučné prostredia';
@override
String get micGainDescModerate => 'Tiché - pre mierne hlučné prostredie';
@override
String get micGainDescNeutral => 'Neutrálne - vyvážené nahrávanie';
@override
String get micGainDescSlightlyBoosted => 'Mierne zosilnené - normálne použitie';
@override
String get micGainDescBoosted => 'Zosilnené - pre tiché prostredia';
@override
String get micGainDescHigh => 'Vysoké - pre vzdialené alebo tiché hlasy';
@override
String get micGainDescVeryHigh => 'Veľmi vysoké - pre veľmi tiché zdroje';
@override
String get micGainDescMax => 'Maximálne - používať opatrne';
@override
String get developerSettingsTitle => 'Vývojárske nastavenia';
@override
String get saving => 'Ukladanie...';
@override
String get beta => 'BETA';
@override
String get transcription => 'Prepis';
@override
String get transcriptionConfig => 'Nakonfigurovať poskytovateľa STT';
@override
String get conversationTimeout => 'Časový limit konverzácie';
@override
String get conversationTimeoutConfig => 'Nastaviť, kedy sa konverzácie automaticky ukončia';
@override
String get importData => 'Importovať údaje';
@override
String get importDataConfig => 'Importovať údaje z iných zdrojov';
@override
String get debugDiagnostics => 'Ladenie a diagnostika';
@override
String get endpointUrl => 'URL koncového bodu';
@override
String get noApiKeys => 'Zatiaľ žiadne API kľúče';
@override
String get createKeyToStart => 'Vytvorte kľúč pre začiatok';
@override
String get createKey => 'Vytvoriť Kľúč';
@override
String get docs => 'Dokumentácia';
@override
String get yourOmiInsights => 'Vaše štatistiky Omi';
@override
String get today => 'Dnes';
@override
String get thisMonth => 'Tento mesiac';
@override
String get thisYear => 'Tento rok';
@override
String get allTime => 'Celkovo';
@override
String get noActivityYet => 'Zatiaľ žiadna aktivita';
@override
String get startConversationToSeeInsights =>
'Začnite konverzáciu s Omi,\naby ste tu videli svoje štatistiky využitia.';
@override
String get listening => 'Počúvanie';
@override
String get listeningSubtitle => 'Celkový čas, počas ktorého Omi aktívne počúvalo.';
@override
String get understanding => 'Porozumenie';
@override
String get understandingSubtitle => 'Slová pochopené z vašich konverzácií.';
@override
String get providing => 'Poskytovanie';
@override
String get providingSubtitle => 'Úlohy a poznámky automaticky zachytené.';
@override
String get remembering => 'Pamätanie';
@override
String get rememberingSubtitle => 'Fakty a detaily zapamätané pre vás.';
@override
String get unlimitedPlan => 'Neobmedzený plán';
@override
String get managePlan => 'Spravovať plán';
@override
String cancelAtPeriodEnd(String date) {
return 'Váš plán bude zrušený $date.';
}
@override
String get basicPlan => 'Bezplatný plán';
@override
String usageLimitMessage(String used, int limit) {
return '$used z $limit min použitých';
}
@override
String get upgrade => 'Upgradovať';
@override
String get upgradeToUnlimited => 'Upgradovať na neobmedzené';
@override
String basicPlanDesc(int limit) {
return 'Váš plán zahŕňa $limit bezplatných minút mesačne. Upgradujte na neobmedzený.';
}
@override
String get shareStatsMessage => 'Zdieľam svoje štatistiky Omi! (omi.me - váš AI asistent vždy po ruke)';
@override
String get sharePeriodToday => 'Dnes Omi:';
@override
String get sharePeriodMonth => 'Tento mesiac Omi:';
@override
String get sharePeriodYear => 'Tento rok Omi:';
@override
String get sharePeriodAllTime => 'Doteraz Omi:';
@override
String shareStatsListened(String minutes) {
return '🎧 Počúvalo $minutes minút';
}
@override
String shareStatsWords(String words) {
return '🧠 Porozumelo $words slovám';
}
@override
String shareStatsInsights(String count) {
return '✨ Poskytlo $count postrehov';
}
@override
String shareStatsMemories(String count) {
return '📚 Zapamätalo si $count spomienok';
}
@override
String get debugLogs => 'Denníky ladenia';
@override
String get debugLogsAutoDelete => 'Automaticky sa odstránia po 3 dňoch.';
@override
String get debugLogsDesc => 'Pomáha diagnostikovať problémy';
@override
String get noLogFilesFound => 'Nenašli sa žiadne súbory denníka.';
@override
String get omiDebugLog => 'Omi debug log';
@override
String get logShared => 'Log bol zdieľaný';
@override
String get selectLogFile => 'Vyberte súbor logu';
@override
String get shareLogs => 'Zdieľať denníky';
@override
String get debugLogCleared => 'Debug log bol vymazaný';
@override
String get exportStarted => 'Export bol spustený. Môže to trvať niekoľko sekúnd...';
@override
String get exportAllData => 'Exportovať všetky údaje';
@override
String get exportDataDesc => 'Exportovať konverzácie do JSON súboru';
@override
String get exportedConversations => 'Exportované konverzácie z Omi';
@override
String get exportShared => 'Export bol zdieľaný';
@override
String get deleteKnowledgeGraphTitle => 'Odstrániť graf znalostí?';
@override
String get deleteKnowledgeGraphMessage =>
'Týmto odstránite všetky odvodené údaje grafu znalostí (uzly a prepojenia). Vaše pôvodné spomienky zostanú v bezpečí. Graf bude znovu vytvorený postupom času alebo na ďalšiu požiadavku.';
@override
String get knowledgeGraphDeleted => 'Graf znalostí zmazaný';
@override
String deleteGraphFailed(String error) {
return 'Nepodarilo sa odstrániť graf: $error';
}
@override
String get deleteKnowledgeGraph => 'Odstrániť graf znalostí';
@override
String get deleteKnowledgeGraphDesc => 'Vymazať všetky uzly a prepojenia';
@override
String get mcp => 'MCP';
@override
String get mcpServer => 'MCP server';
@override
String get mcpServerDesc => 'Pripojte AI asistentov k vašim údajom';
@override
String get serverUrl => 'URL servera';
@override
String get urlCopied => 'URL skopírovaná';
@override
String get apiKeyAuth => 'Autentifikácia API kľúčom';
@override
String get header => 'Hlavička';
@override
String get authorizationBearer => 'Authorization: Bearer <key>';
@override
String get oauth => 'OAuth';
@override
String get clientId => 'Client ID';
@override
String get clientSecret => 'Client Secret';
@override
String get useMcpApiKey => 'Použite svoj MCP API kľúč';
@override
String get webhooks => 'Webhooky';
@override
String get conversationEvents => 'Udalosti konverzácie';
@override
String get newConversationCreated => 'Nová konverzácia bola vytvorená';
@override
String get realtimeTranscript => 'Prepis v reálnom čase';
@override
String get transcriptReceived => 'Prepis bol prijatý';
@override
String get audioBytes => 'Audio bajty';
@override
String get audioDataReceived => 'Audio dáta boli prijaté';
@override
String get intervalSeconds => 'Interval (sekundy)';
@override
String get daySummary => 'Denný súhrn';
@override
String get summaryGenerated => 'Zhrnutie bolo vygenerované';
@override
String get claudeDesktop => 'Claude Desktop';
@override
String get addToClaudeConfig => 'Pridať do claude_desktop_config.json';
@override
String get copyConfig => 'Skopírovať konfiguráciu';
@override
String get configCopied => 'Konfigurácia bola skopírovaná do schránky';
@override
String get listeningMins => 'Počúvanie (min)';
@override
String get understandingWords => 'Porozumenie (slová)';
@override
String get insights => 'Poznatky';
@override
String get memories => 'Spomienky';
@override
String minsUsedThisMonth(String used, int limit) {
return '$used z $limit min použitých tento mesiac';
}
@override
String wordsUsedThisMonth(String used, String limit) {
return '$used z $limit slov použitých tento mesiac';
}
@override
String insightsUsedThisMonth(String used, String limit) {
return '$used z $limit postrehov získaných tento mesiac';
}
@override
String get visibility => 'Viditeľnosť';
@override
String get visibilitySubtitle => 'Kontrolujte, ktoré konverzácie sa zobrazia vo vašom zozname';
@override
String get showShortConversations => 'Zobraziť krátke konverzácie';
@override
String get showShortConversationsDesc => 'Zobraziť konverzácie kratšie ako hranica';
@override
String get showDiscardedConversations => 'Zobraziť zahodené konverzácie';
@override
String get showDiscardedConversationsDesc => 'Zahrnúť konverzácie označené ako zahodené';
@override
String get shortConversationThreshold => 'Hranica krátkej konverzácie';
@override
String get shortConversationThresholdSubtitle =>
'Konverzácie kratšie ako toto budú skryté, pokiaľ nie sú povolené vyššie';
@override
String get durationThreshold => 'Hranica trvania';