-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathapp_localizations_es.dart
More file actions
8574 lines (5935 loc) · 223 KB
/
app_localizations_es.dart
File metadata and controls
8574 lines (5935 loc) · 223 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 Spanish Castilian (`es`).
class AppLocalizationsEs extends AppLocalizations {
AppLocalizationsEs([String locale = 'es']) : super(locale);
@override
String get appTitle => 'Omi';
@override
String get conversationTab => 'Conversación';
@override
String get transcriptTab => 'Transcripción';
@override
String get actionItemsTab => 'Acciones';
@override
String get deleteConversationTitle => '¿Borrar conversación?';
@override
String get deleteConversationMessage =>
'Esto también eliminará los recuerdos, tareas y archivos de audio asociados. Esta acción no se puede deshacer.';
@override
String get confirm => 'Confirmar';
@override
String get cancel => 'Cancelar';
@override
String get ok => 'Aceptar';
@override
String get delete => 'Eliminar';
@override
String get add => 'Añadir';
@override
String get update => 'Actualizar';
@override
String get save => 'Guardar';
@override
String get edit => 'Editar';
@override
String get close => 'Cerrar';
@override
String get clear => 'Limpiar';
@override
String get copyTranscript => 'Copiar transcripción';
@override
String get copySummary => 'Copiar resumen';
@override
String get testPrompt => 'Probar prompt';
@override
String get reprocessConversation => 'Reprocesar conversación';
@override
String get deleteConversation => 'Eliminar conversación';
@override
String get contentCopied => 'Contenido copiado al portapapeles';
@override
String get failedToUpdateStarred => 'Error al actualizar estado de favorito.';
@override
String get conversationUrlNotShared => 'La URL de la conversación no se compartió.';
@override
String get errorProcessingConversation => 'Error al procesar la conversación. Inténtalo de nuevo más tarde.';
@override
String get noInternetConnection => 'Sin conexión a Internet';
@override
String get unableToDeleteConversation => 'No se pudo borrar la conversación';
@override
String get somethingWentWrong => '¡Algo salió mal! Por favor, inténtalo de nuevo más tarde.';
@override
String get copyErrorMessage => 'Copiar mensaje de error';
@override
String get errorCopied => 'Mensaje de error copiado al portapapeles';
@override
String get remaining => 'Restante';
@override
String get loading => 'Cargando...';
@override
String get loadingDuration => 'Cargando duración...';
@override
String secondsCount(int count) {
return '$count segundos';
}
@override
String get people => 'Personas';
@override
String get addNewPerson => 'Añadir nueva persona';
@override
String get editPerson => 'Editar persona';
@override
String get createPersonHint => '¡Crea una nueva persona y entrena a Omi para reconocer su voz!';
@override
String get speechProfile => 'Perfil de Voz';
@override
String sampleNumber(int number) {
return 'Muestra $number';
}
@override
String get settings => 'Configuración';
@override
String get language => 'Idioma';
@override
String get selectLanguage => 'Seleccionar idioma';
@override
String get deleting => 'Borrando...';
@override
String get pleaseCompleteAuthentication =>
'Por favor completa la autenticación en tu navegador. Regresa a la app cuando termines.';
@override
String get failedToStartAuthentication => 'Error al iniciar autenticación';
@override
String get importStarted => '¡Importación iniciada! Se te notificará cuando termine.';
@override
String get failedToStartImport => 'No se pudo iniciar la importación. Por favor intenta de nuevo.';
@override
String get couldNotAccessFile => 'No se pudo abrir el archivo seleccionado';
@override
String get askOmi => 'Pregunta a Omi';
@override
String get done => 'Listo';
@override
String get disconnected => 'Desconectado';
@override
String get searching => 'Buscando...';
@override
String get connectDevice => 'Conectar dispositivo';
@override
String get monthlyLimitReached => 'Llegaste a tu límite mensual.';
@override
String get checkUsage => 'Verificar uso';
@override
String get syncingRecordings => 'Sincronizando grabaciones';
@override
String get recordingsToSync => 'Grabaciones por sincronizar';
@override
String get allCaughtUp => 'Todo al día';
@override
String get sync => 'Sinc';
@override
String get pendantUpToDate => 'Pendant actualizado';
@override
String get allRecordingsSynced => 'Todas las grabaciones sincronizadas';
@override
String get syncingInProgress => 'Sincronización en curso';
@override
String get readyToSync => 'Listo para sincronizar';
@override
String get tapSyncToStart => 'Toca Sinc para empezar';
@override
String get pendantNotConnected => 'Pendant no conectado. Conecta para sincronizar.';
@override
String get everythingSynced => 'Todo está sincronizado.';
@override
String get recordingsNotSynced => 'Tienes grabaciones sin sincronizar.';
@override
String get syncingBackground => 'Seguiremos sincronizando en segundo plano.';
@override
String get noConversationsYet => 'Aún no hay conversaciones';
@override
String get noStarredConversations => 'No hay conversaciones destacadas';
@override
String get starConversationHint =>
'Para marcar una conversación como favorita, ábrela y toca la estrella en la cabecera.';
@override
String get searchConversations => 'Buscar conversaciones...';
@override
String selectedCount(int count, Object s) {
return '$count seleccionados';
}
@override
String get merge => 'Fusionar';
@override
String get mergeConversations => 'Fusionar conversaciones';
@override
String mergeConversationsMessage(int count) {
return 'Esto combinará $count conversaciones en una sola. Todo el contenido se fusionará y regenerará.';
}
@override
String get mergingInBackground => 'Fusionando en segundo plano. Esto puede tardar un momento.';
@override
String get failedToStartMerge => 'Error al iniciar fusión';
@override
String get askAnything => 'Pregunta cualquier cosa';
@override
String get noMessagesYet => '¡No hay mensajes!\n¿Por qué no inicias una conversación?';
@override
String get deletingMessages => 'Eliminando tus mensajes de la memoria de Omi...';
@override
String get messageCopied => '✨ Mensaje copiado al portapapeles';
@override
String get cannotReportOwnMessage => 'No puedes reportar tus propios mensajes.';
@override
String get reportMessage => 'Reportar mensaje';
@override
String get reportMessageConfirm => '¿Seguro que quieres reportar este mensaje?';
@override
String get messageReported => 'Mensaje reportado exitosamente.';
@override
String get thankYouFeedback => '¡Gracias por tus comentarios!';
@override
String get clearChat => 'Borrar chat';
@override
String get clearChatConfirm => '¿Seguro que quieres limpiar el chat? Esta acción no se puede deshacer.';
@override
String get maxFilesLimit => 'Solo puedes subir 4 archivos a la vez';
@override
String get chatWithOmi => 'Chatea con Omi';
@override
String get apps => 'Aplicaciones';
@override
String get noAppsFound => 'No se encontraron aplicaciones';
@override
String get tryAdjustingSearch => 'Intenta ajustar tu búsqueda o filtros';
@override
String get createYourOwnApp => 'Crea tu propia aplicación';
@override
String get buildAndShareApp => 'Construye y comparte tu propia app';
@override
String get searchApps => 'Buscar aplicaciones...';
@override
String get myApps => 'Mis aplicaciones';
@override
String get installedApps => 'Aplicaciones instaladas';
@override
String get unableToFetchApps => 'No se pudieron cargar las apps :(\n\nRevisa tu conexión a internet.';
@override
String get aboutOmi => 'Acerca de Omi';
@override
String get privacyPolicy => 'Política de Privacidad';
@override
String get visitWebsite => 'Visitar el sitio web';
@override
String get helpOrInquiries => '¿Ayuda o consultas?';
@override
String get joinCommunity => '¡Únete a la comunidad!';
@override
String get membersAndCounting => '8000+ miembros y contando.';
@override
String get deleteAccountTitle => 'Borrar cuenta';
@override
String get deleteAccountConfirm => '¿Seguro que quieres borrar tu cuenta?';
@override
String get cannotBeUndone => 'Esto no se puede deshacer.';
@override
String get allDataErased => 'Todos tus recuerdos y conversaciones se borrarán permanentemente.';
@override
String get appsDisconnected => 'Tus apps e integraciones se desconectarán inmediatamente.';
@override
String get exportBeforeDelete =>
'Puedes exportar tus datos antes de borrar tu cuenta. Una vez borrados, no se pueden recuperar.';
@override
String get deleteAccountCheckbox =>
'Entiendo que borrar mi cuenta es permanente y que todos los datos, incluyendo recuerdos y conversaciones, se perderán para siempre.';
@override
String get areYouSure => '¿Estás seguro?';
@override
String get deleteAccountFinal =>
'Esta acción es irreversible y borrará permanentemente tu cuenta y todos sus datos. ¿Deseas continuar?';
@override
String get deleteNow => 'Borrar ahora';
@override
String get goBack => 'Volver';
@override
String get checkBoxToConfirm =>
'Marca la casilla para confirmar que entiendes que borrar tu cuenta es permanente e irreversible.';
@override
String get profile => 'Perfil';
@override
String get name => 'Nombre';
@override
String get email => 'Correo electrónico';
@override
String get customVocabulary => 'Vocabulario Personalizado';
@override
String get identifyingOthers => 'Identificación de Otros';
@override
String get paymentMethods => 'Métodos de Pago';
@override
String get conversationDisplay => 'Visualización de Conversaciones';
@override
String get dataPrivacy => 'Privacidad de Datos';
@override
String get userId => 'ID de Usuario';
@override
String get notSet => 'No establecido';
@override
String get userIdCopied => 'ID de usuario copiado';
@override
String get systemDefault => 'Por defecto del sistema';
@override
String get planAndUsage => 'Plan y Uso';
@override
String get offlineSync => 'Sincronización sin conexión';
@override
String get deviceSettings => 'Ajustes del dispositivo';
@override
String get integrations => 'Integraciones';
@override
String get feedbackBug => 'Feedback / Error';
@override
String get helpCenter => 'Centro de ayuda';
@override
String get developerSettings => 'Configuración de desarrollador';
@override
String get getOmiForMac => 'Obtener Omi para Mac';
@override
String get referralProgram => 'Programa de referidos';
@override
String get signOut => 'Cerrar Sesión';
@override
String get appAndDeviceCopied => 'Detalles de app y dispositivo copiados';
@override
String get wrapped2025 => 'Resumen 2025';
@override
String get yourPrivacyYourControl => 'Tu privacidad, tu control';
@override
String get privacyIntro =>
'En Omi, nos comprometemos a proteger tu privacidad. Esta página te permite controlar cómo se guardan y usan tus datos.';
@override
String get learnMore => 'Saber más...';
@override
String get dataProtectionLevel => 'Nivel de protección de datos';
@override
String get dataProtectionDesc => 'Tus datos están protegidos por encriptación fuerte por defecto.';
@override
String get appAccess => 'Acceso de apps';
@override
String get appAccessDesc =>
'Las siguientes apps pueden acceder a tus datos. Toca una app para gestionar sus permisos.';
@override
String get noAppsExternalAccess => 'Ninguna app instalada tiene acceso externo a tus datos.';
@override
String get deviceName => 'Nombre del dispositivo';
@override
String get deviceId => 'ID del dispositivo';
@override
String get firmware => 'Firmware';
@override
String get sdCardSync => 'Sincronización de tarjeta SD';
@override
String get hardwareRevision => 'Revisión de hardware';
@override
String get modelNumber => 'Número de modelo';
@override
String get manufacturer => 'Fabricante';
@override
String get doubleTap => 'Doble toque';
@override
String get ledBrightness => 'Brillo LED';
@override
String get micGain => 'Ganancia de micrófono';
@override
String get disconnect => 'Desconectar';
@override
String get forgetDevice => 'Olvidar dispositivo';
@override
String get chargingIssues => 'Problemas de carga';
@override
String get disconnectDevice => 'Desconectar dispositivo';
@override
String get unpairDevice => 'Desvincular dispositivo';
@override
String get unpairAndForget => 'Desvincular y olvidar dispositivo';
@override
String get deviceDisconnectedMessage => 'Tu Omi se desconectó 😔';
@override
String get deviceUnpairedMessage =>
'Dispositivo desvinculado. Ve a Configuración > Bluetooth y olvida el dispositivo para completar la desvinculación.';
@override
String get unpairDialogTitle => 'Desvincular dispositivo';
@override
String get unpairDialogMessage =>
'Esto desvinculará el dispositivo para que pueda usarse en otro teléfono. Debes ir a Ajustes > Bluetooth y olvidar el dispositivo para completar el proceso.';
@override
String get deviceNotConnected => 'Dispositivo no conectado';
@override
String get connectDeviceMessage => 'Conecta tu dispositivo Omi para acceder a los ajustes.';
@override
String get deviceInfoSection => 'Información del dispositivo';
@override
String get customizationSection => 'Personalización';
@override
String get hardwareSection => 'Hardware';
@override
String get v2Undetected => 'V2 no detectado';
@override
String get v2UndetectedMessage =>
'Parece que tienes un dispositivo V1 o no está conectado. La funcionalidad de tarjeta SD es solo para dispositivos V2.';
@override
String get endConversation => 'Terminar conversación';
@override
String get pauseResume => 'Pausar/Reanudar';
@override
String get starConversation => 'Marcar conversación';
@override
String get doubleTapAction => 'Acción de doble toque';
@override
String get endAndProcess => 'Terminar y procesar';
@override
String get pauseResumeRecording => 'Pausar/Reanudar grabación';
@override
String get starOngoing => 'Marcar conversación actual';
@override
String get off => 'Desactivado';
@override
String get max => 'Máx';
@override
String get mute => 'Silencio';
@override
String get quiet => 'Bajo';
@override
String get normal => 'Normal';
@override
String get high => 'Alto';
@override
String get micGainDescMuted => 'Micrófono silenciado';
@override
String get micGainDescLow => 'Muy bajo - para entornos ruidosos';
@override
String get micGainDescModerate => 'Bajo - para ruido moderado';
@override
String get micGainDescNeutral => 'Neutral - grabación equilibrada';
@override
String get micGainDescSlightlyBoosted => 'Ligeramente aumentado - uso normal';
@override
String get micGainDescBoosted => 'Aumentado - para entornos silenciosos';
@override
String get micGainDescHigh => 'Alto - para voces distantes o suaves';
@override
String get micGainDescVeryHigh => 'Muy alto - fuentes muy silenciosas';
@override
String get micGainDescMax => 'Máximo - usar con precaución';
@override
String get developerSettingsTitle => 'Ajustes de desarrollador';
@override
String get saving => 'Guardando...';
@override
String get personaConfig => 'Configura tu Persona IA';
@override
String get beta => 'BETA';
@override
String get transcription => 'Transcripción';
@override
String get transcriptionConfig => 'Configurar proveedor STT';
@override
String get conversationTimeout => 'Tiempo de espera de conversación';
@override
String get conversationTimeoutConfig => 'Define cuándo terminan las conversaciones automáticamente';
@override
String get importData => 'Importar datos';
@override
String get importDataConfig => 'Importar datos de otras fuentes';
@override
String get debugDiagnostics => 'Depuración y Diagnóstico';
@override
String get endpointUrl => 'URL del endpoint';
@override
String get noApiKeys => 'Sin claves API aún';
@override
String get createKeyToStart => 'Crea una clave para empezar';
@override
String get createKey => 'Crear Clave';
@override
String get docs => 'Documentación';
@override
String get yourOmiInsights => 'Tus insights de Omi';
@override
String get today => 'Hoy';
@override
String get thisMonth => 'Este mes';
@override
String get thisYear => 'Este año';
@override
String get allTime => 'Todo el tiempo';
@override
String get noActivityYet => 'Sin actividad aún';
@override
String get startConversationToSeeInsights => 'Inicia una conversación con Omi\npara ver tus insights aquí.';
@override
String get listening => 'Escuchando';
@override
String get listeningSubtitle => 'Tiempo total que Omi ha escuchado activamente.';
@override
String get understanding => 'Entendiendo';
@override
String get understandingSubtitle => 'Palabras entendidas de tus conversaciones.';
@override
String get providing => 'Proveyendo';
@override
String get providingSubtitle => 'Tareas y notas capturadas automáticamente.';
@override
String get remembering => 'Recordando';
@override
String get rememberingSubtitle => 'Hechos y detalles recordados para ti.';
@override
String get unlimitedPlan => 'Plan Ilimitado';
@override
String get managePlan => 'Gestionar plan';
@override
String cancelAtPeriodEnd(String date) {
return 'Tu plan termina el $date.';
}
@override
String renewsOn(String date) {
return 'Tu plan se renueva el $date.';
}
@override
String get basicPlan => 'Plan Gratuito';
@override
String usageLimitMessage(String used, int limit) {
return '$used de $limit minutos usados';
}
@override
String get upgrade => 'Mejorar';
@override
String get upgradeToUnlimited => 'Actualizar a ilimitado';
@override
String basicPlanDesc(int limit) {
return 'Tu plan incluye $limit minutos gratis al mes.';
}
@override
String get shareStatsMessage => '¡Compartiendo mis estadísticas de Omi! (omi.me - mi asistente IA siempre activo)';
@override
String get sharePeriodToday => 'Hoy Omi:';
@override
String get sharePeriodMonth => 'Este mes Omi:';
@override
String get sharePeriodYear => 'Este año Omi:';
@override
String get sharePeriodAllTime => 'Hasta ahora Omi:';
@override
String shareStatsListened(String minutes) {
return '🎧 Escuchó por $minutes minutos';
}
@override
String shareStatsWords(String words) {
return '🧠 Entendió $words palabras';
}
@override
String shareStatsInsights(String count) {
return '✨ Entregó $count insights';
}
@override
String shareStatsMemories(String count) {
return '📚 Guardó $count recuerdos';
}
@override
String get debugLogs => 'Registros de depuración';
@override
String get debugLogsAutoDelete => 'Se borran automáticamente tras 3 días.';
@override
String get debugLogsDesc => 'Ayuda a diagnosticar problemas';
@override
String get noLogFilesFound => 'No se encontraron archivos de registro.';
@override
String get omiDebugLog => 'Registro de depuración Omi';
@override
String get logShared => 'Registro compartido';
@override
String get selectLogFile => 'Seleccionar archivo de registro';
@override
String get shareLogs => 'Compartir registros';
@override
String get debugLogCleared => 'Registro de depuración limpiado';
@override
String get exportStarted => 'Exportación iniciada. Puede tardar unos segundos...';
@override
String get exportAllData => 'Exportar todos los datos';
@override
String get exportDataDesc => 'Exportar conversaciones a un archivo JSON';
@override
String get exportedConversations => 'Conversaciones exportadas de Omi';
@override
String get exportShared => 'Exportación compartida';
@override
String get deleteKnowledgeGraphTitle => '¿Borrar Gráfico de Conocimiento?';
@override
String get deleteKnowledgeGraphMessage =>
'Esto borrará todos los datos derivados del gráfico (nodos y conexiones). Tus recuerdos originales se mantienen seguros.';
@override
String get knowledgeGraphDeleted => 'Gráfico de conocimiento eliminado';
@override
String deleteGraphFailed(String error) {
return 'Error al borrar el gráfico: $error';
}
@override
String get deleteKnowledgeGraph => 'Borrar gráfico de conocimiento';
@override
String get deleteKnowledgeGraphDesc => 'Eliminar todos los nodos y conexiones';
@override
String get mcp => 'MCP';
@override
String get mcpServer => 'Servidor MCP';
@override
String get mcpServerDesc => 'Conectar asistentes IA con tus datos';
@override
String get serverUrl => 'URL del servidor';
@override
String get urlCopied => 'URL copiada';
@override
String get apiKeyAuth => 'Autenticación API Key';
@override
String get header => 'Cabecera';
@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 => 'Usa tu clave API MCP';
@override
String get webhooks => 'Webhooks';
@override
String get conversationEvents => 'Eventos de conversación';
@override
String get newConversationCreated => 'Nueva conversación creada';
@override
String get realtimeTranscript => 'Transcripción en tiempo real';
@override
String get transcriptReceived => 'Transcripción recibida';
@override
String get audioBytes => 'Bytes de audio';
@override
String get audioDataReceived => 'Datos de audio recibidos';
@override
String get intervalSeconds => 'Intervalo (segundos)';
@override
String get daySummary => 'Resumen del día';
@override
String get summaryGenerated => 'Resumen generado';
@override
String get claudeDesktop => 'Claude Desktop';
@override
String get addToClaudeConfig => 'Añadir a claude_desktop_config.json';
@override
String get copyConfig => 'Copiar configuración';
@override
String get configCopied => 'Configuración copiada al portapapeles';
@override
String get listeningMins => 'Escuchando (Mins)';
@override
String get understandingWords => 'Entendiendo (Palabras)';
@override
String get insights => 'Información';
@override
String get memories => 'Recuerdos';
@override
String minsUsedThisMonth(String used, int limit) {
return '$used de $limit mins usados este mes';
}
@override
String wordsUsedThisMonth(String used, String limit) {
return '$used de $limit palabras usadas este mes';
}
@override
String insightsUsedThisMonth(String used, String limit) {
return '$used de $limit insights obtenidos este mes';
}
@override
String memoriesUsedThisMonth(String used, String limit) {
return '$used de $limit recuerdos hechos este mes';
}
@override
String get visibility => 'Visibilidad';
@override
String get visibilitySubtitle => 'Controla qué conversaciones aparecen en tu lista';
@override
String get showShortConversations => 'Mostrar conversaciones cortas';
@override
String get showShortConversationsDesc => 'Mostrar conversaciones más cortas que el umbral';
@override
String get showDiscardedConversations => 'Mostrar conversaciones descartadas';
@override
String get showDiscardedConversationsDesc => 'Incluir conversaciones marcadas como descartadas';
@override
String get shortConversationThreshold => 'Umbral de conversación corta';
@override
String get shortConversationThresholdSubtitle =>
'Conversaciones más cortas que esto se ocultan si no está activado arriba';
@override
String get durationThreshold => 'Umbral de duración';
@override
String get durationThresholdDesc => 'Ocultar conversaciones más cortas que esto';
@override
String minLabel(int count) {
return '$count Min';