-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathapp_localizations_es.dart
More file actions
2775 lines (1984 loc) · 70.4 KB
/
app_localizations_es.dart
File metadata and controls
2775 lines (1984 loc) · 70.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
// 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 => 'MeshCore Open';
@override
String get nav_contacts => 'Contactos';
@override
String get nav_channels => 'Canales';
@override
String get nav_map => 'Mapa';
@override
String get common_cancel => 'Cancelar';
@override
String get common_ok => 'De acuerdo';
@override
String get common_connect => 'Conectar';
@override
String get common_unknownDevice => 'Dispositivo Desconocido';
@override
String get common_save => 'Guardar';
@override
String get common_delete => 'Eliminar';
@override
String get common_close => 'Cerrar';
@override
String get common_edit => 'Editar';
@override
String get common_add => 'Añadir';
@override
String get common_settings => 'Configuración';
@override
String get common_disconnect => 'Desconectar';
@override
String get common_connected => 'Conectado';
@override
String get common_disconnected => 'Desconectado';
@override
String get common_create => 'Crear';
@override
String get common_continue => 'Continuar';
@override
String get common_share => 'Compartir';
@override
String get common_copy => 'Copiar';
@override
String get common_retry => 'Intentar';
@override
String get common_hide => 'Ocultar';
@override
String get common_remove => 'Eliminar';
@override
String get common_enable => 'Activar';
@override
String get common_disable => 'Desactivar';
@override
String get common_reboot => 'Reiniciar';
@override
String get common_loading => 'Cargando...';
@override
String get common_notAvailable => '—';
@override
String common_voltageValue(String volts) {
return '$volts V';
}
@override
String common_percentValue(int percent) {
return '$percent%';
}
@override
String get scanner_title => 'MeshCore Open';
@override
String get scanner_scanning => 'Escaneando dispositivos...';
@override
String get scanner_connecting => 'Conectando...';
@override
String get scanner_disconnecting => 'Desconectando...';
@override
String get scanner_notConnected => 'No está conectado';
@override
String scanner_connectedTo(String deviceName) {
return 'Conectado a $deviceName';
}
@override
String get scanner_searchingDevices => 'Buscando dispositivos MeshCore...';
@override
String get scanner_tapToScan =>
'Toca Escanear para encontrar dispositivos MeshCore';
@override
String scanner_connectionFailed(String error) {
return 'Error de conexión: $error';
}
@override
String get scanner_stop => 'Detener';
@override
String get scanner_scan => 'Escanea';
@override
String get device_quickSwitch => 'Cambiar rápidamente';
@override
String get device_meshcore => 'MeshCore';
@override
String get settings_title => 'Configuración';
@override
String get settings_deviceInfo => 'Información del dispositivo';
@override
String get settings_appSettings => 'Configuración de la App';
@override
String get settings_appSettingsSubtitle =>
'Notificaciones, mensajes y preferencias de mapa';
@override
String get settings_nodeSettings => 'Configuración del Nodo';
@override
String get settings_nodeName => 'Nombre del nodo';
@override
String get settings_nodeNameNotSet => 'No está configurado';
@override
String get settings_nodeNameHint => 'Introducir nombre de nodo';
@override
String get settings_nodeNameUpdated => 'Nombre actualizado';
@override
String get settings_radioSettings => 'Configuración de Radio';
@override
String get settings_radioSettingsSubtitle =>
'Frecuencia, potencia, factor de dispersión';
@override
String get settings_radioSettingsUpdated => 'Ajustes de radio actualizados';
@override
String get settings_location => 'Ubicación';
@override
String get settings_locationSubtitle => 'Coordenadas GPS';
@override
String get settings_locationUpdated => 'Ubicación actualizada';
@override
String get settings_locationBothRequired =>
'Introduzca tanto la latitud como la longitud.';
@override
String get settings_locationInvalid => 'Latitud o longitud inválidos.';
@override
String get settings_locationGPSEnable => 'Habilitar GPS';
@override
String get settings_locationGPSEnableSubtitle =>
'Habilita la actualización automática de la ubicación mediante GPS.';
@override
String get settings_locationIntervalSec => 'Intervalo para GPS (Segundos)';
@override
String get settings_locationIntervalInvalid =>
'El intervalo debe ser de al menos 60 segundos y menor que 86400 segundos.';
@override
String get settings_latitude => 'Latitud';
@override
String get settings_longitude => 'Longitud';
@override
String get settings_privacyMode => 'Modo Privacidad';
@override
String get settings_privacyModeSubtitle =>
'Ocultar nombre/ubicación en anuncios';
@override
String get settings_privacyModeToggle =>
'Activar el modo de privacidad para ocultar tu nombre y ubicación en los anuncios.';
@override
String get settings_privacyModeEnabled => 'Modo de privacidad activado';
@override
String get settings_privacyModeDisabled => 'Modo de privacidad desactivado';
@override
String get settings_actions => 'Acciones';
@override
String get settings_sendAdvertisement => 'Enviar Anuncio';
@override
String get settings_sendAdvertisementSubtitle =>
'Presencia de transmisión ahora';
@override
String get settings_advertisementSent => 'Anuncio enviado';
@override
String get settings_syncTime => 'Tiempo de Sincronización';
@override
String get settings_syncTimeSubtitle =>
'Establecer la hora del dispositivo al tiempo del teléfono';
@override
String get settings_timeSynchronized => 'Sincronizado en el tiempo';
@override
String get settings_refreshContacts => 'Actualizar Contactos';
@override
String get settings_refreshContactsSubtitle =>
'Recargar lista de contactos del dispositivo';
@override
String get settings_rebootDevice => 'Reiniciar Dispositivo';
@override
String get settings_rebootDeviceSubtitle =>
'Reiniciar el dispositivo MeshCore';
@override
String get settings_rebootDeviceConfirm =>
'¿Está seguro de que desea reiniciar el dispositivo? Se desconectará.';
@override
String get settings_debug => 'Depurar';
@override
String get settings_bleDebugLog => 'Registro de Depuración BLE';
@override
String get settings_bleDebugLogSubtitle =>
'Comandos, respuestas y datos brutos de BLE';
@override
String get settings_appDebugLog => 'Registro de Depuración de la App';
@override
String get settings_appDebugLogSubtitle =>
'Mensajes de depuración de la aplicación';
@override
String get settings_about => 'Acerca de';
@override
String settings_aboutVersion(String version) {
return 'MeshCore Open v$version';
}
@override
String get settings_aboutLegalese => '2026 Proyecto Open Source MeshCore';
@override
String get settings_aboutDescription =>
'Un cliente de código abierto de Flutter para dispositivos de red mesh LoRa de MeshCore.';
@override
String get settings_infoName => 'Nombre';
@override
String get settings_infoId => 'ID';
@override
String get settings_infoStatus => 'Estado';
@override
String get settings_infoBattery => 'Batería';
@override
String get settings_infoPublicKey => 'Clave Pública';
@override
String get settings_infoContactsCount => 'Número de contactos';
@override
String get settings_infoChannelCount => 'Número de canales';
@override
String get settings_presets => 'Preajustes';
@override
String get settings_preset915Mhz => '915 MHz';
@override
String get settings_preset868Mhz => '868 MHz';
@override
String get settings_preset433Mhz => '433 MHz';
@override
String get settings_frequency => 'Frecuencia (MHz)';
@override
String get settings_frequencyHelper => '300,0 - 2500,0';
@override
String get settings_frequencyInvalid => 'Frecuencia inválida (300-2500 MHz)';
@override
String get settings_bandwidth => 'Ancho de banda';
@override
String get settings_spreadingFactor => 'Factor de propagación';
@override
String get settings_codingRate => 'Tasa de Programación';
@override
String get settings_txPower => 'TX Potencia (dBm)';
@override
String get settings_txPowerHelper => '0 - 22';
@override
String get settings_txPowerInvalid => 'Potencia de TX inválida (0-22 dBm)';
@override
String get settings_longRange => 'Largo Alcance';
@override
String get settings_fastSpeed => 'Velocidad Rápida';
@override
String settings_error(String message) {
return 'Error: $message';
}
@override
String get appSettings_title => 'Configuración de la App';
@override
String get appSettings_appearance => 'Apariencia';
@override
String get appSettings_theme => 'Tema';
@override
String get appSettings_themeSystem => 'Valor predeterminado del sistema';
@override
String get appSettings_themeLight => 'Luz';
@override
String get appSettings_themeDark => 'Oscuro';
@override
String get appSettings_language => 'Idioma';
@override
String get appSettings_languageSystem => 'Predeterminado del sistema';
@override
String get appSettings_languageEn => 'English';
@override
String get appSettings_languageFr => 'Français';
@override
String get appSettings_languageEs => 'Español';
@override
String get appSettings_languageDe => 'Deutsch';
@override
String get appSettings_languagePl => 'Polski';
@override
String get appSettings_languageSl => 'Slovenščina';
@override
String get appSettings_languagePt => 'Português';
@override
String get appSettings_languageIt => 'Italiano';
@override
String get appSettings_languageZh => '中文';
@override
String get appSettings_languageSv => 'Svenska';
@override
String get appSettings_languageNl => 'Nederlands';
@override
String get appSettings_languageSk => 'Slovenčina';
@override
String get appSettings_languageBg => 'Български';
@override
String get appSettings_languageRu => 'Ruso';
@override
String get appSettings_languageUk => 'Ucraniano';
@override
String get appSettings_notifications => 'Notificaciones';
@override
String get appSettings_enableNotifications => 'Habilitar Notificaciones';
@override
String get appSettings_enableNotificationsSubtitle =>
'Recibir notificaciones para mensajes y anuncios';
@override
String get appSettings_notificationPermissionDenied =>
'Permiso de notificación denegado';
@override
String get appSettings_notificationsEnabled => 'Notificaciones activadas';
@override
String get appSettings_notificationsDisabled => 'Notificaciones desactivadas';
@override
String get appSettings_messageNotifications => 'Notificaciones de Mensaje';
@override
String get appSettings_messageNotificationsSubtitle =>
'Mostrar notificación al recibir nuevos mensajes';
@override
String get appSettings_channelMessageNotifications =>
'Notificaciones de Mensajes del Canal';
@override
String get appSettings_channelMessageNotificationsSubtitle =>
'Mostrar notificación al recibir mensajes del canal';
@override
String get appSettings_advertisementNotifications =>
'Notificaciones de Anuncios';
@override
String get appSettings_advertisementNotificationsSubtitle =>
'Mostrar notificación cuando se descubren nuevos nodos';
@override
String get appSettings_messaging => 'Mensajería';
@override
String get appSettings_clearPathOnMaxRetry =>
'Borrar Camino en Max Reintentos';
@override
String get appSettings_clearPathOnMaxRetrySubtitle =>
'Restablecer la ruta de contacto después de 5 intentos de envío fallidos';
@override
String get appSettings_pathsWillBeCleared =>
'Los caminos se limpiarán después de 5 intentos fallidos.';
@override
String get appSettings_pathsWillNotBeCleared =>
'Las rutas no se eliminarán automáticamente.';
@override
String get appSettings_autoRouteRotation => 'Rotación de Ruta Automática';
@override
String get appSettings_autoRouteRotationSubtitle =>
'Alternar entre las mejores rutas y el modo inundación';
@override
String get appSettings_autoRouteRotationEnabled =>
'Rotación de ruta automática habilitada';
@override
String get appSettings_autoRouteRotationDisabled =>
'Rotación de ruta automática desactivada';
@override
String get appSettings_battery => 'Batería';
@override
String get appSettings_batteryChemistry => 'Química de la batería';
@override
String appSettings_batteryChemistryPerDevice(String deviceName) {
return 'Configuración por dispositivo ($deviceName)';
}
@override
String get appSettings_batteryChemistryConnectFirst =>
'Conéctate a un dispositivo para elegir';
@override
String get appSettings_batteryNone => 'No Battery (External Power)';
@override
String get appSettings_batteryLipo => 'LiPo (3.0-4.2V)';
@override
String get appSettings_batteryLifepo4 => 'LiFePO4 (2.6-3.65V)';
@override
String get appSettings_batteryLeadAcid => 'Lead Acid (12V)';
@override
String get appSettings_mapDisplay => 'Visualización del Mapa';
@override
String get appSettings_showRepeaters => 'Mostrar Repetidores';
@override
String get appSettings_showRepeatersSubtitle =>
'Mostrar nodos de repetidor en el mapa';
@override
String get appSettings_showChatNodes => 'Mostrar Nodos de Chat';
@override
String get appSettings_showChatNodesSubtitle =>
'Mostrar nodos de chat en el mapa';
@override
String get appSettings_showOtherNodes => 'Mostrar otros nodos';
@override
String get appSettings_showOtherNodesSubtitle =>
'Mostrar otros tipos de nodo en el mapa';
@override
String get appSettings_timeFilter => 'Filtro de Tiempo';
@override
String get appSettings_timeFilterShowAll => 'Mostrar todos los nodos';
@override
String appSettings_timeFilterShowLast(int hours) {
return 'Mostrar nodos de las últimas $hours horas';
}
@override
String get appSettings_mapTimeFilter => 'Filtro de Tiempo del Mapa';
@override
String get appSettings_showNodesDiscoveredWithin =>
'Mostrar nodos descubiertos dentro de:';
@override
String get appSettings_allTime => 'Todo el tiempo';
@override
String get appSettings_lastHour => 'Última hora';
@override
String get appSettings_last6Hours => 'Últimas 6 horas';
@override
String get appSettings_last24Hours => 'Últimas 24 horas';
@override
String get appSettings_lastWeek => 'La semana pasada';
@override
String get appSettings_offlineMapCache => 'Caché de Mapa Offline';
@override
String get appSettings_noAreaSelected => 'No se ha seleccionado ningún área';
@override
String appSettings_areaSelectedZoom(int minZoom, int maxZoom) {
return 'Área seleccionada (zoom $minZoom-$maxZoom)';
}
@override
String get appSettings_debugCard => 'Depurar';
@override
String get appSettings_appDebugLogging => 'Registro de Depuración de la App';
@override
String get appSettings_appDebugLoggingSubtitle =>
'Registrar mensajes de depuración de la app de registro para solucionar problemas';
@override
String get appSettings_appDebugLoggingEnabled =>
'Registro de depuración de la aplicación habilitado';
@override
String get appSettings_appDebugLoggingDisabled =>
'El registro de depuración de la aplicación está desactivado';
@override
String get contacts_title => 'Contactos';
@override
String get contacts_noContacts => 'Aún no hay contactos.';
@override
String get contacts_contactsWillAppear =>
'Los contactos aparecerán cuando los dispositivos anuncien.';
@override
String get contacts_searchContacts => 'Buscar contactos...';
@override
String get contacts_noUnreadContacts => 'No contactos sin leer';
@override
String get contacts_noContactsFound =>
'No se encontraron contactos ni grupos.';
@override
String get contacts_deleteContact => 'Eliminar Contacto';
@override
String contacts_removeConfirm(String contactName) {
return 'Eliminar $contactName de los contactos?';
}
@override
String get contacts_manageRepeater => 'Gestionar Repetidor';
@override
String get contacts_manageRoom => 'Gestionar Servidor de Habitación';
@override
String get contacts_roomLogin => 'Inicio de Sala';
@override
String get contacts_openChat => 'Abrir Chat';
@override
String get contacts_editGroup => 'Editar Grupo';
@override
String get contacts_deleteGroup => 'Eliminar Grupo';
@override
String contacts_deleteGroupConfirm(String groupName) {
return 'Eliminar $groupName?';
}
@override
String get contacts_newGroup => 'Nuevo Grupo';
@override
String get contacts_groupName => 'Nombre del grupo';
@override
String get contacts_groupNameRequired => 'El nombre del grupo es obligatorio';
@override
String contacts_groupAlreadyExists(String name) {
return 'El grupo \"$name\" ya existe';
}
@override
String get contacts_filterContacts => 'Filtrar contactos...';
@override
String get contacts_noContactsMatchFilter =>
'No hay contactos que coincidan con tu filtro';
@override
String get contacts_noMembers => 'No miembros';
@override
String get contacts_lastSeenNow => 'Última vez que se vio ahora';
@override
String contacts_lastSeenMinsAgo(int minutes) {
return 'Última vez visto hace $minutes minutos.';
}
@override
String get contacts_lastSeenHourAgo => 'Última vez que se vio hace 1 hora';
@override
String contacts_lastSeenHoursAgo(int hours) {
return 'Última vez visto hace $hours horas.';
}
@override
String get contacts_lastSeenDayAgo => 'Última vez que se vio hace 1 día';
@override
String contacts_lastSeenDaysAgo(int days) {
return 'Última vez visto hace $days días.';
}
@override
String get channels_title => 'Canales';
@override
String get channels_noChannelsConfigured => 'No se han configurado canales';
@override
String get channels_addPublicChannel => 'Añadir Canal Público';
@override
String get channels_searchChannels => 'Buscar canales...';
@override
String get channels_noChannelsFound => 'No se encontraron canales';
@override
String channels_channelIndex(int index) {
return 'Canal $index';
}
@override
String get channels_hashtagChannel => 'Canal con hashtag';
@override
String get channels_public => 'Público';
@override
String get channels_private => 'Privado';
@override
String get channels_publicChannel => 'Canal público';
@override
String get channels_privateChannel => 'Canal privado';
@override
String get channels_editChannel => 'Editar canal';
@override
String get channels_deleteChannel => 'Eliminar canal';
@override
String channels_deleteChannelConfirm(String name) {
return 'Eliminar \"$name\"? Esto no se puede deshacer.';
}
@override
String channels_channelDeleted(String name) {
return 'Canal \"$name\" eliminado';
}
@override
String get channels_addChannel => 'Añadir Canal';
@override
String get channels_channelIndexLabel => 'Índice de Canal';
@override
String get channels_channelName => 'Nombre del canal';
@override
String get channels_usePublicChannel => 'Usar Canal Público';
@override
String get channels_standardPublicPsk => 'PSK estándar público';
@override
String get channels_pskHex => 'PSK (Hex)';
@override
String get channels_generateRandomPsk => 'Generar PSK aleatorio';
@override
String get channels_enterChannelName =>
'Por favor, introduce un nombre de canal';
@override
String get channels_pskMustBe32Hex =>
'PSK debe ser de 32 caracteres hexadecimales.';
@override
String channels_channelAdded(String name) {
return 'Canal \"$name\" añadido';
}
@override
String channels_editChannelTitle(int index) {
return 'Editar Canal $index';
}
@override
String get channels_smazCompression => 'Compresión SMAZ';
@override
String channels_channelUpdated(String name) {
return 'Canal \"$name\" actualizado';
}
@override
String get channels_publicChannelAdded => 'Canal público añadido';
@override
String get channels_sortBy => 'Ordenar por';
@override
String get channels_sortManual => 'Manual';
@override
String get channels_sortAZ => 'A-Z';
@override
String get channels_sortLatestMessages => 'Últimos mensajes';
@override
String get channels_sortUnread => 'Sin leer';
@override
String get channels_createPrivateChannel => 'Crear un Canal Privado';
@override
String get channels_createPrivateChannelDesc =>
'Cifrado con una clave secreta.';
@override
String get channels_joinPrivateChannel => 'Únete a un Canal Privado';
@override
String get channels_joinPrivateChannelDesc =>
'Introducir manualmente una clave secreta.';
@override
String get channels_joinPublicChannel => 'Únete al Canal Público';
@override
String get channels_joinPublicChannelDesc =>
'Cualquiera puede unirse a este canal.';
@override
String get channels_joinHashtagChannel => 'Únete a un Canal con Hashtag';
@override
String get channels_joinHashtagChannelDesc =>
'Cualquiera puede unirse a los canales de hashtag.';
@override
String get channels_scanQrCode => 'Escanear un Código QR';
@override
String get channels_scanQrCodeComingSoon => 'Próximamente';
@override
String get channels_enterHashtag => 'Introducir hashtag';
@override
String get channels_hashtagHint => 'ej. #equipo';
@override
String get chat_noMessages => 'Aún no hay mensajes';
@override
String get chat_sendMessageToStart => 'Enviar un mensaje para comenzar';
@override
String get chat_originalMessageNotFound => 'Mensaje original no encontrado';
@override
String chat_replyingTo(String name) {
return 'Responder a $name';
}
@override
String chat_replyTo(String name) {
return 'Responder a $name';
}
@override
String get chat_location => 'Ubicación';
@override
String chat_sendMessageTo(String contactName) {
return 'Enviar un mensaje a $contactName';
}
@override
String get chat_typeMessage => 'Escribe un mensaje...';
@override
String chat_messageTooLong(int maxBytes) {
return 'Mensaje demasiado largo (máximo $maxBytes bytes).';
}
@override
String get chat_messageCopied => 'Mensaje copiado';
@override
String get chat_messageDeleted => 'Mensaje borrado';
@override
String get chat_retryingMessage => 'Reintentando…';
@override
String chat_retryCount(int current, int max) {
return 'Reintentar $current/$max';
}
@override
String get chat_sendGif => 'Enviar GIF';
@override
String get chat_reply => 'Responder';
@override
String get chat_addReaction => 'Añadir Reacción';
@override
String get chat_me => 'Yo';
@override
String get emojiCategorySmileys => 'Emoticones';
@override
String get emojiCategoryGestures => 'Gestos';
@override
String get emojiCategoryHearts => 'Corazones';
@override
String get emojiCategoryObjects => 'Objetos';
@override
String get gifPicker_title => 'Elegir un GIF';
@override
String get gifPicker_searchHint => 'Buscar GIFs...';
@override
String get gifPicker_poweredBy => 'Powered by GIPHY';
@override
String get gifPicker_noGifsFound => 'No se encontraron GIFs';
@override
String get gifPicker_failedLoad => 'No se pudo cargar los GIFs';
@override
String get gifPicker_failedSearch => 'No se encontraron GIFs';
@override
String get gifPicker_noInternet => 'No hay conexión a internet';
@override
String get debugLog_appTitle => 'Registro de Depuración de la App';
@override
String get debugLog_bleTitle => 'Registro de Depuración BLE';