app_localizations_es.dart
86.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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
// 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 appName => 'Doble sensación';
@override
String get confirm => 'Confirmar';
@override
String get cancel => 'Cancelar';
@override
String get continueButton => 'Continuar';
@override
String get loading => 'Cargando...';
@override
String get success => 'Éxito';
@override
String get error => 'Error';
@override
String get loginTitle => 'Acceso';
@override
String get username => 'Nombre de usuario';
@override
String get password => 'Contraseña';
@override
String get loginBtn => 'Iniciar sesión';
@override
String get usernameEmptyHint => 'El nombre de usuario no puede estar vacío';
@override
String get passwordEmptyHint => 'La contraseña no puede estar vacía';
@override
String get homeTitle => 'Hogar';
@override
String get tabToday => 'Hoy';
@override
String get tabTrend => 'Tendencia';
@override
String get tabFriends => 'Amigos';
@override
String get tabMy => 'A mí';
@override
String get switchLanguage => 'Cambiar idioma';
@override
String get mainlandChinaServices => 'Servicios de China continental';
@override
String get internationalServices => 'Servicios Internacionales';
@override
String get mainlandChinaServicesDescription =>
'Para usuarios principalmente en China continental. Los datos de salud, cuentas y amigos se almacenan en China continental.';
@override
String get internationalServicesDescription =>
'Para usuarios principalmente fuera de China continental. Los datos de salud, cuentas y amigos se almacenan internacionalmente.';
@override
String get serviceRegionCannotBeChanged =>
'La región del servicio no se puede cambiar después de la creación de la cuenta.';
@override
String get settings => 'Ajustes';
@override
String get onboardingIntroTitle =>
'DoubleFeel es una aplicación complementaria de salud creada para Apple Watch';
@override
String get onboardingIntroBody =>
'<em>Compréndete mejor a ti mismo</em> y deja que las personas que se preocupan por ti <em>se den cuenta cuando necesitas apoyo.</em>';
@override
String get onboardingStateQuestion => '¿Qué te pasa a menudo?';
@override
String get onboardingStateStressAnxiety => 'A menudo estresado o ansioso';
@override
String get onboardingStateTired => 'Sentirse cansado fácilmente';
@override
String get onboardingStatePoorRest => 'Despierta sintiéndote cansado';
@override
String get onboardingStateNeedStimulants =>
'Confíe en estimulantes para mantenerse alerta';
@override
String get onboardingStateNone => 'Ninguno de los anteriores';
@override
String get onboardingStressGoalQuestion =>
'¿Qué quieres del seguimiento del estrés?';
@override
String get onboardingStressGoalSource => 'Comprender las fuentes de estrés';
@override
String get onboardingStressGoalReminder => 'Recibe recordatorios de estrés';
@override
String get onboardingStressGoalLovedOnes =>
'Compartir el estrés con sus seres queridos';
@override
String get onboardingStressGoalRelax => 'Siéntete más tranquilo';
@override
String get onboardingStressGoalBodyTalk => 'entender mi cuerpo';
@override
String get onboardingReliefQuestion => '¿Qué te ayuda a aliviar el estrés?';
@override
String get onboardingReliefSleep => 'Dormir mejor';
@override
String get onboardingReliefCare => 'Cuidado de sus seres queridos';
@override
String get onboardingReliefExercise => 'hacer más ejercicio';
@override
String get onboardingReliefSun => 'Más luz solar';
@override
String get onboardingReliefWater => 'Bebe más agua';
@override
String get onboardingReliefMeditation => 'Meditación';
@override
String get onboardingKeyDataTitle => '';
@override
String get onboardingKeyDataSubtitle =>
'Tu cuerpo tiene una señal oculta que puede ayudarte a:';
@override
String get onboardingKeyDataStress => 'Seguimiento del estrés';
@override
String get onboardingKeyDataFatigue => 'evitar el agotamiento';
@override
String get onboardingKeyDataRecovery => 'Recuperación de saldo';
@override
String get onboardingKeyDataHabits => 'Desarrolla hábitos más saludables';
@override
String get onboardingKeyDataLovedOnes =>
'Deja que tus seres queridos te cuiden antes';
@override
String get onboardingTellMeWhatItIs => '¡Dime qué es!';
@override
String get onboardingHrvTitle => 'Se llama VFC';
@override
String get onboardingHrvSubtitle =>
'HRV ayuda a reflejar su estrés, recuperación y bienestar general';
@override
String get onboardingHrvDescription =>
'La variabilidad de la frecuencia cardíaca (VFC) mide pequeños cambios entre los latidos del corazón y refleja cómo responde su cuerpo al estrés.';
@override
String get onboardingTellMeMore => 'Cuéntame más';
@override
String get onboardingResearchTitle =>
'Los estudios demuestran que los cambios en la VFC están estrechamente relacionados con cómo se sienten nuestro cuerpo y nuestra mente.';
@override
String get onboardingResearchFatigue => 'sentirse cansado';
@override
String get onboardingResearchEnergy => 'sintiéndome genial';
@override
String get onboardingResearchHrvDown => 'VFC';
@override
String get onboardingResearchHrvUp => 'VFC';
@override
String get onboardingHealthPermissionTitle => 'Permitir acceso a la salud';
@override
String get onboardingHealthPermissionBody =>
'DoubleFeel utiliza datos de salud para realizar un seguimiento del estrés y el bienestar.';
@override
String get onboardingHealthPermissionPrivacy =>
'Sus datos de salud sin procesar permanecen privados y nunca se cargan.';
@override
String get onboardingNotificationTitle => 'Activar notificaciones';
@override
String get onboardingNotificationSubtitle => '';
@override
String get onboardingNotificationBody =>
'Reciba notificaciones cuando su cuerpo muestre señales inusuales de estrés o fatiga.';
@override
String get onboardingMemberTitle => 'Obtenga la oferta de membresía anual';
@override
String get onboardingMemberBody =>
'Comience su viaje de bienestar y seguimiento del estrés, y nunca se pierda momentos de cariño.';
@override
String get onboardingMemberAllOptions => 'Ver todas las opciones de compra';
@override
String get healthCompanionIsNowAvailable => 'Compañero de bienestar activado';
@override
String get youCanNowViewEachOtherSHrvStressLevelsAndSleepPatternsAndReachOutToCheckInWhenTheOtherPersonSeemsTired =>
'Ahora puede realizar un seguimiento de la VFC, el estrés y los cambios del sueño, y compartir alertas con sus seres queridos.';
@override
String get bindPartnerTitle => 'Agregar un ser querido\nSigue tu salud';
@override
String get bindPartnerMyId => 'mi identificación';
@override
String get bindPartnerShareMyCode => 'Compartir mi identificación';
@override
String get bindPartnerOr => 'o';
@override
String get bindPartnerContactId => 'Identificación del ser querido';
@override
String get bindPartnerInputHint => 'Entra aquí';
@override
String get bindPartnerSkip => 'Quizás más tarde';
@override
String get onboardingResearchStress => 'Estresado';
@override
String get onboardingResearchRelaxed => 'Relajado';
@override
String get onboardingResearchSick => 'Sentirse enfermo';
@override
String get onboardingResearchHealthy => 'Recuperándose bien';
@override
String get onboardingResearchPoorSleep => 'mal sueño';
@override
String get onboardingResearchGoodSleep => 'bien descansado';
@override
String get loginSlogan =>
'Comience su viaje de conocimientos sobre el estrés y conexión afectuosa.';
@override
String get loginWithPhone => 'Iniciar sesión con teléfono';
@override
String get loginWithApple => 'Iniciar sesión con Apple';
@override
String get loginLastUsed => 'último usado';
@override
String get loginAgreementPrefix => 'Al tocar, aceptas';
@override
String get loginTerms => 'Términos';
@override
String get loginAgreementAnd => '&';
@override
String get loginPrivacy => 'Política';
@override
String get phoneLoginHello => 'Hola ~';
@override
String get phoneLoginWelcome => 'Bienvenidos a Doble Sentimiento';
@override
String get phoneLoginPhoneHint => 'Introduce el número de teléfono';
@override
String get phoneLoginSendCode => 'Enviar código';
@override
String get phoneLoginSending => 'Envío';
@override
String phoneLoginSentCountdown(int countdown) {
return 'Enviado (${countdown}s)';
}
@override
String get phoneLoginResend => 'Reenviar';
@override
String get phoneLoginCodeHint => 'Ingrese el código de verificación';
@override
String get phoneLoginAutoRegisterHint =>
'Los números no registrados se registrarán automáticamente';
@override
String get phoneLoginLoggingIn => 'Iniciando sesión...';
@override
String get loginAgreeToTermsToast =>
'Primero lea y acepte los Términos de servicio y la Política de privacidad.';
@override
String get phoneLoginInvalidPhone => 'Número de teléfono no válido';
@override
String get phoneLoginCodeSentSuccess => 'Código enviado';
@override
String get phoneLoginInvalidCode => 'Código de verificación no válido';
@override
String get todayHealthDataAuthTitle => 'Sincronización de datos de salud';
@override
String get todayHealthDataAuthDescription =>
'DoubleFeel necesita acceso a sus datos de Apple Health para proporcionar información sobre el estrés, seguimiento del estrés en vivo y recomendaciones de salud.\nSi no ha otorgado acceso, permita los permisos a continuación. Si ya has concedido acceso, la sincronización de tus datos de salud puede tardar unos minutos. Inténtelo de nuevo más tarde.';
@override
String get todayHealthDataAuthAction => 'Continuar';
@override
String get measureYourHrvNow => 'Cómo tomar una medida';
@override
String get todayBottomSheetGotIt => 'Entiendo';
@override
String get todayFaqTitle => 'Preguntas frecuentes';
@override
String get todayFaqSectionTitle => 'Preguntas frecuentes sobre DoubleFeel';
@override
String get todayFaqLinkNoData =>
'¿Qué pasa si la aplicación o la esfera del reloj no tiene datos?';
@override
String get todayFaqLinkHrvRealtimeUpdate =>
'¿Cómo se pueden actualizar los datos de HRV en tiempo real?';
@override
String get todayFaqLinkWatchNoStatusNotification =>
'¿Por qué mi reloj no puede recibir notificaciones de estado?';
@override
String get todayFaqLinkWatchNoStatusAndInteractionNotification =>
'¿Por qué mi reloj no puede recibir notificaciones de estado e interacción?';
@override
String get todayFaqLinkWatchFaceDataDelay =>
'¿Por qué los datos de la esfera del reloj se retrasan o no se actualizan?';
@override
String get todayFaqLinkWatchFaceBlackScreen =>
'¿Por qué la esfera del reloj se vuelve negra?';
@override
String get todayStressStatusTitle => 'Estado de estrés general';
@override
String get todayHrvPrincipleTitle => 'Cómo se mide la VFC';
@override
String get todayRealtimeStressTitle => 'Cómo funciona Live Stress';
@override
String get todayStressStatusOverload => 'Sobrecarga';
@override
String get todayStressStatusCaution => 'Prestar atención';
@override
String get todayStressStatusNormal => 'Normal';
@override
String get todayStressStatusExcellent => 'Excelente';
@override
String get todayStressStatusInsufficientData => 'Datos insuficientes';
@override
String get todayStressStatusOverloadDescription =>
'Su VFC actual es mucho más baja que su promedio a largo plazo, lo que puede indicar fatiga, mucho estrés o una recuperación insuficiente. Se recomienda reposo.';
@override
String get todayStressStatusCautionDescription =>
'Su VFC actual está por debajo del rango normal y su cuerpo puede estar acumulando estrés. Presta atención al descanso y la recuperación.';
@override
String get todayStressStatusNormalDescription =>
'Su estado corporal actual está dentro de su rango de fluctuación normal.';
@override
String get todayStressStatusExcellentDescription =>
'Su VFC actual es más alta que su promedio reciente, lo que indica una mejor recuperación y estado general.';
@override
String get todayStressStatusInsufficientDataDescription =>
'Todavía no hay suficientes datos disponibles para evaluar con precisión su estado de estrés.';
@override
String get todayHrvMeasurementIntro =>
'Apple Watch mide la VFC automáticamente cada 2 a 5 horas. Si desea realizar una medición manual, siga estos pasos:';
@override
String get todayHrvMeasurementStep1 =>
'1. Usa tu Apple Watch, siéntate y mantente relajado.';
@override
String get todayHrvMeasurementStep2 =>
'2. Abra la aplicación \"Mindfulness\" en su Apple Watch e inicie una sesión de \"Respiración\".';
@override
String get todayHrvMeasurementStep3 =>
'3. Mantenga la respiración constante y espere de 1 a 3 minutos.';
@override
String get todayHrvMeasurementStep4 =>
'4. Una vez finalizada la sesión de respiración, bloquea tu Apple Watch y desbloquea tu iPhone una vez.';
@override
String get todayHrvMeasurementStep5 =>
'5. Espere aproximadamente un minuto. DoubleFeel recibirá y mostrará sus datos.';
@override
String get todayHrvMeasurementHint =>
'Consejo: Tus datos provienen del Apple Watch. Puede haber un retraso después de la medición o es posible que los datos no se sincronicen inmediatamente. Si esto sucede, intente medir nuevamente y espere a que se sincronicen los datos.';
@override
String get todayHrvMeasurementWarning =>
'Nota: Los permisos de salud deben estar habilitados y el modo de bajo consumo debe estar desactivado.';
@override
String get todayStressStatusWhatTitle =>
'¿Qué es el estado de estrés general?';
@override
String get todayStressStatusWhatDescription1 =>
'DoubleFeel combina su VFC (variabilidad de la frecuencia cardíaca), frecuencia cardíaca en reposo y cambios en el estado corporal de los últimos 30 días para evaluar su nivel de estrés general.';
@override
String get todayStressStatusWhatDescription2 =>
'Debido a que la VFC fluctúa con las emociones, el ejercicio, el sueño y la fatiga, una sola lectura tiene un valor limitado. Recomendamos centrarse en su estado de estrés general a lo largo del día, que es más estable y útil. Le ayuda a comprender su estado corporal y ayuda a sus contactos cercanos a notar cambios a tiempo.';
@override
String get todayStressStatusWhyHrvTitle =>
'¿Por qué utilizar HRV (variabilidad de la frecuencia cardíaca)?';
@override
String get todayStressStatusWhyHrvDescription =>
'La VFC es una métrica importante para medir el estrés corporal y la capacidad de recuperación.';
@override
String get todayStressStatusUsually => 'En general:';
@override
String get todayStressStatusHrvHigher =>
'· Una VFC más alta generalmente significa una mejor recuperación';
@override
String get todayStressStatusHrvLower =>
'· Una VFC más baja puede indicar fatiga, estrés o sueño insuficiente';
@override
String get todayStressStatusHrvChangesFast =>
'· La VFC cambia rápidamente, lo que la hace útil para cambios de estado corporal a corto plazo.';
@override
String get todayStressStatusAppWatchDifferenceTitle =>
'¿En qué se diferencian los estados de estrés en la aplicación del teléfono y en el Apple Watch?';
@override
String get todayStressStatusAppWatchDifferenceApp =>
'La página de inicio de la aplicación del teléfono muestra el estado de estrés general del día, combinando la VFC, la frecuencia cardíaca en reposo y las tendencias generales.';
@override
String get todayStressStatusAppWatchDifferenceWatch =>
'Apple Watch muestra el estado Live Stress más reciente, lo cual es mejor para verificar rápidamente los cambios corporales actuales.';
@override
String get todayStressStatusWaitingDataTitle =>
'¿Por qué aparece Esperando datos?';
@override
String get todayStressStatusWaitingDataDescription1 =>
'Esperar datos significa que la cantidad actual de datos recopilados no es suficiente para generar una evaluación de estrés confiable.';
@override
String get todayStressStatusWaitingDataDescription2 =>
'Continúe usando su Apple Watch y espere a que el sistema recopile datos automáticamente.';
@override
String get todayStressStatusWaitingDataReasonsIntro =>
'Las posibles razones incluyen:';
@override
String get todayStressStatusWaitingDataReason1 =>
'1. No hay suficientes muestras de VFC';
@override
String get todayStressStatusWaitingDataReason2 =>
'2. Faltan datos de frecuencia cardíaca en reposo';
@override
String get todayStressStatusWaitingDataReason3 =>
'3. El Apple Watch no se ha usado el tiempo suficiente';
@override
String get todayStressStatusWaitingDataReason4 =>
'4. Los permisos de Apple Health no están habilitados';
@override
String get todayHrvPrincipleHowMeasureTitle =>
'¿Cómo mide DoubleFeel el estado de estrés?';
@override
String get todayHrvPrincipleHowMeasureDescription1 =>
'Cuando usas Apple Watch normalmente, el sistema recopila automáticamente tus datos de frecuencia cardíaca y los sincroniza con Apple Health.';
@override
String get todayHrvPrincipleHowMeasureDescription2 =>
'DoubleFeel calcula los indicadores HRV (variabilidad de la frecuencia cardíaca) basándose en estos datos para evaluar el estrés corporal y el estado de recuperación.';
@override
String get todayHrvPrincipleHowMeasureDescription3 =>
'La VFC es sensible al estrés, la fatiga, el sueño, las emociones y la recuperación, por lo que nos ayuda a notar antes los cambios en el estado corporal.';
@override
String get todayHrvPrincipleHowMeasureDescription4 =>
'Para que los resultados sean más precisos, DoubleFeel compara su estado actual de VFC con su propio promedio de 30 días en lugar de compararlo directamente con el de otras personas.';
@override
String get todayRealtimeStressWhatTitle => '¿Qué es el estrés en vivo?';
@override
String get todayRealtimeStressWhatDescription1 =>
'Live Stress es un indicador de estrés corporal generado dinámicamente por DoubleFeel en función de su VFC actual, su estado de frecuencia cardíaca y los cambios en su historial personal.';
@override
String get todayRealtimeStressWhatDescription2 =>
'Un valor de estrés más alto significa que su estado corporal se está desviando más de su valor inicial habitual y puede reflejar fatiga, recuperación insuficiente o estrés elevado.';
@override
String get todayRealtimeStressWhatDescription3 =>
'Te ayuda a notar los cambios corporales más rápido y a ajustar el descanso, el ejercicio y el ritmo diario a tiempo.';
@override
String get todayRealtimeStressDivisionTitle =>
'¿Cómo se califica el estrés en vivo?';
@override
String get todayRealtimeStressDivisionIntro =>
'El estrés vivo se muestra como porcentaje:';
@override
String get todayRealtimeStressExcellentRange => 'Excelente: 1%-20%';
@override
String get todayRealtimeStressNormalRange => 'Normalidad: 21%-60%';
@override
String get todayRealtimeStressCautionRange => 'Preste atención: 61% -80%';
@override
String get todayRealtimeStressOverloadRange => 'Sobrecarga: 81%-100%';
@override
String get todayRealtimeStressExcellentDescription =>
'Tu cuerpo está en un buen estado de recuperación y se siente más relajado.';
@override
String get todayRealtimeStressNormalDescription =>
'Su cuerpo está dentro de un rango de fluctuación normal.';
@override
String get todayRealtimeStressCautionDescription =>
'Tu cuerpo puede estar acumulando estrés. Considere tomar descansos y recuperarse.';
@override
String get todayRealtimeStressOverloadDescription =>
'Su cuerpo puede estar bajo un estrés significativo. Considere reducir su carga de trabajo y priorizar el sueño y la recuperación.';
@override
String get todayRealtimeStressDivisionBaseline =>
'Estos rangos se ajustan según su base personal y sus patrones de actividad. Los resultados no son directamente comparables entre diferentes usuarios.';
@override
String get todayRealtimeStressDivisionAwake =>
'Live Stress refleja principalmente cambios en el nivel de estrés de su cuerpo mientras está despierto.';
@override
String get todayRealtimeStressLowBetterTitle =>
'¿Es siempre mejor tener menos estrés en vivo?';
@override
String get todayRealtimeStressLowBetterNo => 'No necesariamente.';
@override
String get todayRealtimeStressLowBetterType =>
'El estrés corporal puede ser normal o anormal.';
@override
String get todayRealtimeStressLowBetterExample =>
'Por ejemplo, el estrés en tiempo real que aumenta brevemente durante o después del ejercicio es una respuesta de recuperación normal. También puede aumentar temporalmente durante el trabajo concentrado o la excitación emocional, que son ajustes normales del cuerpo.';
@override
String get todayRealtimeStressLowBetterHighStress =>
'Pero si el estrés permanece alto mientras descansa, está sentado durante mucho tiempo o después de dormir mal, puede indicar fatiga física, estrés mental, recuperación insuficiente del sueño, recuperación incompleta del ejercicio, demasiada cafeína, alcohol, estimulantes o posible malestar.';
@override
String get todayRealtimeStressLowBetterTrend =>
'DoubleFeel se centra más en su tendencia a largo plazo que en una sola fluctuación.';
@override
String get todayRealtimeStressScenarioTitle =>
'¿Cuándo se debe utilizar HRV y Live Stress?';
@override
String get todayRealtimeStressScenarioHrvDefault =>
'Con la configuración predeterminada de Apple Watch, la VFC se actualiza cada 2 a 5 horas.';
@override
String get todayRealtimeStressScenarioRegionLimit =>
'En algunas regiones, las funciones de respiración del Apple Watch pueden ser limitadas, lo que puede afectar la frecuencia de actualización de la VFC. Activar las funciones de respiración también puede consumir más batería.';
@override
String get todayRealtimeStressScenarioIntro =>
'Para abordar el largo intervalo entre actualizaciones de HRV, DoubleFeel diseñó Live Stress:';
@override
String get todayRealtimeStressScenarioUpdateEvery6Min =>
'· Live Stress se actualiza cada 6 minutos (las actualizaciones del estado de los amigos dependen de la sincronización de Apple Health y pueden experimentar breves retrasos debido a los mecanismos del sistema. Si su amigo usa DoubleFeel con frecuencia, su estado de salud se actualizará más rápidamente)';
@override
String get todayRealtimeStressScenarioTimely =>
'· Puede reflejar los cambios del estado corporal más rápidamente';
@override
String get todayRealtimeStressScenarioConsistentTrend =>
'· En la mayoría de los casos, la tendencia Live Stress es consistente con la tendencia HRV';
@override
String get todayRealtimeStressScenarioSummary =>
'Esto permite a los usuarios ver las tendencias de la VFC a largo plazo y al mismo tiempo utilizar Live Stress como referencia del estado corporal a corto plazo.';
@override
String get todayFaqNoDataTitle =>
'¿Qué pasa si la aplicación o la esfera del reloj no tiene datos?';
@override
String get todayFaqNoDataDescription1 =>
'1. Confirme que Apple Watch esté en watchOS 10.0 o superior y que el iPhone esté en iOS 14 o superior. Puede consultar las versiones del sistema en Acerca de.';
@override
String get todayFaqNoDataDescription2 =>
'2. Confirme que todos los permisos estén habilitados: Salud del iPhone > Compartir > Aplicaciones > DoubleFeel > Activar todos los permisos.';
@override
String get todayFaqNoDataDescription3 =>
'3. Confirme que el dispositivo no esté en modo de bajo consumo, batería baja o usado demasiado flojo, ya que esto puede afectar la recopilación de datos.';
@override
String get todayFaqContactPrefix => 'Si todo lo anterior es correcto, puedes';
@override
String get todayFaqContactAction => 'contáctanos';
@override
String get todayFaqContactSuffix => '.';
@override
String get todayFaqWatchNoNotificationTitle =>
'¿El reloj no puede recibir notificaciones de estado?';
@override
String get todayFaqWatchNoNotificationDescription1 =>
'Las notificaciones de Apple Watch y iPhone tienen reglas de prioridad: cuando tu iPhone está desbloqueado y la pantalla está encendida, las notificaciones solo aparecen en el teléfono y no aparecerán en el reloj.';
@override
String get todayFaqWatchNoNotificationDescription2 =>
'Si los datos de estrés se muestran y actualizan normalmente pero su reloj no recibe notificaciones, intente lo siguiente:';
@override
String get todayFaqWatchNoNotificationCheckPhoneNotification =>
'1. Verifique si las notificaciones del iPhone están habilitadas (Configuración > DoubleFeel > Notificaciones).';
@override
String get todayFaqWatchNoNotificationCheckPhoneBackgroundRefresh =>
'2. Compruebe si la Actualización de la aplicación en segundo plano del iPhone está habilitada (Configuración > DoubleFeel > Actualización de la aplicación en segundo plano).';
@override
String get todayFaqWatchNoNotificationCheckWatchBackgroundRefresh =>
'3. Verifique si la Actualización de la aplicación en segundo plano del Apple Watch está habilitada (Configuración > General > Actualización de la aplicación en segundo plano y asegúrese de que DoubleFeel esté habilitado).';
@override
String get todayFaqWatchNoNotificationCheckModes =>
'4. Asegúrese de que los modos Bajo consumo, Enfoque, No molestar, Cine, Suspensión y similares estén desactivados.';
@override
String get todayFaqWatchNoNotificationReinstall =>
'5. Reinstale DoubleFeel y reinicie Apple Watch y iPhone.';
@override
String get todayFaqWatchFaceDelayTitle =>
'¿Los datos de la esfera del reloj no se actualizan o se retrasan?';
@override
String get todayFaqWatchFaceDelayDescription1 =>
'Debido a los límites del sistema de Apple, todas las esferas de reloj, de terceros u oficiales, pueden tener retrasos desde unos minutos hasta media hora. Los desarrolladores no pueden controlar la frecuencia de actualización.';
@override
String get todayFaqWatchFaceDelayIfOverOneHour =>
'Si los datos del teléfono se actualizan pero la esfera del reloj aún no se actualiza después de más de 1 hora:';
@override
String get todayFaqWatchFaceDelayOpenWatchApp =>
'Abra DoubleFeel manualmente en Apple Watch y espere aproximadamente 1 minuto.';
@override
String get todayFaqWatchFaceDelayIfStill => 'Si aún no se actualiza:';
@override
String get todayFaqWatchFaceDelayRestartApp =>
'Cierre el proceso en segundo plano de DoubleFeel y reinícielo.';
@override
String get todayFaqWatchFaceDelayCheckIntro => 'Si aún no funciona, revisa:';
@override
String get todayFaqWatchFaceDelayCheckData =>
'· Si tanto las aplicaciones del teléfono como del reloj pueden mostrar datos de VFC con normalidad.';
@override
String get todayFaqWatchFaceDelayCheckPhoneHealth =>
'· Asegúrese de que todos los permisos estén habilitados en iPhone: Configuración de iOS > Privacidad y seguridad > Salud > DoubleFeel.';
@override
String get todayFaqWatchFaceDelayCheckWatchHealth =>
'· Asegúrese de que todos los permisos estén habilitados en Apple Watch: Configuración > Salud > Fuentes de datos y acceso > DoubleFeel.';
@override
String get todayFaqWatchFaceDelayCheckBackgroundRefresh =>
'· Confirma que DoubleFeel está habilitado en Apple Watch > Configuración > General > Actualización de aplicación en segundo plano.';
@override
String get todayFaqWatchFaceDelayRestartWatch =>
'· Si aún no se actualiza automáticamente, reinicie Apple Watch. Los tiempos de ejecución prolongados o un uso elevado en segundo plano pueden provocar que se detengan las actualizaciones de la esfera del reloj.';
@override
String get todayFaqWatchFaceBlackScreenTitle =>
'¿La esfera del reloj se vuelve negra?';
@override
String get todayFaqWatchFaceBlackScreenDescription =>
'Si la esfera del reloj interactiva personalizada se vuelve negra después de agregarla y solo muestra la hora y la fecha, mantenga presionada la esfera del reloj, toque Editar, deslícese hacia la izquierda hasta Complicaciones, elija DoubleFeel y agregue cada componente nuevamente según sea necesario.';
@override
String get today => 'Hoy';
@override
String get yesterday => 'Ayer';
@override
String get backToToday => 'Volver a hoy';
@override
String get redeemOffer => 'Oferta de reclamación';
@override
String get allPlans => 'Todos los planes';
@override
String get clickToAddTheHrvThemedWatchFace => 'Agregar esfera de reloj HRV';
@override
String get stayOnTopOfYourHealthFluctuations =>
'Sigue los cambios de tu cuerpo';
@override
String get addACloseContact => 'Agregar un ser querido';
@override
String get oneMorePersonLookingOutForYourHealth => 'Sigue tu salud';
@override
String get addAFriend => 'Agregar';
@override
String get averageHrvForTheDay => 'Promedio Hrv';
@override
String get restingHeartRate => 'RHR';
@override
String get todaySHrvTrend => 'Tendencia de la VFC';
@override
String get more => 'Más';
@override
String get noDataAvailableForToday => 'No hay datos disponibles para hoy';
@override
String get realTimePressure => 'Estrés en vivo';
@override
String get accountInformation => 'Información de la cuenta';
@override
String get help => 'Ayuda';
@override
String get changeNickname => 'Editar nombre';
@override
String get pleaseEnterANickname => 'Por favor ingresa un apodo';
@override
String get feedbackLog => 'Registro de comentarios';
@override
String get noFeedbackRecordsYet => 'Aún no hay registros de comentarios';
@override
String get feedbackDetails => 'Detalles de comentarios';
@override
String get reportAnIssue => 'Informar un problema';
@override
String get contactInformation => 'Información del contacto';
@override
String get submit => 'Entregar';
@override
String get questionsAndFeedback => 'Preguntas y comentarios';
@override
String get ifYouWouldLikeUsToReplyPleaseProvideYourEmailAddress =>
'Si desea que le respondamos, proporcione su dirección de correo electrónico';
@override
String get feedbackHintText =>
'1. Describa la pantalla y el escenario donde ocurrió el problema.\n2. Proporcione capturas de pantalla para ayudarnos a resolver el problema de manera más eficiente.\n3. Deje su información de contacto para que podamos comunicarnos con usted lo antes posible.';
@override
String get uploadProof => 'Subir prueba';
@override
String get frequentlyAskedQuestions => 'Preguntas frecuentes';
@override
String get areYouSureYouWantToDeleteYourAccount =>
'¿Estás seguro de que quieres eliminar tu cuenta?';
@override
String get accountSettings => 'Configuraciones de la cuenta';
@override
String get appleAccount => 'Cuenta de Apple';
@override
String get googleAccount => 'Cuenta de Google';
@override
String get securityEmail => 'Correo electrónico';
@override
String get addSecurityEmail => 'Agregar un correo electrónico';
@override
String get securityEmailDescription =>
'Agregar una dirección de correo electrónico facilita la recuperación de su cuenta. Para la seguridad de su cuenta, utilice una dirección de correo electrónico de su propiedad.';
@override
String get securityEmailHint => 'Dirección de correo electrónico';
@override
String get confirmYourEmail => 'Confirma tu correo electrónico';
@override
String enterCodeSentTo(Object email) {
return 'Introduce el código enviado a \n$email';
}
@override
String get emailVerificationHelp =>
'Si no ve el correo electrónico, verifique otros lugares donde pueda estar, como su carpeta de correo no deseado, spam, redes sociales u otras.';
@override
String get verificationCode => 'Código de verificación';
@override
String get resend => 'Reenviar';
@override
String resendWithSeconds(int seconds) {
return 'Reenviar($seconds)';
}
@override
String get invalidEmailFormat => 'Formato de correo electrónico no válido';
@override
String get deleteAccount => 'Eliminar cuenta';
@override
String get mobilePhoneNumber => 'Número de teléfono móvil';
@override
String get logOut => 'Desconectar';
@override
String get confirmLogoutPrompt => '¿Está seguro de que desea cerrar sesión?';
@override
String get confirmLogout => 'Si, estoy seguro';
@override
String get loggedOutSuccessfully => 'Cerró sesión exitosamente';
@override
String get accountDeletedSuccessfully => 'Cuenta eliminada exitosamente';
@override
String get deleteAccountWarningTitle =>
'La eliminación de la cuenta no se puede deshacer. Proceda con cuidado.';
@override
String get deleteAccountWarningPrompt =>
'1. Al eliminar su cuenta, se eliminarán permanentemente todos sus datos, incluidos registros médicos, estadísticas e información de la cuenta.';
@override
String get deleteAccountWarningNote1 =>
'2. Para proteger su privacidad, no podemos recuperar cuentas o datos eliminados.';
@override
String get deleteAccountWarningNote2 =>
'3. Si tiene una suscripción activa a través de App Store, cancélela en App Store → Suscripciones antes de eliminar su cuenta.';
@override
String get confirmDeletion => 'Eliminar cuenta';
@override
String get iLlThinkAboutItSomeMore => 'Mantener mi cuenta';
@override
String get sleep => 'Dormir';
@override
String get viewSleepReport => 'Ver detalles';
@override
String get duration => 'Duración';
@override
String get quality => 'Calidad';
@override
String get averageHeartRate => 'FC promedio';
@override
String get fitness => 'Aptitud física';
@override
String get viewFitnessReport => 'Ver detalles';
@override
String get event => 'Mover';
@override
String get exercise => 'Ejercicio';
@override
String get standing => 'Pararse';
@override
String get dailyActions => 'Comportamiento';
@override
String get trendHrvHeartRate => 'VFC y FC';
@override
String get trendActivityBurn => 'Actividad';
@override
String get trendSleepReport => 'Dormir';
@override
String get reportPeriodDay => 'D';
@override
String get reportPeriodWeek => 'W.';
@override
String get reportPeriodMonth => 'METRO';
@override
String get reportPeriodYear => 'Y';
@override
String reportDateYear(int year) {
return '$year';
}
@override
String reportDateMonth(int month) {
return 'Mes $month';
}
@override
String reportDateMonthDay(int month, int day) {
return '$month/$day';
}
@override
String reportDateYearMonthDay(int year, int month, int day) {
return '$day/$month/$day';
}
@override
String get reportDatePickerTitle => 'Seleccionar fecha';
@override
String get reportDatePickerConfirm => 'Confirmar';
@override
String reportDatePickerYearOption(int year) {
return '$year';
}
@override
String reportDatePickerMonthOption(int month) {
return '$month';
}
@override
String reportDatePickerDayOption(int day) {
return '$day';
}
@override
String get reportWaitingForData => 'Esperando datos';
@override
String get sleepDailyAwaitingData => 'En espera de datos';
@override
String get reportWaitingForOtherData => 'Esperando sus datos';
@override
String get reportNoData => 'Sin datos';
@override
String get reportNoDataToday => 'No hay datos para hoy';
@override
String get reportUnitDay => 'días';
@override
String get reportUnitHour => 'hora';
@override
String get reportUnitMinute => 'mín.';
@override
String get reportUnitScore => 'puntos';
@override
String get reportUnitKcal => 'calorías';
@override
String get reportWeekdayMonday => 'Lun';
@override
String get reportWeekdayTuesday => 'Mar';
@override
String get reportWeekdayWednesday => 'Casarse';
@override
String get reportWeekdayThursday => 'Jue';
@override
String get reportWeekdayFriday => 'Vie';
@override
String get reportWeekdaySaturday => 'Se sentó';
@override
String get reportWeekdaySunday => 'Sol';
@override
String reportDateWithWeekday(String date, String weekday) {
return '$date, $weekday';
}
@override
String reportOtherPossessiveTitle(String title) {
return 'Su $title';
}
@override
String reportOtherTitle(String title) {
return '$title';
}
@override
String get reportTrend => 'Tendencias';
@override
String reportExampleTitle(String title) {
return '$title (Ejemplo)';
}
@override
String get hrvStressExcellent => 'Excelente';
@override
String get hrvStressNormal => 'Normal';
@override
String get hrvStressAttention => 'Prestar atención';
@override
String get hrvStressOverload => 'Sobrecarga';
@override
String get sleepQualityGreat => 'Buen sueño';
@override
String get sleepQualityGood => 'buen sueño';
@override
String get sleepQualityPoor => 'mal dormir';
@override
String get sleepOtherQualityGreat => 'Dormieron genial';
@override
String get sleepOtherQualityGood => 'durmieron bien';
@override
String get sleepOtherQualityPoor => 'durmieron mal';
@override
String get sleepQualityExcellent => 'Excelente';
@override
String get sleepQualityNormal => 'Bien';
@override
String get sleepQualityAttention => 'Pobre';
@override
String get hrvDailyStressTrend => 'Tendencia de estrés diario';
@override
String get hrvMonthlyStressTrend => 'Tendencia de estrés mensual';
@override
String get hrvMoreRelaxed => 'Más relajado';
@override
String get hrvMoreStressed => 'Más estresado';
@override
String get hrvTrendLowStress => 'Bajo estrés';
@override
String get hrvTrendHighStress => 'Alto estrés';
@override
String get hrvTrendAwaitingData => 'En espera de datos';
@override
String hrvTrendDayValue(String count) {
return '$count';
}
@override
String get hrvTrendDayUnit => 'd';
@override
String get hrvTrendComparedLastWeekUnavailable => 'vs la semana pasada -';
@override
String get hrvTrendSameAsLastWeek => 'Igual que la semana pasada';
@override
String hrvTrendMoreDaysThanLastWeek(int count) {
return '${count}d frente a la semana pasada';
}
@override
String hrvTrendFewerDaysThanLastWeek(int count) {
return '-${count}d frente a la semana pasada';
}
@override
String get hrvTrendComparedLastMonthUnavailable => 'vs el mes pasado -';
@override
String get hrvTrendSameAsLastMonth => 'Igual que el mes pasado';
@override
String hrvTrendMoreDaysThanLastMonth(int count) {
return '${count}d frente al mes pasado';
}
@override
String hrvTrendFewerDaysThanLastMonth(int count) {
return '-${count}d frente al mes pasado';
}
@override
String get hrvTrendWeekdayMonday => 'METRO';
@override
String get hrvTrendWeekdayTuesday => 't';
@override
String get hrvTrendWeekdayWednesday => 'W.';
@override
String get hrvTrendWeekdayThursday => 't';
@override
String get hrvTrendWeekdayFriday => 'F';
@override
String get hrvTrendWeekdaySaturday => 'S';
@override
String get hrvTrendWeekdaySunday => 'S';
@override
String get hrvYearTooltipMonthJanuary => 'Ene';
@override
String get hrvYearTooltipMonthFebruary => 'Feb';
@override
String get hrvYearTooltipMonthMarch => 'Mar';
@override
String get hrvYearTooltipMonthApril => 'Abr';
@override
String get hrvYearTooltipMonthMay => 'Puede';
@override
String get hrvYearTooltipMonthJune => 'Jun';
@override
String get hrvYearTooltipMonthJuly => 'Jul';
@override
String get hrvYearTooltipMonthAugust => 'Ago';
@override
String get hrvYearTooltipMonthSeptember => 'Sep';
@override
String get hrvYearTooltipMonthOctober => 'Oct';
@override
String get hrvYearTooltipMonthNovember => 'Nov';
@override
String get hrvYearTooltipMonthDecember => 'Dic';
@override
String hrvYearTooltipStressDays(int count) {
return '$count Días de estrés';
}
@override
String hrvYearTooltipRelaxedDays(int count) {
return '$count Días relajados';
}
@override
String get hrvYearMostStressed => 'Más estresado';
@override
String get hrvYearMostRelaxed => 'Más relajado';
@override
String get hrvDistributionDayUnit => 'd';
@override
String hrvDistributionDayValue(int count) {
return '${count}d';
}
@override
String get hrvDistributionAwaitingData => 'En espera de datos';
@override
String get hrvStressDistribution => 'Distribución de estrés';
@override
String get hrvDailyStressDistribution => 'Distribución diaria del estrés';
@override
String get hrvRelaxedAxisLabel => 'Relajado';
@override
String get hrvStressedAxisLabel => 'Estresado';
@override
String get hrvEmptyMonthPlaceholder => '-';
@override
String get hrvEmptyMonthDayPlaceholder => '— · —';
@override
String get hrvValidDays => 'Días de VFC registrados';
@override
String get hrvLowest => 'VFC más baja';
@override
String get hrvHighest => 'VFC más alta';
@override
String get hrvMostStressed => 'Más estresado';
@override
String get hrvLeastStressed => 'Menos estresado';
@override
String get hrvMostRelaxed => 'Más relajado';
@override
String get hrvComparedLastWeekUnavailable =>
'Comparado con la semana pasada: -';
@override
String get hrvSameAsLastWeek => 'Igual que la semana pasada';
@override
String hrvMoreDaysThanLastWeek(int count) {
return '$count más días que la semana pasada';
}
@override
String hrvFewerDaysThanLastWeek(int count) {
return '$count menos días que la semana pasada';
}
@override
String get hrvComparedLastMonthUnavailable =>
'Comparado con el mes pasado: -';
@override
String get hrvSameAsLastMonth => 'Igual que el mes pasado';
@override
String hrvMoreDaysThanLastMonth(int count) {
return '$count más días que el mes pasado';
}
@override
String hrvFewerDaysThanLastMonth(int count) {
return '$count menos días que el mes pasado';
}
@override
String get hrvUnlockNow => 'Descubrir';
@override
String get hrvTrendTitle => 'Tendencia de la VFC';
@override
String hrvPeriodAverage(String period) {
return 'Este $period promedio';
}
@override
String hrvComparedPreviousPeriod(String period) {
return 'frente al $period anterior';
}
@override
String hrvPeriodTrendChart(String period) {
return 'HRV $period Gráfico de tendencias';
}
@override
String get activityTotalBurn => 'Quema total de actividad';
@override
String get activityWeeklySelfTitle => 'Mover';
@override
String get activityWeeklyOtherTitle => 'Sus calorías';
@override
String get activityWeeklyExerciseTitle => 'Ejercicio';
@override
String get activityWeeklyStandTitle => 'Pararse';
@override
String get activityWeeklyMoveRings => 'Anillos de actividad';
@override
String get activityWeeklyExerciseRings => 'Anillos de entrenamiento';
@override
String get activityWeeklyStandRings => 'Anillos de soporte';
@override
String get activityWeeklyUnitDay => 'd';
@override
String get activityWeeklyWeekdayMonday => 'METRO';
@override
String get activityWeeklyWeekdayTuesday => 't';
@override
String get activityWeeklyWeekdayWednesday => 'W.';
@override
String get activityWeeklyWeekdayThursday => 't';
@override
String get activityWeeklyWeekdayFriday => 'F';
@override
String get activityWeeklyWeekdaySaturday => 'S';
@override
String get activityWeeklyWeekdaySunday => 'S';
@override
String get activityExerciseTotalDuration => 'Tiempo total de ejercicio';
@override
String get activityStandTotalDuration => 'Tiempo total de espera';
@override
String get activityPerfectRings => 'Anillos perfectos';
@override
String get activityCloseMoveRing => 'Mover anillo cerrado';
@override
String get activityCloseExerciseRing => 'Anillo de ejercicio cerrado';
@override
String get activityCloseStandRing => 'Anillo de soporte cerrado';
@override
String get activityCalorieTrend => 'Tendencia de quema de calorías';
@override
String get activityKcalDailyAverage => 'kcal/promedio diario';
@override
String get activityTrendAwaitingData => 'En espera de datos';
@override
String get activityTrendAverage => 'promedio';
@override
String get activityTrendGoal => 'Meta';
@override
String activityTrendTooltipDate(String month, int day, String weekday) {
return '$month $day · $weekday';
}
@override
String get activityComparedLastWeek => '34% menos que la semana pasada';
@override
String get activityComparedLastMonth => '34% menos que el mes pasado';
@override
String get activityComparedUnavailable => 'vs la semana pasada -';
@override
String get activityComparedLastMonthUnavailable => 'vs el mes pasado -';
@override
String get activitySameAsLastWeek => '0% vs la semana pasada';
@override
String activityMoreThanLastWeek(int percent) {
return '+$percent% respecto a la semana pasada';
}
@override
String activityLessThanLastWeek(int percent) {
return '-$percent% respecto a la semana pasada';
}
@override
String get activitySameAsLastMonth => '0% vs el mes pasado';
@override
String activityMoreThanLastMonth(int percent) {
return '+$percent% respecto al mes pasado';
}
@override
String activityLessThanLastMonth(int percent) {
return '-$percent% respecto al mes pasado';
}
@override
String get activityTrendTitle => 'Tendencia de quema de actividad';
@override
String activityPeriodTotalBurn(String period) {
return 'Esta $period quema total';
}
@override
String get activityDailyAverageBurn => 'Quema promedio diaria';
@override
String activityPeriodTrendChart(String period) {
return 'Quema de actividad $period Gráfico de tendencias';
}
@override
String get activityMove => 'Mover';
@override
String get activityExercise => 'Ejercicio';
@override
String get activityStand => 'Pararse';
@override
String get activityUnitMinute => 'metro';
@override
String get activityUnitHour => 'h';
@override
String get activityHeartRateZone => 'Zonas de frecuencia cardíaca';
@override
String get activityRealtimeHeartRate => 'Frecuencia cardíaca en tiempo real';
@override
String get sleepDurationTitle => 'Duración del sueño';
@override
String get sleepQualityTitle => 'Calidad del sueño';
@override
String get sleepDailyDurationTitle => 'Duración';
@override
String get sleepDailyQualityTitle => 'Calidad';
@override
String sleepDailyQualityScore(int score) {
return '$score/100';
}
@override
String get sleepDailyUnitHour => 'h';
@override
String get sleepDailyUnitMinute => 'metro';
@override
String get sleepPeriodUnitHour => 'h';
@override
String get sleepPeriodUnitMinute => 'metro';
@override
String get sleepHeartRateTitle => 'Frecuencia cardíaca durante el sueño';
@override
String get sleepLongest => 'Sueño más largo';
@override
String get sleepShortest => 'Sueño más corto';
@override
String get sleepBestQuality => 'Mejor calidad';
@override
String get sleepWorstQuality => 'Calidad más baja';
@override
String get sleepBedtime => 'Hora de acostarse';
@override
String get sleepEarliestBedtime => 'Más temprano';
@override
String get sleepLatestBedtime => 'El último';
@override
String get sleepAverageDuration => 'Duración promedio';
@override
String get sleepAverageQuality => 'Calidad media';
@override
String get sleepPreviousWeek => 'la semana pasada';
@override
String get sleepPreviousMonth => 'mes pasado';
@override
String sleepComparedPercent(String period, String value) {
return '$value% frente a $value';
}
@override
String sleepPeriodComparisonUnavailable(String period) {
return 'frente a $period -';
}
@override
String sleepScoreOutOf100(int score) {
return '$score/100';
}
@override
String get sleepPeriodAwaitingData => 'En espera de datos';
@override
String sleepDurationValue(int hours, int minutes) {
return '${hours}h ${minutes}m';
}
@override
String sleepQualityScore(String level, int score) {
return '$level: $score pts';
}
@override
String sleepFellAsleepAt(String time) {
return '$time Dormido';
}
@override
String sleepTooltipDate(String date, String weekday) {
return '$date · $weekday';
}
@override
String get sleepAverage => 'Promedio';
@override
String get sleepPeriodAvgDurationTitle => 'Duración promedio';
@override
String get sleepPeriodAvgQualityTitle => 'Calidad promedio';
@override
String get sleepPeriodAverageLegend => 'promedio';
@override
String get sleepTarget => 'Meta';
@override
String get sleepHighest => 'más alto';
@override
String get sleepLowest => 'Más bajo';
@override
String get sleepTrendTitle => 'Tendencia del informe de sueño';
@override
String sleepPeriodAverageDuration(String period) {
return 'Este $period sueño promedio';
}
@override
String get sleepDeepSleepRatio => 'Proporción de sueño profundo';
@override
String sleepDurationPeriodTrendChart(String period) {
return 'Duración del sueño $period Gráfico de tendencias';
}
@override
String get sleepEmptyDateWithWeekday => '— · —';
@override
String get sleepQualityDescription =>
'DoubleFeel calcula su puntuación diaria de calidad del sueño en función de la duración del sueño, las etapas del sueño, el sueño profundo, la frecuencia cardíaca durante la noche y los cambios en la VFC.\nEsta puntuación le ayuda a comprender mejor la recuperación de su cuerpo y el rendimiento del sueño.';
@override
String get sleepQualityAttentionRange => '<60';
@override
String get sleepQualityNormalRange => '60–85';
@override
String get sleepQualityExcellentRange => '>85';
@override
String get friendsAddCloseContactDescription =>
'Añade un ser querido para seguir tu salud.';
@override
String get friendsLimitReached => 'Puedes agregar hasta 10 amigos.';
@override
String get friendsAddCloseContact => 'Agregar un ser querido';
@override
String friendsAddCloseContactWithCount(int count, int max) {
return 'Agregar un ser querido ($count/$max)';
}
@override
String get friendsMe => 'A mí';
@override
String friendsRemarkedDisplayName(String remark, String name) {
return '$remark ($name)';
}
@override
String friendsRemarkSuffix(String remark) {
return '($remark)';
}
@override
String get friendsUnknownFriend => 'amigo desconocido';
@override
String friendsUpdatedAt(String time) {
return 'Actualizado a las $time';
}
@override
String friendsRealtimeStressUpdatedAt(String time) {
return 'Estrés en tiempo real actualizado a las $time';
}
@override
String friendsHrvUpdatedAt(String time) {
return 'VFC actualizada a las $time';
}
@override
String friendsStepCount(int count) {
return '$count pasos';
}
@override
String get friendsStressAttention => 'Alerta de estrés';
@override
String get friendsWaitingForData => 'Aún no hay datos';
@override
String get friendsSleepQuality => 'Calidad del sueño';
@override
String get friendsTodaySteps => 'Pasos hoy';
@override
String get friendsActiveCalories => 'Calorías activas';
@override
String get friendsSleepQualityExcellent => 'Dormí muy bien';
@override
String get friendsSleepQualityNormal => 'Dormí bien';
@override
String get friendsSleepQualityAttention => 'Dormí mal';
@override
String get friendsRemove => 'Eliminar';
@override
String get friendsEditRemark => 'Editar nota';
@override
String get friendsShowOnWatchFace => 'Mostrar en reloj';
@override
String get friendsShownOnWatchFace => 'Mostrado en el reloj';
@override
String get friendsSelect => 'Elija un ser querido';
@override
String get friendsSelectAndSync => 'Seleccionar y sincronizar para mirar';
@override
String get friendsBack => 'Atrás';
@override
String friendsTrendTitle(String name) {
return 'Tendencias de $name';
}
@override
String get friendsAddAction => 'Agregar';
@override
String get friendsEnterId => 'Introduce el DNI';
@override
String get friendsPromptGotIt => 'Entiendo';
@override
String get friendsPromptIdNotFoundTitle => 'identificación no encontrada';
@override
String get friendsPromptAlreadyFriendTitle => 'Ya un contacto cercano';
@override
String get friendsPromptSelfIdTitle => 'No puedes agregarte';
@override
String get friendsPromptIdNotFoundMessage =>
'Esta identificación no existe. Compruébalo y vuelve a intentarlo.';
@override
String get friendsPromptAlreadyFriendMessage =>
'Ya sois contactos estrechos.';
@override
String get friendsPromptSelfIdMessage =>
'Ingrese la identificación de su contacto cercano.';
@override
String get friendsEditRemarkTitle => 'Editar nota';
@override
String get friendsEditRemarkHint => 'Introduce una nota';
@override
String get friendsSave => 'Ahorrar';
@override
String friendsDeleteConfirmTitle(String name) {
return 'Remove this friend?';
}
@override
String get friendsDeleteConfirmMessage =>
'Ya no recibirás sus actualizaciones de bienestar después de la eliminación.';
@override
String get friendsDeleteConfirmAction => 'Eliminar';
@override
String get privacySettingsTitle => 'Configuración de privacidad';
@override
String get privacySettingsDisableAddById => 'Bloquear solicitudes de amistad';
@override
String get privacySettingsShowRealtimeStress => 'Mostrar estrés en vivo';
@override
String get premiumActivatedTitle =>
'¡Felicidades! Ahora eres miembro de DoubleFeel Pro.';
@override
String get premiumActivatedDescription =>
'Ahora puede controlar el estrés, el sueño y la VFC en tiempo real, desarrollar hábitos más saludables y compartir actualizaciones de salud con contactos cercanos para que las personas importantes puedan mantenerse informadas.';
@override
String get premiumActivatedContinue => 'Continuar';
@override
String get purchaseHeroTitle => 'Desbloquea Pro, cuídate mejor';
@override
String get purchaseBenefitsTitle =>
'Desbloquea todos los beneficios profesionales';
@override
String get purchaseUnlockNow => 'Descubrir';
@override
String get purchaseRestore => 'Restaurar';
@override
String get purchaseTermsOfService => 'Términos de servicio';
@override
String get purchasePrivacyPolicy => 'política de privacidad';
@override
String get purchaseLifetimePlan => 'Vida';
@override
String get purchaseLifetimeSubtitle =>
'Acceso de por vida con actualizaciones gratuitas';
@override
String get purchaseSpecialOffer => 'Oferta especial';
@override
String get purchaseAnnualPlan => 'Anual';
@override
String get purchaseAnnualSubtitle => 'Sólo ¥6,5 al mes';
@override
String get purchaseAnnualDiscount => '20% de descuento';
@override
String get purchaseCurrencySymbol => '¥';
@override
String get purchaseProductInfoUnavailable =>
'La información del producto no está disponible. Inténtelo de nuevo más tarde.';
@override
String get purchaseOrderInfoUnavailable =>
'La información del pedido no está disponible. Inténtelo de nuevo más tarde.';
@override
String purchaseMonthlyUnitPrice(String unitPrice) {
return 'Sólo $unitPrice por mes';
}
@override
String get purchaseApplePaymentInvalidOrder => 'Formato UUID no válido.';
@override
String get purchaseApplePaymentProductNotFound =>
'No se pudo encontrar el producto por ID de producto.';
@override
String get purchaseApplePaymentCancelled => 'El usuario canceló el pago.';
@override
String get purchaseApplePaymentVerificationFailed =>
'La verificación del pago falló.';
@override
String get purchaseApplePaymentFailed => 'Error desconocido.';
@override
String get purchaseBenefitRealtimeStress => 'Monitoreo de estrés en vivo';
@override
String get purchaseBenefitStressTrends =>
'Tendencias diarias / mensuales / anuales de la VFC';
@override
String get purchaseBenefitActivityTrends =>
'Tendencias de actividad diaria/mensual/anual';
@override
String get purchaseBenefitSleepReports =>
'Informes de sueño diarios/mensuales/anuales';
@override
String get purchaseBenefitHealthSync =>
'Sincronización de datos de salud en tiempo real';
@override
String get purchaseBenefitContactNotifications =>
'Actualizaciones de salud en tiempo real para sus seres queridos';
@override
String get purchaseBenefitCustomWatchFace =>
'Esferas de reloj personalizadas exclusivas';
@override
String get purchaseBenefitSleepAnalysis => 'Análisis del sueño';
@override
String get purchaseBenefitFutureFeatures =>
'Más beneficios profesionales próximamente';
@override
String get purchaseNotesTitle => 'Instrucciones';
@override
String get purchaseNoteSubscription =>
'Después de confirmar y pagar, la suscripción se renovará automáticamente a través de su cuenta de iTunes. Se cargará a su cuenta Apple dentro de las 24 horas anteriores a que finalice el período actual y la suscripción se renovará por otro período. Para cancelar, desactive la renovación automática en la configuración de su suscripción de iTunes/ID de Apple al menos 24 horas antes de que finalice el período actual.\n\nDoubleFeel Pro es un producto virtual. Las compras no son reembolsables excepto a través del proceso de reembolso de la App Store. Grifo';
@override
String get purchaseLinkLearnMore => 'Más información';
@override
String get purchaseNoteRestore =>
'Si su compra no surte efecto, toque Restaurar compras.';
@override
String get purchaseNoteContact => 'Si tienes alguna otra pregunta,';
@override
String get purchaseLinkContactUs => 'Contáctenos';
@override
String get reportBottomSlogan =>
'·El doble de conciencia, la mitad del estrés·';
@override
String get refundExplanationTitle => 'Información de reembolso';
@override
String get refundAppStoreReviewTitle =>
'Los reembolsos son revisados por la App Store';
@override
String get refundAppStoreReviewDescription =>
'Todas las suscripciones y productos virtuales se compran a través del sistema de pago oficial de la App Store. DoubleFeel no puede procesar pagos o reembolsos directamente.';
@override
String get refundAppleRulesIntroduction =>
'Según las reglas de la plataforma de Apple:';
@override
String get refundAppleCollectsPayments =>
'· Todos los pagos son cobrados por la App Store';
@override
String get refundAppleReviewsRequests =>
'· Todas las solicitudes de reembolso son revisadas por Apple';
@override
String get refundDeveloperCannotSubmit =>
'· Los desarrolladores no pueden enviar solicitudes de usuarios';
@override
String get refundDeveloperCannotIntervene =>
'· Los desarrolladores no pueden influir en la decisión de Apple';
@override
String get refundAppStoreFinalDecision =>
'Por lo tanto, la App Store decidirá su solicitud de reembolso.';
@override
String get refundMayBeRejectedTitle =>
'La App Store puede rechazar un reembolso';
@override
String get refundNoUnconditionalRefunds =>
'La política de reembolso de Apple no proporciona reembolsos incondicionales en todas las situaciones.';
@override
String get refundAppleTermsDescription =>
'Al utilizar la App Store, aceptas los términos de servicio y las reglas de reembolso de Apple. https://www.apple.com/legal/internet-services/itunes/';
@override
String get refundAppleReviewsCircumstances =>
'Apple revisa el pedido, el historial de la cuenta y el uso real al decidir si aprueba un reembolso.';
@override
String get refundRejectionReasonsTitle =>
'¿Por qué se podría rechazar un reembolso?';
@override
String get refundRejectionReasonsIntroduction =>
'La App Store puede rechazar una solicitud por motivos que incluyen, entre otros:';
@override
String get refundReasonPurchaseTooOld =>
'· Ha pasado demasiado tiempo desde la compra.';
@override
String get refundReasonFrequentRequests =>
'· Solicitudes frecuentes de la misma cuenta';
@override
String get refundReasonAbnormalHistory =>
'· Un historial de actividad de reembolso inusual';
@override
String get refundReasonInsufficient =>
'· Un motivo de reembolso insuficiente';
@override
String get refundReasonLongTermUse =>
'· Uso normal extendido de las funciones de membresía';
@override
String get refundReasonPriceChange =>
'· Promociones, descuentos o cambios de precios.';
@override
String get refundReasonNoReceipt =>
'· No se puede proporcionar ningún recibo de pedido válido';
@override
String get refundOfficialDecision =>
'Se aplica la decisión final de la App Store.';
@override
String get refundRejectedNextStepsTitle =>
'¿Qué pasa si mi solicitud es rechazada?';
@override
String get refundTryAgain =>
'Si se rechaza su solicitud de reembolso, puede intentar enviarla a la App Store nuevamente.';
@override
String get refundFinalReview =>
'Si se rechaza nuevamente, la App Store habrá completado su revisión final. Ni DoubleFeel ni el soporte técnico de Apple pueden cambiar el resultado.';
@override
String get refundNoAlternativeChannel =>
'DoubleFeel no puede procesar solicitudes de reembolso fuera del sistema App Store.';
@override
String get refundMembershipCancellation =>
'Después de un reembolso exitoso, sus beneficios de DoubleFeel Pro también se cancelarán.';
@override
String get refundHelpTitle => '¿Necesitar ayuda?';
@override
String get refundHelpDescription =>
'Si tiene preguntas sobre reembolsos o experimenta errores de pago, cargos duplicados o un pedido faltante, comuníquese con el soporte de DoubleFeel y haremos todo lo posible para ayudarlo.';
@override
String get refundFaqTitle => 'Preguntas frecuentes sobre DoubleFeel';
@override
String get appReviewPromptTitle => '¿Disfrutas de DoubleFeel?';
@override
String get appReviewPromptMessage =>
'Nos encantaría saber si DoubleFeel le está ayudando a comprender mejor su estrés y su sueño. 💜';
@override
String get appReviewPromptLikeActionEmoji => '😍';
@override
String get appReviewPromptLikeAction => 'Me encanta';
@override
String get appReviewPromptFeedbackAction => 'No precisamente';
@override
String get appReviewFeedbackTitle =>
'Lo sentimos, DoubleFeel no cumplió con sus expectativas';
@override
String get appReviewFeedbackMessage =>
'Cuéntanos qué pasó y cómo podemos mejorar. Sus comentarios ayudan a que DoubleFeel sea mejor para todos. 💜';
@override
String get appReviewFeedbackSendAction => 'Enviar comentarios';
@override
String get appReviewFeedbackLaterAction => 'Quizás más tarde';
@override
String get appReviewIllustrationPlaceholder =>
'Marcador de posición de ilustración';
@override
String get overallStressLevelToday => 'aquí está su estado de estrés general';
@override
String get stressLevelsOnThatDay => 'Sus niveles de estrés ese día';
@override
String get stressLevelsToday => 'Su estado de estrés hoy';
@override
String get noPressureDataAvailableAtThisTime =>
'No hay datos de presión disponibles en este momento';
@override
String get membersCanViewTheCompleteData => 'Desbloquea Pro para ver';
@override
String get unlockNow => 'Descubrir';
@override
String get pressureOverload => 'Sobrecarga';
@override
String get beMindfulOfStress => 'Prestar atención';
@override
String get statusNormal => 'Normal';
@override
String get inExcellentCondition => 'Excelente';
@override
String get waitingForData => 'esperando datos';
@override
String get pressure => 'Presión';
@override
String get mostRecent => 'Última lectura';
@override
String get theDayBeforeYesterday => 'Anteayer';
@override
String get uploadPhotos => 'Elija de la biblioteca';
@override
String get filming => 'tomar foto';
@override
String get unlockTheProVersion => 'Desbloquear Pro';
@override
String get embarkOnAJourneyOfStressAwarenessAndWellnessSupport =>
'Comience sus alertas de estrés y su viaje de salud';
@override
String sharePartnerCodeTemplate(String inviteCode) {
return 'Mi ID de amigo: $inviteCode. Hola❤! ¡Ven y usa DoubleFeel conmigo! Nos ayuda a cuidarnos unos a otros: realizar un seguimiento del estrés y el sueño, ver la VFC y el estado corporal y mantenernos actualizados sobre la salud de los demás en tiempo real. Ven y únete a mí 👉 https://apps.apple.com/cn/app/doublefeel-%E5%8F%8C%E4%BA%BA%E6%83%85%E7%BB%AA%E5%85%B1%E4%BA%ABhrv%E 5%8E%8B%E5%8A%9B%E6%B0%B4%E5%B9%B3%E8%87%AA%E6%B5%8B%E7%9D%A1%E7%9C%A0%E8%AE%B0%E5%BD%95/id6747254434';
}
@override
String get bindPartnerIdNotExistTitle => 'Usuario no encontrado';
@override
String get bindPartnerIdNotExistMessage =>
'Esta identificación de usuario no existe. Por favor verifique e intente nuevamente.';
@override
String get bindPartnerDialogGotIt => 'Entiendo';
@override
String get bindPartnerAddFailedTitle => 'No se puede agregar amigo';
@override
String get bindPartnerAddFailedMessage =>
'Este usuario no permite solicitudes de amistad.';
@override
String get bindPartnerAlreadyFriendTitle => 'ya sois amigos';
@override
String get bindPartnerAlreadyFriendMessage =>
'No es necesario volver a agregarlos';
@override
String friendStatusTitle(String remarkName) {
return 'Estado de $remarkName';
}
@override
String get annualMemberDiscounts => 'Oferta de membresía anual';
@override
String get specialOffers => 'APAGADO';
@override
String get currentPrice => 'Ahora';
@override
String originalPrice(String price) {
return '$price/año';
}
@override
String get freeRedemptionOffer => 'Reclama ahora';
@override
String get cellPhoneNumber => 'numero de celular';
@override
String get todayOnWeeklyCalendar => 'hoy';
@override
String get hrvTrendForThatDay => 'Promedio Hrv';
@override
String get todaySAverageHrv => 'Promedio Hrv hoy';
@override
String get helpNoDataReason1 =>
'1. Asegúrese de que su Apple Watch esté en watchOS 10.0+ y su iPhone en iOS 14+. La versión del sistema se puede comprobar en [Configuración] -> [General] -> [Acerca de].';
@override
String get helpNoDataReason2 =>
'2. Confirme si todos los permisos están habilitados: iPhone [Salud] -> [Compartir] -> [Aplicaciones] -> [DoubleFeel] -> [Activar todo].';
@override
String get helpNoDataReason3 =>
'3. Confirme si los dispositivos están en modo de ahorro de energía, en estado de batería baja o si el reloj no está colocado cómodamente, ya que estas condiciones afectan la recopilación de datos del reloj.';
@override
String get helpNoDataReasonFooter =>
'Si todas las comprobaciones son correctas y el problema persiste, puede enviarlo en [Comentarios] -> [Contáctenos]. Le responderemos lo antes posible.';
@override
String get noHealthDataNeedHelp => '¿Necesitar ayuda?';
@override
String get noHealthDataRefresh => 'Refrescar';
@override
String get noHealthDataHeadingTitle =>
'No hay datos de frecuencia cardíaca disponibles';
@override
String get noHealthDataHeadingBody =>
'DoubleFeel no puede recuperar sus datos de VFC de Apple Health. Siga las instrucciones para otorgar permisos y luego toque \"Actualizar\" en la parte superior derecha para continuar.';
@override
String get noHealthDataError1Title =>
'Error 1: datos de Apple Watch no disponibles';
@override
String get noHealthDataError1Body =>
'Parece que no has usado tu Apple Watch en los últimos 12 meses. Si acaba de comenzar a usarlo y ha habilitado todos los permisos de datos, es posible que este mensaje aún aparezca. Continúe usando su Apple Watch para permitir la recopilación de datos o agregue datos de VFC manualmente en la página de inicio.';
@override
String get noHealthDataError2Title =>
'Error 2: Acceso a datos de salud no autorizado';
@override
String get noHealthDataError2Body =>
'DoubleFeel requiere acceso a los datos de Apple Health para proporcionar estadísticas, alertas y recomendaciones de estrés. Si no está autorizado, es posible que algunas funciones no funcionen correctamente.\n\nTenga la seguridad de que todos los datos de salud solo se almacenan localmente y no se cargarán.\n\nPara habilitar permisos, siga las indicaciones y seleccione Permitir todo -> Salud -> DoubleFeel en Configuración de iOS.';
@override
String get noHealthDataError3Title => 'Error 3: problema del sistema';
@override
String get noHealthDataError3Body =>
'Según los comentarios de los usuarios, encontramos dos razones por las que podrían faltar datos de VFC o frecuencia cardíaca:\n\n1. Apple Watch no conectado\n · Si no ha usado su Apple Watch durante mucho tiempo, es posible que no se recopilen datos de frecuencia cardíaca.\n · Verifique la aplicación iOS Health -> \'Mi reloj\' para confirmar si se registraron datos recientes de frecuencia cardíaca mientras usaba el Apple Watch.\n · De lo contrario, intente usar su Apple Watch para recopilar datos y active la función de frecuencia cardíaca compatible con Apple.\n\n2. Faltan datos de frecuencia cardíaca o VFC en los últimos 30 días\n · Abra la aplicación iOS Health -> Explorar -> \'Frecuencia cardíaca\' o \'VFC\' -> \'No se encontraron datos\' para confirmar si falta.\n · Si faltan datos, use el reloj nuevamente, reinicie su iPhone y Apple Watch, luego abra DoubleFeel nuevamente.';
@override
String get noHealthDataGoToSettings => 'Habilitar ahora';
@override
String get watchThemeDefaultTheme => 'Tema predeterminado';
@override
String get watchThemeNoWatchTitle => 'Apple Watch no encontrado';
@override
String get watchThemeNoWatchMessage =>
'Empareja un Apple Watch e inténtalo de nuevo';
@override
String get watchThemeOk => 'DE ACUERDO';
@override
String get watchThemeSelectFriend => 'Seleccionar amigo';
@override
String get watchThemeSelectAndSync => 'Seleccionar y sincronizar para mirar';
@override
String get watchThemeCustomTheme => 'Temas personalizados';
@override
String get watchThemeCustomDescription =>
'Convierte tus emociones en una esfera de reloj exclusivamente tuya. ⭐';
@override
String get watchThemeCreateTheme => 'Crear un tema';
@override
String get watchThemeOfficialTheme => 'Temas oficiales';
@override
String get watchThemeRenameStatus => 'Cambiar nombre de estado';
@override
String get watchThemeEnterNickname => 'Introduce un nombre';
@override
String get watchThemeSave => 'Ahorrar';
@override
String get watchThemeContentUnavailable =>
'Este contenido no está disponible. Prueba con otro.';
@override
String get watchThemeDialPreview => 'Ver vista previa';
@override
String get watchThemeSwitchFriend => 'Cambiar de amigo';
@override
String get watchThemeStatusPreview => 'Vista previa de estado';
@override
String get watchThemeAddWatchFace => 'Añadir al reloj';
@override
String get watchThemeInUse => 'En uso';
@override
String get watchThemeUseNow => 'Usar ahora';
@override
String get watchThemeSyncIntro =>
'Abra la aplicación DoubleFeel en su Apple Watch y luego toque Siguiente a continuación.';
@override
String get watchThemeSyncWaiting =>
'Mantenga abierta la aplicación Watch mientras sincroniza';
@override
String get watchThemeSyncComplete => 'Sincronización completa';
@override
String get watchThemeSyncFailed => 'Error de sincronización';
@override
String get watchThemeNext => 'Próximo';
@override
String watchThemeSyncingProgress(int progress) {
return 'Sincronizando $progress%';
}
@override
String get watchThemePreview => 'Ver temas';
@override
String get watchThemeDelete => 'Borrar';
@override
String get watchThemePageTitle => 'Ver temas';
@override
String get watchThemeImagesOnly => 'Sólo imágenes';
@override
String get watchThemeName => 'Nombre del tema';
@override
String get watchThemeNameMaxLength => 'Hasta 10 caracteres';
@override
String get watchThemeSubmissionAgreement =>
'He leído y acepto el Acuerdo de envío de usuario';
@override
String get watchThemeSubmissionAgreementPrefix =>
'He leído y acepto el Usuario';
@override
String get watchThemeSubmissionAgreementLink => 'Acuerdo de presentación';
@override
String get watchThemeSaving => 'Ahorro';
@override
String get watchThemeSaveTheme => 'Guardar tema';
@override
String get watchThemeExcellent => 'Excelente';
@override
String get watchThemeNormal => 'Normal';
@override
String get watchThemeSlightStressful => 'Prestar atención';
@override
String get watchThemeStressful => 'Sobrecarga';
@override
String get watchThemeCropImage => 'Recortar imagen de la esfera del reloj';
@override
String get watchThemeImageProcessFailed =>
'Error en el procesamiento de imágenes. Por favor inténtalo de nuevo';
@override
String get watchThemeAbandonEdit => 'Descartar cambios';
@override
String get watchThemeAbandonMessage =>
'Sus cambios no se guardarán si cierra esta página. ¿Descartarlos?';
@override
String get watchThemeContinueEditing => 'Continuar editando';
@override
String get watchThemeImageUploadFailed =>
'Error al cargar la imagen. Por favor inténtalo de nuevo';
@override
String watchThemeImageDownloadFailed(String error) {
return 'No se pudieron descargar las imágenes del tema: $error';
}
@override
String get watchThemeCreateFailed =>
'No se pudo crear la esfera del reloj. Por favor inténtalo de nuevo';
@override
String get watchThemeDeleteTheme => 'Eliminar tema';
@override
String get watchThemeDeleteMessage =>
'Los temas eliminados no se pueden restaurar. ¿Eliminar este tema?';
@override
String get watchThemeCancel => 'Cancelar';
@override
String get watchThemeDeleteFailed => 'No se pudo eliminar el tema';
@override
String get watchThemeDeleted => 'Tema eliminado';
@override
String get watchThemeIncomplete => 'La información del tema está incompleta.';
@override
String get watchThemeApplyFailed => 'No se pudo aplicar el tema';
@override
String get watchThemeWatchSyncFailed =>
'Falló la sincronización de la esfera del reloj';
@override
String get watchThemeWatchNotPaired => 'Reloj no emparejado';
@override
String get watchThemeWatchDataUnavailable =>
'Los datos del reloj no están disponibles';
@override
String get watchThemeWatchAppNotInstalled =>
'La aplicación del reloj no está instalada';
@override
String get watchThemePurchaseChannel => 'Temas de la esfera del reloj';
@override
String get watchThemeCardSubtitle => 'Personaliza el tema de tu reloj ⭐';
@override
String feedbackMaxImagesLimit(int count) {
return 'Se pueden cargar hasta $count imágenes o videos';
}
@override
String get feedbackSelectImageError =>
'No se pueden seleccionar imágenes. Vuelve a intentarlo más tarde.';
@override
String get feedbackEmptyContentHint =>
'Por favor ingrese preguntas y comentarios';
@override
String get feedbackInvalidEmail =>
'Formato de correo electrónico no válido, por favor ingresa nuevamente';
@override
String get feedbackSubmitSuccessTitle => 'Comentarios enviados correctamente';
@override
String get feedbackSubmitSuccessMessage =>
'Gracias por tus comentarios. Si se necesita más comunicación, nos comunicaremos con usted a través de la dirección de correo electrónico que dejó lo antes posible. Esté atento a su bandeja de entrada.';
@override
String get feedbackSubmitSuccessConfirm => 'DE ACUERDO';
@override
String get frequentMovement => 'Movimiento frecuente';
@override
String get latestHrvTipExcellentAboveBaseline =>
'Su VFC está por encima de su nivel habitual. Su cuerpo parece relajado y su estado de estrés luce bien. Mantén tu ritmo actual.';
@override
String get latestHrvTipExcellentBelowBaseline =>
'Su VFC está en un rango excelente, pero ligeramente más bajo de lo habitual. Mantenga una rutina regular y tómese tiempo para recuperarse.';
@override
String get latestHrvTipNormalAboveBaseline =>
'Su VFC está dentro del rango normal y su estado de estrés actual es estable. Sigue manteniendo hábitos de descanso saludables.';
@override
String get latestHrvTipNormalBelowBaseline =>
'Su VFC está dentro del rango normal, pero por debajo de su nivel habitual. Considere relajarse y descansar adecuadamente.';
@override
String get latestHrvTipAttentionAboveBaseline =>
'Su VFC está en el lado bajo. Considere relajarse, descansar regularmente y prestar atención a la nutrición y la recuperación.';
@override
String get latestHrvTipAttentionBelowBaseline =>
'Su VFC está claramente por debajo de su nivel habitual. El estrés reciente puede ser elevado, así que trate de descansar y ajustar su estado.';
@override
String get latestHrvTipOverloadAboveBaseline =>
'Su VFC está en un nivel relativamente bajo. Su cuerpo puede estar bajo mayor estrés. Si esto es después del ejercicio, una VFC más baja puede ser normal. Descansa y recupérate a tiempo.';
@override
String get latestHrvTipOverloadBelowBaseline =>
'Su VFC está claramente por debajo de su nivel habitual. Su cuerpo puede estar bajo mucho estrés. Si esto es después del ejercicio, una VFC más baja puede ser normal. Reduzca el esfuerzo, descanse a tiempo y apoye la recuperación del sueño.';
@override
String healthLocalNotificationSleepDuration(int hours, int minutes) {
return '${hours}h ${minutes}m';
}
@override
String healthLocalNotificationSleepTitle(String duration, String state) {
return 'Sueño: $duration · $state';
}
@override
String get healthLocalNotificationSleepContent =>
'El informe de sueño de hoy está listo. Toque para ver sus datos detallados de sueño.';
@override
String healthLocalNotificationHrvTitle(int hrv, String state, String time) {
return 'VFC ${hrv}ms · $state · $time';
}
@override
String healthLocalNotificationRealtimeStressTitle(
String state, String startTime, String endTime) {
return '$state · $startTime-$endTime';
}
@override
String get healthLocalNotificationRealtimeStressExcellentContent =>
'Tu estrés en tiempo real se mantuvo bajo durante los últimos 60 minutos. Pareces relajado en general. Mantén tu ritmo actual.';
@override
String get healthLocalNotificationRealtimeStressNormalContent =>
'Su estado de estrés se mantuvo estable durante los últimos 60 minutos. Su ritmo actual parece normal.';
@override
String get healthLocalNotificationRealtimeStressAttentionContent =>
'Su estrés aumentó durante los últimos 60 minutos. Considere relajarse y reservar tiempo para descansar y recuperarse. El estrés elevado durante los entrenamientos es normal.';
@override
String get healthLocalNotificationRealtimeStressOverloadContent =>
'Permaneció en un estado de alto estrés durante los últimos 60 minutos. Reducir el esfuerzo y priorizar el descanso y el sueño. El estrés elevado durante los entrenamientos es normal.';
@override
String get turnOnNotifications => 'Activar notificaciones';
@override
String get stayUpToDateOnChangesInYourOwnAndYourFriendsHealth =>
'Manténgase actualizado sobre los cambios en su salud y la de sus amigos';
@override
String get refreshComplete => 'Actualización completa';
@override
String originalPricePerYear(String price) {
return 'Fue: $price/año';
}
@override
String get continueWithEmail => 'Continuar con el correo electrónico';
@override
String get continueWithGoogle => 'Continuar con Google';
@override
String get emailLoginEmailHint => 'Tu correo electrónico';
@override
String get emailLoginYourPassword => 'Tu contraseña';
@override
String get yourAccountWasSignedOutDueToAnotherDeviceLoginOrTokenExpirationPleaseLogInAgainToContinue =>
'Se cerró la sesión de su cuenta debido a otro inicio de sesión en el dispositivo o a la expiración del token. Por favor inicie sesión nuevamente para continuar.';
@override
String get contactUs => 'Contáctenos';
@override
String get pleaseDescribeTheProblemClearlyAndIncludeScreenRecordingsIfPossible =>
'Describa el problema claramente e incluya grabaciones de pantalla si es posible.';
@override
String get sendUsYourUserIdAsItWillHelpUsIdentifyTheProblemFaster =>
'Envíenos su ID de usuario, ya que nos ayudará a identificar el problema más rápido.';
@override
String get setAPassword => 'Establecer una contraseña';
@override
String get setAPasswordToSignInWithYourEmail =>
'Establece una contraseña para iniciar sesión con tu correo electrónico.';
@override
String get settingsSaved => 'Configuración guardada';
@override
String get leave => 'Dejar';
@override
String get setPassword => 'Establecer contraseña';
@override
String get setAPasswordToAddThisEmailSuccessfullyLeavingNowWillCancelThisSetup =>
'Establezca una contraseña para agregar este correo electrónico correctamente. Salir ahora cancelará esta configuración.';
@override
String get setupIncomplete => 'Configuración incompleta';
@override
String get enterYourPassword => 'Introduce tu contraseña';
@override
String get confirmNewPassword => 'Confirmar nueva contraseña';
@override
String get passwordMustBeAtLeast6CharactersAndInclude1NumberAnd1UppercaseLetter =>
'La contraseña debe tener al menos 6 caracteres e incluir 1 número y 1 letra mayúscula.';
@override
String get forgotPassword => '¿Has olvidado tu contraseña?';
@override
String get enterYourEmailAndPassword =>
'Introduce tu correo electrónico y contraseña';
@override
String get newPassword => 'Nueva contraseña';
@override
String get weVeSentACodeTo => 'Hemos enviado un código a';
@override
String get didnTGetItCheckYourSpamFolderOrTryAgain =>
'. ¿No lo entendiste? Revisa tu carpeta de spam o inténtalo de nuevo.';
@override
String get checkYourEmail => 'Revisa tu correo electrónico';
@override
String get code => 'Código';
@override
String get resetPassword => 'Restablecer contraseña';
@override
String get havingTroubleContactUs => '¿Tienes problemas? Contáctenos';
@override
String get sendEmail => 'Enviar correo electrónico';
@override
String get thisEmailIsNotRegisteredPleaseCheckAndTryAgain =>
'Este correo electrónico no está registrado. Por favor verifique e intente nuevamente.';
@override
String get youLlReceiveACodeViaEmailToResetYourPassword =>
'Recibirás un código por correo electrónico para restablecer tu contraseña.';
@override
String get codeFromEmail => 'Código del correo electrónico';
@override
String get sendResetEmail => 'Enviar correo electrónico de reinicio';
@override
String get invalidCode => 'código no válido';
@override
String get paswordHasBeenChanged => 'La contraseña ha sido cambiada.';
@override
String get copiedSuccessfully => 'Copiado exitosamente';
@override
String get enjoyAllPremiumBenefits =>
'Disfrute de todos los beneficios premium';
@override
String get membershipManagement => 'Afiliación';
@override
String get membershipTypes => 'Plan';
@override
String get validUntil => 'Válido hasta';
@override
String get manageSubscriptions => 'Administrar suscripción';
@override
String membershipValidUntilDate(String date) {
return 'Membresía válida hasta el $date';
}
@override
String get monthlyMembership => 'Mensual';
@override
String get quarterlyMembership => 'Trimestral';
@override
String get annualMembership => 'Anual';
@override
String get lifetimeMembership => 'Vida';
@override
String get verifyYourPassword => 'Verifica tu contraseña';
@override
String get reEnterYourDoublefeelPasswordToContinue =>
'Vuelva a ingresar su contraseña de DoubleFeel para continuar.';
@override
String get changeEmail => 'Cambiar correo electrónico';
@override
String get yourCurrentEmailIs => 'Su correo electrónico actual es';
@override
String get whatWouldYouLikeToUpdateItTo =>
'. ¿A qué te gustaría actualizarlo?';
@override
String get successChanged => 'El éxito cambió';
@override
String get verifyEmailFailed => 'Error al verificar el correo electrónico';
@override
String get aResetEmailHasBeenSent =>
'Se ha enviado un correo electrónico de reinicio.';
@override
String get enterPassword => 'Introduce la contraseña';
@override
String get changePassword => 'Cambiar la contraseña';
@override
String get currentPassword => 'Contraseña actual';
@override
String get enterYourCurrentPasswordHere =>
'Ingrese su contraseña actual aquí';
@override
String get enterYourNewPassword => 'Ingresa tu nueva contraseña';
@override
String get confirmYourNewPassword => 'Confirma tu nueva contraseña';
@override
String get yourPasswordNeedsToHaveAMinimumOf6CharactersAndContainAtLeast1NumberAnd1UppercaseCharacter =>
'Su contraseña debe tener un mínimo de 6 caracteres y contener al menos 1 número y 1 carácter en mayúscula';
@override
String weHaveSentACodeTo(String email) {
return 'Hemos enviado un código a $email.\n¿No lo entendiste? Revisa tu carpeta de spam o inténtalo de nuevo.';
}
@override
String get updatePassword => 'Actualizar contraseña';
@override
String get invalidPasswordFormat => 'Formato de contraseña no válido';
@override
String get newPasswordDoesNotMatch => 'La nueva contraseña no coincide';
@override
String get cannotUseCurrentPassword => 'No puedes usar la contraseña actual';
@override
String get thisEmailIsAlreadyLinkedToAnotherAccountPleaseUseADifferentEmail =>
'Esta dirección de correo electrónico ya está vinculada a otra cuenta. Por favor, utiliza otra dirección de correo electrónico.';
@override
String get loggedOutTokenInvalid => 'Sesión cerrada';
@override
String get logInOrSignUp => 'Iniciar sesión o registrarse';
}