-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathapp_localizations_pt.dart
More file actions
2777 lines (1986 loc) · 69.9 KB
/
app_localizations_pt.dart
File metadata and controls
2777 lines (1986 loc) · 69.9 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 Portuguese (`pt`).
class AppLocalizationsPt extends AppLocalizations {
AppLocalizationsPt([String locale = 'pt']) : super(locale);
@override
String get appTitle => 'MeshCore Open';
@override
String get nav_contacts => 'Contactos';
@override
String get nav_channels => 'Canais';
@override
String get nav_map => 'Mapa';
@override
String get common_cancel => 'Cancelar';
@override
String get common_ok => 'OK';
@override
String get common_connect => 'Conectar';
@override
String get common_unknownDevice => 'Dispositivo Desconhecido';
@override
String get common_save => 'Salvar';
@override
String get common_delete => 'Excluir';
@override
String get common_close => 'Fechar';
@override
String get common_edit => 'Editar';
@override
String get common_add => 'Adicionar';
@override
String get common_settings => 'Configurações';
@override
String get common_disconnect => 'Desconectar';
@override
String get common_connected => 'Conectado';
@override
String get common_disconnected => 'Desconectado';
@override
String get common_create => 'Criar';
@override
String get common_continue => 'Continuar';
@override
String get common_share => 'Compartilhar';
@override
String get common_copy => 'Copiar';
@override
String get common_retry => 'Tentar novamente';
@override
String get common_hide => 'Esconder';
@override
String get common_remove => 'Remover';
@override
String get common_enable => 'Ativar';
@override
String get common_disable => 'Desativar';
@override
String get common_reboot => 'Reiniciar';
@override
String get common_loading => 'Carregando...';
@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 => 'Procurando por dispositivos...';
@override
String get scanner_connecting => 'Conectando...';
@override
String get scanner_disconnecting => 'Desconectando...';
@override
String get scanner_notConnected => 'Não está conectado';
@override
String scanner_connectedTo(String deviceName) {
return 'Conectado a $deviceName';
}
@override
String get scanner_searchingDevices => 'Procurando dispositivos MeshCore...';
@override
String get scanner_tapToScan =>
'Toque em \"Escanear\" para encontrar dispositivos MeshCore';
@override
String scanner_connectionFailed(String error) {
return 'Falha na conexão: $error';
}
@override
String get scanner_stop => 'Pare';
@override
String get scanner_scan => 'Digitalizar';
@override
String get device_quickSwitch => 'Mudar rapidamente';
@override
String get device_meshcore => 'MeshCore';
@override
String get settings_title => 'Configurações';
@override
String get settings_deviceInfo => 'Informações do Dispositivo';
@override
String get settings_appSettings => 'Configurações do App';
@override
String get settings_appSettingsSubtitle =>
'Notificações, mensagens e preferências de mapa';
@override
String get settings_nodeSettings => 'Configurações do Nó';
@override
String get settings_nodeName => 'Nome do Nó';
@override
String get settings_nodeNameNotSet => 'Não definido';
@override
String get settings_nodeNameHint => 'Insira o nome do nó';
@override
String get settings_nodeNameUpdated => 'Nome atualizado';
@override
String get settings_radioSettings => 'Configurações de Rádio';
@override
String get settings_radioSettingsSubtitle =>
'Frequência, potência, fator de espalhamento';
@override
String get settings_radioSettingsUpdated =>
'Configurações de rádio atualizadas';
@override
String get settings_location => 'Localização';
@override
String get settings_locationSubtitle => 'Coordenadas GPS';
@override
String get settings_locationUpdated => 'Localização atualizada';
@override
String get settings_locationBothRequired =>
'Insira a latitude e a longitude.';
@override
String get settings_locationInvalid => 'Latitude ou longitude inválidos.';
@override
String get settings_locationGPSEnable => 'Ativar GPS';
@override
String get settings_locationGPSEnableSubtitle =>
'Habilita a atualização automática da localização via GPS.';
@override
String get settings_locationIntervalSec => 'Intervalo para GPS (Segundos)';
@override
String get settings_locationIntervalInvalid =>
'O intervalo deve ser de pelo menos 60 segundos e inferior a 86400 segundos.';
@override
String get settings_latitude => 'Latitude';
@override
String get settings_longitude => 'Longitude';
@override
String get settings_privacyMode => 'Modo de Privacidade';
@override
String get settings_privacyModeSubtitle =>
'Esconder nome/localização em anúncios';
@override
String get settings_privacyModeToggle =>
'Ative o modo de privacidade para ocultar seu nome e localização em anúncios.';
@override
String get settings_privacyModeEnabled => 'Modo de privacidade ativado';
@override
String get settings_privacyModeDisabled => 'Modo de privacidade desativado';
@override
String get settings_actions => 'Ações';
@override
String get settings_sendAdvertisement => 'Enviar Publicidade';
@override
String get settings_sendAdvertisementSubtitle =>
'Presença de transmissão agora';
@override
String get settings_advertisementSent => 'Anúncio enviado';
@override
String get settings_syncTime => 'Tempo de Sincronização';
@override
String get settings_syncTimeSubtitle =>
'Definir o relógio do dispositivo para o horário do telefone';
@override
String get settings_timeSynchronized => 'Sincronizado com o tempo';
@override
String get settings_refreshContacts => 'Atualizar Contatos';
@override
String get settings_refreshContactsSubtitle =>
'Recarregar a lista de contatos do dispositivo';
@override
String get settings_rebootDevice => 'Reiniciar Dispositivo';
@override
String get settings_rebootDeviceSubtitle =>
'Reiniciar o dispositivo MeshCore';
@override
String get settings_rebootDeviceConfirm =>
'Tem certeza de que deseja reiniciar o dispositivo? Você será desconectado.';
@override
String get settings_debug => 'Depurar';
@override
String get settings_bleDebugLog => 'Log de Depuração BLE';
@override
String get settings_bleDebugLogSubtitle =>
'Comandos, respostas e dados brutos do BLE';
@override
String get settings_appDebugLog => 'Log de Depuração do Aplicativo';
@override
String get settings_appDebugLogSubtitle =>
'Mensagens de depuração do aplicativo';
@override
String get settings_about => 'Sobre';
@override
String settings_aboutVersion(String version) {
return 'MeshCore Open v$version';
}
@override
String get settings_aboutLegalese => 'Projeto MeshCore de Código Aberto 2024';
@override
String get settings_aboutDescription =>
'Um cliente Flutter de código aberto para dispositivos de rede mesh LoRa Core da MeshCore.';
@override
String get settings_infoName => 'Nome';
@override
String get settings_infoId => 'ID';
@override
String get settings_infoStatus => 'Status';
@override
String get settings_infoBattery => 'Bateria';
@override
String get settings_infoPublicKey => 'Chave Pública';
@override
String get settings_infoContactsCount => 'Número de Contatos';
@override
String get settings_infoChannelCount => 'Número do Canal';
@override
String get settings_presets => 'Presets';
@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 => 'Frequência (MHz)';
@override
String get settings_frequencyHelper => '300,0 - 2500,0';
@override
String get settings_frequencyInvalid => 'Frequência inválida (300-2500 MHz)';
@override
String get settings_bandwidth => 'Largura de banda';
@override
String get settings_spreadingFactor => 'Fator de Dispersão';
@override
String get settings_codingRate => 'Taxa de Codificação';
@override
String get settings_txPower => 'TX Potência (dBm)';
@override
String get settings_txPowerHelper => '0 - 22';
@override
String get settings_txPowerInvalid => 'Potência de TX inválida (0-22 dBm)';
@override
String get settings_longRange => 'Alcance Longo';
@override
String get settings_fastSpeed => 'Velocidade Rápida';
@override
String settings_error(String message) {
return 'Erro: $message';
}
@override
String get appSettings_title => 'Configurações do App';
@override
String get appSettings_appearance => 'Aparência';
@override
String get appSettings_theme => 'Tema';
@override
String get appSettings_themeSystem => 'Padrão do sistema';
@override
String get appSettings_themeLight => 'Luz';
@override
String get appSettings_themeDark => 'Escuro';
@override
String get appSettings_language => 'Idioma';
@override
String get appSettings_languageSystem => 'Padrão do 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 => 'Russo';
@override
String get appSettings_languageUk => 'Ucraniano';
@override
String get appSettings_notifications => 'Notificações';
@override
String get appSettings_enableNotifications => 'Ativar Notificações';
@override
String get appSettings_enableNotificationsSubtitle =>
'Receber notificações para mensagens e anúncios';
@override
String get appSettings_notificationPermissionDenied =>
'Permissão de notificação negada';
@override
String get appSettings_notificationsEnabled => 'Notificações ativadas';
@override
String get appSettings_notificationsDisabled => 'Notificações desativadas';
@override
String get appSettings_messageNotifications => 'Notificações de Mensagem';
@override
String get appSettings_messageNotificationsSubtitle =>
'Mostrar notificação ao receber novas mensagens';
@override
String get appSettings_channelMessageNotifications =>
'Notificações de Mensagens do Canal';
@override
String get appSettings_channelMessageNotificationsSubtitle =>
'Mostrar notificação ao receber mensagens do canal';
@override
String get appSettings_advertisementNotifications =>
'Notificações de Anúncios';
@override
String get appSettings_advertisementNotificationsSubtitle =>
'Mostrar notificação quando novos nós forem descobertos';
@override
String get appSettings_messaging => 'Mensagens';
@override
String get appSettings_clearPathOnMaxRetry =>
'Limpar Caminho em Tentativas Máximas';
@override
String get appSettings_clearPathOnMaxRetrySubtitle =>
'Redefinir o caminho de contato após 5 tentativas de envio falhas';
@override
String get appSettings_pathsWillBeCleared =>
'Os caminhos serão limpos após 5 tentativas falhas.';
@override
String get appSettings_pathsWillNotBeCleared =>
'Os caminhos não serão limpos automaticamente.';
@override
String get appSettings_autoRouteRotation => 'Rotação de Rota Automática';
@override
String get appSettings_autoRouteRotationSubtitle =>
'Alternar entre os melhores caminhos e o modo inundação';
@override
String get appSettings_autoRouteRotationEnabled =>
'Rotação de roteamento automático habilitada';
@override
String get appSettings_autoRouteRotationDisabled =>
'Rotação de roteamento automático desativada';
@override
String get appSettings_battery => 'Bateria';
@override
String get appSettings_batteryChemistry => 'Química da Bateria';
@override
String appSettings_batteryChemistryPerDevice(String deviceName) {
return 'Definir por dispositivo ($deviceName)';
}
@override
String get appSettings_batteryChemistryConnectFirst =>
'Conecte-se a um dispositivo para escolher';
@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 => 'Exibição do Mapa';
@override
String get appSettings_showRepeaters => 'Mostrar Repetidores';
@override
String get appSettings_showRepeatersSubtitle =>
'Exibir nós de repetidor no mapa';
@override
String get appSettings_showChatNodes => 'Mostrar Nós de Chat';
@override
String get appSettings_showChatNodesSubtitle => 'Exibir nós de chat no mapa';
@override
String get appSettings_showOtherNodes => 'Mostrar Outros Nós';
@override
String get appSettings_showOtherNodesSubtitle =>
'Exibir outros tipos de nó no mapa';
@override
String get appSettings_timeFilter => 'Filtro de Tempo';
@override
String get appSettings_timeFilterShowAll => 'Mostrar todos os nós';
@override
String appSettings_timeFilterShowLast(int hours) {
return 'Mostrar nós das últimas $hours horas';
}
@override
String get appSettings_mapTimeFilter => 'Filtro de Tempo do Mapa';
@override
String get appSettings_showNodesDiscoveredWithin =>
'Mostrar nós descobertos dentro de:';
@override
String get appSettings_allTime => 'Todos os tempos';
@override
String get appSettings_lastHour => 'Última hora';
@override
String get appSettings_last6Hours => 'Últimos 6 horas';
@override
String get appSettings_last24Hours => 'Últimas 24 horas';
@override
String get appSettings_lastWeek => 'Da última semana';
@override
String get appSettings_offlineMapCache => 'Cache de Mapa Offline';
@override
String get appSettings_noAreaSelected => 'Nenhuma área selecionada';
@override
String appSettings_areaSelectedZoom(int minZoom, int maxZoom) {
return 'Área selecionada (zoom $minZoom-$maxZoom)';
}
@override
String get appSettings_debugCard => 'Depurar';
@override
String get appSettings_appDebugLogging =>
'Rastreamento de Depuração do Aplicativo';
@override
String get appSettings_appDebugLoggingSubtitle =>
'Registrar mensagens de depuração do aplicativo Log para solucionar problemas';
@override
String get appSettings_appDebugLoggingEnabled =>
'Log de depuração do aplicativo habilitado';
@override
String get appSettings_appDebugLoggingDisabled =>
'O registro de depuração do aplicativo está desativado.';
@override
String get contacts_title => 'Contactos';
@override
String get contacts_noContacts => 'Ainda não existem contatos.';
@override
String get contacts_contactsWillAppear =>
'Os contatos serão exibidos quando os dispositivos anunciarem.';
@override
String get contacts_searchContacts => 'Pesquisar contatos...';
@override
String get contacts_noUnreadContacts => 'Sem contatos não lidos.';
@override
String get contacts_noContactsFound =>
'Não foram encontrados contatos ou grupos.';
@override
String get contacts_deleteContact => 'Excluir Contato';
@override
String contacts_removeConfirm(String contactName) {
return 'Remover $contactName dos contatos?';
}
@override
String get contacts_manageRepeater => 'Gerenciar Repetidor';
@override
String get contacts_manageRoom => 'Gerenciar Servidor de Sala';
@override
String get contacts_roomLogin => 'Login no Quarto';
@override
String get contacts_openChat => 'Abrir Chat';
@override
String get contacts_editGroup => 'Editar Grupo';
@override
String get contacts_deleteGroup => 'Excluir Grupo';
@override
String contacts_deleteGroupConfirm(String groupName) {
return 'Remover $groupName?';
}
@override
String get contacts_newGroup => 'Novo Grupo';
@override
String get contacts_groupName => 'Nome do grupo';
@override
String get contacts_groupNameRequired => 'O nome do grupo é obrigatório.';
@override
String contacts_groupAlreadyExists(String name) {
return 'O grupo \"$name\" já existe';
}
@override
String get contacts_filterContacts => 'Filtrar contatos...';
@override
String get contacts_noContactsMatchFilter =>
'Não existem contatos que correspondam ao seu filtro';
@override
String get contacts_noMembers => 'Nenhum membro';
@override
String get contacts_lastSeenNow => 'Última vez que foi visto agora';
@override
String contacts_lastSeenMinsAgo(int minutes) {
return 'Última vez que foi visto $minutes minutos atrás';
}
@override
String get contacts_lastSeenHourAgo => 'Última vez que foi visto há 1 hora.';
@override
String contacts_lastSeenHoursAgo(int hours) {
return 'Última vez visto $hours horas atrás';
}
@override
String get contacts_lastSeenDayAgo => 'Última vez que foi visto 1 dia atrás';
@override
String contacts_lastSeenDaysAgo(int days) {
return 'Última vez visto $days dias atrás';
}
@override
String get channels_title => 'Canais';
@override
String get channels_noChannelsConfigured => 'Nenhuma canalização configurada';
@override
String get channels_addPublicChannel => 'Adicionar Canal Público';
@override
String get channels_searchChannels => 'Pesquisar canais...';
@override
String get channels_noChannelsFound => 'Nenhum canal encontrado';
@override
String channels_channelIndex(int index) {
return 'Canal $index';
}
@override
String get channels_hashtagChannel => 'Canal com 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 => 'Excluir canal';
@override
String channels_deleteChannelConfirm(String name) {
return 'Excluir \"$name\"? Não pode ser desfeito.';
}
@override
String channels_channelDeleted(String name) {
return 'Canal \"$name\" excluído';
}
@override
String get channels_addChannel => 'Adicionar Canal';
@override
String get channels_channelIndexLabel => 'Índice do Canal';
@override
String get channels_channelName => 'Nome do Canal';
@override
String get channels_usePublicChannel => 'Usar Canal Público';
@override
String get channels_standardPublicPsk => 'PSK público padrão';
@override
String get channels_pskHex => 'PSK (Hex)';
@override
String get channels_generateRandomPsk => 'Gerar PSK aleatório';
@override
String get channels_enterChannelName => 'Por favor, insira um nome de canal';
@override
String get channels_pskMustBe32Hex =>
'O PSK deve ter 32 caracteres hexadecimais.';
@override
String channels_channelAdded(String name) {
return 'Canal \"$name\" adicionado';
}
@override
String channels_editChannelTitle(int index) {
return 'Editar Canal $index';
}
@override
String get channels_smazCompression => 'Compressão SMAZ';
@override
String channels_channelUpdated(String name) {
return 'Canal \"$name\" atualizado';
}
@override
String get channels_publicChannelAdded => 'Canal público adicionado';
@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 => 'Últimas mensagens';
@override
String get channels_sortUnread => 'Não lido';
@override
String get channels_createPrivateChannel => 'Criar um Canal Privado';
@override
String get channels_createPrivateChannelDesc =>
'Protegido com uma chave secreta.';
@override
String get channels_joinPrivateChannel => 'Junte-se a um Canal Privado';
@override
String get channels_joinPrivateChannelDesc =>
'Inserir uma chave secreta manualmente.';
@override
String get channels_joinPublicChannel => 'Junte-se ao Canal Público';
@override
String get channels_joinPublicChannelDesc =>
'Qualquer pessoa pode entrar neste canal.';
@override
String get channels_joinHashtagChannel => 'Junte-se a um Canal com Hashtag';
@override
String get channels_joinHashtagChannelDesc =>
'Qualquer pessoa pode participar de canais com hashtag.';
@override
String get channels_scanQrCode => 'Digitalizar um Código QR';
@override
String get channels_scanQrCodeComingSoon => 'Em breve';
@override
String get channels_enterHashtag => 'Insira hashtag';
@override
String get channels_hashtagHint => 'ex. #equipe';
@override
String get chat_noMessages => 'Ainda não existem mensagens.';
@override
String get chat_sendMessageToStart => 'Enviar uma mensagem para começar';
@override
String get chat_originalMessageNotFound => 'Mensagem original não encontrada';
@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 => 'Localização';
@override
String chat_sendMessageTo(String contactName) {
return 'Enviar uma mensagem para $contactName';
}
@override
String get chat_typeMessage => 'Digite uma mensagem...';
@override
String chat_messageTooLong(int maxBytes) {
return 'Mensagem muito longa (máximo $maxBytes bytes).';
}
@override
String get chat_messageCopied => 'Mensagem copiada';
@override
String get chat_messageDeleted => 'Mensagem excluída';
@override
String get chat_retryingMessage => 'Tentando novamente';
@override
String chat_retryCount(int current, int max) {
return 'Tentar $current/$max';
}
@override
String get chat_sendGif => 'Enviar GIF';
@override
String get chat_reply => 'Responder';
@override
String get chat_addReaction => 'Adicionar Reação';
@override
String get chat_me => 'Eu';
@override
String get emojiCategorySmileys => 'Emojis';
@override
String get emojiCategoryGestures => 'Gestos';
@override
String get emojiCategoryHearts => 'Corações';
@override
String get emojiCategoryObjects => 'Objetos';
@override
String get gifPicker_title => 'Escolher um GIF';
@override
String get gifPicker_searchHint => 'Pesquisar GIFs...';
@override
String get gifPicker_poweredBy => 'Desenvolvido por GIPHY';
@override
String get gifPicker_noGifsFound => 'Nenhum GIF encontrado';
@override
String get gifPicker_failedLoad => 'Não foi possível carregar os GIFs';
@override
String get gifPicker_failedSearch => 'Falha na pesquisa de GIFs';
@override
String get gifPicker_noInternet => 'Sem conexão com a internet';
@override
String get debugLog_appTitle => 'Log de Depuração do Aplicativo';
@override
String get debugLog_bleTitle => 'Log de Depuração BLE';