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
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
|
# SOME DESCRIPTIVE TITLE.
# Slávek Banko <slavek.banko@axis.cz>, 2024.
# Alejo Fernández <alejofernandez@hotmail.com.ar>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2023-06-19 18:20+0000\n"
"PO-Revision-Date: 2024-11-23 16:10+0000\n"
"Last-Translator: Alejo Fernández <alejofernandez@hotmail.com.ar>\n"
"Language-Team: Spanish (Argentina) <https://mirror.git.trinitydesktop.org/"
"weblate/projects/applications/basket/es_AR/>\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
#, ignore-inconsistent
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "Alejo Fernández"
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
#, ignore-inconsistent
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr "alejoo.fernandez.2003@gmail.com"
#: kontact_plugin/basket_plugin.cpp:40 src/bnpview.cpp:568
#, fuzzy
msgid "&New Basket..."
msgstr "&Nueva cesta..."
#: src/aboutdata.cpp:28
msgid ""
"<p><b>Taking care of your ideas.</b></p><p>A note-taking application that "
"makes it easy to record ideas as you think, and quickly find them later. "
"Organizing your notes has never been so easy.</p>"
msgstr ""
"<p><b>Cuidado de tus ideas.</b></p><p>Un programa para tomar notas que le "
"facilita registrar ideas según se te ocurren, y encontrarlas rápidamente más "
"adelante. ¡Organizar tus notas nunca fue tan fácil!</p>"
#: src/aboutdata.cpp:35
#, fuzzy
msgid "BasKet Note Pads"
msgstr "Blocs de notas BasKet"
#: src/aboutdata.cpp:40
msgid "Maintainer"
msgstr "Mantenedor"
#: src/aboutdata.cpp:44
msgid "Original Author"
msgstr "Autor original"
#: src/aboutdata.cpp:48
#, fuzzy
msgid "Basket encryption, Kontact integration, KnowIt importer"
msgstr "Cifrado de las cestas, integración en Kontact, importador de KnowIt"
#: src/aboutdata.cpp:52
#, fuzzy
msgid ""
"Baskets auto lock, save-status icon, HTML copy/paste, basket name tooltip, "
"drop to basket name"
msgstr ""
"Bloqueo automático de las cestas, icono del estado de guardado, copiar/pegar "
"HTML, consejos sobre el nombre de las cestas, soltar sobre el nombre de las "
"cestas"
#: src/aboutdata.cpp:56 src/basketproperties.cpp:65 src/newbasketdialog.cpp:107
#, fuzzy
msgid "Icon"
msgstr "Icono"
#: src/archive.cpp:59 src/bnpview.cpp:1806
#, fuzzy
msgid "Save as Basket Archive"
msgstr "Guardar como archivo de cestas"
#: src/archive.cpp:59
msgid "Saving as basket archive. Please wait..."
msgstr "Guardando como archivo de cestas. Por favor, esperá..."
#: src/archive.cpp:264
msgid "This file is not a basket archive."
msgstr "Éste fichero no es un archivo de cestas."
#: src/archive.cpp:264 src/archive.cpp:295 src/archive.cpp:322
#: src/archive.cpp:330 src/archive.cpp:340 src/archive.cpp:390
#, fuzzy
msgid "Basket Archive Error"
msgstr "Error del archivo de cestas"
#: src/archive.cpp:295 src/archive.cpp:340 src/archive.cpp:390
msgid "This file is corrupted. It can not be opened."
msgstr "Éste fichero está corrupto. No se puede abrir."
#: src/archive.cpp:317
msgid ""
"This file was created with a recent version of %1. It can be opened but not "
"every information will be available to you. For instance, some notes may be "
"missing because they are of a type only available in new versions. When "
"saving the file back, consider to save it to another file, to preserve the "
"original one."
msgstr ""
"Éste fichero fue creado con una versión reciente de %1. Se puede abrir, pero "
"puede que falte parte de la información. Por ejemplo, pueden faltar algunas "
"notas porque sean de un tipo que sólo esté disponible en versiones más "
"modernas. Cuando vuelvas a grabar el fichero, puede que sea sensato "
"guardarlo en otro fichero, para conservar el original."
#: src/archive.cpp:328
msgid ""
"This file was created with a recent version of %1. Please upgrade to a newer "
"version to be able to open that file."
msgstr ""
"Éste fichero fue creado con una versión reciente de %1. Por favor, actualizá "
"a una versión más moderna para poder abrir ése fichero."
#: src/backup.cpp:62
#, fuzzy
msgid "Backup & Restore"
msgstr "Respaldar y restaurar"
#: src/backup.cpp:71
#, fuzzy
msgid "Save Folder"
msgstr "Carpeta donde guardar"
#: src/backup.cpp:72
msgid "Your baskets are currently stored in that folder:<br><b>%1</b>"
msgstr "Tus cestas se almacenan actualmente es en ésta carpeta: <br><b>%1</b>"
#: src/backup.cpp:75
#, fuzzy
msgid "&Move to Another Folder..."
msgstr "&Mover a otra carpeta..."
#: src/backup.cpp:76
#, fuzzy
msgid "&Use Another Existing Folder..."
msgstr "&Usar otra carpeta ya existente..."
#: src/backup.cpp:77
msgid "Why to do that?"
msgstr "¿Por qué hacer éso?"
#: src/backup.cpp:78
msgid ""
"<p>You can move the folder where %1 store your baskets to:</p><ul><li>Store "
"your baskets in a visible place in your home folder, like ~/Notes or ~/"
"Baskets, so you can manually backup them when you want.</li><li>Store your "
"baskets on a server to share them between two computers.<br>In this case, "
"mount the shared-folder to the local file system and ask %2 to use that "
"mount point.<br>Warning: you should not run %3 at the same time on both "
"computers, or you risk to loss data while the two applications are desynced."
"</li></ul><p>Please remember that you should not change the content of that "
"folder manually (eg. adding a file in a basket folder will not add that file "
"to the basket).</p>"
msgstr ""
"<p>Podés mover la carpeta en la que %1 almacena tus cestas a:</"
"p><ul><li>Almacenar sus carpetas en un lugar visible de su carpeta personal, "
"como ~/Notas o ~/Cestas, a fin de poder hacer copias de respaldo cuando lo "
"deseas.</li> <li>Almacenar tuscestas en un servidor para compartirlas entre "
"dos computadoras.<br>En este caso, montá la carpeta compartida en el sistema "
"de ficheros local y solicitá a %2 que use ése punto de montaje.<br>Aviso: no "
"debes ejecutar %3 al mismo tiempo en las dos computadoras, o te arriesgarías "
"a perder datos mientras las dos programas estén desincronizados.</li></"
"ul><p>Recuerdá que no debes cambiar manualmente el contenido de esta carpeta "
"(por ejemplo añadir un fichero a una carpeta de basket no añadirá ese "
"fichero a una carpeta de cesta no añadirá ése fichero a la cesta.)</p>"
#: src/backup.cpp:95
#, fuzzy
msgid "Backups"
msgstr "Copias de respaldo"
#: src/backup.cpp:98
#, fuzzy
msgid "&Backup..."
msgstr "&Copia de respaldo..."
#: src/backup.cpp:99
#, fuzzy
msgid "&Restore a Backup..."
msgstr "&Restaurar una copia de respaldo..."
#: src/backup.cpp:119
#, fuzzy
msgid "Last backup: never"
msgstr "Última copia de respaldo: nunca"
#: src/backup.cpp:121
#, c-format, fuzzy
msgid "Last backup: %1"
msgstr "Última copia de respaldo: %1"
#: src/backup.cpp:130
msgid "Choose a Folder Where to Move Baskets"
msgstr "Eligí una carpeta a la que mover las cestas"
#: src/backup.cpp:142
msgid "The folder <b>%1</b> is not empty. Do you want to override it?"
msgstr "La carpeta <b>%1</b> no está vacía. ¿Querés sobreescribirla?"
#: src/backup.cpp:143
#, fuzzy
msgid "Override Folder?"
msgstr "¿Sobreescribir la carpeta?"
#: src/backup.cpp:144 src/backup.cpp:196 src/bnpview.cpp:1815
#: src/htmlexporter.cpp:71
#, fuzzy
msgid "&Override"
msgstr "S&obreescribir"
#: src/backup.cpp:153
msgid ""
"Your baskets have been successfuly moved to <b>%1</b>. %2 is going to be "
"restarted to take this change into account."
msgstr ""
"Tus cestas se han movido con éxito a <b>%1</b>. %2 vas a ser reiniciado para "
"tener en cuenta éste cambio."
#: src/backup.cpp:161
msgid "Choose an Existing Folder to Store Baskets"
msgstr "Elegí una carpeta existente en la que almacenar las cestas"
#: src/backup.cpp:164
msgid ""
"Your basket save folder has been successfuly changed to <b>%1</b>. %2 is "
"going to be restarted to take this change into account."
msgstr ""
"Tu carpeta de guardado de cesta se ha cambiado correctamente a <b>%1</b>. %2 "
"se reiniciará para tener en cuenta éste cambio."
#: src/backup.cpp:176
#, fuzzy
msgid ""
"_: Backup filename (without extension), %1 is the date\n"
"Baskets_%1"
msgstr "Cestas_%1"
#: src/backup.cpp:181 src/backup.cpp:236
#, fuzzy
msgid "Tar Archives Compressed by Gzip"
msgstr "Archivos tar comprimidos con gzip"
#: src/backup.cpp:181 src/backup.cpp:236 src/bnpview.cpp:1803
#: src/bnpview.cpp:1841 src/htmlexporter.cpp:56
#, fuzzy
msgid "All Files"
msgstr "Todos los ficheros"
#: src/backup.cpp:185 src/backup.cpp:206
#, fuzzy
msgid "Backup Baskets"
msgstr "Hacer una copia de respaldo de las cestas"
#: src/backup.cpp:193 src/bnpview.cpp:1812 src/htmlexporter.cpp:68
msgid "The file <b>%1</b> already exists. Do you really want to override it?"
msgstr "El fichero <b>%1</b> ya existe. ¿Querés sobreescribirlo?"
#: src/backup.cpp:195 src/bnpview.cpp:1814 src/htmlexporter.cpp:70
msgid "Override File?"
msgstr "¿Sobreescribir el archivo?"
#: src/backup.cpp:206
msgid "Backing up baskets. Please wait..."
msgstr "Haciendo copia de respaldo de las cestas. Por favor, esperá..."
#: src/backup.cpp:237 src/bnpview.cpp:1842
msgid "Open Basket Archive"
msgstr "Abrir un archivo de cestas"
#: src/backup.cpp:248
msgid "README.txt"
msgstr "LEEME.txt"
#: src/backup.cpp:252
#, c-format
msgid ""
"This is a safety copy of your baskets like they were before you started to "
"restore the backup %1."
msgstr ""
"Ésta es una copia de seguridad de tus cestas, tal y como estaban antes de "
"que empezar a restaurar la copia de respaldo %1."
#: src/backup.cpp:253
msgid ""
"If the restoration was a success and you restored what you wanted to "
"restore, you can remove this folder."
msgstr ""
"Si la restauración ha tenido éxito y ha restaurado lo que querías restaurar, "
"podés eliminar ésta carpeta."
#: src/backup.cpp:254
msgid ""
"If something went wrong during the restoration process, you can re-use this "
"folder to store your baskets and nothing will be lost."
msgstr ""
"Si algo fuera mal durante el proceso de restauración, podés volver a usar "
"esta carpeta para almacenar tus cestas y no se perderá nada."
#: src/backup.cpp:255
msgid ""
"Choose \"Basket\" -> \"Backup & Restore...\" -> \"Use Another Existing "
"Folder...\" and select that folder."
msgstr ""
"Seleccioná \"Basket\" -> \"Respaldar y restaurar...\" -> \"Usar otra carpeta "
"existente...\" y selccioná ésa carpeta."
#: src/backup.cpp:260
msgid "Restoring <b>%1</b>. Please wait..."
msgstr "Restaurando <b>%1</b>. Por favor, esperá..."
#: src/backup.cpp:261
msgid ""
"If something goes wrong during the restoration process, read the file <b>%1</"
"b>."
msgstr ""
"Si algo fuese mal durante el proceso de restauración, leé el fichero "
"<b>%1</b>."
#: src/backup.cpp:263
#, fuzzy
msgid "Restore Baskets"
msgstr "Restaurar las cestas"
#: src/backup.cpp:293
msgid ""
"This archive is either not a backup of baskets or is corrupted. It cannot be "
"imported. Your old baskets have been preserved instead."
msgstr ""
"Éste archivo no es una copia de respaldo de cestas, o está corrupto. No se "
"puede importar. En su lugar se han conservado tus cestas viejas."
#: src/backup.cpp:293
#, fuzzy
msgid "Restore Error"
msgstr "Error de restauración"
#: src/backup.cpp:301
msgid ""
"Your backup has been successfuly restored to <b>%1</b>. %2 is going to be "
"restarted to take this change into account."
msgstr ""
"Tu copia de respaldo ha sido restaurada con éxito en <b>%1</b>. %2 va a ser "
"reiniciado para tener en cuenta éste cambio."
#: src/backup.cpp:342
#, fuzzy
msgid "Restart"
msgstr "Reiniciar"
#: src/backup.cpp:355
#, fuzzy
msgid ""
"_: Safety folder name before restoring a basket data archive\n"
"Baskets Before Restoration"
msgstr "Cestas antes de la restauración"
#: src/backup.cpp:360
#, fuzzy
msgid ""
"_: Safety folder name before restoring a basket data archive\n"
"Baskets Before Restoration (%1)"
msgstr "Cestas antes de la restauración (%1)"
#: src/basket.cpp:532
#, fuzzy
msgid "The new note does not match the filter and is hidden."
msgstr "La nota nueva no coincide con el filtro y está oculta."
#: src/basket.cpp:533
#, fuzzy
msgid "A new note does not match the filter and is hidden."
msgstr "Una nota nueva no coincide con el filtro y está oculta."
#: src/basket.cpp:534
#, fuzzy
msgid "Some new notes do not match the filter and are hidden."
msgstr ""
"Algunas notas nuevas no coinciden con el criterio de filtrado y están "
"ocultas."
#: src/basket.cpp:535
#, fuzzy
msgid "The new notes do not match the filter and are hidden."
msgstr ""
"Las notas nuevas no coinciden con el criterio de filtrado y están ocultas."
#: src/basket.cpp:1588
#, fuzzy
msgid ""
"_: The verb (Group New Note)\n"
"Group"
msgstr "Agrupar"
#: src/basket.cpp:1588
#, fuzzy
msgid ""
"_: The verb (Insert New Note)\n"
"Insert"
msgstr "Insertar"
#: src/basket.cpp:2014
#, fuzzy
msgid "Dropped to basket <i>%1</i>"
msgstr "Soltado en la cesta <i>%1</i>"
#: src/basket.cpp:2392
msgid ""
"This message should never appear. If it does, this program is buggy! Please "
"report the bug to the developer."
msgstr ""
"Éste mensaje nunca debería aparecer. Si lo hacés, ¡el programa tiene un "
"fallo! Por favor, informá del error al desarrollador."
#: src/basket.cpp:2809 src/basket.cpp:2854 src/basket.cpp:2857
msgid ""
"Insert note here\n"
"Right click for more options"
msgstr ""
"Insertá una nota aquí\n"
"Pulsá con el botón derecho para ver más opciones"
#: src/basket.cpp:2827
msgid "Resize those columns"
msgstr "Redimensionar ésas columnas"
#: src/basket.cpp:2829
msgid "Resize this group"
msgstr "Redimensionar éste grupo"
#: src/basket.cpp:2830
msgid "Resize this note"
msgstr "Redimensionar ésta nota"
#: src/basket.cpp:2831
msgid "Select or move this note"
msgstr "Seleccionar o mover ésta nota"
#: src/basket.cpp:2832
msgid "Select or move this group"
msgstr "Seleccionar o mover éste grupo"
#: src/basket.cpp:2833
msgid "Assign or remove tags from this note"
msgstr "Asignar o eliminar etiquetas de ésta nota"
#: src/basket.cpp:2835
#, c-format, fuzzy
msgid "<b>Assigned Tags</b>: %1"
msgstr "<b>Etiquetas asignadas</b>: %1"
#: src/basket.cpp:2842
#, fuzzy
msgid "%1, %2"
msgstr "%1, %2"
#: src/basket.cpp:2849
msgid "Expand this group"
msgstr "Expandir éste grupo"
#: src/basket.cpp:2850
msgid "Collapse this group"
msgstr "Contraer éste grupo"
#: src/basket.cpp:2855
msgid ""
"Group note with the one below\n"
"Right click for more options"
msgstr ""
"Agrupar la nota con la que está debajo\n"
"Pulsá con el botón derecho para ver más opciones"
#: src/basket.cpp:2856
msgid ""
"Group note with the one above\n"
"Right click for more options"
msgstr ""
"Agrupar la nota con la que está encima\n"
"Pulsá con el botón derecho para ver más opciones"
#: src/basket.cpp:2872
#, fuzzy
msgid "Added"
msgstr "Añadido"
#: src/basket.cpp:2873
#, fuzzy
msgid "Last Modification"
msgstr "Última modificación"
#: src/basket.cpp:2881
#, fuzzy
msgid ""
"_: of the form 'key: value'\n"
"<b>%1</b>: %2"
msgstr "<b>%1</b>: %2"
#: src/basket.cpp:2884
msgid "Click on the right to group instead of insert"
msgstr "Pulsá en la derecha para agrupar en vez de insertar"
#: src/basket.cpp:2886
msgid "Click on the left to insert instead of group"
msgstr "Pulsá en la izquierda para insertar en vez de agrupar"
#: src/basket.cpp:3080
#, fuzzy
msgid "&Unlock"
msgstr "&Desbloquear"
#: src/basket.cpp:3085
#, fuzzy
msgid "Password protected basket."
msgstr "Cesta protegida con contraseña."
#: src/basket.cpp:3087
msgid "Press Unlock to access it."
msgstr "Pulsá \"Desbloquear\" para acceder a ella."
#: src/basket.cpp:3089
#, c-format
msgid "Encryption is not supported by<br/>this version of %1."
msgstr "Ésta versión de %1<br/> no admite cifrado."
#: src/basket.cpp:3101
msgid ""
"To make baskets stay unlocked, change the automatic<br>locking duration in "
"the application settings."
msgstr ""
"Para hacer que las cestas permanezcan desbloqueadas, cambiá<br>la duración "
"del bloqueo automático en las preferencias del programa."
#: src/basket.cpp:3138 src/basketstatusbar.cpp:87 src/bnpview.cpp:1349
#: src/bnpview.cpp:2013
#, fuzzy
msgid "Loading..."
msgstr "Cargando..."
#: src/basket.cpp:3384 src/basket.cpp:3405 src/bnpview.cpp:2322
#, fuzzy
msgid "&Customize..."
msgstr "&Personalizar..."
#: src/basket.cpp:3386 src/basket.cpp:3407
msgid "&Filter by this Tag"
msgstr "&Filtrar por ésta etiqueta"
#: src/basket.cpp:3408
msgid "Filter by this &State"
msgstr "Filtrar por éste e&stado"
#: src/basket.cpp:3488
#, fuzzy
msgid "Tags"
msgstr "Etiquetas"
#: src/basket.cpp:4120
#, c-format
msgid ""
"_n: <qt>Do you really want to delete this note?</qt>\n"
"<qt>Do you really want to delete those <b>%n</b> notes?</qt>"
msgstr ""
"<qt>¿Realmente querés borrar ésta nota?</qt>\n"
"<qt>¿Querés realmente borrar ésas <b>%n</b> notas?</qt>"
#: src/basket.cpp:4122
#, fuzzy
msgid ""
"_n: Delete Note\n"
"Delete Notes"
msgstr ""
"Borrar nota\n"
"Borrar notas"
#: src/basket.cpp:4220
#, fuzzy
msgid ""
"_n: Copied note to clipboard.\n"
"Copied notes to clipboard."
msgstr ""
"Nota copiada al portapapeles.\n"
"Notas copiadas al portapapeles."
#: src/basket.cpp:4221
#, fuzzy
msgid ""
"_n: Cut note to clipboard.\n"
"Cut notes to clipboard."
msgstr ""
"Nota cortada al portapapeles.\n"
"Notas cortadas al portapapeles."
#: src/basket.cpp:4222
#, fuzzy
msgid ""
"_n: Copied note to selection.\n"
"Copied notes to selection."
msgstr ""
"Nota copiada a la selección.\n"
"Notas copiadas a la selección."
#: src/basket.cpp:4268 src/basket.cpp:4317
msgid "Unable to open this note."
msgstr "No se puede abrir ésta nota."
#: src/basket.cpp:4292
msgid "You are not authorized to open this file."
msgstr "No estás autorizado a abrir éste fichero."
#: src/basket.cpp:4334
#, fuzzy
msgid "Save to File"
msgstr "Guardar en un fichero"
#: src/basket.cpp:5298
msgid "Please enter the password for the following private key:"
msgstr "Por favor, introduci la contraseña para la siguiente clave privada:"
#: src/basket.cpp:5300
msgid "Please enter the password for the basket <b>%1</b>:"
msgstr "Por favor, introduci la contraseña para la cesta <b>%1</b>:"
#: src/basket.cpp:5345
msgid "Please assign a password to the basket <b>%1</b>:"
msgstr "Por favor, asigná una contraseña a la cesta <b>%1</b>:"
#: src/basket.cpp:5407
msgid "Insufficient Disk Space to Save Basket Data"
msgstr ""
"No hay suficiente espacio en disco o unidad para guardar los datos de la "
"cesta"
#: src/basket.cpp:5408
#, fuzzy
msgid "Wrong Basket File Permissions"
msgstr "Permisos erróneos sobre los ficheros de la cesta"
#: src/basket.cpp:5411
msgid ""
"Please remove files on the disk <b>%1</b> to let the application safely save "
"your changes."
msgstr ""
"Por favor, eliminá los ficheros del disco o unidad <b>%1</b> para permitir "
"que el programa guarde tus cambios de forma segura."
#: src/basket.cpp:5413
msgid ""
"File permissions are bad for <b>%1</b>. Please check that you have write "
"access to it and the parent folders."
msgstr ""
"Los permisos del archivo <b>%1</b> no son válidos. Por favor, comprobá que "
"tenés acceso de escritura sobre él y sobre las carpetas padre."
#: src/basket.cpp:5449
#, fuzzy
msgid "Save Error"
msgstr "Error de guardado"
#: src/basket_options.h:30
msgid "Show the debug window"
msgstr "Mostrar la ventana de depuración"
#: src/basket_options.h:32
msgid ""
"Custom folder where to load and save basket data and application data "
"(useful for debugging purpose)"
msgstr ""
"Carpeta personalizada donde cargar y guardar los datos de la cesta y del "
"programa (útil para fines de depuración)"
#: src/basket_options.h:34
msgid "Hide the main window in the system tray icon on startup"
msgstr ""
"Ocultar la ventana principal en el icono de la bandeja del sistema al iniciar"
#: src/basket_options.h:37
msgid ""
"When crashing, use the standard TDE report dialog instead of sending an email"
msgstr ""
"En caso de fallo, utilizá el cuadro de diálogo de informe TDE estándar en "
"lugar de enviar un Mail"
#: src/basket_options.h:39
msgid "Open basket archive or template"
msgstr "Abrir archivo de basket o plantilla"
#: src/basketfactory.cpp:64
msgid "Sorry, but the folder creation for this new basket has failed."
msgstr ""
"Disculpanos, pero la creación de una carpeta para esta nueva cesta ha "
"fallado."
#: src/basketfactory.cpp:64 src/basketfactory.cpp:94 src/basketfactory.cpp:115
#, fuzzy
msgid "Basket Creation Failed"
msgstr "Falló la creación de la cesta"
#: src/basketfactory.cpp:94
msgid "Sorry, but the template copying for this new basket has failed."
msgstr ""
"Disculpanos, pero la copia de la plantilla para ésta nueva cesta ha fallado."
#: src/basketfactory.cpp:115
msgid "Sorry, but the template customization for this new basket has failed."
msgstr ""
"Disculpanos, pero la personalización de la plantilla para ésta nueva cesta "
"ha fallado."
#: src/basketlistview.cpp:342
#, fuzzy
msgid "%1+%2+"
msgstr "%1+%2+"
#: src/basketlistview.cpp:344
#, fuzzy
msgid "%1+"
msgstr "%1+"
#: src/basketlistview.cpp:347
#, fuzzy
msgid "%1+%2"
msgstr "%1+%2"
#: src/basketproperties.cpp:50
#, fuzzy
msgid "Basket Properties"
msgstr "Propiedades de la cesta"
#: src/basketproperties.cpp:68 src/kgpgme.cpp:66 src/newbasketdialog.cpp:112
#, fuzzy
msgid "Name"
msgstr "Nombre"
#: src/basketproperties.cpp:80
#, fuzzy
msgid "Background &image:"
msgstr "&Imagen de fondo:"
#: src/basketproperties.cpp:81
#, fuzzy
msgid "&Background color:"
msgstr "&Color de fondo:"
#: src/basketproperties.cpp:82
#, fuzzy
msgid "&Text color:"
msgstr "Color del &texto:"
#: src/basketproperties.cpp:91
#, fuzzy
msgid "(None)"
msgstr "(Ninguno)"
#: src/basketproperties.cpp:111
#, fuzzy
msgid "Disposition"
msgstr "Disposición"
#: src/basketproperties.cpp:114
#, fuzzy
msgid "Col&umns:"
msgstr "Col&umnas:"
#: src/basketproperties.cpp:122
#, fuzzy
msgid "&Free-form"
msgstr "&Forma libre"
#: src/basketproperties.cpp:123
#, fuzzy
msgid "&Mind map"
msgstr "&Mapa mental"
#: src/basketproperties.cpp:132
#, fuzzy
msgid "&Keyboard Shortcut"
msgstr "&Accesos rápidos de teclado"
#: src/basketproperties.cpp:137
msgid "Learn some tips..."
msgstr "Aprendé algunos trucos..."
#: src/basketproperties.cpp:138
msgid ""
"<p><strong>Easily Remember your Shortcuts</strong>:<br>With the first "
"option, giving the basket a shortcut of the form <strong>Alt+Letter</strong> "
"will underline that letter in the basket tree.<br>For instance, if you are "
"assigning the shortcut <i>Alt+T</i> to a basket named <i>Tips</i>, the "
"basket will be displayed as <i><u>T</u>ips</i> in the tree. It helps you "
"visualize the shortcuts to remember them more quickly.</p><p><strong>Local "
"vs Global</strong>:<br>The first option allows to show the basket while the "
"main window is active. Global shortcuts are valid from anywhere, even if the "
"window is hidden.</p><p><strong>Show vs Switch</strong>:<br>The last option "
"makes this basket the current one without opening the main window. It is "
"useful in addition to the configurable global shortcuts, eg. to paste the "
"clipboard or the selection into the current basket from anywhere.</p>"
msgstr ""
"<p><strong>Recordar fácilmente tus accesos rápidos de teclado</strong>:"
"<br>Con la primera opción, darle a la cesta un acceso rápido de la forma "
"<strong>Alt (⌥ en Mac)+Letra<strong> subrayará ésa letra en el árbol de "
"cestas.<br>Por ejemplo, si asignás el acceso rápido <i>Alt+C</i> a una cesta "
"llamada <i>Guía</i>, la cesta será mostrada en el árbol como <i><u>G</u>uía</"
"i>. Visualizar los accesos rápidos ayuda a recordarlos más rapidamente.</p> "
"<p><strong>Local vs Global</strong>:<br> La primera opción te permite "
"mostrar la cesta mientras la ventana principal está activa. Los accesos "
"rápidos globales son válidos desde cualquier sitio, incluso si la ventana "
"está cerrada.</p><p><strong>Mostrar vs Cambiar</strong>:<br>La última opción "
"hace que ésta sea la cesta actual sin abrir la ventana principal. Es útil "
"cuando se añade a los accesos rápidos globales configurables para, por "
"ejemplo, pegar el contenido del portapapeles o la selección en la cesta "
"actual desde cualquier sitio.</p>"
#: src/basketproperties.cpp:153
#, fuzzy
msgid "S&how this basket"
msgstr "&Mostrar esta cesta"
#: src/basketproperties.cpp:154
#, fuzzy
msgid "Show this basket (&global shortcut)"
msgstr "Mostrar esta cesta (acceso rápido &global)"
#: src/basketproperties.cpp:155
msgid "S&witch to this basket (global shortcut)"
msgstr "&Cambiar a ésta cesta (acceso rápido global)"
#: src/basketstatusbar.cpp:104
#, fuzzy
msgid "Shows if there are changes that have not yet been saved."
msgstr "Muestra si hay cambios que todavía no hayan sido guardados."
#: src/basketstatusbar.cpp:132
#, fuzzy
msgid "Ctrl+drop: copy, Shift+drop: move, Shift+Ctrl+drop: link."
msgstr ""
"Ctrl+soltar: copiar, Mayúsculas+soltar: mover, Mayúsculas+Ctrl+soltar: "
"enlazar."
#: src/basketstatusbar.cpp:152
msgid "<p>This basket is <b>locked</b>.<br>Click to unlock it.</p>"
msgstr "<p>ÉSta cesta está <b>bloqueada</b>.<br>Pulsá para desbloquearla.</p>"
#: src/basketstatusbar.cpp:157
msgid "<p>This basket is <b>unlocked</b>.<br>Click to lock it.</p>"
msgstr "<p>Ésta cesta está <b>desbloqueada</b>.<br>Pulsá para bloquearla.</p>"
#: src/bnpview.cpp:178 src/bnpview.cpp:1180
#, fuzzy
msgid "General"
msgstr "General"
#: src/bnpview.cpp:276
#, fuzzy
msgid "Show/hide main window"
msgstr "Mostrar/ocultar la ventana principal"
#: src/bnpview.cpp:277
msgid ""
"Allows you to show main Window if it is hidden, and to hide it if it is "
"shown."
msgstr ""
"Te permite mostrar la ventana principal si está oculta, y ocultarla si está "
"visible."
#: src/bnpview.cpp:281
#, fuzzy
msgid "Paste clipboard contents in current basket"
msgstr "Pegar el contenido del portapapeles en la cesta actual"
#: src/bnpview.cpp:282
msgid ""
"Allows you to paste clipboard contents in the current basket without having "
"to open the main window."
msgstr ""
"Te permite pegar el contenido del portapapeles en la cesta actual sin "
"necesidad de abrir la ventana principal."
#: src/bnpview.cpp:285
#, fuzzy
msgid "Show current basket name"
msgstr "Mostrar el nombre de la cesta actual"
#: src/bnpview.cpp:286
msgid "Allows you to know basket is current without opening the main window."
msgstr "Te permite saber qué cesta es la actual sin abrir la ventana principal."
#: src/bnpview.cpp:289
#, fuzzy
msgid "Paste selection in current basket"
msgstr "Pegar la selección en la cesta actual"
#: src/bnpview.cpp:290
msgid ""
"Allows you to paste clipboard selection in the current basket without having "
"to open the main window."
msgstr ""
"Te permite pegar la selección del portapapeles en la cesta actual sin "
"necesidad de abrir la ventana principal."
#: src/bnpview.cpp:293
#, fuzzy
msgid "Create a new basket"
msgstr "Crear una nueva cesta"
#: src/bnpview.cpp:294
msgid ""
"Allows you to create a new basket without having to open the main window "
"(you then can use the other global shortcuts to add a note, paste clipboard "
"or paste selection in this new basket)."
msgstr ""
"Te permite crear una nueva cesta sin necesidad de abrir la ventana principal "
"(a continuación puede usar alguno de los otros accesos rápidos globales para "
"añadir una nota, pegar el contenido del portapapeles o la selección actual "
"en esta nueva cesta)."
#: src/bnpview.cpp:297
#, fuzzy
msgid "Go to previous basket"
msgstr "Ir a la cesta anterior"
#: src/bnpview.cpp:298
msgid ""
"Allows you to change current basket to the previous one without having to "
"open the main window."
msgstr ""
"Te permite cambiar la cesta actual a la cesta anterior sin necesidad de "
"abrir la ventana principal."
#: src/bnpview.cpp:301
#, fuzzy
msgid "Go to next basket"
msgstr "Ir a la siguiente cesta"
#: src/bnpview.cpp:302
msgid ""
"Allows you to change current basket to the next one without having to open "
"the main window."
msgstr ""
"Te permite cambiar la cesta actual a la cesta siguiente sin necesidad de "
"abrir la ventana principal."
#: src/bnpview.cpp:309
#, fuzzy
msgid "Insert text note"
msgstr "Insertar una nota de texto"
#: src/bnpview.cpp:310
#, fuzzy
msgid ""
"Add a text note to the current basket without having to open the main window."
msgstr ""
"Añade un texto a la cesta actual sin necesidad de abrir la ventana principal."
#: src/bnpview.cpp:313 src/settings.cpp:582
#, fuzzy
msgid "Insert image note"
msgstr "Insertar una nota de imagen"
#: src/bnpview.cpp:314
#, fuzzy
msgid ""
"Add an image note to the current basket without having to open the main "
"window."
msgstr ""
"Añade una imagen a la cesta actual sin necesidad de abrir la ventana "
"principal."
#: src/bnpview.cpp:317 src/settings.cpp:583
#, fuzzy
msgid "Insert link note"
msgstr "Insertar una nota de enlace"
#: src/bnpview.cpp:318
#, fuzzy
msgid ""
"Add a link note to the current basket without having to open the main window."
msgstr ""
"Añade un enlace a la cesta actual sin necesidad de abrir la ventana "
"principal."
#: src/bnpview.cpp:321 src/settings.cpp:585
#, fuzzy
msgid "Insert color note"
msgstr "Insertar una nota de color"
#: src/bnpview.cpp:322
#, fuzzy
msgid ""
"Add a color note to the current basket without having to open the main "
"window."
msgstr ""
"Añade un color a la cesta actual sin necesidad de abrir la ventana principal."
#: src/bnpview.cpp:325
#, fuzzy
msgid "Pick color from screen"
msgstr "Elegir un color de la pantalla"
#: src/bnpview.cpp:326
#, fuzzy
msgid ""
"Add a color note picked from one pixel on screen to the current basket "
"without having to open the main window."
msgstr ""
"Añade un color escogido de un píxel de la pantalla a la cesta actual sin "
"necesidad de abrir la ventana principal."
#: src/bnpview.cpp:330 src/settings.cpp:586
msgid "Grab screen zone"
msgstr "Tomar una zona de la pantalla"
#: src/bnpview.cpp:331
#, fuzzy
msgid ""
"Grab a screen zone as an image in the current basket without having to open "
"the main window."
msgstr ""
"Captura una zona de la pantalla como imagen en la cesta actual sin necesidad "
"de abrir la ventana principal."
#: src/bnpview.cpp:343
#, fuzzy
msgid "Baskets"
msgstr "Cestas"
#: src/bnpview.cpp:403
msgid ""
"<h2>Basket Tree</h2>Here is the list of your baskets. You can organize your "
"data by putting them in different baskets. You can group baskets by subject "
"by creating new baskets inside others. You can browse between them by "
"clicking a basket to open it, or reorganize them using drag and drop."
msgstr ""
"<h2>Árbol de cestas</h2>Aquí está la lista de tus cestas. Podés organizar "
"tus datos poniéndolos en diferentes cestas. Podés agrupar cestas por "
"temática creando nuevas cestas dentro de otras. Podés navegar a través de "
"ellas pulsando en una cesta para abrirla, o reorganizarlas arrastrando y "
"soltando."
#: src/bnpview.cpp:414 src/bnpview.cpp:416
#, fuzzy
msgid "&Basket Archive..."
msgstr "&Archivo de cestas..."
#: src/bnpview.cpp:419
#, fuzzy
msgid "&Hide Window"
msgstr "&Ocultar la ventana"
#: src/bnpview.cpp:423
#, fuzzy
msgid "&HTML Web Page..."
msgstr "Página web &HTML..."
#: src/bnpview.cpp:425
#, fuzzy
msgid "K&Notes"
msgstr "K&Notes"
#: src/bnpview.cpp:427
#, fuzzy
msgid "K&Jots"
msgstr "K&Jots"
#: src/bnpview.cpp:429
#, fuzzy
msgid "&KnowIt..."
msgstr "&KnowIt..."
#: src/bnpview.cpp:431
#, fuzzy
msgid "Tux&Cards..."
msgstr "Tux&Cards..."
#: src/bnpview.cpp:433
#, fuzzy
msgid "&Sticky Notes"
msgstr "&Sticky Notes"
#: src/bnpview.cpp:435
#, fuzzy
msgid "&Tomboy"
msgstr "&Tomboy"
#: src/bnpview.cpp:437
msgid "Text &File..."
msgstr "&Archivo de texto..."
#: src/bnpview.cpp:440
#, fuzzy
msgid "&Backup && Restore..."
msgstr "&Respaldar y restaurar..."
#: src/bnpview.cpp:445
#, fuzzy
msgid "D&elete"
msgstr "&Borrar"
#: src/bnpview.cpp:451
#, fuzzy
msgid "Selects all notes"
msgstr "Selecciona todas las notas"
#: src/bnpview.cpp:452
#, fuzzy
msgid "U&nselect All"
msgstr "Deseleccio&nar todas"
#: src/bnpview.cpp:454
#, fuzzy
msgid "Unselects all selected notes"
msgstr "Deselecciona todas las notas seleccionadas"
#: src/bnpview.cpp:455
#, fuzzy
msgid "&Invert Selection"
msgstr "&Invertir la selección"
#: src/bnpview.cpp:458
#, fuzzy
msgid "Inverts the current selection of notes"
msgstr "Invierte la actual selección de notas"
#: src/bnpview.cpp:460
#, fuzzy
msgid ""
"_: Verb; not Menu\n"
"&Edit..."
msgstr "&Editar..."
#: src/bnpview.cpp:465
#, fuzzy
msgid "&Open"
msgstr "&Abrir"
#: src/bnpview.cpp:468
#, fuzzy
msgid "Open &With..."
msgstr "Abrir &con..."
#: src/bnpview.cpp:472
msgid "&Save to File..."
msgstr "&Guardar en un archivo..."
#: src/bnpview.cpp:475
#, fuzzy
msgid "&Group"
msgstr "A&grupar"
#: src/bnpview.cpp:477
#, fuzzy
msgid "U&ngroup"
msgstr "&Desagrupar"
#: src/bnpview.cpp:480
#, fuzzy
msgid "Move on &Top"
msgstr "Llevar a lo más al&to"
#: src/bnpview.cpp:482
#, fuzzy
msgid "Move &Up"
msgstr "S&ubir"
#: src/bnpview.cpp:484
#, fuzzy
msgid "Move &Down"
msgstr "&Bajar"
#: src/bnpview.cpp:486
#, fuzzy
msgid "Move on &Bottom"
msgstr "Llevar a lo más &bajo"
#: src/bnpview.cpp:502
#, fuzzy
msgid "&Text"
msgstr "&Texto"
#: src/bnpview.cpp:503
#, fuzzy
msgid "&Link"
msgstr "En&lace"
#: src/bnpview.cpp:504
#, fuzzy
msgid "&Image"
msgstr "&Imagen"
#: src/bnpview.cpp:505
#, fuzzy
msgid "&Color"
msgstr "&Color"
#: src/bnpview.cpp:506
#, fuzzy
msgid "L&auncher"
msgstr "L&anzador"
#: src/bnpview.cpp:508
#, fuzzy
msgid "Import Launcher from &TDE Menu..."
msgstr "Importar un lanzador del menú de &TDE..."
#: src/bnpview.cpp:509
#, fuzzy
msgid "Im&port Icon..."
msgstr "Im&portar un icono..."
#: src/bnpview.cpp:510
msgid "Load From &File..."
msgstr "Cargar desde un &archivo..."
#: src/bnpview.cpp:533
#, fuzzy
msgid "C&olor from Screen"
msgstr "C&olor desde la pantalla"
#: src/bnpview.cpp:538
msgid "Grab Screen &Zone"
msgstr "Tomar una &zona de la pantalla"
#: src/bnpview.cpp:570
#, fuzzy
msgid "New &Sub-Basket..."
msgstr "Nueva &subcesta..."
#: src/bnpview.cpp:572
#, fuzzy
msgid "New Si&bling Basket..."
msgstr "Nueva cesta &vecina..."
#: src/bnpview.cpp:575
#, fuzzy
msgid "&New"
msgstr "&Nuevo"
#: src/bnpview.cpp:583
#, fuzzy
msgid ""
"_: Remove Basket\n"
"&Remove"
msgstr "Elimina&r"
#: src/bnpview.cpp:586
#, fuzzy
msgid ""
"_: Password protection\n"
"Pass&word..."
msgstr "&Contraseña..."
#: src/bnpview.cpp:588
#, fuzzy
msgid ""
"_: Lock Basket\n"
"&Lock"
msgstr "B&loquear"
#: src/bnpview.cpp:598
#, fuzzy
msgid "&Filter"
msgstr "&Filtrar"
#: src/bnpview.cpp:602
#, fuzzy
msgid "Filter all &Baskets"
msgstr "Filtrar todas las &cestas"
#: src/bnpview.cpp:606
#, fuzzy
msgid "&Reset Filter"
msgstr "Vacia&r el filtro"
#: src/bnpview.cpp:611
#, fuzzy
msgid "&Previous Basket"
msgstr "Cesta &anterior"
#: src/bnpview.cpp:613
#, fuzzy
msgid "&Next Basket"
msgstr "Cesta siguie&nte"
#: src/bnpview.cpp:615
msgid "&Fold Basket"
msgstr "&Plegar ésta cesta"
#: src/bnpview.cpp:617
msgid "&Expand Basket"
msgstr "&Expandir ésta cesta"
#: src/bnpview.cpp:627
#, fuzzy
msgid "Configure &Global Shortcuts..."
msgstr "Configurar los accesos rápidos &globales..."
#: src/bnpview.cpp:631
#, fuzzy
msgid "&Welcome Baskets"
msgstr "Cestas de &bienvenida"
#: src/bnpview.cpp:955
#, fuzzy
msgid "Plain Text Notes Conversion"
msgstr "Conversión de notas en texto simple"
#: src/bnpview.cpp:956
#, fuzzy
msgid "Converting plain text notes to rich text ones..."
msgstr "Conversión de notas en texto simple a notas en texto enriquecido..."
#: src/bnpview.cpp:1347
#, fuzzy
msgid "Locked"
msgstr "Bloqueada"
#: src/bnpview.cpp:1351
#, fuzzy
msgid "No notes"
msgstr "Sin notas"
#: src/bnpview.cpp:1353
#, c-format, fuzzy
msgid ""
"_n: %n note\n"
"%n notes"
msgstr ""
"%n nota\n"
"%n notas"
#: src/bnpview.cpp:1354
#, c-format, fuzzy
msgid ""
"_n: %n selected\n"
"%n selected"
msgstr ""
"%n seleccionada\n"
"%n seleccionadas"
#: src/bnpview.cpp:1355
#, fuzzy
msgid "all matches"
msgstr "todas las coincidencias"
#: src/bnpview.cpp:1355
#, fuzzy
msgid "no filter"
msgstr "sin filtro"
#: src/bnpview.cpp:1357
#, c-format, fuzzy
msgid ""
"_n: %n match\n"
"%n matches"
msgstr ""
"%n coincidencia\n"
"%n coincidencias"
#: src/bnpview.cpp:1359
#, fuzzy
msgid ""
"_: e.g. '18 notes, 10 matches, 5 selected'\n"
"%1, %2, %3"
msgstr "%1, %2, %3"
#: src/bnpview.cpp:1476
#, fuzzy
msgid "Picked color to basket <i>%1</i>"
msgstr "Seleccionado un color para la cesta <i>%1</i>"
#: src/bnpview.cpp:1513
#, fuzzy
msgid "The plain text notes have been converted to rich text."
msgstr ""
"Las notas en texto simple han sido convertidas a notas en texto enriquecido."
#: src/bnpview.cpp:1513 src/bnpview.cpp:1515
#, fuzzy
msgid "Conversion Finished"
msgstr "Conversión finalizada"
#: src/bnpview.cpp:1515
#, fuzzy
msgid "There are no plain text notes to convert."
msgstr "No hay ninguna nota en texto simple que convertir."
#: src/bnpview.cpp:1540
msgid ""
"<p><b>The file basketui.rc seems to not exist or is too old.<br>%1 cannot "
"run without it and will stop.</b></p><p>Please check your installation of %2."
"</p><p>If you do not have administrator access to install the application "
"system wide, you can copy the file basketui.rc from the installation archive "
"to the folder <a href='file://%3'>%4</a>.</p><p>As last ressort, if you are "
"sure the application is correctly installed but you had a preview version of "
"it, try to remove the file %5basketui.rc</p>"
msgstr ""
"<p><b>Parece que el fichero basketui.rc no existe o es demasiado "
"antiguo.<br>%1 no puede ejecutarse sin él y terminará.</b></p><p>Por favor, "
"comprobá tu instalación de %2.</p><p>Si no tenés privilegios de "
"administrador para instalar el programa en todo el sistema, podés copiar el "
"archivo basketui.rc del archivo de instalación a la carpeta <a "
"href='file://%3'>%4</a>. </p><p>Como último recurso, si estás seguro de que "
"el programa está bien instalado pero tenía una versión anterior de "
"basketui.rc, tratá de eliminar el archivo %5basketui.rc</p>"
#: src/bnpview.cpp:1551
#, fuzzy
msgid "Ressource not Found"
msgstr "Recurso no encontrado"
#: src/bnpview.cpp:1574 src/bnpview.cpp:1583
#, fuzzy
msgid "Cannot add note."
msgstr "No se pudo añadir una nota."
#: src/bnpview.cpp:1645
msgid "Grabbed screen zone to basket <i>%1</i>"
msgstr "Tomada una zona de la pantalla en la cesta <i>%1</i>"
#: src/bnpview.cpp:1693
#, fuzzy
msgid "Delete Basket"
msgstr "Borrar la cesta"
#: src/bnpview.cpp:1696
msgid "Delete Only that Basket"
msgstr "Borrar sólo ésa cesta"
#: src/bnpview.cpp:1697
msgid "Delete Note & Children"
msgstr "Borrar la nota e hijos"
#: src/bnpview.cpp:1705 src/bnpview.cpp:1711
msgid ""
"<qt>Do you really want to remove the basket <b>%1</b> and its contents?</qt>"
msgstr "<qt>¿Querés realmente eliminar la cesta <b>%1</b> y su contenido?</qt>"
#: src/bnpview.cpp:1713
#, fuzzy
msgid "Remove Basket"
msgstr "Eliminar la cesta"
#: src/bnpview.cpp:1715
#, fuzzy
msgid "&Remove Basket"
msgstr "Elimina&r la cesta"
#: src/bnpview.cpp:1726
msgid ""
"<qt><b>%1</b> have the following children baskets.<br>Do you want to remove "
"them too?</qt>"
msgstr ""
"<qt><b>%1</b> tiene las siguientes cestas hija.<br>¿Querés eliminarlas "
"también?</qt>"
#: src/bnpview.cpp:1729
#, fuzzy
msgid "Remove Children Baskets"
msgstr "Eliminar las cestas hija"
#: src/bnpview.cpp:1731
#, fuzzy
msgid "&Remove Children Baskets"
msgstr "Elimina&r las cestas hija"
#: src/bnpview.cpp:1803 src/bnpview.cpp:1841
#, fuzzy
msgid "Basket Archives"
msgstr "Archivos de cestas"
#: src/bnpview.cpp:1925
#, fuzzy
msgid "Clipboard content pasted to basket <i>%1</i>"
msgstr "Contenido del portapeles pegado en la cesta <i>%1</i>"
#: src/bnpview.cpp:1933
#, fuzzy
msgid "Selection pasted to basket <i>%1</i>"
msgstr "Selección pegada en la cesta <i>%1</i>"
#: src/bnpview.cpp:1945
#, fuzzy
msgid "No note was added."
msgstr "No se ha añadido ninguna nota."
#: src/bnpview.cpp:1972
#, fuzzy
msgid "Basket <i>%1</i> is locked"
msgstr "La cesta <i>%1</i> está bloqueada"
#: src/bnpview.cpp:1997
#, fuzzy
msgid "(Locked)"
msgstr "(Bloqueada)"
#: src/bnpview.cpp:2320
#, fuzzy
msgid "&Assign new Tag..."
msgstr "&Asignar una nueva etiqueta..."
#: src/bnpview.cpp:2321
#, fuzzy
msgid "&Remove All"
msgstr "Elimina&r todas"
#: src/crashhandler.cpp:80
msgid ""
"%1 has crashed! We're sorry about this.\n"
"\n"
"But, all is not lost! You could potentially help us fix the crash. "
"Information describing the crash is below, so just click send, or if you "
"have time, write a brief description of how the crash happened first.\n"
"\n"
"Many thanks."
msgstr ""
"¡%1 ha dado un error! Disculpanos.\n"
"\n"
"¡Pero no todo está perdido! Podrísa ayudarnos a solucionar el fallo. Debajo "
"hay información que describe el error, así que simplemente pulsá Enviar o, "
"si tenés tiempo, escribí una breve descripción de qué estaba haciendo justo "
"antes de que se produjera el error.\n"
"\n"
"Muchas gracias. :-)"
#: src/crashhandler.cpp:87
msgid ""
"The information below is to help the developers identify the problem, please "
"do not modify it."
msgstr ""
"La información que de abajo permitirá a los desarrolladores identificar el "
"problema. Por favor, no la modifiques."
#: src/crashhandler.cpp:206
msgid ""
"%1 has crashed! We're sorry about this.\n"
"\n"
"But, all is not lost! Perhaps an upgrade is already available which fixes "
"the problem. Please check your distribution's software repository."
msgstr ""
"¡%1 ha dado un error! Disculpanos.\n"
"\n"
"¡Pero no todo está perdido! Quizá ya haya una actualización disponible que "
"solucione el problema. Por favor, comprobá el repositorio de software de tu "
"distribución."
#: src/debugwindow.cpp:38
#, fuzzy
msgid "Debug Window"
msgstr "Ventana de depuración"
#: src/exporterdialog.cpp:41
#, fuzzy
msgid "Export Basket to HTML"
msgstr "Exportar la cesta a HTML"
#: src/exporterdialog.cpp:50
msgid "HTML Page Filename"
msgstr "Nombre de archivo de página HTML"
#: src/exporterdialog.cpp:53
msgid "&Filename:"
msgstr "Nombre del &archivo:"
#: src/exporterdialog.cpp:56
msgid "&Embed linked local files"
msgstr "&Empotrar los archivos locales enlazados"
#: src/exporterdialog.cpp:57
#, fuzzy
msgid "Embed &linked local folders"
msgstr "Empotrar las carpetas locales en&lazadas"
#: src/exporterdialog.cpp:58
msgid "Erase &previous files in target folder"
msgstr "Borrar los archivos anteriores en la car&peta de destino"
#: src/exporterdialog.cpp:59
#, fuzzy
msgid "For&mat for impression"
msgstr "For&matear para impresión"
#: src/filter.cpp:64
#, fuzzy
msgid "Reset Filter"
msgstr "Vaciar el filtro"
#: src/filter.cpp:68
#, fuzzy
msgid "&Filter: "
msgstr "&Filtrar: "
#: src/filter.cpp:70
#, fuzzy
msgid "T&ag: "
msgstr "Etiquet&a: "
#: src/filter.cpp:73
#, fuzzy
msgid "Filter all Baskets"
msgstr "Filtrar todas las cestas"
#: src/filter.cpp:155
#, fuzzy
msgid "(Not tagged)"
msgstr "(No etiquetada)"
#: src/filter.cpp:156
#, fuzzy
msgid "(Tagged)"
msgstr "(Etiquetada)"
#: src/focusedwidgets.cpp:199
#, fuzzy
msgid "Auto Spell Check"
msgstr "Corrección ortográfica automática"
#: src/focusedwidgets.cpp:199
#, fuzzy
msgid "Check Spelling..."
msgstr "Comprobar la ortografía..."
#: src/focusedwidgets.cpp:202
#, fuzzy
msgid "Allow Tabulations"
msgstr "Permitir tabulaciones"
#: src/formatimporter.cpp:136
msgid ""
"<p>Folder mirroring is not possible anymore.</p><p>The folder <b>%1</b> has "
"been copied for the basket needs. You can either delete this folder or "
"delete the basket, or use both. But remember that modifying one will not "
"modify the other anymore as they are now separate entities.</p>"
msgstr ""
"<p>La duplicación de carpetas ya no es posible.</p><p>La carpeta <b>%1</b> "
"se ha copiado para las necesidades de la cesta. Podés eliminar ésta carpeta "
"o eliminar la cesta, o utilizar ambas. Pero recordá que modificar uno ya no "
"modificará el otro ya que ahora son entidades separadas.</p>"
#: src/formatimporter.cpp:138
#, fuzzy
msgid "Folder Mirror Import"
msgstr "Importación de una carpeta replicada"
#: src/htmlexporter.cpp:56
#, fuzzy
msgid "HTML Documents"
msgstr "Documentos HTML"
#: src/htmlexporter.cpp:60 src/htmlexporter.cpp:82
#, fuzzy
msgid "Export to HTML"
msgstr "Exportar a HTML"
#: src/htmlexporter.cpp:82
msgid "Exporting to HTML. Please wait..."
msgstr "Exportando a HTML. Por favor, esperá..."
#: src/htmlexporter.cpp:117 src/htmlexporter.cpp:142 src/htmlexporter.cpp:151
msgid ""
"_: HTML export folder (files)\n"
"%1_files"
msgstr "%1_archivos"
#: src/htmlexporter.cpp:123 src/htmlexporter.cpp:156
#, fuzzy
msgid ""
"_: HTML export folder (icons)\n"
"icons"
msgstr "iconos"
#: src/htmlexporter.cpp:124 src/htmlexporter.cpp:157
#, fuzzy
msgid ""
"_: HTML export folder (images)\n"
"images"
msgstr "imágenes"
#: src/htmlexporter.cpp:125 src/htmlexporter.cpp:154
#, fuzzy
msgid ""
"_: HTML export folder (baskets)\n"
"baskets"
msgstr "cestas"
#: src/htmlexporter.cpp:146 src/htmlexporter.cpp:152 src/htmlexporter.cpp:153
#, fuzzy
msgid ""
"_: HTML export folder (data)\n"
"data"
msgstr "datos"
#: src/htmlexporter.cpp:322
#, fuzzy
msgid "Made with %1, a TDE tool to take notes and keep information at hand."
msgstr ""
"Creado con %1, una herramienta de TDE para tomar notas y mantener "
"información al alcance de la mano."
#: src/kcolorcombo2.cpp:126 src/kcolorcombo2.cpp:602 src/kcolorcombo2.cpp:624
#: src/tagsedit.cpp:474 src/variouswidgets.cpp:269
msgid "(Default)"
msgstr "(Por omisión)"
#: src/kcolorcombo2.cpp:138
#, fuzzy
msgid "Other..."
msgstr "Otro..."
#: src/kgpgme.cpp:55
#, fuzzy
msgid "Private Key List"
msgstr "Lista de claves privadas"
#: src/kgpgme.cpp:67
msgid "Email"
msgstr "Mail"
#: src/kgpgme.cpp:68
#, fuzzy
msgid "ID"
msgstr "ID"
#: src/kgpgme.cpp:73
msgid "Choose a secret key:"
msgstr "Seleccioná una clave privada:"
#: src/kgpgme.cpp:234
#, fuzzy
msgid "Key listing unexpectedly truncated."
msgstr "El listado de claves terminó inesperadamente."
#: src/kgpgme.cpp:270
msgid "That public key is not meant for encryption"
msgstr "Ésa clave pública no está destinada a cifrado"
#: src/kgpgme.cpp:313
#, fuzzy
msgid "Unsupported algorithm"
msgstr "Algoritmo no soportado"
#: src/kgpgme.cpp:416
#, fuzzy
msgid "Wrong password."
msgstr "Contraseña incorrecta."
#: src/kicondialog.cpp:82 src/kicondialog.cpp:92
#, fuzzy
msgid "Select Icon"
msgstr "Seleccionar un icono"
#: src/kicondialog.cpp:119
#, fuzzy
msgid "&Browse..."
msgstr "&Explorar..."
#: src/kicondialog.cpp:131
#, fuzzy
msgid "(All Icons)"
msgstr "(Todos los iconos)"
#: src/kicondialog.cpp:132
#, fuzzy
msgid "(Recent)"
msgstr "(Iconos recientes)"
#: src/kicondialog.cpp:133
#, fuzzy
msgid "Actions"
msgstr "Acciones"
#: src/kicondialog.cpp:134
msgid "Applications"
msgstr "Programas"
#: src/kicondialog.cpp:135
#, fuzzy
msgid "Devices"
msgstr "Dispositivos"
#: src/kicondialog.cpp:136
#, fuzzy
msgid "Filesystem"
msgstr "Sistema de ficheros"
#: src/kicondialog.cpp:137
msgid "File Types"
msgstr "Tipos de archivo"
#: src/kicondialog.cpp:354
msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)"
msgstr "*.png *.xpm *.svg *.svgz|Archivo de icono (*.png *.xpm *.svg *.svgz)"
#: src/likeback.cpp:75
msgid "Send application developers a comment about something you like"
msgstr ""
"Enviar a los desarrolladores del programa un comentario sobre algo que te "
"gusta."
#: src/likeback.cpp:82
msgid "Send application developers a comment about something you dislike"
msgstr ""
"Enviar a los desarrolladores del programa un comentario sobre algo que no te "
"gusta."
#: src/likeback.cpp:89
msgid ""
"Send application developers a comment about an improper behavior of the "
"application"
msgstr ""
"Enviar a los desarrolladores de la aplicación un comentario sobre un "
"comportamiento que no debería pasar del programa"
#: src/likeback.cpp:96
msgid "Send application developers a comment about a new feature you desire"
msgstr ""
"Enviar a los desarrolladores del programa un comentario sobre una nueva "
"característica que te gustaría"
#: src/likeback.cpp:381
#, fuzzy
msgid "&Send a Comment to Developers"
msgstr "Enviar un comentario a los de&sarrolladores"
#: src/likeback.cpp:432
#, c-format
msgid "Welcome to this testing version of %1."
msgstr "Bienvenido a ésta versión de prueba de %1."
#: src/likeback.cpp:433
#, c-format, fuzzy
msgid "Welcome to %1."
msgstr "Bienvenido a %1."
#: src/likeback.cpp:435
msgid "To help us improve it, your comments are important."
msgstr "Para ayudarnos a mejorar, tus comentarios son importantes."
#: src/likeback.cpp:438
msgid ""
"Each time you have a great or frustrating experience, please click the "
"appropriate face below the window title-bar, briefly describe what you like "
"or dislike and click Send."
msgstr ""
"Cada vez que tengas una experiencia excelente o frustrante, hacé clic en la "
"cara correspondiente debajo de la barra de título de la ventana, describa "
"brevemente lo que te gusta o no te gusta y hacé clic en Enviar."
#: src/likeback.cpp:442
msgid ""
"Each time you have a great experience, please click the smiling face below "
"the window title-bar, briefly describe what you like and click Send."
msgstr ""
"Cada vez que tengsa una gran experiencia, hacé clic en la cara sonriente "
"debajo de la barra de título de la ventana, describí brevemente lo que te "
"gusta y hacé clic en Enviar."
#: src/likeback.cpp:446
msgid ""
"Each time you have a frustrating experience, please click the frowning face "
"below the window title-bar, briefly describe what you dislike and click Send."
msgstr ""
"Cada vez que tengas una experiencia frustrante, hacé clic en la cara con el "
"ceño fruncido debajo de la barra de título de la ventana, describí "
"brevemente lo que no le gusta y hacé clic en Enviar."
#: src/likeback.cpp:455
msgid ""
"Follow the same principle to quickly report a bug: just click the broken-"
"object icon in the top-right corner of the window, describe it and click "
"Send."
msgstr ""
"Seguí la misma mecánica para informar rápidamente de un fallo: simplemente "
"pulsá en el icono del objeto roto en la esquina superior derecha de la "
"ventana, describilo y pulsá Enviar."
#: src/likeback.cpp:458
msgid ""
"Each time you discover a bug in the application, please click the broken-"
"object icon below the window title-bar, briefly describe the mis-behaviour "
"and click Send."
msgstr ""
"Cada vez que descubras un error en el programa, hacé clic en el ícono del "
"objeto roto debajo de la barra de título de la ventana, describí brevemente "
"el mal comportamiento y hacé clic en Enviar."
#: src/likeback.cpp:463
#, fuzzy
msgid ""
"_n: Example:\n"
"Examples:"
msgstr ""
"Ejemplo:\n"
"Ejemplos:"
#: src/likeback.cpp:466
#, fuzzy
msgid "<b>I like</b> the new artwork. Very refreshing."
msgstr "<b>Me gustan</b> las nuevas imágenes. Muy refrescantes."
#: src/likeback.cpp:470
#, fuzzy
msgid ""
"<b>I dislike</b> the welcome page of that assistant. Too time consuming."
msgstr ""
"<b>No me gusta</b> la página de bienvenida de este asistente. Consume "
"demasiado tiempo."
#: src/likeback.cpp:474
msgid ""
"<b>The application has an improper behaviour</b> when clicking the Add "
"button. Nothing happens."
msgstr ""
"<b>El progrrama tiene un comportamiento que no debería pasar</b> cuando "
"pulso en el botón Añadir. No ocurre nada."
#: src/likeback.cpp:478
msgid "<b>I desire a new feature</b> allowing me to send my work by email."
msgstr ""
"<b>Me gustaría disponer de una nueva característica</b> que me permitiera "
"enviar mi trabajo por Mail."
#: src/likeback.cpp:481
msgid "Help Improve the Application"
msgstr "Ayudar a mejorar éste programa"
#: src/likeback.cpp:558
msgid "Email Address"
msgstr "Dirección de mail"
#: src/likeback.cpp:559
msgid "Please provide your email address."
msgstr "Por favor, introduci tu dirección de Mail."
#: src/likeback.cpp:560
msgid ""
"It will only be used to contact you back if more information is needed about "
"your comments, ask you how to reproduce the bugs you report, send bug "
"corrections for you to test, etc."
msgstr ""
"Sólo será utilizada para contactar con vos en caso de que se necesite más "
"información sobre tus comentarios, preguntarte cómo reproducir los errores "
"de los cuales nos informas, enviarte correcciones del error para que las "
"pruebes, etc."
#: src/likeback.cpp:561
msgid ""
"The email address is optional. If you do not provide any, your comments will "
"be sent anonymously."
msgstr ""
"La dirección de mail es opcional. Si no facilitás ninguna, tuscomentarios "
"serán enviados anónimamente."
#: src/likeback.cpp:634
#, fuzzy
msgid "Send a Comment to Developers"
msgstr "Enviar un comentario a los desarrolladores"
#: src/likeback.cpp:664
#, fuzzy
msgid "Send Application Developers a Comment About:"
msgstr "Enviar a los desarrolladores de la aplicación un comentario sobre:"
#: src/likeback.cpp:675
msgid "Something you &like"
msgstr "A&lgo que te gusta"
#: src/likeback.cpp:685
msgid "Something you &dislike"
msgstr "Algo que te &disgusta"
#: src/likeback.cpp:695
msgid "An improper &behavior of this application"
msgstr "Un &comportamiento que no debería pasar de éste programa"
#: src/likeback.cpp:705
msgid "A new &feature you desire"
msgstr "Una nueva &característica que desearías"
#: src/likeback.cpp:718
#, fuzzy
msgid "Show comment buttons below &window titlebars"
msgstr ""
"Mostrar los botones de comentario bajo las barras de título de las &ventanas"
#: src/likeback.cpp:723
#, fuzzy
msgid "&Send Comment"
msgstr "&Enviar el comentario"
#: src/likeback.cpp:727
msgid "&Email Address..."
msgstr "Dirección de M&ail..."
#: src/likeback.cpp:744
#, c-format
msgid "Please provide a brief description of your opinion of %1."
msgstr "Por favor, describí brevemente tu opinión sobre %1."
#: src/likeback.cpp:757
msgid "Please write in English."
msgstr "Por favor, escribí en inglés americano."
#: src/likeback.cpp:763
msgid "You may be able to use an <a href=\"%1\">online translation tool</a>."
msgstr ""
"Podés utilizar una <a href=\"%1\">herramienta de traducción en línea</a>."
#: src/likeback.cpp:769
msgid ""
"To make the comments you send more useful in improving this application, try "
"to send the same amount of positive and negative comments."
msgstr ""
"Para que los comentarios que envía sean más útiles para mejorar el programa, "
"intentá enviar la misma cantidad de comentarios positivos y negativos."
#: src/likeback.cpp:772
msgid "Do <b>not</b> ask for new features: your requests will be ignored."
msgstr ""
"<b>No</b> preguntés por características nuevas: tus peticiones serán "
"ignoradas. Gracias."
#: src/likeback.cpp:840
msgid "<p>Error while trying to send the report.</p><p>Please retry later.</p>"
msgstr ""
"<p>Error al intentar enviar el informe.</p><p>Por favor, intentalo de nuevo "
"más tarde.</p>"
#: src/likeback.cpp:840
#, fuzzy
msgid "Transfer Error"
msgstr "Error de transmisión"
#: src/likeback.cpp:844
msgid ""
"<p>Your comment has been sent successfully. It will help improve the "
"application.</p><p>Thanks for your time.</p>"
msgstr ""
"<p>Tu comentario ha sido enviado con éxito. Ayudarás a mejorar el programa.</"
"p><p>Gracias por tu tiempo.</p>"
#: src/likeback.cpp:845
#, fuzzy
msgid "Comment Sent"
msgstr "Comentario enviado"
#: src/linklabel.cpp:568
#, fuzzy
msgid "I&talic"
msgstr "&Cursiva"
#: src/linklabel.cpp:571
#, fuzzy
msgid "&Bold"
msgstr "&Negrita"
#: src/linklabel.cpp:578
#, fuzzy
msgid "Always"
msgstr "Siempre"
#: src/linklabel.cpp:579
#, fuzzy
msgid "Never"
msgstr "Nunca"
#: src/linklabel.cpp:580
msgid "On mouse hovering"
msgstr "Cuando el mouse pase por encima"
#: src/linklabel.cpp:581
msgid "When mouse is outside"
msgstr "Cuando el mouse esté fuera"
#: src/linklabel.cpp:582
#, fuzzy
msgid "&Underline:"
msgstr "S&ubrayado:"
#: src/linklabel.cpp:587
#, fuzzy
msgid "Colo&r:"
msgstr "Colo&r:"
#: src/linklabel.cpp:592
msgid "&Mouse hover color:"
msgstr "Color cuando el mosue pase por enci&ma:"
#: src/linklabel.cpp:599
#, fuzzy
msgid "&Icon size:"
msgstr "Tamaño del &icono:"
#: src/linklabel.cpp:604
#, fuzzy
msgid "None"
msgstr "Ninguno"
#: src/linklabel.cpp:605
#, fuzzy
msgid "Icon size"
msgstr "Del tamaño del icono"
#: src/linklabel.cpp:606
#, fuzzy
msgid "Twice the icon size"
msgstr "El doble del tamaño del icono"
#: src/linklabel.cpp:607
#, fuzzy
msgid "Three times the icon size"
msgstr "El triple del tamaño del icono"
#: src/linklabel.cpp:608
#, fuzzy
msgid "&Preview:"
msgstr "&Previsualizar:"
#: src/linklabel.cpp:610
msgid "You disabled preview but still see images?"
msgstr "¿Desabilitaste la previsualización pero aún ves imágenes?"
#: src/linklabel.cpp:611
msgid ""
"<p>This is normal because there are several type of notes.<br>This setting "
"only applies to file and local link notes.<br>The images you see are image "
"notes, not file notes.<br>File notes are generic documents, whereas image "
"notes are pictures you can draw in.</p><p>When dropping files to baskets, %1 "
"detects their type and shows you the content of the files.<br>For instance, "
"when dropping image or text files, image and text notes are created for them."
"<br>For type of files %2 does not understand, they are shown as generic file "
"notes with just an icon or file preview and a filename.</p><p>If you do not "
"want the application to create notes depending on the content of the files "
"you drop, go to the \"General\" page and uncheck \"Image or animation\" in "
"the \"View Content of Added Files for the Following Types\" group.</p>"
msgstr ""
"<p>Es normal porque hay varios tipos de notas.<br>Ésta opción sólo se aplica "
"a las notas de fichero y de enlace local.<br>Y las imágenes que ve son notas "
"de imagen, no notas de fichero.<br>Las notas de fichero son documentos "
"genéricos, mientras que las notas de imagen son ilustraciones que podés "
"dibujar.</p><p>Cuando vos soltás archivos en las cestas, %1 detecta tu tipo "
"y te muestra el contenido de éstos archivos.<br>Por ejemplo, cuando soltás "
"archivos de texto o imagen, se crean para ellos notas de texto o "
"imagen.<br>Los tipos de archivos que %2 no entiende se muestran como notas "
"de fichero genérico con sólo un icono o una previsualización del archivo y "
"un nombre de fichero.</p><p>Si no querés que el programa cree los diferentes "
"tipos de nota dependiendo del contenido de los archivos que suelta, andá a "
"la página \"General\" y desmarcá \"Imagen o animación\" en el grupo \"Ver "
"contenido de los ficheros añadidos para los siguientes tipos\".</p>"
#: src/linklabel.cpp:627
#, fuzzy
msgid "Example"
msgstr "Ejemplo"
#: src/mainwindow.cpp:143
#, fuzzy
msgid "Minimize"
msgstr "Minimizar"
#: src/mainwindow.cpp:308
#, fuzzy
msgid "Basket"
msgstr "Cesta"
#: src/mainwindow.cpp:317
msgid "<p>Do you really want to quit %1?</p>"
msgstr "<p>¿Querés realmente salir de %1?</p>"
#: src/mainwindow.cpp:319
msgid ""
"<p>Notice that you do not have to quit the application before ending your "
"TDE session. If you end your session while the application is still running, "
"the application will be reloaded the next time you log in.</p>"
msgstr ""
"<p>Tenés en cuenta que no necesitás salir del programa antes de terminar tu "
"sesión de TDE. Si terminás tu sesión mientras el programa está todavía "
"ejecutándose, se volverá a cargar automáticamente la próxima vez que inicies "
"la sesión.</p>"
#: src/mainwindow.cpp:322
#, fuzzy
msgid "Quit Confirm"
msgstr "Confirmación de la salida"
#: src/newbasketdialog.cpp:92
#, fuzzy
msgid "New Basket"
msgstr "Nueva cesta"
#: src/newbasketdialog.cpp:117
#, fuzzy
msgid "Background color"
msgstr "Color de fondo"
#: src/newbasketdialog.cpp:124
#, fuzzy
msgid "&Manage Templates..."
msgstr "&Gestionar las plantillas..."
#: src/newbasketdialog.cpp:159 src/newbasketdialog.cpp:306
#, fuzzy
msgid "One column"
msgstr "Una columna"
#: src/newbasketdialog.cpp:170 src/newbasketdialog.cpp:308
#, fuzzy
msgid "Two columns"
msgstr "Dos columnas"
#: src/newbasketdialog.cpp:182 src/newbasketdialog.cpp:310
#, fuzzy
msgid "Three columns"
msgstr "Tres columnas"
#: src/newbasketdialog.cpp:194
#, fuzzy
msgid "Free"
msgstr "Libre"
#: src/newbasketdialog.cpp:209
#, fuzzy
msgid "&Template:"
msgstr "Plan&tilla:"
#: src/newbasketdialog.cpp:218
#, fuzzy
msgid "(Baskets)"
msgstr "(Cestas)"
#: src/newbasketdialog.cpp:219
#, fuzzy
msgid "C&reate in:"
msgstr "C&rear en:"
#: src/newbasketdialog.cpp:220
#, fuzzy
msgid "How is it useful?"
msgstr "¿Por qué es útil?"
#: src/newbasketdialog.cpp:221
msgid ""
"<p>Creating baskets inside of other baskets to form a hierarchy allows you "
"to be more organized by eg.:</p><ul><li>Grouping baskets by themes or topics;"
"</li><li>Grouping baskets in folders for different projects;</li><li>Making "
"sections with sub-baskets representing chapters or pages;</li><li>Making a "
"group of baskets to export together (to eg. email them to people).</li></ul>"
msgstr ""
"<p>Crear cestas dentro de otras cestas para formar una jerarquía te permite "
"ser más organizado. Podés por ejemplo:</p><ul><li>Agrupar cestas por "
"temática;</li><li>Agrupar cestas en carpetas para diferentes proyectos;</li> "
"<li>Hacer secciones con subcestas representando capítulos o páginas;</li> "
"<li>Hacer grupos de cestas para exportarlas juntas (por ejemplo, para "
"enviarlas por Mail).</li></ul>"
#: src/newbasketdialog.cpp:312
#, fuzzy
msgid "Free-form"
msgstr "Forma libre"
#: src/newbasketdialog.cpp:314
#, fuzzy
msgid "Mind map"
msgstr "Mapa mental"
#: src/note.cpp:2834
#, fuzzy
msgid "(Image)"
msgstr "(Imagen)"
#: src/notecontent.cpp:176
#, fuzzy
msgid "Plain Text"
msgstr "Texto simple"
#: src/notecontent.cpp:177
#, fuzzy
msgid "Text"
msgstr "Texto"
#: src/notecontent.cpp:178
#, fuzzy
msgid "Image"
msgstr "Imagen"
#: src/notecontent.cpp:179
#, fuzzy
msgid "Animation"
msgstr "Animación"
#: src/notecontent.cpp:180
#, fuzzy
msgid "Sound"
msgstr "Sonido"
#: src/notecontent.cpp:182
#, fuzzy
msgid "Link"
msgstr "Enlace"
#: src/notecontent.cpp:183
#, fuzzy
msgid "Launcher"
msgstr "Lanzador"
#: src/notecontent.cpp:184 src/noteedit.cpp:825
#, fuzzy
msgid "Color"
msgstr "Color"
#: src/notecontent.cpp:185
#, fuzzy
msgid "Unknown"
msgstr "Desconocido"
#: src/notecontent.cpp:326
msgid "Edit this plain text"
msgstr "Editar éste texto simple"
#: src/notecontent.cpp:327
msgid "Edit this text"
msgstr "Editar éste texto"
#: src/notecontent.cpp:328
msgid "Edit this image"
msgstr "Editar ésta imagen"
#: src/notecontent.cpp:329
msgid "Edit this animation"
msgstr "Editar ésta animación"
#: src/notecontent.cpp:330
msgid "Edit the file name of this sound"
msgstr "Editar el nombre de archivo de éste sonido"
#: src/notecontent.cpp:331
msgid "Edit the name of this file"
msgstr "Editar el nombre de éste archivo"
#: src/notecontent.cpp:332
msgid "Edit this link"
msgstr "Editar éste enlace"
#: src/notecontent.cpp:333
msgid "Edit this launcher"
msgstr "Editar éste lanzador"
#: src/notecontent.cpp:334
msgid "Edit this color"
msgstr "Editar éste color"
#: src/notecontent.cpp:335
msgid "Edit this unknown object"
msgstr "Editar éste objeto desconocido"
#: src/notecontent.cpp:583
#, fuzzy
msgid "Opening plain text..."
msgstr "Apertura del texto simple..."
#: src/notecontent.cpp:584
#, fuzzy
msgid "Opening plain texts..."
msgstr "Apertura de textos simples..."
#: src/notecontent.cpp:585
#, fuzzy
msgid "Opening plain text with..."
msgstr "Apertura del texto simple con..."
#: src/notecontent.cpp:586
#, fuzzy
msgid "Opening plain texts with..."
msgstr "Apertura de textos simples con..."
#: src/notecontent.cpp:587
#, fuzzy
msgid "Open plain text with:"
msgstr "Abrir el texto simple con:"
#: src/notecontent.cpp:588
#, fuzzy
msgid "Open plain texts with:"
msgstr "Abrir los textos simples con:"
#: src/notecontent.cpp:691
#, fuzzy
msgid "Opening text..."
msgstr "Apertura del texto..."
#: src/notecontent.cpp:692
#, fuzzy
msgid "Opening texts..."
msgstr "Apertura de textos..."
#: src/notecontent.cpp:693
#, fuzzy
msgid "Opening text with..."
msgstr "Apertura del texto con..."
#: src/notecontent.cpp:694
#, fuzzy
msgid "Opening texts with..."
msgstr "Apertura de textos con..."
#: src/notecontent.cpp:695
msgid "Open text with:"
msgstr "Abrir éste texto con:"
#: src/notecontent.cpp:696
msgid "Open texts with:"
msgstr "Abrir éstos textos con:"
#: src/notecontent.cpp:809 src/notecontent.cpp:1027
#, fuzzy
msgid "Size"
msgstr "Tamaño"
#: src/notecontent.cpp:810 src/variouswidgets.cpp:147
#, fuzzy
msgid "%1 by %2 pixels"
msgstr "%1 por %2 píxeles"
#: src/notecontent.cpp:816
#, fuzzy
msgid "Opening image..."
msgstr "Apertura de la imagen..."
#: src/notecontent.cpp:817
msgid "Opening images..."
msgstr ""
#: src/notecontent.cpp:818
msgid "Opening image with..."
msgstr ""
#: src/notecontent.cpp:819
msgid "Opening images with..."
msgstr ""
#: src/notecontent.cpp:820
msgid "Open image with:"
msgstr ""
#: src/notecontent.cpp:821
msgid "Open images with:"
msgstr ""
#: src/notecontent.cpp:845
msgid "Click for full size view"
msgstr ""
#: src/notecontent.cpp:916
msgid "Opening animation..."
msgstr ""
#: src/notecontent.cpp:917
msgid "Opening animations..."
msgstr ""
#: src/notecontent.cpp:918
msgid "Opening animation with..."
msgstr ""
#: src/notecontent.cpp:919
msgid "Opening animations with..."
msgstr ""
#: src/notecontent.cpp:920
msgid "Open animation with:"
msgstr ""
#: src/notecontent.cpp:921
msgid "Open animations with:"
msgstr ""
#: src/notecontent.cpp:1032
msgid "Type"
msgstr ""
#: src/notecontent.cpp:1070
msgid "Open this file"
msgstr ""
#: src/notecontent.cpp:1089
msgid "Opening file..."
msgstr ""
#: src/notecontent.cpp:1090
msgid "Opening files..."
msgstr ""
#: src/notecontent.cpp:1091
msgid "Opening file with..."
msgstr ""
#: src/notecontent.cpp:1092
msgid "Opening files with..."
msgstr ""
#: src/notecontent.cpp:1093
msgid "Open file with:"
msgstr ""
#: src/notecontent.cpp:1094
msgid "Open files with:"
msgstr ""
#: src/notecontent.cpp:1165
msgid "Open this sound"
msgstr ""
#: src/notecontent.cpp:1202
msgid "Opening sound..."
msgstr ""
#: src/notecontent.cpp:1203
msgid "Opening sounds..."
msgstr ""
#: src/notecontent.cpp:1204
msgid "Opening sound with..."
msgstr ""
#: src/notecontent.cpp:1205
msgid "Opening sounds with..."
msgstr ""
#: src/notecontent.cpp:1206
msgid "Open sound with:"
msgstr ""
#: src/notecontent.cpp:1207
msgid "Open sounds with:"
msgstr ""
#: src/notecontent.cpp:1245
msgid "Target"
msgstr ""
#: src/notecontent.cpp:1268
msgid "Open this link"
msgstr ""
#: src/notecontent.cpp:1294
msgid "Link have no URL to open."
msgstr ""
#: src/notecontent.cpp:1297
msgid "Opening link target..."
msgstr ""
#: src/notecontent.cpp:1298
msgid "Opening link targets..."
msgstr ""
#: src/notecontent.cpp:1299
msgid "Opening link target with..."
msgstr ""
#: src/notecontent.cpp:1300
msgid "Opening link targets with..."
msgstr ""
#: src/notecontent.cpp:1301
msgid "Open link target with:"
msgstr ""
#: src/notecontent.cpp:1302
msgid "Open link targets with:"
msgstr ""
#: src/notecontent.cpp:1433
msgid "%1 <i>(run in terminal)</i>"
msgstr ""
#: src/notecontent.cpp:1436
msgid "Comment"
msgstr ""
#: src/notecontent.cpp:1440
msgid "Command"
msgstr ""
#: src/notecontent.cpp:1463
msgid "Launch this application"
msgstr ""
#: src/notecontent.cpp:1484
msgid "The launcher have no command to run."
msgstr ""
#: src/notecontent.cpp:1487
msgid "Launching application..."
msgstr ""
#: src/notecontent.cpp:1488
msgid "Launching applications..."
msgstr ""
#: src/notecontent.cpp:1575
msgid ""
"_: RGB Colorspace: Red/Green/Blue\n"
"RGB"
msgstr ""
#: src/notecontent.cpp:1576
msgid "<i>Red</i>: %1, <i>Green</i>: %2, <i>Blue</i>: %3,"
msgstr ""
#: src/notecontent.cpp:1578
msgid ""
"_: HSV Colorspace: Hue/Saturation/Value\n"
"HSV"
msgstr ""
#: src/notecontent.cpp:1579
msgid "<i>Hue</i>: %1, <i>Saturation</i>: %2, <i>Value</i>: %3,"
msgstr ""
#: src/notecontent.cpp:1732
msgid "CSS Color Name"
msgstr ""
#: src/notecontent.cpp:1742
msgid "CSS Extended Color Name"
msgstr ""
#: src/notecontent.cpp:1748
msgid "Is Web Color"
msgstr ""
#: src/noteedit.cpp:389
msgid ""
"Images can not be edited here at the moment (the next version of BasKet Note "
"Pads will include an image editor).\n"
"Do you want to open it with an application that understand it?"
msgstr ""
#: src/noteedit.cpp:391
msgid "Edit Image Note"
msgstr ""
#: src/noteedit.cpp:405
msgid ""
"This animated image can not be edited here.\n"
"Do you want to open it with an application that understands it?"
msgstr ""
#: src/noteedit.cpp:407
msgid "Edit Animation Note"
msgstr ""
#: src/noteedit.cpp:484
msgid "Edit Color Note"
msgstr ""
#: src/noteedit.cpp:507
msgid ""
"The type of this note is unknown and can not be edited here.\n"
"You however can drag or copy the note into an application that understands "
"it."
msgstr ""
#: src/noteedit.cpp:509
msgid "Edit Unknown Note"
msgstr ""
#: src/noteedit.cpp:538
msgid "Edit Link Note"
msgstr ""
#: src/noteedit.cpp:550 src/noteedit.cpp:563
msgid "Auto"
msgstr ""
#: src/noteedit.cpp:559 src/noteedit.cpp:712
msgid "&Icon:"
msgstr ""
#: src/noteedit.cpp:583
msgid "Ta&rget:"
msgstr ""
#: src/noteedit.cpp:584
msgid "&Title:"
msgstr ""
#: src/noteedit.cpp:697
msgid "Edit Launcher Note"
msgstr ""
#: src/noteedit.cpp:706
msgid "Choose a command to run:"
msgstr ""
#: src/noteedit.cpp:715
msgid "&Guess"
msgstr ""
#: src/noteedit.cpp:731
msgid "Comman&d:"
msgstr ""
#: src/noteedit.cpp:732 src/tagsedit.cpp:383
msgid "&Name:"
msgstr ""
#: src/noteedit.cpp:827 src/tagsedit.cpp:441
msgid "Bold"
msgstr ""
#: src/noteedit.cpp:829 src/tagsedit.cpp:447
msgid "Underline"
msgstr ""
#: src/noteedit.cpp:834
msgid "Align Left"
msgstr ""
#: src/noteedit.cpp:835
msgid "Centered"
msgstr ""
#: src/noteedit.cpp:836
msgid "Align Right"
msgstr ""
#: src/noteedit.cpp:837
msgid "Justified"
msgstr ""
#: src/notefactory.cpp:449
msgid ""
"<p>%1 doesn't support the data you've dropped.<br>It however created a "
"generic note, allowing you to drag or copy it to an application that "
"understand it.</p>"
msgstr ""
#: src/notefactory.cpp:451
msgid "Unsupported MIME Type(s)"
msgstr ""
#: src/notefactory.cpp:505
msgid "&Move Here\tShift"
msgstr ""
#: src/notefactory.cpp:506
msgid "&Copy Here\tCtrl"
msgstr ""
#: src/notefactory.cpp:507
msgid "&Link Here\tCtrl+Shift"
msgstr ""
#: src/notefactory.cpp:509
msgid "C&ancel\tEscape"
msgstr ""
#: src/notefactory.cpp:993
msgid "Import Icon as Image"
msgstr ""
#: src/notefactory.cpp:993
msgid "Choose the size of the icon to import as an image:"
msgstr ""
#: src/notefactory.cpp:1006
msgid "Load File Content into a Note"
msgstr ""
#: src/password.cpp:40 src/passwordlayout.ui:16 src/settings.cpp:599
#, no-c-format
msgid "Password Protection"
msgstr ""
#: src/password.cpp:57
msgid "No private key selected."
msgstr ""
#: src/settings.cpp:373
msgid "On left"
msgstr ""
#: src/settings.cpp:374
msgid "On right"
msgstr ""
#: src/settings.cpp:375
msgid "&Basket tree position:"
msgstr ""
#: src/settings.cpp:382 src/settings.cpp:697
msgid "On top"
msgstr ""
#: src/settings.cpp:383 src/settings.cpp:698
msgid "On bottom"
msgstr ""
#: src/settings.cpp:384
msgid "&Filter bar position:"
msgstr ""
#: src/settings.cpp:391
msgid "&Use balloons to report results of global actions"
msgstr ""
#: src/settings.cpp:394
msgid "What are global actions?"
msgstr ""
#: src/settings.cpp:395
msgid ""
"You can configure global shortcuts to do some actions without having to show "
"the main window. For instance, you can paste the clipboard content, take a "
"color from a point of the screen, etc. You can also use the mouse scroll "
"wheel over the system tray icon to change the current basket. Or use the "
"middle mouse button on that icon to paste the current selection."
msgstr ""
#: src/settings.cpp:398
msgid ""
"When doing so, %1 pops up a little balloon message to inform you the action "
"has been successfully done. You can disable that balloon."
msgstr ""
#: src/settings.cpp:399
msgid ""
"Note that those messages are smart enough to not appear if the main window "
"is visible. This is because you already see the result of your actions in "
"the main window."
msgstr ""
#: src/settings.cpp:408
msgid "System Tray Icon"
msgstr ""
#: src/settings.cpp:413
msgid "&Dock in system tray"
msgstr ""
#: src/settings.cpp:422
msgid "&Show current basket icon in system tray icon"
msgstr ""
#: src/settings.cpp:432
msgid "&Hide main window when mouse leaves it for"
msgstr ""
#: src/settings.cpp:434 src/settings.cpp:445
msgid " tenths of seconds"
msgstr ""
#: src/settings.cpp:443
msgid "Show &main window when mouse hovers over the system tray icon for"
msgstr ""
#: src/settings.cpp:517
msgid "Ani&mate changes in baskets"
msgstr ""
#: src/settings.cpp:520
msgid "&Show tooltips in baskets"
msgstr ""
#: src/settings.cpp:523
msgid "&Big notes"
msgstr ""
#: src/settings.cpp:528
msgid "Behavior"
msgstr ""
#: src/settings.cpp:531
msgid "&Transform lines starting with * or - to lists in text editors"
msgstr ""
#: src/settings.cpp:534
msgid "Ask confirmation before &deleting notes"
msgstr ""
#: src/settings.cpp:539
msgid "&Export tags in texts"
msgstr ""
#: src/settings.cpp:545 src/tagsedit.cpp:489
msgid "When does this apply?"
msgstr ""
#: src/settings.cpp:546 src/tagsedit.cpp:490
msgid ""
"It does apply when you copy and paste, or drag and drop notes to a text "
"editor."
msgstr ""
#: src/settings.cpp:547
msgid ""
"If enabled, this property lets you paste the tags as textual equivalents."
msgstr ""
#: src/settings.cpp:548 src/tagsedit.cpp:492
msgid ""
"For instance, a list of notes with the <b>To Do</b> and <b>Done</b> tags are "
"exported as lines preceded by <b>[ ]</b> or <b>[x]</b>, representing an "
"empty checkbox and a checked box."
msgstr ""
#: src/settings.cpp:558
msgid "&Group a new note when clicking on the right of the insertion line"
msgstr ""
#: src/settings.cpp:562
msgid "How to group a new note?"
msgstr ""
#: src/settings.cpp:563
msgid ""
"<p>When this option is enabled, the insertion-line not only allows you to "
"insert notes at the cursor position, but also allows you to group a new note "
"with the one under the cursor:</p>"
msgstr ""
#: src/settings.cpp:565
msgid ""
"<p>Place your mouse between notes, where you want to add a new one.<br>Click "
"on the <b>left</b> of the insertion-line middle-mark to <b>insert</b> a note."
"<br>Click on the <b>right</b> to <b>group</b> a note, with the one <b>below "
"or above</b>, depending on where your mouse is.</p>"
msgstr ""
#: src/settings.cpp:580
msgid "Do nothing"
msgstr ""
#: src/settings.cpp:581
msgid "Paste clipboard"
msgstr ""
#: src/settings.cpp:584
msgid "Insert launcher note"
msgstr ""
#: src/settings.cpp:587
msgid "Insert color from screen"
msgstr ""
#: src/settings.cpp:588
msgid "Load note from file"
msgstr ""
#: src/settings.cpp:589
msgid "Import Launcher from TDE Menu"
msgstr ""
#: src/settings.cpp:590
msgid "Import icon"
msgstr ""
#: src/settings.cpp:591
msgid "&Shift+middle-click anywhere:"
msgstr ""
#: src/settings.cpp:594
msgid "at cursor position"
msgstr ""
#: src/settings.cpp:605
msgid "A&utomatically lock protected baskets when closed for"
msgstr ""
#: src/settings.cpp:609
msgid " minutes"
msgstr ""
#: src/settings.cpp:620
msgid "Use GnuPG agent for &private/public key protected baskets"
msgstr ""
#: src/settings.cpp:696
msgid "&Place of new notes:"
msgstr ""
#: src/settings.cpp:699
msgid "At current note"
msgstr ""
#: src/settings.cpp:716
msgid "&New images size:"
msgstr ""
#: src/settings.cpp:724
msgid "&by"
msgstr ""
#: src/settings.cpp:727
msgid "pixels"
msgstr ""
#: src/settings.cpp:729
msgid "&Visualize..."
msgstr ""
#: src/settings.cpp:737
msgid "View Content of Added Files for the Following Types"
msgstr ""
#: src/settings.cpp:738
msgid "&Plain text"
msgstr ""
#: src/settings.cpp:739
msgid "&HTML page"
msgstr ""
#: src/settings.cpp:740
msgid "&Image or animation"
msgstr ""
#: src/settings.cpp:741
msgid "&Sound"
msgstr ""
#: src/settings.cpp:800
msgid "Conference audio record"
msgstr ""
#: src/settings.cpp:801
msgid "Annual report"
msgstr ""
#: src/settings.cpp:802
msgid "Home folder"
msgstr ""
#: src/settings.cpp:804
#, c-format
msgid "Launch %1"
msgstr ""
#: src/settings.cpp:805
msgid "&Sounds"
msgstr ""
#: src/settings.cpp:806
msgid "&Files"
msgstr ""
#: src/settings.cpp:807
msgid "&Local Links"
msgstr ""
#: src/settings.cpp:808
msgid "&Network Links"
msgstr ""
#: src/settings.cpp:809
msgid "Launc&hers"
msgstr ""
#: src/settings.cpp:846
msgid "Open &text notes with a custom application:"
msgstr ""
#: src/settings.cpp:847
msgid "Open text notes with:"
msgstr ""
#: src/settings.cpp:854
msgid "Open &image notes with a custom application:"
msgstr ""
#: src/settings.cpp:855
msgid "Open image notes with:"
msgstr ""
#: src/settings.cpp:862
msgid "Open a&nimation notes with a custom application:"
msgstr ""
#: src/settings.cpp:863
msgid "Open animation notes with:"
msgstr ""
#: src/settings.cpp:870
msgid "Open so&und notes with a custom application:"
msgstr ""
#: src/settings.cpp:871
msgid "Open sound notes with:"
msgstr ""
#: src/settings.cpp:879
msgid ""
"<p>If checked, the application defined below will be used when opening that "
"type of note.</p><p>Otherwise, the application you've configured in "
"Konqueror will be used.</p>"
msgstr ""
#: src/settings.cpp:888
msgid ""
"<p>Define the application to use for opening that type of note instead of "
"the application configured in Konqueror.</p>"
msgstr ""
#: src/settings.cpp:909
msgid "How to change the application used to open Web links?"
msgstr ""
#: src/settings.cpp:910
msgid ""
"<p>When opening Web links, they are opened in different applications, "
"depending on the content of the link (a Web page, an image, a PDF "
"document...), such as if they were files on your computer.</p><p>Here is how "
"to do if you want every Web addresses to be opened in your Web browser. It "
"is useful if you are not using TDE (if you are using eg. GNOME, XFCE...).</"
"p><ul><li>Open the Trinity Control Center (if it is not available, try to "
"type \"kcontrol\" in a command line terminal);</li><li>Go to the \"TDE "
"Components\" and then \"Components ChooserSelector\" section;</li><li>Choose "
"\"Web Browser\", check \"In the following browser:\" and enter the name of "
"your Web browser (like \"firefox\" or \"epiphany\").</li></ul><p>Now, when "
"you click <i>any</i> link that start with \"http://...\", it will be opened "
"in your Web browser (eg. Mozilla Firefox or Epiphany or...).</p><p>For more "
"fine-grained configuration (like opening only Web pages in your Web "
"browser), read the second help link.</p>"
msgstr ""
#: src/settings.cpp:928
msgid "How to change the applications used to open files and links?"
msgstr ""
#: src/settings.cpp:929
msgid ""
"<p>Here is how to set the application to be used for each type of file. This "
"also applies to Web links if you choose not to open them systematically in a "
"Web browser (see the first help link). The default settings should be good "
"enough for you, but this tip is useful if you are using GNOME, XFCE, or "
"another environment than TDE.</p><p>This is an example of how to open HTML "
"pages in your Web browser (and keep using the other applications for other "
"addresses or files). Repeat these steps for each type of file you want to "
"open in a specific application.</p><ul><li>Open the Trinity Control Center "
"(if it is not available, try to type \"kcontrol\" in a command line "
"terminal);</li><li>Go to the \"TDE Components\" and then \"File Associations"
"\" section;</li><li>In the tree, expand \"text\" and click \"html\";</"
"li><li>In the applications list, add your Web browser as the first entry;</"
"li><li>Do the same for the type \"application -> xhtml+xml\".</li></ul>"
msgstr ""
#: src/softwareimporters.cpp:49
msgid "Import Hierarchy"
msgstr ""
#: src/softwareimporters.cpp:55
msgid "How to Import the Notes?"
msgstr ""
#: src/softwareimporters.cpp:56
msgid "&Keep original hierarchy (all notes in separate baskets)"
msgstr ""
#: src/softwareimporters.cpp:57
msgid "&First level notes in separate baskets"
msgstr ""
#: src/softwareimporters.cpp:58
msgid "&All notes in one basket"
msgstr ""
#: src/softwareimporters.cpp:78
msgid "Import Text File"
msgstr ""
#: src/softwareimporters.cpp:84
msgid "Format of the Text File"
msgstr ""
#: src/softwareimporters.cpp:85
msgid "Notes separated by an &empty line"
msgstr ""
#: src/softwareimporters.cpp:86
msgid "One ¬e per line"
msgstr ""
#: src/softwareimporters.cpp:87
msgid "Notes begin with a &dash (-)"
msgstr ""
#: src/softwareimporters.cpp:88
msgid "Notes begin with a &star (*)"
msgstr ""
#: src/softwareimporters.cpp:89
msgid "&Use another separator:"
msgstr ""
#: src/softwareimporters.cpp:99
msgid "&All in one note"
msgstr ""
#: src/softwareimporters.cpp:241
msgid "From KJots"
msgstr ""
#: src/softwareimporters.cpp:329
msgid "From KNotes"
msgstr ""
#: src/softwareimporters.cpp:400
msgid "From Sticky Notes"
msgstr ""
#: src/softwareimporters.cpp:450
msgid "From Tomboy"
msgstr ""
#: src/softwareimporters.cpp:498
#, c-format
msgid ""
"_: From TextFile.txt\n"
"From %1"
msgstr ""
#: src/softwareimporters.cpp:647
msgid ""
"Can not import that file. It is either corrupted or not a TuxCards file."
msgstr ""
#: src/softwareimporters.cpp:647
msgid "Bad File Format"
msgstr ""
#: src/softwareimporters.cpp:675
msgid ""
"A note is encrypted. The importer does not yet support encrypted notes. "
"Please remove the encryption with TuxCards and re-import the file."
msgstr ""
#: src/softwareimporters.cpp:675
msgid "Encrypted Notes not Supported Yet"
msgstr ""
#: src/softwareimporters.cpp:677
msgid ""
"<font color='red'><b>Encrypted note.</b><br>The importer do not support "
"encrypted notes yet. Please remove the encryption with TuxCards and re-"
"import the file.</font>"
msgstr ""
#: src/systemtray.cpp:144
msgid ""
"<p>Closing the main window will keep %1 running in the system tray. Use "
"<b>Quit</b> from the <b>Basket</b> menu to quit the application.</p>"
msgstr ""
#: src/systemtray.cpp:190 src/systemtray.cpp:195
msgid "Docking in System Tray"
msgstr ""
#: src/systemtray.cpp:241
msgid "Pasted selection to basket <i>%1</i>"
msgstr ""
#: src/systemtray.cpp:276
msgid "&Minimize"
msgstr ""
#: src/systemtray.cpp:278
msgid "&Restore"
msgstr ""
#: src/systemtray.cpp:438
msgid "%1 (Locked)"
msgstr ""
#: src/tag.cpp:84
msgid "%1: %2"
msgstr ""
#: src/tag.cpp:548
msgid "To Do"
msgstr ""
#: src/tag.cpp:548
msgid "Unchecked"
msgstr ""
#: src/tag.cpp:548
msgid "Done"
msgstr ""
#: src/tag.cpp:549
msgid "Progress"
msgstr ""
#: src/tag.cpp:549
#, c-format
msgid "0 %"
msgstr ""
#: src/tag.cpp:549
#, c-format
msgid "25 %"
msgstr ""
#: src/tag.cpp:550
#, c-format
msgid "50 %"
msgstr ""
#: src/tag.cpp:550
#, c-format
msgid "75 %"
msgstr ""
#: src/tag.cpp:550
#, c-format
msgid "100 %"
msgstr ""
#: src/tag.cpp:603
msgid "Priority"
msgstr ""
#: src/tag.cpp:603
msgid "Low"
msgstr ""
#: src/tag.cpp:603
msgid "Medium"
msgstr ""
#: src/tag.cpp:604
msgid "High"
msgstr ""
#: src/tag.cpp:604
msgid "Preference"
msgstr ""
#: src/tag.cpp:604
msgid "Bad"
msgstr ""
#: src/tag.cpp:605
msgid "Good"
msgstr ""
#: src/tag.cpp:605
msgid "Excellent"
msgstr ""
#: src/tag.cpp:605
msgid "Highlight"
msgstr ""
#: src/tag.cpp:671
msgid "Important"
msgstr ""
#: src/tag.cpp:671
msgid "Very Important"
msgstr ""
#: src/tag.cpp:672
msgid "Idea"
msgstr ""
#: src/tag.cpp:672
msgid ""
"_: The initial of 'Idea'\n"
"I."
msgstr ""
#: src/tag.cpp:672
msgid "Title"
msgstr ""
#: src/tag.cpp:673
msgid "Code"
msgstr ""
#: src/tag.cpp:673
msgid "Work"
msgstr ""
#: src/tag.cpp:673
msgid ""
"_: The initial of 'Work'\n"
"W."
msgstr ""
#: src/tag.cpp:691
msgid "Personal"
msgstr ""
#: src/tag.cpp:691
msgid ""
"_: The initial of 'Personal'\n"
"P."
msgstr ""
#: src/tag.cpp:691
msgid "Funny"
msgstr ""
#: src/tagsedit.cpp:211 src/tagsedit.cpp:231
msgid ""
"_: Tag name (shortcut)\n"
"%1 (%2)"
msgstr ""
#: src/tagsedit.cpp:329
msgid "Customize Tags"
msgstr ""
#: src/tagsedit.cpp:337
msgid "Ne&w Tag"
msgstr ""
#: src/tagsedit.cpp:338
msgid "New St&ate"
msgstr ""
#: src/tagsedit.cpp:354
msgid "Move Up (Ctrl+Shift+Up)"
msgstr ""
#: src/tagsedit.cpp:355
msgid "Move Down (Ctrl+Shift+Down)"
msgstr ""
#: src/tagsedit.cpp:379
msgid "Tag"
msgstr ""
#: src/tagsedit.cpp:386
msgid ""
"_: Remove tag shortcut\n"
"&Remove"
msgstr ""
#: src/tagsedit.cpp:387
msgid "S&hortcut:"
msgstr ""
#: src/tagsedit.cpp:391
msgid "&Inherited by new sibling notes"
msgstr ""
#: src/tagsedit.cpp:402 src/tagsedit.cpp:1030 src/tagsedit.cpp:1046
msgid "State"
msgstr ""
#: src/tagsedit.cpp:406
msgid "Na&me:"
msgstr ""
#: src/tagsedit.cpp:413
msgid ""
"_: Remove tag emblem\n"
"Remo&ve"
msgstr ""
#: src/tagsedit.cpp:414
msgid "&Emblem:"
msgstr ""
#: src/tagsedit.cpp:430
msgid "&Background:"
msgstr ""
#: src/tagsedit.cpp:459
msgid "Strike Through"
msgstr ""
#: src/tagsedit.cpp:461
msgid "&Text:"
msgstr ""
#: src/tagsedit.cpp:471
msgid "Co&lor:"
msgstr ""
#: src/tagsedit.cpp:475
msgid "&Font:"
msgstr ""
#: src/tagsedit.cpp:478
msgid "&Size:"
msgstr ""
#: src/tagsedit.cpp:481
msgid "Te&xt equivalent:"
msgstr ""
#: src/tagsedit.cpp:491
msgid ""
"If filled, this property lets you paste this tag or this state as textual "
"equivalent."
msgstr ""
#: src/tagsedit.cpp:500
msgid "On ever&y line"
msgstr ""
#: src/tagsedit.cpp:505
msgid "What does it mean?"
msgstr ""
#: src/tagsedit.cpp:506
msgid ""
"When a note has several lines, you can choose to export the tag or the state "
"on the first line or on every line of the note."
msgstr ""
#: src/tagsedit.cpp:508
msgid ""
"In the example above, the tag of the top note is only exported on the first "
"line, while the tag of the bottom note is exported on every line of the note."
msgstr ""
#: src/tagsedit.cpp:905
msgid ""
"Deleting the tag will remove it from every note it is currently assigned to."
msgstr ""
#: src/tagsedit.cpp:906
msgid "Confirm Delete Tag"
msgstr ""
#: src/tagsedit.cpp:907
msgid "Delete Tag"
msgstr ""
#: src/tagsedit.cpp:912
msgid ""
"Deleting the state will remove the tag from every note the state is "
"currently assigned to."
msgstr ""
#: src/tagsedit.cpp:913
msgid "Confirm Delete State"
msgstr ""
#: src/tagsedit.cpp:914
msgid "Delete State"
msgstr ""
#: src/variouswidgets.cpp:47
msgid "..."
msgstr ""
#: src/variouswidgets.cpp:84 src/variouswidgets.cpp:199
msgid "16 by 16 pixels"
msgstr ""
#: src/variouswidgets.cpp:85 src/variouswidgets.cpp:200
msgid "22 by 22 pixels"
msgstr ""
#: src/variouswidgets.cpp:86 src/variouswidgets.cpp:201
msgid "32 by 32 pixels"
msgstr ""
#: src/variouswidgets.cpp:87 src/variouswidgets.cpp:202
msgid "48 by 48 pixels"
msgstr ""
#: src/variouswidgets.cpp:88 src/variouswidgets.cpp:203
msgid "64 by 64 pixels"
msgstr ""
#: src/variouswidgets.cpp:89 src/variouswidgets.cpp:204
msgid "128 by 128 pixels"
msgstr ""
#: src/variouswidgets.cpp:129
msgid ""
"Resize the window to select the image size\n"
"and close it or press Escape to accept changes."
msgstr ""
#: src/basket_part.rc:5 src/basketui.rc:5
#, no-c-format
msgid "&Basket"
msgstr ""
#: src/basket_part.rc:10 src/basket_part.rc:157 src/basketui.rc:10
#: src/basketui.rc:161
#, no-c-format
msgid "&Export"
msgstr ""
#: src/basket_part.rc:20 src/basket_part.rc:167 src/basket_part.rc:185
#: src/basketui.rc:20 src/basketui.rc:171 src/basketui.rc:189
#, no-c-format
msgid "&Import"
msgstr ""
#: src/basket_part.rc:51 src/basketui.rc:54
#, no-c-format
msgid "&Go"
msgstr ""
#: src/basket_part.rc:58 src/basketui.rc:61
#, no-c-format
msgid "&Note"
msgstr ""
#: src/basket_part.rc:73 src/basketui.rc:76
#, no-c-format
msgid "&Tags"
msgstr ""
#: src/basket_part.rc:128 src/basketui.rc:132
#, no-c-format
msgid "Text Formating Toolbar"
msgstr ""
#: src/kicondialogui.ui:31
#, no-c-format
msgid "TDEIconDialogUI"
msgstr ""
#: src/kicondialogui.ui:105
#, no-c-format
msgid "Fi<er:"
msgstr ""
#: src/passwordlayout.ui:44
#, no-c-format
msgid "&No protection"
msgstr ""
#: src/passwordlayout.ui:52
#, no-c-format
msgid "Protect basket with a &password"
msgstr ""
#: src/passwordlayout.ui:76
#, no-c-format
msgid "Protect basket with private &key:"
msgstr ""
|