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
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
|
# Czech translation for gnome-software.
# Copyright (C) 2013 gnome-software's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-software package.
#
# Petr Kovar <pknbe@volny.cz>, 2015.
# Marek Černocký <marek@manet.cz>, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020.
#
msgid ""
msgstr ""
"Project-Id-Version: gnome-software\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-software/issues\n"
"POT-Creation-Date: 2020-09-01 15:47+0000\n"
"PO-Revision-Date: 2020-08-28 20:16+0200\n"
"Last-Translator: Marek Černocký <marek@manet.cz>\n"
"Language-Team: čeština <gnome-cs-list@gnome.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Poedit 2.3\n"
"X-Project-Style: gnome\n"
#: data/appdata/org.gnome.Software.appdata.xml.in:7
msgid "GNOME Software"
msgstr "Software GNOME"
#: data/appdata/org.gnome.Software.appdata.xml.in:8
msgid "Application manager for GNOME"
msgstr "Správa aplikací pro GNOME"
#: data/appdata/org.gnome.Software.appdata.xml.in:10
msgid ""
"Software allows you to find and install new applications and system "
"extensions and remove existing installed applications."
msgstr ""
"Aplikace Software umožňuje vyhledávat a instalovat aplikace a systémová "
"rozšíření a odebírat stávající nainstalované aplikace."
#: data/appdata/org.gnome.Software.appdata.xml.in:14
msgid ""
"GNOME Software showcases featured and popular applications with useful "
"descriptions and multiple screenshots per application. Applications can be "
"found either through browsing the list of categories or by searching. It "
"also allows you to update your system using an offline update."
msgstr ""
"Software GNOME vám představí významné a oblíbené aplikace pomocí "
"srozumitelného popisu a několika snímků obrazovky. Aplikace můžete najít buď "
"ručním procházení podle kategorií nebo pomocí textového vyhledávání. Rovněž "
"můžete aktualizovat svůj systém a to i bez aktuálního připojení k Internetu."
#: data/appdata/org.gnome.Software.appdata.xml.in:25
msgid "Overview panel"
msgstr "Panel s přehledem"
#: data/appdata/org.gnome.Software.appdata.xml.in:29
msgid "Details panel"
msgstr "Panel s podrobnostmi o softwaru"
#: data/appdata/org.gnome.Software.appdata.xml.in:33
msgid "Installed panel"
msgstr "Panel s nainstalovaným softwarem"
#: data/appdata/org.gnome.Software.appdata.xml.in:37
msgid "Updates panel"
msgstr "Panel s aktualizacemi"
#: data/appdata/org.gnome.Software.appdata.xml.in:41
msgid "The update details"
msgstr "Podrobnosti o aktualizaci"
#: data/appdata/org.gnome.Software.appdata.xml.in:1517
msgid "The GNOME Project"
msgstr "Projekt GNOME"
#: data/org.gnome.software.external-appstream.policy.in.in:11
msgid "Install an appstream file into a system location"
msgstr "Instalovat soubor appstream do systémového umístění"
#: data/org.gnome.software.external-appstream.policy.in.in:12
msgid "Installing an appstream file into a system location"
msgstr "Instalování souboru appstream do systémového umístění"
#: data/org.gnome.software.gschema.xml:5
msgid "A list of compatible projects"
msgstr "Seznam kompatibilních projektů"
#: data/org.gnome.software.gschema.xml:6
msgid ""
"This is a list of compatible projects we should show such as GNOME, KDE and "
"XFCE."
msgstr ""
"Seznam kompatibilních projektů, jako je GNOME, KDE a XFCE, které by se měly "
"zobrazovat."
#: data/org.gnome.software.gschema.xml:10
msgid "Whether to manage updates and upgrades in GNOME Software"
msgstr "Zda se o aktualizace a povýšení starat v Softwaru GNOME"
#: data/org.gnome.software.gschema.xml:11
msgid ""
"If disabled, GNOME Software will hide the updates panel, not perform any "
"automatic updates actions or prompt for upgrades."
msgstr ""
"Když je vypnuto, Software GNOME skryje panel s aktualizacemi a nebude "
"provádět automatické činnosti ohledně aktualizací, nebo se ptát na povýšení."
#: data/org.gnome.software.gschema.xml:15
msgid "Automatically download and install updates"
msgstr "Automaticky stahovat a instalovat aktualizace"
#: data/org.gnome.software.gschema.xml:16
msgid ""
"If enabled, GNOME Software automatically downloads software updates in the "
"background, also installing ones that do not require a reboot."
msgstr ""
"Když je zapnuto, bude Software GNOME na pozadí automaticky stahovat "
"softwarové aktualizace a ty, které nevyžadují restart, také nainstaluje."
#: data/org.gnome.software.gschema.xml:20
msgid "Notify the user about software updated in the background"
msgstr "Oznamovat uživateli softwarové aktualizace na pozadí"
#: data/org.gnome.software.gschema.xml:21
msgid ""
"If enabled, GNOME Software notifies the user about updates that happened "
"whilst the user was idle."
msgstr ""
"Když je zapnuto, oznamuje Software GNOME uživateli, když během jeho "
"nečinnosti proběhnou na pozadí aktualizace."
#: data/org.gnome.software.gschema.xml:25
msgid "Whether to automatically refresh when on a metered connection"
msgstr "Zda se má automaticky aktualizovat informace na měřeném připojení"
#: data/org.gnome.software.gschema.xml:26
msgid ""
"If enabled, GNOME Software automatically refreshes in the background even "
"when using a metered connection (eventually downloading some metadata, "
"checking for updates, etc., which may incur in costs for the user)."
msgstr ""
"Když je zapnuto, bude Software GNOME na pozadí automaticky aktualizovat "
"informace, i v případě, že připojení není účtované paušální částkou "
"(případně stahovat některá metadata, kontrolovat aktualizace atd., což se "
"může projevit v ceně za připojení)."
#: data/org.gnome.software.gschema.xml:30
msgid "Whether it’s the very first run of GNOME Software"
msgstr "Zda se jedná o úplně první spuštění Softwaru GNOME"
#: data/org.gnome.software.gschema.xml:34
msgid "Show star ratings next to applications"
msgstr "Zobrazovat vedle aplikace hodnocení hvězdičkami"
#: data/org.gnome.software.gschema.xml:38
msgid "Filter applications based on the default branch set for the remote"
msgstr ""
"Filtrovat aplikace podle výchozí větve nastavené pro vzdálený protějšek"
#: data/org.gnome.software.gschema.xml:42
msgid "Non-free applications show a warning dialog before install"
msgstr "Před instalací nesvobodných aplikací zobrazit varovné dialogové okno"
#: data/org.gnome.software.gschema.xml:43
msgid ""
"When non-free applications are installed a warning dialog can be shown. This "
"controls if that dialog is suppressed."
msgstr ""
"Když se instaluje nesvobodná aplikace, může být zobrazeno varovné dialogové "
"okno. Tímto se řídí potlačení tohoto dialogového okna."
#: data/org.gnome.software.gschema.xml:47
msgid "A list of popular applications"
msgstr "Seznam populárních aplikací"
#: data/org.gnome.software.gschema.xml:48
msgid "A list of applications to use, overriding the system defined ones."
msgstr ""
"Seznam aplikací, které se mají použít. Přepíše ty definované v systému."
#: data/org.gnome.software.gschema.xml:52
msgid "The last update check timestamp"
msgstr "Datum a čas poslední kontroly aktualizací"
#: data/org.gnome.software.gschema.xml:56
msgid "The last upgrade notification timestamp"
msgstr "Datum a čas posledního upozornění na povýšení"
#: data/org.gnome.software.gschema.xml:60
msgid "The timestamp of the first security update, cleared after update"
msgstr "Datum a čas první bezpečnostní aktualizace, smaže se po aktualizaci"
#: data/org.gnome.software.gschema.xml:64
msgid "The last update timestamp"
msgstr "Datum a čas poslední aktualizace"
#: data/org.gnome.software.gschema.xml:68
msgid "The last timestamp when the system was online and got any updates"
msgstr ""
"Datum a čas, kdy byl systém naposledy on-line a dostal nějaké aktualizace"
#: data/org.gnome.software.gschema.xml:72
msgid "The age in seconds to verify the upstream screenshot is still valid"
msgstr ""
"Doba v sekundách, po které se má ověřit, jestli je snímek obrazovky z "
"hlavního zdroje stále platný"
#: data/org.gnome.software.gschema.xml:73
msgid ""
"Choosing a larger value will mean less round-trips to the remote server but "
"updates to the screenshots may take longer to show to the user. A value of 0 "
"means to never check the server if the image already exists in the cache."
msgstr ""
"Čím větší hodnotu zvolíte, tím méně návštěv vzdáleného serveru se provede, "
"ale může trvat déle, než se uživateli zobrazí aktuálnější snímek. Hodnota 0 "
"znamená, že se kontroly na serveru nemají provádět vůbec, pokud je již "
"snímek v mezipaměti."
#: data/org.gnome.software.gschema.xml:82
msgid "The server to use for application reviews"
msgstr "Server, který se má používat pro recenze aktualizací"
#: data/org.gnome.software.gschema.xml:86
msgid "The minimum karma score for reviews"
msgstr "Minimální karma pro recenze"
#: data/org.gnome.software.gschema.xml:87
msgid "Reviews with karma less than this number will not be shown."
msgstr "Recenze s karmou nižší než toto číslo nebudou zobrazovány."
#: data/org.gnome.software.gschema.xml:91
msgid "A list of official repositories that should not be considered 3rd party"
msgstr ""
"Seznam oficiálních repozitářů, které by neměly být považovány za třetí stranu"
#: data/org.gnome.software.gschema.xml:95
msgid "A list of official repositories that should be considered free software"
msgstr ""
"Seznam oficiálních repozitářů, které by měly být považovány za svobodný "
"software"
#: data/org.gnome.software.gschema.xml:99
msgid ""
"The licence URL to use when an application should be considered free software"
msgstr ""
"Adresa URL licence, která se má použít, když má aplikace považována za "
"svobodný software"
#: data/org.gnome.software.gschema.xml:103
msgid "Install bundled applications for all users on the system where possible"
msgstr ""
"Kde je to možné, instalovat všem uživatelům v systému přibalené aplikace"
#: data/org.gnome.software.gschema.xml:107
msgid "Allow access to the Software Repositories dialog"
msgstr "Umožnit přístup k dialogovému oknu s repozitáři softwaru"
#: data/org.gnome.software.gschema.xml:111
msgid "Offer upgrades for pre-releases"
msgstr "Nabízet povýšení na předběžná vydání"
#: data/org.gnome.software.gschema.xml:115
msgid "Show some UI elements informing the user that an app is non-free"
msgstr ""
"Zobrazovat v rozhraní prvky, které informují uživatele, že aplikace není "
"svobodná"
#: data/org.gnome.software.gschema.xml:119
msgid "Show the prompt to install nonfree software repositories"
msgstr "Zobrazovat dotaz na instalaci repozitářů nesvobodného softwaru"
#: data/org.gnome.software.gschema.xml:123
msgid "Show the installed size for apps in the list of installed applications"
msgstr ""
"Zobrazovat velikost instalace pro aplikace v seznamu nainstalovaných aplikací"
#. Translators: Replace the link with a version in your language, e.g. 'https://de.wikipedia.org/wiki/Proprietäre_Software'. Remember to include ''.
#: data/org.gnome.software.gschema.xml:127
msgid "'https://en.wikipedia.org/wiki/Proprietary_software'"
msgstr "'https://cs.wikipedia.org/wiki/Propriet%C3%A1rn%C3%AD_software'"
#: data/org.gnome.software.gschema.xml:128
msgid "The URI that explains nonfree and proprietary software"
msgstr "Adresa URI, která vysvětluje nesvobodný a komerční software"
#: data/org.gnome.software.gschema.xml:132
msgid ""
"A list of URLs pointing to appstream files that will be downloaded into an "
"app-info folder"
msgstr ""
"Seznam adres URL ukazujících na soubory appstream, které byly stažené do "
"složky app-info"
#: data/org.gnome.software.gschema.xml:136
msgid "Install the AppStream files to a system-wide location for all users"
msgstr ""
"Instalovat soubory AppStream do celosystémového umístění pro všechny "
"uživatele"
#: data/org.gnome.software.gschema.xml:140
msgid "Enable GNOME Shell extensions repository"
msgstr "Povolit repozitář s rozšířeními pro GNOME Shell"
#: data/org.gnome.software.gschema.xml:147
msgid "A string storing the gnome-online-account id used to login"
msgstr "Řetězec uchovávající ID gnome-online-account pro přihlášení"
#: src/gnome-software-local-file.desktop.in:3
msgid "Software Install"
msgstr "Instalace softwaru"
#: src/gnome-software-local-file.desktop.in:4
msgid "Install selected software on the system"
msgstr "Nainstalujte si vybraný software do systému"
#: src/gnome-software.ui:10
msgid "Select All"
msgstr "Vybrat vše"
#: src/gnome-software.ui:16
msgid "Select None"
msgstr "Zrušit výběr"
#: src/gnome-software.ui:35
msgid "_Software Repositories"
msgstr "_Softwarové repozitáře"
#: src/gnome-software.ui:40
msgid "_Update Preferences"
msgstr "Předvolby akt_ualizací"
#: src/gnome-software.ui:48 src/org.gnome.Software.desktop.in:3
msgid "Software"
msgstr "Software"
#: src/gnome-software.ui:64 src/gs-update-dialog.ui:20
msgid "Go back"
msgstr "Přejít zpět"
#. Translators: A label for a button to show all available software.
#: src/gnome-software.ui:96
msgid "_Explore"
msgstr "_Procházet"
#. Translators: A label for a button to show only software which is already installed.
#: src/gnome-software.ui:119
msgid "_Installed"
msgstr "Na_instalované"
#. Translators: A label for a button to show only updates which are available to install.
#: src/gnome-software.ui:159
msgid "_Updates"
msgstr "_Aktualizace"
#: src/gnome-software.ui:228
msgid "Search"
msgstr "Hledat"
#. Translators: This is a label in the header bar, followed by a drop down to choose between different source repos
#. TRANSLATORS: this refers to where the app came from
#: src/gnome-software.ui:272 src/gs-app-row.c:294 src/gs-details-page.ui:886
msgid "Source"
msgstr "Zdroj"
#. button in the info bar
#: src/gnome-software.ui:377 src/gs-repos-dialog.ui:5 src/gs-repos-dialog.ui:18
msgid "Software Repositories"
msgstr "Softwarové repozitáře"
#. button in the info bar
#: src/gnome-software.ui:385
msgid "Examine Disk"
msgstr "Prozkoumat disk"
#. button in the info bar
#. TRANSLATORS: this is a link to the
#. * control-center network panel
#: src/gnome-software.ui:393 src/gs-updates-page.c:922
msgid "Network Settings"
msgstr "Nastavení sítě"
#. button in the info bar
#: src/gnome-software.ui:401
msgid "Restart Now"
msgstr "Restartovat hned"
#. button in the info bar
#: src/gnome-software.ui:409
msgid "More Information"
msgstr "Další informace"
#: src/gnome-software.ui:461 src/gs-metered-data-dialog.ui:5
#: src/gs-metered-data-dialog.ui:17
msgid "Automatic Updates Paused"
msgstr "Automatické aktualizace jsou pozastaveny"
#: src/gnome-software.ui:480
msgid "Find Out _More"
msgstr "Dozvědět se _více…"
#. TRANSLATORS: this is a locally downloaded package
#: lib/gs-app.c:4559
msgid "Local file"
msgstr "Místní soubor"
#: lib/gs-app.c:4611
msgid "Package"
msgstr "Balíček"
#: src/gs-app-addon-row.c:83 src/gs-app-row.c:401
msgid "Pending"
msgstr "Čeká na zpracování"
#: src/gs-app-addon-row.c:89 src/gs-app-row.ui:163 src/gs-app-tile.ui:51
#: src/gs-feature-tile.c:88
msgid "Installed"
msgstr "Nainstalováno"
#. TRANSLATORS: this is a button next to the search results that
#. * shows the status of an application being installed
#. TRANSLATORS: this is a button in the software repositories dialog
#. that shows the status of a repo being installed
#: src/gs-app-addon-row.c:93 src/gs-app-row.c:172 src/gs-details-page.c:351
#: src/gs-third-party-repo-row.c:100
msgid "Installing"
msgstr "Instaluje se"
#. TRANSLATORS: this is a button next to the search results that
#. * shows the status of an application being erased
#. TRANSLATORS: this is a button in the software repositories dialog
#. that shows the status of a repo being removed
#: src/gs-app-addon-row.c:97 src/gs-app-row.c:178 src/gs-repo-row.c:126
#: src/gs-third-party-repo-row.c:107
msgid "Removing"
msgstr "Odebírá se"
#. TRANSLATORS: this is a command line option
#: src/gs-application.c:110
msgid "Start up mode: either ‘updates’, ‘updated’, ‘installed’ or ‘overview’"
msgstr ""
"Režim spuštění: buď „updates“ (aktualizace), „updated“ (aktualizované), "
"„installed“ (nainstalované) nebo „overview“ (přehled)"
#: src/gs-application.c:110
msgid "MODE"
msgstr "REŽIM"
#: src/gs-application.c:112
msgid "Search for applications"
msgstr "Hledat aplikaci"
#: src/gs-application.c:112
msgid "SEARCH"
msgstr "HLEDAT"
#: src/gs-application.c:114
msgid "Show application details (using application ID)"
msgstr "Zobrazit informace o aplikaci (pomocí ID aplikace)"
#: src/gs-application.c:114 src/gs-application.c:118
msgid "ID"
msgstr "ID"
#: src/gs-application.c:116
msgid "Show application details (using package name)"
msgstr "Zobrazit informace o aplikaci (pomocí názvu balíčku)"
#: src/gs-application.c:116
msgid "PKGNAME"
msgstr "NÁZEV_BALÍČKU"
#: src/gs-application.c:118
msgid "Install the application (using application ID)"
msgstr "Nainstalovat aplikaci (pomocí ID aplikace)"
#: src/gs-application.c:120
msgid "Open a local package file"
msgstr "Otevřít místní soubor s balíčkem"
#: src/gs-application.c:120
msgid "FILENAME"
msgstr "NÁZEV_SOUBORU"
#: src/gs-application.c:122
msgid ""
"The kind of interaction expected for this action: either ‘none’, ‘notify’, "
"or ‘full’"
msgstr ""
"Pro tuto činnost je očekáván druh interakce: buď „none“ (nic), "
"„notify“ (upozornit) nebo „full“ (úplná)"
#: src/gs-application.c:125
msgid "Show verbose debugging information"
msgstr "Zobrazovat podrobné ladicí informace"
#: src/gs-application.c:127
msgid "Installs any pending updates in the background"
msgstr "Nainstalovat na pozadí případné čekající aktualizace"
#: src/gs-application.c:129
msgid "Show update preferences"
msgstr "Zobrazit předvolby aktualizací"
#: src/gs-application.c:131
msgid "Quit the running instance"
msgstr "Ukončit běžící instanci"
#: src/gs-application.c:133
msgid "Prefer local file sources to AppStream"
msgstr "Upřednostnit zdroje v místních souborech před zdroji on-line"
#: src/gs-application.c:135
msgid "Show version number"
msgstr "Zobrazit číslo verze"
#: src/gs-application.c:328
msgid "translator-credits"
msgstr "Marek Černocký <marek@manet.cz>"
#. TRANSLATORS: this is the title of the about window
#. TRANSLATORS: this is the menu item that opens the about window
#: src/gs-application.c:333 src/gs-shell.c:2123
msgid "About Software"
msgstr "O aplikaci Software"
#. TRANSLATORS: well, we seem to think so, anyway
#: src/gs-application.c:336
msgid "A nice way to manage the software on your system."
msgstr "Elegantní způsob správy softwaru ve vašem počítači."
#. TRANSLATORS: we tried to show an app that did not exist
#: src/gs-application.c:564
msgid "Sorry! There are no details for that application."
msgstr "Omlouváme se, ale pro tuto aplikaci nejsou k dispozici detaily."
#. TRANSLATORS: this is a button next to the search results that
#. * allows the application to be easily installed
#: src/gs-app-row.c:127
msgid "Visit website"
msgstr "Navštívit webové stránky"
#. TRANSLATORS: this is a button next to the search results that
#. * allows the application to be easily installed.
#. * The ellipsis indicates that further steps are required
#: src/gs-app-row.c:132
msgid "Install…"
msgstr "Instalovat…"
#. TRANSLATORS: this is a button next to the search results that
#. * allows to cancel a queued install of the application
#: src/gs-app-row.c:139 src/gs-updates-section.c:479
msgid "Cancel"
msgstr "Zrušit"
#. TRANSLATORS: this is a button next to the search results that
#. * allows the application to be easily installed
#. TRANSLATORS: button text
#. TRANSLATORS: update the fw
#: src/gs-app-row.c:146 src/gs-common.c:288 src/gs-page.c:334
msgid "Install"
msgstr "Instalovat"
#. TRANSLATORS: this is a button in the updates panel
#. * that allows the app to be easily updated live
#: src/gs-app-row.c:153
msgid "Update"
msgstr "Aktualizovat"
#. TRANSLATORS: this is a button next to the search results that
#. * allows the application to be easily removed
#. TRANSLATORS: this is button text to remove the application
#. TRANSLATORS: this is button text to remove the repo
#: src/gs-app-row.c:157 src/gs-app-row.c:166 src/gs-page.c:492
#: src/gs-repos-dialog.c:326
msgid "Remove"
msgstr "Odebrat"
#. TRANSLATORS: during the update the device
#. * will restart into a special update-only mode
#: src/gs-app-row.c:284
msgid "Device cannot be used during update."
msgstr "Zařízení nelze během aktualizace používat."
#: src/gs-app-row.c:459 src/gs-update-dialog.ui:182
msgid "Requires additional permissions"
msgstr "Vyžaduje dodatečná oprávnění"
#. TRANSLATORS: This is a description for entering user/password
#: src/gs-basic-auth-dialog.c:82
#, c-format
msgid "Login required remote %s (realm %s)"
msgstr "Vyžadováno přihlášení vzdáleným %s (sféra %s)"
#: src/gs-basic-auth-dialog.ui:10
msgid "Login Required"
msgstr "Vyžadováno přihlášení"
#: src/gs-basic-auth-dialog.ui:19 src/gs-details-page.ui:252
#: src/gs-removal-dialog.ui:32 src/gs-review-dialog.ui:22
#: src/gs-upgrade-banner.ui:112
msgid "_Cancel"
msgstr "_Zrušit"
#: src/gs-basic-auth-dialog.ui:39
msgid "_Login"
msgstr "Přih_lásit"
#: src/gs-basic-auth-dialog.ui:99
msgid "_User"
msgstr "_Uživatel"
#: src/gs-basic-auth-dialog.ui:119
msgid "_Password"
msgstr "_Heslo"
#. TRANSLATORS: this is where all applications that don't
#. * fit in other groups are put
#: lib/gs-category.c:178
msgid "Other"
msgstr "Ostatní"
#. TRANSLATORS: this is a subcategory matching all the
#. * different apps in the parent category, e.g. "Games"
#: lib/gs-category.c:183
msgid "All"
msgstr "Vše"
#. TRANSLATORS: this is a subcategory of featured apps
#: lib/gs-category.c:187
msgid "Featured"
msgstr "Významné"
#. TRANSLATORS: This is a heading on the categories page. %s gets
#. replaced by the category name, e.g. 'Graphics & Photography'
#: src/gs-category-page.c:453
#, c-format
msgid "Featured %s"
msgstr "Významné v kategorii %s"
#. Translators: A label for a button to sort apps by their rating.
#: src/gs-category-page.ui:26 src/gs-review-dialog.ui:74
msgid "Rating"
msgstr "Hodnocení"
#. Translators: A label for a button to sort apps alphabetically.
#. TRANSLATORS: This is followed by a file name, e.g. "Name: gedit.rpm"
#: src/gs-category-page.ui:32 src/gs-origin-popover-row.c:59
msgid "Name"
msgstr "Název"
#. TRANSLATORS: This is a label for the category filter drop down, which all together can read e.g. 'Show Vector Graphics'.
#: src/gs-category-page.ui:111
msgid "Show"
msgstr "Zobrazovat"
#: src/gs-category-page.ui:128
msgid "Subcategories filter menu"
msgstr "Nabídka filtrování podkategorií"
#. TRANSLATORS: This is a label for the category sort drop down, which all together can read e.g. 'Sort Top Rated'.
#: src/gs-category-page.ui:159
msgid "Sort"
msgstr "Řadit podle"
#: src/gs-category-page.ui:175
msgid "Subcategories sorting menu"
msgstr "Nabídka řazení podkategorií"
#. TRANSLATORS: the user isn't reading the question
#: lib/gs-cmd.c:191
#, c-format
msgid "Please enter a number from 1 to %u: "
msgstr "Zadejte prosím číslo od 1 do %u: "
#. TRANSLATORS: asking the user to choose an app from a list
#: lib/gs-cmd.c:254
msgid "Choose an application:"
msgstr "Vyberte aplikaci:"
#. TRANSLATORS: this is the summary of a notification that OS updates
#. * have been successfully installed
#: src/gs-common.c:124
msgid "OS updates are now installed"
msgstr "Aktualizace OS jsou nyní nainstalované"
#. TRANSLATORS: this is the body of a notification that OS updates
#. * have been successfully installed
#: src/gs-common.c:127
msgid "Recently installed updates are available to review"
msgstr "Nedávno nainstalované aktualizace jsou k dispozici pro recenze"
#. TRANSLATORS: this is the summary of a notification that an application
#. * has been successfully installed
#. TRANSLATORS: this is the summary of a notification that a component
#. * has been successfully installed
#: src/gs-common.c:132 src/gs-common.c:146
#, c-format
msgid "%s is now installed"
msgstr "Aplikace %s je nyní nainstalována"
#. TRANSLATORS: an application has been installed, but
#. * needs a reboot to complete the installation
#: src/gs-common.c:136 src/gs-common.c:150
msgid "A restart is required for the changes to take effect."
msgstr "Aby se změny projevily, je zapotřebí provést restart."
#. TRANSLATORS: this is the body of a notification that an application
#. * has been successfully installed
#: src/gs-common.c:140
msgid "Application is ready to be used."
msgstr "Aplikace je připravená k použití."
#. TRANSLATORS: button text
#: src/gs-common.c:160 src/gs-common.c:650
msgid "Restart"
msgstr "Restartovat"
#. TRANSLATORS: this is button that opens the newly installed application
#: src/gs-common.c:164
msgid "Launch"
msgstr "Spustit"
#. TRANSLATORS: window title
#: src/gs-common.c:222
msgid "Install Third-Party Software?"
msgstr "Instalovat software třetí strany?"
#. TRANSLATORS: window title
#: src/gs-common.c:226 src/gs-repos-dialog.c:235
msgid "Enable Third-Party Software Repository?"
msgstr "Povolit repozitář softwaru třetí strany?"
#. TRANSLATORS: the replacements are as follows:
#. * 1. Application name, e.g. "Firefox"
#. * 2. Software repository name, e.g. fedora-optional
#.
#: src/gs-common.c:242
#, c-format
msgid ""
"%s is not <a href=\"https://en.wikipedia.org/wiki/Free_and_open-"
"source_software\">free and open source software</a>, and is provided by “%s”."
msgstr ""
"%s není <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software"
"\">svobodný a otevřený software</a> a poskytuje jej „%s“."
#. TRANSLATORS: the replacements are as follows:
#. * 1. Application name, e.g. "Firefox"
#. * 2. Software repository name, e.g. fedora-optional
#: src/gs-common.c:252
#, c-format
msgid "%s is provided by “%s”."
msgstr "%s poskytuje „%s“."
#: src/gs-common.c:261
msgid "This software repository must be enabled to continue installation."
msgstr ""
"Aby bylo možné pokračovat v instalaci, je nutné povolit tento repozitář "
"softwaru."
#. TRANSLATORS: Laws are geographical, urgh...
#: src/gs-common.c:271
#, c-format
msgid "It may be illegal to install or use %s in some countries."
msgstr ""
"V některých zemích nemusí být instalace a používání softwaru %s legální."
#. TRANSLATORS: Laws are geographical, urgh...
#: src/gs-common.c:277
msgid "It may be illegal to install or use this codec in some countries."
msgstr ""
"V některých zemích nemusí být instalace a používání tohoto kodeku legální."
#. TRANSLATORS: this is button text to not ask about non-free content again
#: src/gs-common.c:284
msgid "Don’t Warn Again"
msgstr "Příště nevarovat"
#. TRANSLATORS: button text
#: src/gs-common.c:293
msgid "Enable and Install"
msgstr "Povolit a nainstalovat"
#. TRANSLATORS: these are show_detailed_error messages from the
#. * package manager no mortal is supposed to understand,
#. * but google might know what they mean
#: src/gs-common.c:452
msgid "Detailed errors from the package manager follow:"
msgstr "Dále jsou uvedeny podrobnosti o chybě získané od správy balíčků:"
#: src/gs-common.c:471 src/gs-details-page.ui:447
msgid "Details"
msgstr "Podrobnosti"
#. TRANSLATORS: we've just live-updated some apps
#: src/gs-common.c:636
msgid "An update has been installed"
msgid_plural "Updates have been installed"
msgstr[0] "Aktualizace byla nainstalována"
msgstr[1] "Aktualizace byly nainstalovány"
msgstr[2] "Aktualizace byly nainstalovány"
#. TRANSLATORS: the new apps will not be run until we restart
#: src/gs-common.c:641
msgid "A restart is required for it to take effect."
msgid_plural "A restart is required for them to take effect."
msgstr[0] "Aby se projevila, je zapotřebí provést restart."
msgstr[1] "Aby se projevily, je zapotřebí provést restart."
msgstr[2] "Aby se projevily, je zapotřebí provést restart."
#. TRANSLATORS: button text
#: src/gs-common.c:648 src/gs-update-monitor.c:123
msgid "Not Now"
msgstr "Nyní ne"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:61
msgid "No cartoon violence"
msgstr "Žádné kreslené násilí"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:63
msgid "Cartoon characters in unsafe situations"
msgstr "Kreslené postavy v nebezpečných situacích"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:65
msgid "Cartoon characters in aggressive conflict"
msgstr "Kreslené postavy v agresivních střetech"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:67
msgid "Graphic violence involving cartoon characters"
msgstr "Grafické vyobrazení násilí páchaného na kreslených postavách"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:72
msgid "No fantasy violence"
msgstr "Žádné fantazie o násilí"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:74
msgid "Characters in unsafe situations easily distinguishable from reality"
msgstr "Osoby v nebezpečných situacích snadno odlišitelných od skutečnosti"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:76
msgid "Characters in aggressive conflict easily distinguishable from reality"
msgstr "Osoby v agresivních střetech snadno odlišitelných od skutečnosti"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:78
msgid "Graphic violence easily distinguishable from reality"
msgstr "Grafické násilí snadno odlišitelné od reality"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:83
msgid "No realistic violence"
msgstr "Žádné realistické násilí"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:85
msgid "Mildly realistic characters in unsafe situations"
msgstr "Mírně realistické osoby v nebezpečných situacích"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:87
msgid "Depictions of realistic characters in aggressive conflict"
msgstr "Vyobrazení skutečných osob v agresivních konfliktech"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:89
msgid "Graphic violence involving realistic characters"
msgstr "Grafické násilí páchané na skutečných osobách"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:94
msgid "No bloodshed"
msgstr "Žádné zabíjení"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:96
msgid "Unrealistic bloodshed"
msgstr "Nerealistické zabíjení"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:98
msgid "Realistic bloodshed"
msgstr "Realistické zabíjení"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:100
msgid "Depictions of bloodshed and the mutilation of body parts"
msgstr "Vyobrazení krveprolití a mrzačení lidí"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:105
msgid "No sexual violence"
msgstr "Žádné sexuální násilí"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:107
msgid "Rape or other violent sexual behavior"
msgstr "Znásilnění nebo jiné násilné sexuální chování"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:114
msgid "No references to alcohol"
msgstr "Žádné zmínky o alkoholu"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:116
msgid "References to alcoholic beverages"
msgstr "Zmínky o alkoholických nápojích"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:118
msgid "Use of alcoholic beverages"
msgstr "Požívání alkoholických nápojů"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:124
msgid "No references to illicit drugs"
msgstr "Žádné zmínky o zakázaných drogách"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:126
msgid "References to illicit drugs"
msgstr "Zmínky o zakázaných drogách"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:128
msgid "Use of illicit drugs"
msgstr "Používání zakázaných drog"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:134
msgid "No references to tobacco products"
msgstr "Žádné zmínky o tabákových výrobcích"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:136
msgid "References to tobacco products"
msgstr "Zmínky o tabákových výrobcích"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:138
msgid "Use of tobacco products"
msgstr "Používání tabákových výrobků"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:144
msgid "No nudity of any sort"
msgstr "Žádná nahota jakéhokoliv typu"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:146
msgid "Brief artistic nudity"
msgstr "Občasná umělecká nahota"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:148
msgid "Prolonged nudity"
msgstr "Dlouhotrvající nahota"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:154
msgid "No references to or depictions of sexual nature"
msgstr "Žádné zmínky o sexu nebo jeho vyobrazení"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:156
msgid "Provocative references or depictions"
msgstr "Provokativní zmínky nebo vyobrazení"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:158
msgid "Sexual references or depictions"
msgstr "Zmínky o sexu nebo jeho vyobrazení"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:160
msgid "Graphic sexual behavior"
msgstr "Grafické znázornění sexuálního chování"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:165
msgid "No profanity of any kind"
msgstr "Žádné vulgární výrazy jakéhokoliv typu"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:167
msgid "Mild or infrequent use of profanity"
msgstr "Lehké nebo občasné používání vulgárních výrazů"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:169
msgid "Moderate use of profanity"
msgstr "Střídmé používání vulgárních výrazů"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:171
msgid "Strong or frequent use of profanity"
msgstr "Hrubé nebo časté používání vulgárních výrazů"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:176
msgid "No inappropriate humor"
msgstr "Žádný nevhodný humor"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:178
msgid "Slapstick humor"
msgstr "Bláznivý humor"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:180
msgid "Vulgar or bathroom humor"
msgstr "Vulgární nebo postelový humor"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:182
msgid "Mature or sexual humor"
msgstr "Humor o sexu a pro dospělé"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:187
msgid "No discriminatory language of any kind"
msgstr "Žádné diskriminační řeči jakéhokoliv druhu"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:189
msgid "Negativity towards a specific group of people"
msgstr "Špatný pohled na konkrétní skupinu lidí"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:191
msgid "Discrimination designed to cause emotional harm"
msgstr "Diskriminace cílící na způsobení citové újmy"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:193
msgid "Explicit discrimination based on gender, sexuality, race or religion"
msgstr ""
"Výslovná diskriminace založená na pohlaví, sexuální orientaci, rase nebo "
"náboženství"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:198
msgid "No advertising of any kind"
msgstr "Žádná reklama jakéhokoliv druhu"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:200
msgid "Product placement"
msgstr "Vyobrazení produktů"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:202
msgid "Explicit references to specific brands or trademarked products"
msgstr "Výslovné odkazy na konkrétní výrobce nebo značky výrobků"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:204
msgid "Users are encouraged to purchase specific real-world items"
msgstr "Uživatelé jsou vybízení k nákupu konkrétního skutečného zboží"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:209
msgid "No gambling of any kind"
msgstr "Žádné hraní jakéhokoliv druhu"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:211
msgid "Gambling on random events using tokens or credits"
msgstr "Příležitostné hraní s žetony nebo kreditem"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:213
msgid "Gambling using “play” money"
msgstr "Hraní o fiktivní peníze"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:215
msgid "Gambling using real money"
msgstr "Hraní o skutečné peníze"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:220
msgid "No ability to spend money"
msgstr "Žádná možnost prohrát skutečné peníze"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:222
msgid "Users are encouraged to donate real money"
msgstr "Uživatelé jsou vybízení k přispění skutečnými penězi"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:225
msgid "Ability to spend real money in-app"
msgstr "Možnost prohrát v aplikaci skutečné peníze"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:230
msgid "No way to chat with other users"
msgstr "Žádný způsob, jak komunikovat s ostatními uživateli"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:232
msgid "User-to-user interactions without chat functionality"
msgstr "Interakce uživatel s uživatelem, bez textové komunikace"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:234
msgid "Moderated chat functionality between users"
msgstr "Moderovaná textová komunikace mezi uživateli"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:236
msgid "Uncontrolled chat functionality between users"
msgstr "Neřízená textová komunikace mezi uživateli"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:241
msgid "No way to talk with other users"
msgstr "Žádný způsob, jako hovořit s ostatními uživateli"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:243
msgid "Uncontrolled audio or video chat functionality between users"
msgstr "Neřízená zvuková nebo obrazová komunikace mezi uživateli"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:250
msgid "No sharing of social network usernames or email addresses"
msgstr ""
"Žádné sdílení uživatelských jmen ze sociálních sítí a e-mailových adres"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:252
msgid "Sharing social network usernames or email addresses"
msgstr "Sdílení uživatelských jmen ze sociálních sítí a e-mailových adres"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:259
msgid "No sharing of user information with third parties"
msgstr "Žádné sdílení informací o uživateli se třetími stranami"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:261
msgid "Checking for the latest application version"
msgstr "Zjišťuje se nejnovější verze aplikace"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:263
msgid "Sharing diagnostic data that does not let others identify the user"
msgstr "Sdílení diagnostických dat, dle kterých se nedá identifikovat uživatel"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:265
msgid "Sharing information that lets others identify the user"
msgstr "Sdílení informací, dle kterých se dá identifikovat uživatel"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:270
msgid "No sharing of physical location with other users"
msgstr "Žádné sdílení fyzické polohy s ostatními uživateli"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:272
msgid "Sharing physical location with other users"
msgstr "Sdílení fyzické polohy s ostatními uživateli"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:281
msgid "No references to homosexuality"
msgstr "Žádné zmínky o homosexualitě"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:283
msgid "Indirect references to homosexuality"
msgstr "Nepřímé zmínky o homosexualitě"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:285
msgid "Kissing between people of the same gender"
msgstr "Polibky dvou lidí stejného pohlaví"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:287
msgid "Graphic sexual behavior between people of the same gender"
msgstr "Grafické vyobrazení sexuálního chování mezi lidmi stejného pohlaví"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:292
msgid "No references to prostitution"
msgstr "Žádné zmínky o prostituci"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:294
msgid "Indirect references to prostitution"
msgstr "Nepřímé zmínky o prostituci"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:296
msgid "Direct references to prostitution"
msgstr "Přímé zmínky o prostituci"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:298
msgid "Graphic depictions of the act of prostitution"
msgstr "Grafické vyobrazení aktu prostituce"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:303
msgid "No references to adultery"
msgstr "Žádné zmínky o cizoložství"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:305
msgid "Indirect references to adultery"
msgstr "Nepřímé zmínky o cizoložství"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:307
msgid "Direct references to adultery"
msgstr "Přímé zmínky o cizoložství"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:309
msgid "Graphic depictions of the act of adultery"
msgstr "Grafické vyobrazení aktu cizoložství"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:314
msgid "No sexualized characters"
msgstr "Žádné sexualizované postavy"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:317
msgid "Scantily clad human characters"
msgstr "Skrovně oděné lidské postavy"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:319
msgid "Overtly sexualized human characters"
msgstr "Otevřeně sexualizované lidské postavy"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:324
msgid "No references to desecration"
msgstr "Žádné zmínky o znesvěcení"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:326
msgid "Depictions of or references to historical desecration"
msgstr "Vyobrazení nebo zmínky o znesvěcení v dávné minulosti"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:328
msgid "Depictions of modern-day human desecration"
msgstr "Vyobrazení znesvěcení lidmi v moderní době"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:330
msgid "Graphic depictions of modern-day desecration"
msgstr "Grafické vyobrazení znesvěcení v moderní době"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:335
msgid "No visible dead human remains"
msgstr "Žádné viditelné pozůstatky lidských mrtvol"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:337
msgid "Visible dead human remains"
msgstr "Viditelné pozůstatky lidských mrtvol"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:339
msgid "Dead human remains that are exposed to the elements"
msgstr "Ostatky lidských mrtvol zabrané do detailů"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:341
msgid "Graphic depictions of desecration of human bodies"
msgstr "Grafické vyobrazení znesvěcení lidských těl"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:346
msgid "No references to slavery"
msgstr "Žádné zmínky o otroctví"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:348
msgid "Depictions of or references to historical slavery"
msgstr "Vyobrazení nebo zmínky o otroctví v dávné minulosti"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:350
msgid "Depictions of modern-day slavery"
msgstr "Vyobrazení otroctví v moderní době"
#. TRANSLATORS: content rating description
#: src/gs-content-rating.c:352
msgid "Graphic depictions of modern-day slavery"
msgstr "Grafické vyobrazení otroctví v moderní době"
#. TRANSLATORS: This is the formatting of English and localized name
#. of the rating e.g. "Adults Only (solo adultos)"
#: src/gs-content-rating.c:412
#, c-format
msgid "%s (%s)"
msgstr "%s (%s)"
#: src/gs-content-rating.c:546
msgid "General"
msgstr "Obecné"
#: src/gs-content-rating.c:555
msgid "ALL"
msgstr "VŠECHNY"
#: src/gs-content-rating.c:559
msgid "Adults Only"
msgstr "pouze dospělé"
#: src/gs-content-rating.c:561
msgid "Mature"
msgstr "plnoleté"
#: src/gs-content-rating.c:563
msgid "Teen"
msgstr "mládež"
#: src/gs-content-rating.c:565
msgid "Everyone 10+"
msgstr "všechny 10+"
#: src/gs-content-rating.c:567
msgid "Everyone"
msgstr "všechny"
#: src/gs-content-rating.c:569
msgid "Early Childhood"
msgstr "malé děti"
#. TRANSLATORS: this is a what we use in notifications if the app's name is unknown
#: src/gs-dbus-helper.c:282
msgid "An application"
msgstr "Nějaká aplikace"
#. TRANSLATORS: this is a notification displayed when an app needs additional MIME types.
#: src/gs-dbus-helper.c:288
#, c-format
msgid "%s is requesting additional file format support."
msgstr "%s požaduje dodatečnou podporu formátů souborů."
#. TRANSLATORS: notification title
#: src/gs-dbus-helper.c:290
msgid "Additional MIME Types Required"
msgstr "Požadavek na dodatečné typy MIME"
#. TRANSLATORS: this is a notification displayed when an app needs additional fonts.
#: src/gs-dbus-helper.c:294
#, c-format
msgid "%s is requesting additional fonts."
msgstr "%s požaduje dodatečná písma."
#. TRANSLATORS: notification title
#: src/gs-dbus-helper.c:296
msgid "Additional Fonts Required"
msgstr "Požadavek na dodatečná písma"
#. TRANSLATORS: this is a notification displayed when an app needs additional codecs.
#: src/gs-dbus-helper.c:300
#, c-format
msgid "%s is requesting additional multimedia codecs."
msgstr "%s požaduje dodatečné multimediální kodeky."
#. TRANSLATORS: notification title
#: src/gs-dbus-helper.c:302
msgid "Additional Multimedia Codecs Required"
msgstr "Požadavek na dodatečné multimediální kodeky"
#. TRANSLATORS: this is a notification displayed when an app needs additional printer drivers.
#: src/gs-dbus-helper.c:306
#, c-format
msgid "%s is requesting additional printer drivers."
msgstr "%s požaduje dodatečné tiskové ovladače."
#. TRANSLATORS: notification title
#: src/gs-dbus-helper.c:308
msgid "Additional Printer Drivers Required"
msgstr "Požadavek na dodatečné tiskové ovladače"
#. TRANSLATORS: this is a notification displayed when an app wants to install additional packages.
#: src/gs-dbus-helper.c:312
#, c-format
msgid "%s is requesting additional packages."
msgstr "%s požaduje dodatečné balíčky."
#. TRANSLATORS: notification title
#: src/gs-dbus-helper.c:314
msgid "Additional Packages Required"
msgstr "Požadavek na dodatečné balíčky"
#. TRANSLATORS: this is a button that launches gnome-software
#: src/gs-dbus-helper.c:323
msgid "Find in Software"
msgstr "Najít v aplikaci Software"
#: src/gs-details-page.c:346
msgid "Removing…"
msgstr "Odebírá se…"
#. TRANSLATORS: This is a label on top of the app's progress
#. * bar to inform the user that the app should be installed soon
#: src/gs-details-page.c:365
msgid "Pending installation…"
msgstr "Probíhá instalace…"
#. TRANSLATORS: This is a label on top of the app's progress
#. * bar to inform the user that the app should be updated soon
#: src/gs-details-page.c:372
msgid "Pending update…"
msgstr "Probíhá aktualizace…"
#. Translators: This string is shown when preparing to download and install an app.
#: src/gs-details-page.c:386
msgid "Preparing…"
msgstr "Připravuje se…"
#. TRANSLATORS: this is the warning box
#: src/gs-details-page.c:745
msgid ""
"This application can only be used when there is an active internet "
"connection."
msgstr ""
"Tuto aplikaci je možné používat, jen když je funkční připojení k Internetu."
#. TRANSLATORS: button text in the header when an application
#. * can be installed
#. TRANSLATORS: button text in the header when firmware
#. * can be live-installed
#. TRANSLATORS: this is a button in the software repositories
#. dialog for installing a repo
#: src/gs-details-page.c:890 src/gs-details-page.c:907
#: src/gs-details-page.ui:167 src/gs-third-party-repo-row.c:84
#: src/gs-upgrade-banner.c:89
msgid "_Install"
msgstr "_Instalovat"
#. TRANSLATORS: this is a button that allows the apps to
#. * be installed.
#. * The ellipsis indicates that further steps are required,
#. * e.g. enabling software repositories or the like
#. TRANSLATORS: this is a button in the software repositories
#. dialog for installing a repo.
#. The ellipsis indicates that further steps are required
#: src/gs-details-page.c:921 src/gs-third-party-repo-row.c:76
msgid "_Install…"
msgstr "_Instalovat…"
#. TRANSLATORS: A label for a button to execute the selected application.
#: src/gs-details-page.c:963
msgid "_Launch"
msgstr "_Spustit"
#. TRANSLATORS: button text in the header when an application can be erased
#: src/gs-details-page.c:987 src/gs-details-page.ui:192
msgid "_Remove"
msgstr "Odeb_rat"
#: src/gs-details-page.c:1018 src/gs-update-dialog.c:93
msgid "Network"
msgstr "Síť"
#: src/gs-details-page.c:1018 src/gs-update-dialog.c:93
msgid "Can communicate over the network"
msgstr "Může komunikovat přes síť"
#: src/gs-details-page.c:1019 src/gs-update-dialog.c:94
msgid "System Services"
msgstr "Služby systému"
#: src/gs-details-page.c:1019 src/gs-update-dialog.c:94
msgid "Can access D-Bus services on the system bus"
msgstr "Může přistupovat k službám D-Bus na systémové sběrnici"
#: src/gs-details-page.c:1020 src/gs-update-dialog.c:95
msgid "Session Services"
msgstr "Služby sezení"
#: src/gs-details-page.c:1020 src/gs-update-dialog.c:95
msgid "Can access D-Bus services on the session bus"
msgstr "Může přistupovat k službám D-Bus na sběrnici sezení"
#: src/gs-details-page.c:1021 src/gs-update-dialog.c:96
msgid "Devices"
msgstr "Zařízení"
#: src/gs-details-page.c:1021 src/gs-update-dialog.c:96
msgid "Can access system device files"
msgstr "Může přistupovat k souborům na systémovém zařízení"
#: src/gs-details-page.c:1022 src/gs-details-page.c:1023
#: src/gs-update-dialog.c:97 src/gs-update-dialog.c:98
msgid "Home folder"
msgstr "Domovská složka"
#: src/gs-details-page.c:1022 src/gs-details-page.c:1024
#: src/gs-details-page.c:1026 src/gs-update-dialog.c:97
#: src/gs-update-dialog.c:99 src/gs-update-dialog.c:101
msgid "Can view, edit and create files"
msgstr "Může zobrazovat, upravovat a vytvářet soubory"
#: src/gs-details-page.c:1023 src/gs-details-page.c:1025
#: src/gs-details-page.c:1027 src/gs-update-dialog.c:98
#: src/gs-update-dialog.c:100 src/gs-update-dialog.c:102
msgid "Can view files"
msgstr "Může zobrazovat soubory"
#: src/gs-details-page.c:1024 src/gs-details-page.c:1025
#: src/gs-update-dialog.c:99 src/gs-update-dialog.c:100
msgid "File system"
msgstr "Souborový systém"
#: src/gs-details-page.c:1026 src/gs-details-page.c:1027
#: src/gs-update-dialog.c:101 src/gs-update-dialog.c:102
msgid "Downloads folder"
msgstr "Složka se staženými"
#: src/gs-details-page.c:1028 src/gs-update-dialog.c:103
msgid "Settings"
msgstr "Nastavení"
#: src/gs-details-page.c:1028 src/gs-update-dialog.c:103
msgid "Can view and change any settings"
msgstr "Může zobrazovat a měnit libovolná nastavení"
#: src/gs-details-page.c:1029 src/gs-update-dialog.c:104
msgid "Legacy display system"
msgstr "Zastaralý zobrazovací systém"
#: src/gs-details-page.c:1029 src/gs-update-dialog.c:104
msgid "Uses an old, insecure display system"
msgstr "Používá starý, ne zcela bezpečný, zobrazovací systém"
#: src/gs-details-page.c:1030 src/gs-update-dialog.c:105
msgid "Sandbox escape"
msgstr "Opuštění izolovaného prostředí"
#: src/gs-details-page.c:1030 src/gs-update-dialog.c:105
msgid "Can escape the sandbox and circumvent any other restrictions"
msgstr "Může opustit izolované prostředí a obejít další omezení"
#: src/gs-details-page.c:1045
msgid "This application is fully sandboxed."
msgstr "Tato aplikace je v plně izolovaném prostředí."
#: src/gs-details-page.c:1053
msgid ""
"Unable to determine which parts of the system this application accesses. "
"This is typical for older applications."
msgstr ""
"Nelze určit, ke kterým částem systému tato aplikace přistupuje. To je "
"obvyklé u starších aplikací."
#. TRANSLATORS: this is where the version is not known
#: src/gs-details-page.c:1212
msgctxt "version"
msgid "Unknown"
msgstr "neznámá"
#. TRANSLATORS: this is where the updated date is not known
#: src/gs-details-page.c:1225
msgctxt "updated"
msgid "Never"
msgstr "nikdy"
#. TRANSLATORS: this is where we don't know the origin of the
#. * application
#: src/gs-details-page.c:1278
msgctxt "origin"
msgid "Unknown"
msgstr "neznámý"
#: src/gs-details-page.c:1331
msgid "Low"
msgstr "nízké"
#: src/gs-details-page.c:1333
msgid "Medium"
msgstr "střední"
#: src/gs-details-page.c:1335
msgid "High"
msgstr "vysoké"
#. This refers to the license of the application
#. TRANSLATORS: this is when a user doesn't specify a name
#: src/gs-details-page.c:1337 src/gs-details-page.ui:1006
#: src/gs-review-row.c:58
msgid "Unknown"
msgstr "neznámá"
#. TRANSLATORS: we need a remote server to process
#: src/gs-details-page.c:1675
msgid "You need internet access to write a review"
msgstr "Abyste mohli napsat recenzi, musíte být připojeni k Internetu"
#: src/gs-details-page.c:1864 src/gs-details-page.c:1880
#, c-format
msgid "Unable to find “%s”"
msgstr "Nelze najít „%s“"
#. TRANSLATORS: see the wikipedia page
#: src/gs-details-page.c:2458
msgid "Public domain"
msgstr "Volné dílo"
#. TRANSLATORS: Replace the link with a version in your language,
#. * e.g. https://de.wikipedia.org/wiki/Gemeinfreiheit
#: src/gs-details-page.c:2461
msgid "https://en.wikipedia.org/wiki/Public_domain"
msgstr "https://cs.wikipedia.org/wiki/Voln%C3%A9_d%C3%ADlo"
#. TRANSLATORS: Replace the link with a version in your language,
#. * e.g. https://www.gnu.org/philosophy/free-sw.de
#: src/gs-details-page.c:2468
msgid "https://www.gnu.org/philosophy/free-sw"
msgstr "https://www.gnu.org/philosophy/free-sw"
#. TRANSLATORS: see GNU page
#: src/gs-details-page.c:2478 src/gs-details-page.ui:1250
msgid "Free Software"
msgstr "Svobodný software"
#. TRANSLATORS: for the free software popover
#: src/gs-details-page.c:2535
msgid "Users are bound by the following license:"
msgid_plural "Users are bound by the following licenses:"
msgstr[0] "Uživatelé jsou vázáni následující licencí:"
msgstr[1] "Uživatelé jsou vázáni následujícími licencemi:"
msgstr[2] "Uživatelé jsou vázáni následujícími licencemi:"
#: src/gs-details-page.c:2562 src/gs-details-page.ui:1322
msgid "More information"
msgstr "Podrobné informace"
#: src/gs-details-page.ui:7
msgid "Details page"
msgstr "Stránka s podrobnostmi"
#: src/gs-details-page.ui:222
msgid "Downloading"
msgstr "Stahuje se"
#: src/gs-details-page.ui:262
msgid "_Update"
msgstr "_Aktualizovat"
#. Translators: A label for a button to add a shortcut to the selected application.
#: src/gs-details-page.ui:278
msgid "_Add shortcut"
msgstr "Přid_at klávesovu zkratku"
#. Translators: A label for a button to remove a shortcut to the selected application.
#: src/gs-details-page.ui:292
msgid "Re_move shortcut"
msgstr "Odst_ranit klávesovou zkratku"
#: src/gs-details-page.ui:366
msgid "No screenshot provided"
msgstr "Nemá snímek obrazovky"
#: src/gs-details-page.ui:386
msgid "Software Repository Included"
msgstr "Součástí je repozitář softwaru"
#: src/gs-details-page.ui:387
msgid ""
"This application includes a software repository which provides updates, as "
"well as access to other software."
msgstr ""
"Součástí této aplikace je repozitář softwaru, který poskytuje aktualizace a "
"přístup k dalšímu softwaru."
#: src/gs-details-page.ui:394
msgid "No Software Repository Included"
msgstr "Součástí není žádný repozitář softwaru"
#: src/gs-details-page.ui:395
msgid ""
"This application does not include a software repository. It will not be "
"updated with new versions."
msgstr ""
"Součástí této aplikace není žádný repozitář softwaru. Nebude tak průběžně "
"aktualizována na novější verze."
#: src/gs-details-page.ui:403
msgid ""
"This software is already provided by your distribution and should not be "
"replaced."
msgstr ""
"Tento software již poskytuje vaše distribuce a neměli byste jej nahrazovat."
#. Translators: a repository file used for installing software has been discovered.
#: src/gs-details-page.ui:410
msgid "Software Repository Identified"
msgstr "Rozpoznán repozitář softwaru"
#: src/gs-details-page.ui:411
msgid ""
"Adding this software repository will give you access to additional software "
"and upgrades."
msgstr ""
"Přídáním tohoto repozitáře softwaru získáte přístup k dalšímu softwaru a "
"aktualizacím."
#: src/gs-details-page.ui:412
msgid "Only use software repositories that you trust."
msgstr "Používejte pouze repozitáře softwaru, kterým věříte."
#: src/gs-details-page.ui:422
msgid "_Website"
msgstr "_Webové stránky"
#: src/gs-details-page.ui:431
msgid "_Donate"
msgstr "Věnovat _dar"
#: src/gs-details-page.ui:541
msgid "Localized in your Language"
msgstr "Přeloženo do vašeho jazyka"
#: src/gs-details-page.ui:552
msgid "Documentation"
msgstr "Dokumentace"
#: src/gs-details-page.ui:563
msgid "Release Activity"
msgstr "Vydávání nových verzí"
#: src/gs-details-page.ui:574
msgid "System Integration"
msgstr "Integrováno do systému"
#: src/gs-details-page.ui:585
msgid "Sandboxed"
msgstr "V izolovaném prostředí"
#. TRANSLATORS: the title for Snap channels
#: src/gs-details-page.ui:605 src/gs-origin-popover-row.c:103
msgid "Channel"
msgstr "Kanál"
#. Translators: The available version of an app
#: src/gs-details-page.ui:641 src/gs-origin-popover-row.ui:151
msgid "Version"
msgstr "Verze"
#: src/gs-details-page.ui:677
msgid "Age Rating"
msgstr "Hodnocení podle věku"
#: src/gs-details-page.ui:715 src/gs-details-page.ui:1408
msgid "Permissions"
msgstr "Oprávnění"
#: src/gs-details-page.ui:753
msgid "Updated"
msgstr "Aktualizováno"
#: src/gs-details-page.ui:787
msgid "Category"
msgstr "Kategorie"
#: src/gs-details-page.ui:824
msgid "Installed Size"
msgstr "Instalace na disku"
#: src/gs-details-page.ui:855
msgid "Download Size"
msgstr "Stahovaná velikost"
#: src/gs-details-page.ui:917
msgid "Developer"
msgstr "Vývojář"
#: src/gs-details-page.ui:963
msgid "License"
msgstr "Licence"
#. This refers to the license of the application
#: src/gs-details-page.ui:982
msgid "Free"
msgstr "svobodná"
#. This refers to the license of the application
#: src/gs-details-page.ui:994
msgid "Proprietary"
msgstr "uzavřená"
#. TRANSLATORS: This is the header dividing the normal
#. * applications and the addons
#. TRANSLATORS: this is the menu spec main category for Add-ons
#: src/gs-details-page.ui:1044 src/gs-installed-page.c:441
#: plugins/core/gs-desktop-common.c:315
msgid "Add-ons"
msgstr "Doplňky"
#: src/gs-details-page.ui:1056
msgid "Selected add-ons will be installed with the application."
msgstr "Vybrané doplňky budou nainstalovány spolu s aplikací."
#. Translators: Header of the section with other users' opinions about the app.
#: src/gs-details-page.ui:1094
msgid "Reviews"
msgstr "Recenze"
#. Translators: Button opening a dialog where the users can write and publish their opinions about the apps.
#: src/gs-details-page.ui:1112
msgid "_Write a Review"
msgstr "Nap_sat recenzi"
#. Translators: Button to return more application-submitted reviews.
#: src/gs-details-page.ui:1133
msgid "_Show More"
msgstr "_Zobrazit další"
#: src/gs-details-page.ui:1261
msgid ""
"This means that the software can be freely run, copied, distributed, studied "
"and modified."
msgstr ""
"To znamená, že software můžete svobodně používat, kopírovat, šířit, studovat "
"a upravovat."
#: src/gs-details-page.ui:1301
msgid "Proprietary Software"
msgstr "Uzavřený software"
#: src/gs-details-page.ui:1312
msgid ""
"This means that the software is owned by an individual or a company. There "
"are often restrictions on its use and its source code cannot usually be "
"accessed."
msgstr ""
"To znamená, že software je vlastněn jednotlivcem nebo firmou. Často jste "
"nějak omezeni v jeho používání a obvykle nemáte přístup k jeho zdrojovým "
"kódům."
#: src/gs-details-page.ui:1344
msgid "Unknown Software License"
msgstr "Neznámá softwarová licence"
#: src/gs-details-page.ui:1355
msgid "The license terms of this software are unknown."
msgstr "Licenční podmínky k tomuto softwaru nejsou známy."
#: src/gs-details-page.ui:1375
msgid "The application was rated this way because it features:"
msgstr "Aplikace byla takto ohodnocena, protože součástí je:"
#: src/gs-details-page.ui:1389
msgid "No details were available for this rating."
msgstr "K tomuto hodnocení nejsou k dispozici žádné podrobnosti."
#. TRANSLATORS: separator for a list of items
#: src/gs-extras-page.c:135
msgid " and "
msgstr " a "
#. TRANSLATORS: separator for a list of items
#: src/gs-extras-page.c:138
msgid ", "
msgstr ", "
#. TRANSLATORS: Application window title for fonts installation.
#. %s will be replaced by name of the script we're searching for.
#: src/gs-extras-page.c:164
#, c-format
msgid "Available fonts for the %s script"
msgid_plural "Available fonts for the %s scripts"
msgstr[0] "Dostupné fonty pro písmo %s"
msgstr[1] "Dostupné fonty pro písma %s"
msgstr[2] "Dostupné fonty pro písma %s"
#. TRANSLATORS: Application window title for codec installation.
#. %s will be replaced by actual codec name(s)
#: src/gs-extras-page.c:172
#, c-format
msgid "Available software for %s"
msgid_plural "Available software for %s"
msgstr[0] "Dostupný software pro kodek %s"
msgstr[1] "Dostupný software pro kodeky %s"
msgstr[2] "Dostupný software pro kodeky %s"
#: src/gs-extras-page.c:214
msgid "Unable to Find Requested Software"
msgstr "Nelze najít požadovaný software"
#. TRANSLATORS: This string is used for codecs that weren't found
#: src/gs-extras-page.c:319
#, c-format
msgid "%s not found"
msgstr "%s nebyl nalezen"
#. TRANSLATORS: hyperlink title
#: src/gs-extras-page.c:323
msgid "on the website"
msgstr "na webových stránkách"
#. TRANSLATORS: this is when we know about an application or
#. * addon, but it can't be listed for some reason
#: src/gs-extras-page.c:330
#, c-format
msgid "No applications are available that provide the file %s."
msgstr "Nejsou k dispozici žádné aplikace, které by poskytovaly soubor %s."
#. TRANSLATORS: first %s is the codec name, and second %s is a
#. * hyperlink with the "on the website" text
#: src/gs-extras-page.c:334 src/gs-extras-page.c:345 src/gs-extras-page.c:356
#, c-format
msgid ""
"Information about %s, as well as options for how to get missing applications "
"might be found %s."
msgstr ""
"Informace o formátu %s, včetně toho, jak získat chybějící aplikace, najdete "
"%s."
#. TRANSLATORS: this is when we know about an application or
#. * addon, but it can't be listed for some reason
#: src/gs-extras-page.c:341 src/gs-extras-page.c:363
#, c-format
msgid "No applications are available for %s support."
msgstr "Pro podporu %s nejsou k dispozici žádné aplikace."
#. TRANSLATORS: this is when we know about an application or
#. * addon, but it can't be listed for some reason
#: src/gs-extras-page.c:352
#, c-format
msgid "%s is not available."
msgstr "%s není k dispozici."
#. TRANSLATORS: first %s is the codec name, and second %s is a
#. * hyperlink with the "on the website" text
#: src/gs-extras-page.c:367
#, c-format
msgid ""
"Information about %s, as well as options for how to get an application that "
"can support this format might be found %s."
msgstr ""
"Informace o formátu %s, včetně toho, jak získat aplikaci, který umí tento "
"tento formát podporovat, najdete %s."
#. TRANSLATORS: this is when we know about an application or
#. * addon, but it can't be listed for some reason
#: src/gs-extras-page.c:374
#, c-format
msgid "No fonts are available for the %s script support."
msgstr "Pro podporu písma %s nejsou k dispozici žádné fonty."
#. TRANSLATORS: first %s is the codec name, and second %s is a
#. * hyperlink with the "on the website" text
#: src/gs-extras-page.c:378
#, c-format
msgid ""
"Information about %s, as well as options for how to get additional fonts "
"might be found %s."
msgstr ""
"Informace o písmu %s, včetně toho, jak získat dodatečná písma, najdete %s."
#. TRANSLATORS: this is when we know about an application or
#. * addon, but it can't be listed for some reason
#: src/gs-extras-page.c:385
#, c-format
msgid "No addon codecs are available for the %s format."
msgstr "Pro formát %s nejsou k dispozici žádné dodatečné kodeky."
#. TRANSLATORS: first %s is the codec name, and second %s is a
#. * hyperlink with the "on the website" text
#: src/gs-extras-page.c:389
#, c-format
msgid ""
"Information about %s, as well as options for how to get a codec that can "
"play this format might be found %s."
msgstr ""
"Informace o kodeku %s, včetně toho, jak získat kodek, který umí tento formát "
"přehrát, najdete %s."
#. TRANSLATORS: this is when we know about an application or
#. * addon, but it can't be listed for some reason
#: src/gs-extras-page.c:396
#, c-format
msgid "No Plasma resources are available for %s support."
msgstr "Pro podporu %s nejsou k dispozici žádné prostředky Plasma."
#. TRANSLATORS: first %s is the codec name, and second %s is a
#. * hyperlink with the "on the website" text
#: src/gs-extras-page.c:400
#, c-format
msgid ""
"Information about %s, as well as options for how to get additional Plasma "
"resources might be found %s."
msgstr ""
"Informace o kodeku %s, včetně toho, jak získat dodatečné prostředky Plasma, "
"najdete %s."
#. TRANSLATORS: this is when we know about an application or
#. * addon, but it can't be listed for some reason
#: src/gs-extras-page.c:407
#, c-format
msgid "No printer drivers are available for %s."
msgstr "Pro %s nejsou k dispozici žádné tiskové ovladače."
#. TRANSLATORS: first %s is the codec name, and second %s is a
#. * hyperlink with the "on the website" text
#: src/gs-extras-page.c:411
#, c-format
msgid ""
"Information about %s, as well as options for how to get a driver that "
"supports this printer might be found %s."
msgstr ""
"Informace o tiskárně %s, včetně toho, jak získat ovladač, který podporuje "
"tuto tiskárnu, najdete %s."
#. TRANSLATORS: hyperlink title
#: src/gs-extras-page.c:455
msgid "this website"
msgstr "tyto webové stránky"
#. TRANSLATORS: no codecs were found. First %s will be replaced by actual codec name(s), second %s is a link titled "this website"
#: src/gs-extras-page.c:459
#, c-format
msgid ""
"Unfortunately, the %s you were searching for could not be found. Please see "
"%s for more information."
msgid_plural ""
"Unfortunately, the %s you were searching for could not be found. Please see "
"%s for more information."
msgstr[0] ""
"Bohužel, ale pro „%s“ nebylo nic nalezeno. Na další informace se prosím "
"podívejte na %s."
msgstr[1] ""
"Bohužel, ale pro „%s“ nebylo nic nalezeno. Na další informace se prosím "
"podívejte na %s."
msgstr[2] ""
"Bohužel, ale pro „%s“ nebylo nic nalezeno. Na další informace se prosím "
"podívejte na %s."
#: src/gs-extras-page.c:527 src/gs-extras-page.c:583 src/gs-extras-page.c:622
msgid "Failed to find any search results"
msgstr "Selhalo získání jakýchkoliv výsledků hledání"
#: src/gs-extras-page.c:810
#, c-format
msgid "%s file format"
msgstr "formát souboru %s"
#: src/gs-extras-page.ui:7
msgid "Codecs page"
msgstr "Stránka kodeků"
#: src/gs-first-run-dialog.ui:6 src/gs-first-run-dialog.ui:15
msgid "Welcome"
msgstr "Vítejte"
#: src/gs-first-run-dialog.ui:43
msgid "Welcome to Software"
msgstr "Vítejte v aplikaci Software"
#: src/gs-first-run-dialog.ui:53
msgid ""
"Software lets you install all the software you need, all from one place. See "
"our recommendations, browse the categories, or search for the applications "
"you want."
msgstr ""
"Pomocí aplikace Software můžete nainstalovat veškerý software, který "
"potřebujete, naráz z jediného místa. Podívejte se na naše doporučení, "
"procházejte si kategorie nebo vyhledejte přímo aplikaci, kterou chcete."
#: src/gs-first-run-dialog.ui:62
msgid "_Let’s Go Shopping"
msgstr "Vzhůru na nákupy"
#. TRANSLATORS: this is the status in the history UI,
#. * where we are showing the application was removed
#: src/gs-history-dialog.c:70
msgctxt "app status"
msgid "Removed"
msgstr "Odebráno"
#. TRANSLATORS: this is the status in the history UI,
#. * where we are showing the application was installed
#: src/gs-history-dialog.c:76
msgctxt "app status"
msgid "Installed"
msgstr "Nainstalováno"
#. TRANSLATORS: this is the status in the history UI,
#. * where we are showing the application was updated
#: src/gs-history-dialog.c:82
msgctxt "app status"
msgid "Updated"
msgstr "Aktualizováno"
#. TRANSLATORS: this is the status in the history UI,
#. * where we are showing that something happened to the
#. * application but we don't know what
#: src/gs-history-dialog.c:88
msgctxt "app status"
msgid "Unknown"
msgstr "Neznámo"
#. TRANSLATORS: This is the date string with: day number, month name, year.
#. i.e. "25 May 2012"
#: src/gs-history-dialog.c:111 src/gs-review-row.c:65 src/gs-updates-page.c:258
msgid "%e %B %Y"
msgstr "%e. %B %Y"
#: src/gs-history-dialog.ui:5
msgid "History"
msgstr "Historie"
#. TRANSLATORS: This is the header dividing the normal
#. * applications and the system ones
#: src/gs-installed-page.c:437
msgid "System Applications"
msgstr "Systémové aplikace"
#: src/gs-installed-page.ui:7
msgid "Installed page"
msgstr "Stránka s nainstalovanými"
#. TRANSLATORS: initial start
#: src/gs-loading-page.c:62 src/gs-loading-page.c:66
msgid "Software catalog is being downloaded"
msgstr "Stahuje se katalog softwaru"
#: src/gs-loading-page.ui:7
msgid "Loading page"
msgstr "Načítá se stránka"
#: src/gs-loading-page.ui:47
msgid "Starting up…"
msgstr "Spouští se…"
#: src/gs-metered-data-dialog.ui:38
msgid ""
"The current network is metered. Metered connections have data limits or "
"charges associated with them. To save data, automatic updates have therefore "
"been paused.\n"
"\n"
"Automatic updates will be resumed when an unmetered network becomes "
"available. Until then, it is still possible to manually install updates.\n"
"\n"
"Alternatively, if the current network has been incorrectly identified as "
"being metered, this setting can be changed."
msgstr ""
"Současná síť používá měřené připojení. Ta mívají omezené množství "
"přenesených dat nebo účtované poplatky za přenesená data. Aby se ušetřil "
"přenos dat, byly pozastaveny automatické aktualizace.\n"
"\n"
"Jakmile bude dostupné neměřené připojení, budou automatické aktualizace "
"pokračovat. Do té doby je stále možné instalovat aktualizace ručně.\n"
"\n"
"Případně, pokud bylo současné připojení určeno nesprávně jako měřené, lze to "
"změnit nastavením."
#: src/gs-metered-data-dialog.ui:53
msgid "Open Network _Settings"
msgstr "Otevřít nastavení _sítě"
#: src/gs-moderate-page.ui:7
msgid "Moderate page"
msgstr "Stránka pro moderování"
#: src/gs-moderate-page.ui:85
msgid "There are no reviews to moderate"
msgstr "Nejsou k dispozici žádné recenze k moderování"
#. TRANSLATORS: the installation location for flatpaks
#: src/gs-origin-popover-row.c:84
msgid "system"
msgstr "systém"
#. TRANSLATORS: the installation location for flatpaks
#: src/gs-origin-popover-row.c:87
msgid "user"
msgstr "uživatel"
#. TRANSLATORS: the title for Flatpak branches
#. Translators: The branch, e.g. 'stable' or '3.32'
#: src/gs-origin-popover-row.c:108 src/gs-origin-popover-row.ui:122
msgid "Branch"
msgstr "Větev"
#: src/gs-origin-popover-row.ui:35 src/gs-repo-row.ui:75
msgid "URL"
msgstr "Adresa URL"
#. Translators: The packaging format of the app being installed, e.g. 'RPM' or 'Flatpak'
#: src/gs-origin-popover-row.ui:64
msgid "Format"
msgstr "Formát"
#. Translators: The installation location for flatpaks, e.g. 'user' or 'system'
#: src/gs-origin-popover-row.ui:93
msgid "Installation"
msgstr "Instalace"
#. add button
#: src/gs-overview-page.c:313
msgid "More…"
msgstr "Více…"
#. TRANSLATORS: this is a heading for audio applications which
#. * have been featured ('recommended') by the distribution
#: src/gs-overview-page.c:563
msgid "Recommended Audio & Video Applications"
msgstr "Z kategorie zvuk a video doporučujeme"
#. TRANSLATORS: this is a heading for games which have been
#. * featured ('recommended') by the distribution
#: src/gs-overview-page.c:568
msgid "Recommended Games"
msgstr "Z her doporučujeme"
#. TRANSLATORS: this is a heading for graphics applications
#. * which have been featured ('recommended') by the distribution
#: src/gs-overview-page.c:573
msgid "Recommended Graphics Applications"
msgstr "Z kategorie grafika doporučujeme"
#. TRANSLATORS: this is a heading for office applications which
#. * have been featured ('recommended') by the distribution
#: src/gs-overview-page.c:578
msgid "Recommended Productivity Applications"
msgstr "Z kategorie kancelář doporučujeme"
#. TRANSLATORS: this is the third party repositories info bar.
#: src/gs-overview-page.c:926 src/gs-repos-dialog.c:832
msgid "Access additional software from selected third party sources."
msgstr "Zpřístupnit další software z vybraných zdrojů třetích stran."
#. TRANSLATORS: this is the third party repositories info bar.
#: src/gs-overview-page.c:930 src/gs-repos-dialog.c:836
msgid ""
"Some of this software is proprietary and therefore has restrictions on use, "
"sharing, and access to source code."
msgstr ""
"Některý z tohoto softwaru může být nesvobodný a mít tak různá omezení "
"ohledně používání, sdílení a přístupu ke zdrojovému kódu."
#. TRANSLATORS: this is the clickable
#. * link on the third party repositories info bar
#: src/gs-overview-page.c:935 src/gs-repos-dialog.c:841
msgid "Find out more…"
msgstr "Dozvědět se více…"
#. TRANSLATORS: button to turn on third party software repositories
#. TRANSLATORS: button to accept the agreement
#: src/gs-overview-page.c:943 src/gs-repos-dialog.c:240
msgid "Enable"
msgstr "Povolit"
#: src/gs-overview-page.ui:7
msgid "Overview page"
msgstr "Stránka s přehledem"
#: src/gs-overview-page.ui:39
msgid "Enable Third Party Software Repositories?"
msgstr "Povolit repozitáře softwaru třetích stran?"
#: src/gs-overview-page.ui:101
msgid "Previous"
msgstr "Předchozí"
#: src/gs-overview-page.ui:126
msgid "Next"
msgstr "Další"
#. Translators: This is a heading for software which has been featured ('picked') by the distribution.
#: src/gs-overview-page.ui:149
msgid "Editor’s Picks"
msgstr "Doporučujeme"
#. Translators: This is a heading for software which has been recently released upstream.
#: src/gs-overview-page.ui:175
msgid "Recent Releases"
msgstr "Nově vydáno"
#: src/gs-overview-page.ui:209
msgid "Categories"
msgstr "Kategorie"
#: src/gs-overview-page.ui:274
msgid "No Application Data Found"
msgstr "O aplikaci nebyly nalezeny žádné informace"
#. TRANSLATORS: this is a prompt message, and
#. * '%s' is an application summary, e.g. 'GNOME Clocks'
#: src/gs-page.c:325
#, c-format
msgid "Prepare %s"
msgstr "Příprava aplikace %s"
#. TRANSLATORS: this is a prompt message, and '%s' is an
#. * repository name, e.g. 'GNOME Nightly'
#: src/gs-page.c:461
#, c-format
msgid "Are you sure you want to remove the %s repository?"
msgstr "Opravdu chcete odebrat repozitář %s?"
#. TRANSLATORS: longer dialog text
#: src/gs-page.c:465
#, c-format
msgid ""
"All applications from %s will be removed, and you will have to re-install "
"the repository to use them again."
msgstr ""
"Všechny aplikace pocházející ze repozitáře %s budou odebrány. Abyste je "
"mohli znovu použít, budete muset repozitář znovu nainstalovat."
#. TRANSLATORS: this is a prompt message, and '%s' is an
#. * application summary, e.g. 'GNOME Clocks'
#: src/gs-page.c:473
#, c-format
msgid "Are you sure you want to remove %s?"
msgstr "Opravdu chcete odebrat %s?"
#. TRANSLATORS: longer dialog text
#: src/gs-page.c:476
#, c-format
msgid "%s will be removed, and you will have to install it to use it again."
msgstr ""
"%s bude odebrán a když jej budete chtít použít, budete jej muset znovu "
"nainstalovat."
#. TRANSLATORS: this refers to an app (by name) that is installed
#: src/gs-popular-tile.c:64 src/gs-summary-tile.c:87
#, c-format
msgid "%s (Installed)"
msgstr "%s (nainstalováno)"
#: src/gs-prefs-dialog.ui:5 src/gs-prefs-dialog.ui:17
msgid "Update Preferences"
msgstr "Předvolby aktualizací"
#: src/gs-prefs-dialog.ui:43
msgid "Automatic Updates"
msgstr "Automatické aktualizace"
#: src/gs-prefs-dialog.ui:70
msgid "Automatic updates are disabled when on mobile or metered connections."
msgstr ""
"Automatické aktualizace jsou zakázané při mobilním nebo měřeném připojení."
#: src/gs-prefs-dialog.ui:88
msgid "Automatic Update Notifications"
msgstr "Oznamovat automatické aktualizace"
#: src/gs-prefs-dialog.ui:102
msgid "Show notifications when updates have been automatically installed."
msgstr "Zobrazovat oznámení, když jsou automaticky nainstalovány aplikace."
#. TRANSLATORS: This is a text displayed during a distro upgrade. %s
#. will be replaced by the name and version of distro, e.g. 'Fedora 23'.
#: src/gs-removal-dialog.c:120
#, c-format
msgid ""
"Some of the currently installed software is not compatible with %s. If you "
"continue, the following will be automatically removed during the upgrade:"
msgstr ""
"Některý z právě instalovaného softwaru není kompatibilní s distribucí %s. "
"Pokud budete pokračovat, následujíc se během povýšení odstraní:"
#: src/gs-removal-dialog.ui:26
msgid "Incompatible Software"
msgstr "Nekompatibilní software"
#: src/gs-removal-dialog.ui:39
msgid "_Continue"
msgstr "_Pokračovat"
#. TRANSLATORS: This string is used to construct the 'X applications
#. installed' sentence, describing a software repository.
#: src/gs-repos-dialog.c:98
#, c-format
msgid "%u application installed"
msgid_plural "%u applications installed"
msgstr[0] "Nainstalována %u aplikace"
msgstr[1] "Nainstalovány %u aplikace"
msgstr[2] "Nainstalováno %u aplikací"
#. TRANSLATORS: This string is used to construct the 'X add-ons
#. installed' sentence, describing a software repository.
#: src/gs-repos-dialog.c:105
#, c-format
msgid "%u add-on installed"
msgid_plural "%u add-ons installed"
msgstr[0] "Nainstalován %u doplněk"
msgstr[1] "Nainstalovány %u doplňky"
msgstr[2] "Nainstalováno %u doplňků"
#. TRANSLATORS: This string is used to construct the 'X applications
#. and y add-ons installed' sentence, describing a software repository.
#. The correct form here depends on the number of applications.
#: src/gs-repos-dialog.c:113
#, c-format
msgid "%u application"
msgid_plural "%u applications"
msgstr[0] "%u aplikace"
msgstr[1] "%u aplikace"
msgstr[2] "%u aplikací"
#. TRANSLATORS: This string is used to construct the 'X applications
#. and y add-ons installed' sentence, describing a software repository.
#. The correct form here depends on the number of add-ons.
#: src/gs-repos-dialog.c:119
#, c-format
msgid "%u add-on"
msgid_plural "%u add-ons"
msgstr[0] "%u doplněk"
msgstr[1] "%u doplňky"
msgstr[2] "%u doplňků"
#. TRANSLATORS: This string is used to construct the 'X applications
#. and y add-ons installed' sentence, describing a software repository.
#. The correct form here depends on the total number of
#. applications and add-ons.
#: src/gs-repos-dialog.c:126
#, c-format
msgid "%s and %s installed"
msgid_plural "%s and %s installed"
msgstr[0] "%s a %s"
msgstr[1] "%s a %s"
msgstr[2] "%s a %s"
#. TRANSLATORS: this is a prompt message, and '%s' is a
#. * repository name, e.g. 'GNOME Nightly'
#: src/gs-repos-dialog.c:302
#, c-format
msgid "Remove “%s”?"
msgstr "Odebrat repozitář „%s“?"
#. TRANSLATORS: this is a prompt message, and '%s' is a
#. * repository name, e.g. 'GNOME Nightly'
#: src/gs-repos-dialog.c:307
#, c-format
msgid "Disable “%s”?"
msgstr "Zakázat repozitář „%s“?"
#. TRANSLATORS: longer dialog text
#: src/gs-repos-dialog.c:311
msgid ""
"Software that has been installed from this repository will no longer receive "
"updates, including security fixes."
msgstr ""
"Software, který byl nainstalovaný z tohoto repozitáře, nebude již nadále "
"dostávat aktualizace, a to ani bezpečnostní opravy."
#. TRANSLATORS: this is button text to remove the repo
#: src/gs-repos-dialog.c:329
msgid "Disable"
msgstr "Zakázat"
#. TRANSLATORS: this is the fallback text we use if we can't
#. figure out the name of the operating system
#: src/gs-repos-dialog.c:745
msgid "the operating system"
msgstr "operačního systému"
#. TRANSLATORS: This is the description text displayed in the Software Repositories dialog.
#. %s gets replaced by the name of the actual distro, e.g. Fedora.
#: src/gs-repos-dialog.c:811 src/gs-repos-dialog.c:847
#, c-format
msgid "These repositories supplement the default software provided by %s."
msgstr ""
"Tyto repozitáře doplňují výchozí nabídku softwaru poskytovaného distribucí "
"%s."
#. TRANSLATORS: info bar title in the software repositories dialog
#: src/gs-repos-dialog.c:829
msgid "Third Party Repositories"
msgstr "Repozitáře třetích stran"
#: src/gs-repos-dialog.ui:73
msgid "No Additional Repositories"
msgstr "Nejsou žádné dodatečné repozitáře"
#. TRANSLATORS: this is a button in the software repositories
#. dialog for enabling a repo
#: src/gs-repo-row.c:96
msgid "_Enable"
msgstr "_Povolit"
#. TRANSLATORS: this is a button in the software repositories dialog
#. for removing a repo. The ellipsis indicates that further
#. steps are required
#: src/gs-repo-row.c:105
msgid "_Remove…"
msgstr "Odeb_rat…"
#. TRANSLATORS: this is a button in the software repositories dialog
#. for disabling a repo. The ellipsis indicates that further
#. steps are required
#: src/gs-repo-row.c:110
msgid "_Disable…"
msgstr "_Zakázat…"
#. TRANSLATORS: this is a button in the software repositories dialog
#. that shows the status of a repo being enabled
#: src/gs-repo-row.c:118
msgid "Enabling"
msgstr "Povoluje se"
#. TRANSLATORS: this is a button in the software repositories dialog
#. that shows the status of a repo being disabled
#: src/gs-repo-row.c:130
msgid "Disabling"
msgstr "Zakazuje se"
#. TRANSLATORS: this is a label in the software repositories
#. dialog that indicates that a repo is enabled.
#: src/gs-repo-row.c:144
msgid "Enabled"
msgstr "Povolený"
#. TRANSLATORS: this is a label in the software repositories
#. dialog that indicates that a repo is disabled.
#: src/gs-repo-row.c:150
msgid "Disabled"
msgstr "Zakázaný"
#. TRANSLATORS: lighthearted star rating description;
#. * A really bad application
#: src/gs-review-dialog.c:82
msgid "Hate it"
msgstr "Nenávidím ji"
#. TRANSLATORS: lighthearted star rating description;
#. * Not a great application
#: src/gs-review-dialog.c:86
msgid "Don’t like it"
msgstr "Nemám ji rád"
#. TRANSLATORS: lighthearted star rating description;
#. * A fairly-good application
#: src/gs-review-dialog.c:90
msgid "It’s OK"
msgstr "Běžná aplikace"
#. TRANSLATORS: lighthearted star rating description;
#. * A good application
#: src/gs-review-dialog.c:94
msgid "Like it"
msgstr "Mám ji rád"
#. TRANSLATORS: lighthearted star rating description;
#. * A really awesome application
#: src/gs-review-dialog.c:98
msgid "Love it"
msgstr "Zbožňuji ji"
#. TRANSLATORS: the review can't just be copied and pasted
#: src/gs-review-dialog.c:120
msgid "Please take more time writing the review"
msgstr "Věnujte prosím trochu času napsaní recenze"
#. TRANSLATORS: the review is not acceptable
#: src/gs-review-dialog.c:124
msgid "Please choose a star rating"
msgstr "Ohodnoťte prosím hvězdičkami"
#. TRANSLATORS: the review is not acceptable
#: src/gs-review-dialog.c:128
msgid "The summary is too short"
msgstr "Celkové hodnocení je příliš krátké"
#. TRANSLATORS: the review is not acceptable
#: src/gs-review-dialog.c:132
msgid "The summary is too long"
msgstr "Celkové hodnocení je příliš dlouhé"
#. TRANSLATORS: the review is not acceptable
#: src/gs-review-dialog.c:136
msgid "The description is too short"
msgstr "Recenze je příliš krátká"
#. TRANSLATORS: the review is not acceptable
#: src/gs-review-dialog.c:140
msgid "The description is too long"
msgstr "Recenze je příliš dlouhá"
#. Translators: Title of the dialog box where the users can write and publish their opinions about the apps.
#: src/gs-review-dialog.ui:10
msgid "Post Review"
msgstr "Příspěvek do recenzí"
#. Translators: A button to publish the user's opinion about the app.
#: src/gs-review-dialog.ui:34
msgid "_Post"
msgstr "_Odeslat"
#: src/gs-review-dialog.ui:110
msgid "Summary"
msgstr "Celkový dojem"
#: src/gs-review-dialog.ui:120
msgid ""
"Give a short summary of your review, for example: “Great app, would "
"recommend”."
msgstr ""
"Uveďte krátké shrnutí své recenze, například: „Skvělá aplikace, doporučuji“."
#. Translators: This is where the users enter their opinions about the apps.
#: src/gs-review-dialog.ui:145
msgctxt "app review"
msgid "Review"
msgstr "Recenze"
#: src/gs-review-dialog.ui:155
msgid "What do you think of the app? Try to give reasons for your views."
msgstr "Co si o aplikaci myslíte? Snažte se uvést důvody svého hodnocení."
#: src/gs-review-dialog.ui:187
msgid ""
"Find what data is sent in our <a href=\"https://odrs.gnome.org/privacy"
"\">privacy policy</a>."
msgstr ""
"Najděte si v našich <a href=\"https://odrs.gnome.org/privacy\">zásadách "
"soukromí</a>, jaká data jsou odesílána."
#. Translators: A label for the total number of reviews.
#: src/gs-review-histogram.ui:412
msgid "ratings in total"
msgstr "celkové hodnocení"
#. TRANSLATORS: we explain what the action is going to do
#: src/gs-review-row.c:223
msgid "You can report reviews for abusive, rude, or discriminatory behavior."
msgstr ""
"Můžete nahlásit recenze, které jsou urážlivé, sprosté nebo diskriminační."
#. TRANSLATORS: we ask the user if they really want to do this
#: src/gs-review-row.c:228
msgid ""
"Once reported, a review will be hidden until it has been checked by an "
"administrator."
msgstr "Po nahlášení bude recenze skryta, dokud ji nezkontroluje správce."
#. TRANSLATORS: window title when
#. * reporting a user-submitted review
#. * for moderation
#: src/gs-review-row.c:242
msgid "Report Review?"
msgstr "Nahlásit recenzi?"
#. TRANSLATORS: button text when
#. * sending a review for moderation
#: src/gs-review-row.c:246
msgid "Report"
msgstr "Nahlásit"
#. Translators: Users can express their opinions about other users' opinions about the apps.
#: src/gs-review-row.ui:105
msgid "Was this review useful to you?"
msgstr "Byla pro vás tato recenze přínosná?"
#: src/gs-review-row.ui:121
msgid "Yes"
msgstr "Ano"
#: src/gs-review-row.ui:130
msgid "No"
msgstr "Ne"
#. Translators: Button text for indifference, only used when moderating
#: src/gs-review-row.ui:139
msgid "Meh"
msgstr "Nezájem"
#: src/gs-review-row.ui:162
msgid "Report…"
msgstr "Nahlásit…"
#: src/gs-review-row.ui:172
msgid "Remove…"
msgstr "Odebrat…"
#. TRANSLATORS: this is when we try to download a screenshot and
#. * we get back 404
#: src/gs-screenshot-image.c:236
msgid "Screenshot not found"
msgstr "Snímek nebyl nalezen"
#. TRANSLATORS: possibly image file corrupt or not an image
#: src/gs-screenshot-image.c:251
msgid "Failed to load image"
msgstr "Selhalo načtení obrázku"
#. TRANSLATORS: this is when we request a screenshot size that
#. * the generator did not create or the parser did not add
#: src/gs-screenshot-image.c:382
msgid "Screenshot size not found"
msgstr "Velikost snímku nebyla nalezena"
#. TRANSLATORS: this is when we try create the cache directory
#. * but we were out of space or permission was denied
#: src/gs-screenshot-image.c:412
msgid "Could not create cache"
msgstr "Nelze vytvoři mezipaměť"
#. TRANSLATORS: this is when we try to download a screenshot
#. * that was not a valid URL
#: src/gs-screenshot-image.c:472
msgid "Screenshot not valid"
msgstr "Snímek není platný"
#. TRANSLATORS: this is when networking is not available
#: src/gs-screenshot-image.c:487
msgid "Screenshot not available"
msgstr "Snímek není k dispozici"
#: src/gs-screenshot-image.c:545
msgid "Screenshot"
msgstr "Snímek"
#. TRANSLATORS: this is when there are too many search results
#. * to show in in the search page
#: src/gs-search-page.c:143
#, c-format
msgid "%u more match"
msgid_plural "%u more matches"
msgstr[0] "%u další výsledek hledání"
msgstr[1] "%u další výsledky hledání"
msgstr[2] "%u dalších výsledků hledání"
#: src/gs-search-page.ui:7
msgid "Search page"
msgstr "Stránka hledání"
#: src/gs-search-page.ui:54
msgid "No Application Found"
msgstr "Žádná aplikace nebyla nalezena"
#. TRANSLATORS: this is part of the in-app notification,
#. * where the %s is the truncated hostname, e.g.
#. * 'alt.fedoraproject.org'
#. TRANSLATORS: this is part of the in-app notification,
#. * where the %s is the origin id, e.g. 'fedora'
#. TRANSLATORS: this is part of the in-app notification,
#. * where the %s is a multi-word localised app name
#. * e.g. 'Getting things GNOME!"
#: src/gs-shell.c:1111 src/gs-shell.c:1116 src/gs-shell.c:1131
#: src/gs-shell.c:1135
#, c-format
msgid "“%s”"
msgstr "„%s“"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the source (e.g. "alt.fedoraproject.org")
#: src/gs-shell.c:1182
#, c-format
msgid "Unable to download firmware updates from %s"
msgstr "Nelze stáhnout aktualizace firmwaru z %s"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the source (e.g. "alt.fedoraproject.org")
#: src/gs-shell.c:1188
#, c-format
msgid "Unable to download updates from %s"
msgstr "Nelze stáhnout aktualizace z %s"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1195 src/gs-shell.c:1240
msgid "Unable to download updates"
msgstr "Nelze stáhnout aktualizace"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1201
msgid ""
"Unable to download updates: internet access was required but wasn’t available"
msgstr ""
"Nelze stáhout aktualizace: přístup k internetu je nezbytný, ale není k "
"dispozici"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the source (e.g. "alt.fedoraproject.org")
#: src/gs-shell.c:1210
#, c-format
msgid "Unable to download updates from %s: not enough disk space"
msgstr "Nelze stáhnout aktualizace z %s: není dostatek místa na disku"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1215
msgid "Unable to download updates: not enough disk space"
msgstr "Nelze stáhnout aktualizace: není dostatek místa na disku"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1222
msgid "Unable to download updates: authentication was required"
msgstr "Nelze stáhnout aktualizace: je vyžadováno ověření"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1227
msgid "Unable to download updates: authentication was invalid"
msgstr "Nelze stáhnout aktualizace: ověření nebylo platné"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1232
msgid ""
"Unable to download updates: you do not have permission to install software"
msgstr "Nelze stáhnout aktualizace: nemáte oprávnění instalovat software"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1243
msgid "Unable to get list of updates"
msgstr "Nelze získat seznam aktualizací"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the first %s is the application name (e.g. "GIMP") and
#. * the second %s is the origin, e.g. "Fedora Project [fedoraproject.org]"
#: src/gs-shell.c:1286
#, c-format
msgid "Unable to install %s as download failed from %s"
msgstr "Nelze nainstalovat balíček %s, protože selhalo jeho stažení z %s"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1292
#, c-format
msgid "Unable to install %s as download failed"
msgstr "Nelze nainstalovat balíček %s, protože selhalo stažení"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the first %s is the application name (e.g. "GIMP")
#. * and the second %s is the name of the runtime, e.g.
#. * "GNOME SDK [flatpak.gnome.org]"
#: src/gs-shell.c:1305
#, c-format
msgid "Unable to install %s as runtime %s not available"
msgstr ""
"Nelze nainstalovat balíček %s, protože není k dispozici běhové prostředí %s"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1311
#, c-format
msgid "Unable to install %s as not supported"
msgstr "Nelze nainstalovat balíček %s, protože není podporovaný"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1318
msgid "Unable to install: internet access was required but wasn’t available"
msgstr ""
"Nelze nainstalovat: přístup k internetu je nezbytný, ale není k dispozici"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1324
msgid "Unable to install: the application has an invalid format"
msgstr "Nelze nainstalovat: aplikace má neplatný formát"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1329
#, c-format
msgid "Unable to install %s: not enough disk space"
msgstr "Nelze nainstalovat balíček %s: není dostatek místa na disku"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1336
#, c-format
msgid "Unable to install %s: authentication was required"
msgstr "Nelze nainstalovat balíček %s: je vyžadováno ověření"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1343
#, c-format
msgid "Unable to install %s: authentication was invalid"
msgstr "Nelze nainstalovat balíček %s: ověření nebylo platné"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1350
#, c-format
msgid "Unable to install %s: you do not have permission to install software"
msgstr "Nelze nainstalovat balíček %s: nemáte oprávnění k instalaci softwaru"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "Dell XPS 13")
#: src/gs-shell.c:1358
#, c-format
msgid "Unable to install %s: AC power is required"
msgstr "Nelze nainstalovat balíček %s: je vyžadováno připojené napájení"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "Dell XPS 13")
#: src/gs-shell.c:1365
#, c-format
msgid "Unable to install %s: The battery level is too low"
msgstr "Nelze nainstalovat balíček %s: úroveň nabití baterie je příliš nízká"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1374
#, c-format
msgid "Unable to install %s"
msgstr "Nelze nainstalovat balíček %s"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the first %s is the app name (e.g. "GIMP") and
#. * the second %s is the origin, e.g. "Fedora" or
#. * "Fedora Project [fedoraproject.org]"
#: src/gs-shell.c:1421
#, c-format
msgid "Unable to update %s from %s as download failed"
msgstr "Nelze aktualizovat balíček %s z %s, protože selhalo stažení"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1428
#, c-format
msgid "Unable to update %s as download failed"
msgstr "Nelze aktualizovat balíček %s, protože selhalo stažení"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the origin, e.g. "Fedora" or
#. * "Fedora Project [fedoraproject.org]"
#: src/gs-shell.c:1435
#, c-format
msgid "Unable to install updates from %s as download failed"
msgstr "Nelze nainstalovat aktualizace z %s, protože selhalo stažení"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1439
#, c-format
msgid "Unable to install updates as download failed"
msgstr "Nelze nainstalovat aktualizace, protože selhalo stažení"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1445
msgid "Unable to update: internet access was required but wasn’t available"
msgstr ""
"Nelze aktualizovat: přístup k internetu je nezbytný, ale není k dispozici"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1455
#, c-format
msgid "Unable to update %s: not enough disk space"
msgstr "Nelze aktualizovat balíček %s: nedostatek místa na disku"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1460
#, c-format
msgid "Unable to install updates: not enough disk space"
msgstr "Nelze nainstalovat aktualizace: nedostatek místa na disku"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1470
#, c-format
msgid "Unable to update %s: authentication was required"
msgstr "Nelze aktualizovat balíček %s: je vyžadováno ověření"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1475
#, c-format
msgid "Unable to install updates: authentication was required"
msgstr "Nelze nainstalovat aktualizace: je vyžadováno ověření"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1484
#, c-format
msgid "Unable to update %s: authentication was invalid"
msgstr "Nelze aktualizovat balíček %s: ověření bylo neplatné"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1489
#, c-format
msgid "Unable to install updates: authentication was invalid"
msgstr "Nelze nainstalovat aktualizace: ověření bylo neplatné"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1498
#, c-format
msgid "Unable to update %s: you do not have permission to update software"
msgstr "Nelze aktualizovat balíček %s: nemáte oprávnění k aktualizaci softwaru"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1504
#, c-format
msgid ""
"Unable to install updates: you do not have permission to update software"
msgstr ""
"Nelze nainstalovat aktualizace: nemáte oprávnění k aktualizaci softwaru"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "Dell XPS 13")
#: src/gs-shell.c:1514
#, c-format
msgid "Unable to update %s: AC power is required"
msgstr ""
"Nelze aktualizovat balíček %s: je vyžadováno napájení z elektrické sítě"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "Dell XPS 13")
#: src/gs-shell.c:1520
#, c-format
msgid "Unable to install updates: AC power is required"
msgstr ""
"Nelze nainstalovat aktualizace: je vyžadováno napájení z elektrické sítě"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "Dell XPS 13")
#: src/gs-shell.c:1529
#, c-format
msgid "Unable to update %s: The battery level is too low"
msgstr "Nelze aktualizovat balíček %s: úroveň nabití baterie je příliš nízká"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "Dell XPS 13")
#: src/gs-shell.c:1535
#, c-format
msgid "Unable to install updates: The battery level is too low"
msgstr "Nelze nainstalovat aktualizace: úroveň nabití baterie je příliš nízká"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1546
#, c-format
msgid "Unable to update %s"
msgstr "Nelze aktualizovat balíček %s"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1549
#, c-format
msgid "Unable to install updates"
msgstr "Nelze nainstalovat aktualizace"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the first %s is the distro name (e.g. "Fedora 25") and
#. * the second %s is the origin, e.g. "Fedora Project [fedoraproject.org]"
#: src/gs-shell.c:1592
#, c-format
msgid "Unable to upgrade to %s from %s"
msgstr "Nelze povýšit na %s z %s"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the app name (e.g. "GIMP")
#: src/gs-shell.c:1597
#, c-format
msgid "Unable to upgrade to %s as download failed"
msgstr "Nelze povýšit na %s, protože selhalo stažení"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the distro name (e.g. "Fedora 25")
#: src/gs-shell.c:1606
#, c-format
msgid ""
"Unable to upgrade to %s: internet access was required but wasn’t available"
msgstr ""
"Nelze povýšit na %s: přístup k Internetu je nezbytný a přitom není k "
"dispozici"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the distro name (e.g. "Fedora 25")
#: src/gs-shell.c:1615
#, c-format
msgid "Unable to upgrade to %s: not enough disk space"
msgstr "Nelze povýšit na %s: není dostatek místa na disku"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the distro name (e.g. "Fedora 25")
#: src/gs-shell.c:1623
#, c-format
msgid "Unable to upgrade to %s: authentication was required"
msgstr "Nelze povýšit na %s: je vyžadováno ověření"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the distro name (e.g. "Fedora 25")
#: src/gs-shell.c:1630
#, c-format
msgid "Unable to upgrade to %s: authentication was invalid"
msgstr "Nelze povýšit na %s: ověření nebylo platné"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the distro name (e.g. "Fedora 25")
#: src/gs-shell.c:1637
#, c-format
msgid "Unable to upgrade to %s: you do not have permission to upgrade"
msgstr "Nelze povýšit na %s: nemáte oprávnění k povyšování"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the distro name (e.g. "Fedora 25")
#: src/gs-shell.c:1644
#, c-format
msgid "Unable to upgrade to %s: AC power is required"
msgstr "Nelze povýšit na %s: je vyžadováno připojené napájení"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the distro name (e.g. "Fedora 25")
#: src/gs-shell.c:1651
#, c-format
msgid "Unable to upgrade to %s: The battery level is too low"
msgstr "Nelze povýšit na %s: úroveň nabití baterie je příliš nízká"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the distro name (e.g. "Fedora 25")
#: src/gs-shell.c:1660
#, c-format
msgid "Unable to upgrade to %s"
msgstr "Nelze povýšit na %s"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1698
#, c-format
msgid "Unable to remove %s: authentication was required"
msgstr "Nelze odstranit balíček %s: je vyžadováno ověření"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1704
#, c-format
msgid "Unable to remove %s: authentication was invalid"
msgstr "Nelze odstranit balíček %s: ověření nebylo platné"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1710
#, c-format
msgid "Unable to remove %s: you do not have permission to remove software"
msgstr "Nelze odstranit balíček %s: nemáte oprávnění k odstranění softwaru"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1717
#, c-format
msgid "Unable to remove %s: AC power is required"
msgstr "Nelze odstranit balíček %s: je vyžadováno připojené napájení"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1724
#, c-format
msgid "Unable to remove %s: The battery level is too low"
msgstr "Nelze odstranit balíček %s: úroveň nabití baterie je příliš nízká"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1736
#, c-format
msgid "Unable to remove %s"
msgstr "Nelze odstranit balíček %s"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the first %s is the application name (e.g. "GIMP")
#. * and the second %s is the name of the runtime, e.g.
#. * "GNOME SDK [flatpak.gnome.org]"
#: src/gs-shell.c:1779
#, c-format
msgid "Unable to launch %s: %s is not installed"
msgstr "Nelze spustit aplikaci %s: balíček %s není nainstalovaný"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1786 src/gs-shell.c:1837 src/gs-shell.c:1878
#: src/gs-shell.c:1926
msgid "Not enough disk space — free up some space and try again"
msgstr ""
"Nebyl dostatek místa na disku – uvolněte nějaké místo a pak to zkuste znovu"
#. TRANSLATORS: we failed to get a proper error code
#: src/gs-shell.c:1797 src/gs-shell.c:1848 src/gs-shell.c:1889
#: src/gs-shell.c:1960
msgid "Sorry, something went wrong"
msgstr "Litujeme, ale něco se stalo špatně"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1829
msgid "Failed to install file: not supported"
msgstr "Selhala instalace souboru: není podporován"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1833
msgid "Failed to install file: authentication failed"
msgstr "Selhala instalace souboru: selhalo ověření"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1870
msgid "Failed to install: not supported"
msgstr "Selhala instalace: není podporováno"
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1874
msgid "Failed to install: authentication failed"
msgstr "Selhala instalace: selhalo ověření"
#. TRANSLATORS: failure text for the in-app notification,
#. * the %s is the origin, e.g. "Fedora" or
#. * "Fedora Project [fedoraproject.org]"
#: src/gs-shell.c:1920
#, c-format
msgid "Unable to contact %s"
msgstr "Nelze kontaktovat %s"
#. TRANSLATORS: failure text for the in-app notification,
#. * where the %s is the application name (e.g. "GIMP")
#: src/gs-shell.c:1935
#, c-format
msgid "%s needs to be restarted to use new plugins."
msgstr ""
"Aplikace %s musí být restartována, aby mohla používat nový zásuvný modul."
#. TRANSLATORS: failure text for the in-app notification
#: src/gs-shell.c:1940
msgid "This application needs to be restarted to use new plugins."
msgstr ""
"Tato aplikace musí být restartována, aby mohla používat nový zásuvný modul."
#. TRANSLATORS: need to be connected to the AC power
#: src/gs-shell.c:1947
msgid "AC power is required"
msgstr "Je vyžadováno připojené napájení"
#. TRANSLATORS: not enough juice to do this safely
#: src/gs-shell.c:1951
msgid "The battery level is too low"
msgstr "Úroveň nabití baterie je příliš nízká"
#. TRANSLATORS: this refers to where the app came from
#: src/gs-shell-search-provider.c:258
#, c-format
msgid "Source: %s"
msgstr "Zdroj: %s"
#: src/gs-summary-tile.c:92
#, c-format
msgid "%s (Installing)"
msgstr "%s (instaluje se)"
#: src/gs-summary-tile.c:97
#, c-format
msgid "%s (Removing)"
msgstr "%s (odebírá se)"
#. TRANSLATORS: this is a button in the software repositories
#. dialog for removing multiple repos
#: src/gs-third-party-repo-row.c:93
msgid "_Remove All"
msgstr "Odeb_rat vše"
#. TRANSLATORS: this is where the packager did not write
#. * a description for the update
#: src/gs-update-dialog.c:188
msgid "No update description available."
msgstr "Není k dispozici žádný popis aktualizace."
#. TRANSLATORS: this is the subtitle of the installed updates dialog window.
#. %s will be replaced by the date when the updates were installed.
#. The date format is defined by the locale's preferred date representation
#. ("%x" in strftime.)
#: src/gs-update-dialog.c:292
#, c-format
msgid "Installed on %s"
msgstr "Nainstalováno %s"
#. TRANSLATORS: this is the title of the installed updates dialog window
#: src/gs-update-dialog.c:312
msgid "Installed Updates"
msgstr "Instalované aktualizace"
#. TRANSLATORS: This is the header for package additions during
#. * a system update
#: src/gs-update-dialog.c:528
msgid "Additions"
msgstr "Přidávání"
#. TRANSLATORS: This is the header for package removals during
#. * a system update
#: src/gs-update-dialog.c:532
msgid "Removals"
msgstr "Odstraňování"
#. TRANSLATORS: This is the header for package updates during
#. * a system update
#: src/gs-update-dialog.c:536
msgid "Updates"
msgstr "Aktualizace"
#. TRANSLATORS: This is the header for package downgrades during
#. * a system update
#: src/gs-update-dialog.c:540
msgid "Downgrades"
msgstr "Ponižování"
#: src/gs-update-dialog.ui:100
msgid "No updates have been installed on this system."
msgstr "Z tohoto zdroje nejsou nainstalovány žádné aktualizace."
#: src/gs-update-monitor.c:111
msgid "Security Updates Pending"
msgstr "Bezpečnostní aplikace čekají na zpracování"
#: src/gs-update-monitor.c:112
msgid "It is recommended that you install important updates now"
msgstr "Doporučuje se důležité aktualizace nainstalovat okamžitě"
#: src/gs-update-monitor.c:115
msgid "Restart & Install"
msgstr "Restartovat a instalovat"
#: src/gs-update-monitor.c:119
msgid "Software Updates Available"
msgstr "Dostupné aktualizace softwaru"
#: src/gs-update-monitor.c:120
msgid "Important OS and application updates are ready to be installed"
msgstr "Jsou připraveny k instalaci důležité aktualizace OS a aplikací"
#: src/gs-update-monitor.c:124
msgid "View"
msgstr "Zobrazit"
#. TRANSLATORS: apps were auto-updated and restart is required
#: src/gs-update-monitor.c:232
#, c-format
msgid "%u Application Updated — Restart Required"
msgid_plural "%u Applications Updated — Restart Required"
msgstr[0] "Byla aktualizována %u aplikace — vyžaduje restart"
msgstr[1] "Byly aktualizovány %u aplikace — vyžaduje restart"
msgstr[2] "Bylo aktualizováno %u aplikací — vyžaduje restart"
#. TRANSLATORS: apps were auto-updated
#: src/gs-update-monitor.c:238
#, c-format
msgid "%u Application Updated"
msgid_plural "%u Applications Updated"
msgstr[0] "Byla aktualizována %u aplikace"
msgstr[1] "Byly aktualizovány %u aplikace"
msgstr[2] "Bylo aktualizováno %u aplikací"
#. TRANSLATORS: %1 is an application name, e.g. Firefox
#: src/gs-update-monitor.c:249
#, c-format
msgid "%s has been updated."
msgstr "Aplikace %s byla aktualizována."
#. TRANSLATORS: the app needs restarting
#: src/gs-update-monitor.c:252
msgid "Please restart the application."
msgstr "Restartujte ji prosím."
#. TRANSLATORS: %1 and %2 are both application names, e.g. Firefox
#: src/gs-update-monitor.c:260
#, c-format
msgid "%s and %s have been updated."
msgstr "Aplikace %s a %s byly aktualizovány."
#. TRANSLATORS: at least one application needs restarting
#: src/gs-update-monitor.c:266 src/gs-update-monitor.c:285
#, c-format
msgid "%u application requires a restart."
msgid_plural "%u applications require a restart."
msgstr[0] "%u aplikace vyžaduje restart."
msgstr[1] "%u aplikace vyžadují restart."
msgstr[2] "%u aplikací vyžaduje restart."
#. TRANSLATORS: %1, %2 and %3 are all application names, e.g. Firefox
#: src/gs-update-monitor.c:278
#, c-format
msgid "Includes %s, %s and %s."
msgstr "Včetně %s, %s a %s."
#. TRANSLATORS: this is when the current OS version goes end-of-life
#: src/gs-update-monitor.c:519 src/gs-updates-page.ui:43
msgid "Operating System Updates Unavailable"
msgstr "Aktualizace operačního systému nejsou dostupné"
#. TRANSLATORS: this is the message dialog for the distro EOL notice
#: src/gs-update-monitor.c:521
msgid "Upgrade to continue receiving security updates."
msgstr "Povýšit, aby byly nadále přijímány bezpečnostní aktualizace."
#. TRANSLATORS: this is a distro upgrade, the replacement would be the
#. * distro name, e.g. 'Fedora'
#: src/gs-update-monitor.c:576
#, c-format
msgid "A new version of %s is available to install"
msgstr "K instalaci je dostupná nová verze distribuce %s"
#. TRANSLATORS: this is a distro upgrade
#: src/gs-update-monitor.c:580
msgid "Software Upgrade Available"
msgstr "Dostupné povýšení softwaru"
#. TRANSLATORS: title when we offline updates have failed
#: src/gs-update-monitor.c:969
msgid "Software Updates Failed"
msgstr "Aktualizace softwaru selhaly"
#. TRANSLATORS: message when we offline updates have failed
#: src/gs-update-monitor.c:971
msgid "An important OS update failed to be installed."
msgstr "Selhala instalace důležité aktualizace OS."
#: src/gs-update-monitor.c:972
msgid "Show Details"
msgstr "Zobrazit podrobnosti"
#. TRANSLATORS: Notification title when we've done a distro upgrade
#: src/gs-update-monitor.c:995
msgid "System Upgrade Complete"
msgstr "Povýšení systému bylo dokončeno"
#. TRANSLATORS: This is the notification body when we've done a
#. * distro upgrade. First %s is the distro name and the 2nd %s
#. * is the version, e.g. "Welcome to Fedora 28!"
#: src/gs-update-monitor.c:1000
#, c-format
msgid "Welcome to %s %s!"
msgstr "Vítejte ve vydání %s %s!"
#. TRANSLATORS: title when we've done offline updates
#: src/gs-update-monitor.c:1006
msgid "Software Update Installed"
msgid_plural "Software Updates Installed"
msgstr[0] "Aktualizace softwaru nainstalována"
msgstr[1] "Aktualizace softwaru nainstalovány"
msgstr[2] "Aktualizace softwaru nainstalovány"
#. TRANSLATORS: message when we've done offline updates
#: src/gs-update-monitor.c:1010
msgid "An important OS update has been installed."
msgid_plural "Important OS updates have been installed."
msgstr[0] "Důležitá aktualizace OS byla nainstalována."
msgstr[1] "Důležité aktualizace OS byly nainstalovány."
msgstr[2] "Důležité aktualizace OS byly nainstalovány."
#. TRANSLATORS: Button to look at the updates that were installed.
#. * Note that it has nothing to do with the application reviews, the
#. * users can't express their opinions here. In some languages
#. * "Review (evaluate) something" is a different translation than
#. * "Review (browse) something."
#: src/gs-update-monitor.c:1021
msgctxt "updates"
msgid "Review"
msgstr "Přehled"
#. TRANSLATORS: this is when the offline update failed
#: src/gs-update-monitor.c:1069
msgid "Failed To Update"
msgstr "Aktualizace selhala"
#. TRANSLATORS: the user must have updated manually after
#. * the updates were prepared
#: src/gs-update-monitor.c:1075
msgid "The system was already up to date."
msgstr "Systém již byl aktuální."
#. TRANSLATORS: the user aborted the update manually
#: src/gs-update-monitor.c:1080
msgid "The update was cancelled."
msgstr "Aktualizace byla zrušena."
#. TRANSLATORS: the package manager needed to download
#. * something with no network available
#: src/gs-update-monitor.c:1086
msgid ""
"Internet access was required but wasn’t available. Please make sure that you "
"have internet access and try again."
msgstr ""
"Je vyžadován přístup k Internetu, ale není dostupný. Zkontrolujte své "
"připojení k Internetu a zkuste to znovu."
#. TRANSLATORS: if the package is not signed correctly
#: src/gs-update-monitor.c:1092
msgid ""
"There were security issues with the update. Please consult your software "
"provider for more details."
msgstr ""
"S aktualizací nastal bezpečnostní problém. Podrobnosti prosím proberte se "
"svým poskytovatelem softwaru."
#. TRANSLATORS: we ran out of disk space
#: src/gs-update-monitor.c:1098
msgid ""
"There wasn’t enough disk space. Please free up some space and try again."
msgstr ""
"Nebyl dostatek místa na disku. Uvolněte prosím nějaké místo a pak to zkuste "
"znovu."
#. TRANSLATORS: We didn't handle the error type
#: src/gs-update-monitor.c:1103
msgid ""
"We’re sorry: the update failed to install. Please wait for another update "
"and try again. If the problem persists, contact your software provider."
msgstr ""
"Bohužel, instalace aktualizace selhala. Vyčkejte prosím na další aktualizaci "
"a pak to zkuste znovu. Pokud problém přetrvá, kontaktujte svého "
"poskytovatele softwaru."
#. TRANSLATORS: Time in 24h format
#: src/gs-updates-page.c:226
msgid "%R"
msgstr "%k∶%M"
#. TRANSLATORS: Time in 12h format
#: src/gs-updates-page.c:229
msgid "%l:%M %p"
msgstr "%l∶%M %p"
#. TRANSLATORS: This is the word "Yesterday" followed by a
#. time string in 24h format. i.e. "Yesterday, 14:30"
#: src/gs-updates-page.c:235
msgid "Yesterday, %R"
msgstr "Včera %k∶%M"
#. TRANSLATORS: This is the word "Yesterday" followed by a
#. time string in 12h format. i.e. "Yesterday, 2:30 PM"
#: src/gs-updates-page.c:239
msgid "Yesterday, %l:%M %p"
msgstr "Včera %l∶%M %p"
#: src/gs-updates-page.c:242
msgid "Two days ago"
msgstr "Před dvěma dny"
#: src/gs-updates-page.c:244
msgid "Three days ago"
msgstr "Před třemi dny"
#: src/gs-updates-page.c:246
msgid "Four days ago"
msgstr "Před čtyřmi dny"
#: src/gs-updates-page.c:248
msgid "Five days ago"
msgstr "Před pěti dny"
#: src/gs-updates-page.c:250
msgid "Six days ago"
msgstr "Před šesti dny"
#: src/gs-updates-page.c:252
msgid "One week ago"
msgstr "Před jedním týdnem"
#: src/gs-updates-page.c:254
msgid "Two weeks ago"
msgstr "Před dvěma týdny"
#. TRANSLATORS: the update panel is doing *something* vague
#: src/gs-updates-page.c:270
msgid "Looking for new updates…"
msgstr "Vyhledávají se nové aktualizace…"
#. TRANSLATORS: the updates panel is starting up
#: src/gs-updates-page.c:339
msgid "Setting up updates…"
msgstr "Nastavují se aktualizace…"
#. TRANSLATORS: the updates panel is starting up
#: src/gs-updates-page.c:340 src/gs-updates-page.c:347
msgid "(This could take a while)"
msgstr "(může to chvilku trvat)"
#. TRANSLATORS: This is the time when we last checked for updates
#: src/gs-updates-page.c:454
#, c-format
msgid "Last checked: %s"
msgstr "Poslední kontrola: %s"
#. TRANSLATORS: the first %s is the distro name, e.g. 'Fedora'
#. * and the second %s is the distro version, e.g. '25'
#: src/gs-updates-page.c:618
#, c-format
msgid "%s %s is no longer supported."
msgstr "Systém %s %s již není podporován."
#. TRANSLATORS: OS refers to operating system, e.g. Fedora
#: src/gs-updates-page.c:623
msgid "Your OS is no longer supported."
msgstr "Váš operační systém není nadále podporován."
#. TRANSLATORS: EOL distros do not get important updates
#: src/gs-updates-page.c:628
msgid "This means that it does not receive security updates."
msgstr ""
"Znamená to, že pro něj již nadále nejsou poskytovány bezpečnostní opravy."
#. TRANSLATORS: upgrade refers to a major update, e.g. Fedora 25 to 26
#: src/gs-updates-page.c:632
msgid "It is recommended that you upgrade to a more recent version."
msgstr "Doporučuje se povýšit na nejnovější verzi."
#. TRANSLATORS: this is to explain that downloading updates may cost money
#: src/gs-updates-page.c:890
msgid "Charges May Apply"
msgstr "Možné zpoplatnění"
#. TRANSLATORS: we need network
#. * to do the updates check
#: src/gs-updates-page.c:894
msgid ""
"Checking for updates while using mobile broadband could cause you to incur "
"charges."
msgstr ""
"Kontrola aktualizací přes mobilní připojení může být zpoplatněna vaším "
"operátorem."
#. TRANSLATORS: this is a link to the
#. * control-center network panel
#: src/gs-updates-page.c:898
msgid "Check _Anyway"
msgstr "Přesto zkontrolovat"
#. TRANSLATORS: can't do updates check
#: src/gs-updates-page.c:914
msgid "No Network"
msgstr "Žádné připojení k síti"
#. TRANSLATORS: we need network
#. * to do the updates check
#: src/gs-updates-page.c:918
msgid "Internet access is required to check for updates."
msgstr "Přístup k internetu je nezbytný pro kontrolu aktualizací."
#. This label indicates that the update check is in progress
#: src/gs-updates-page.c:1341
msgid "Checking…"
msgstr "Kontroluje se…"
#: src/gs-updates-page.c:1354
msgid "Check for updates"
msgstr "Zkontrolovat aktualizace"
#: src/gs-updates-page.ui:7
msgid "Updates page"
msgstr "Stránka s aktualizacemi"
#. TRANSLATORS: This means all software (plural) installed on this system is up to date.
#: src/gs-updates-page.ui:177
msgid "Software is up to date"
msgstr "Software je aktuální"
#: src/gs-updates-page.ui:225
msgid ""
"Checking for updates when using mobile broadband could cause you to incur "
"charges"
msgstr ""
"Kontrola aktualizací přes mobilní připojení může způsobit finanční náklady "
"ze strany operátora připojení"
#: src/gs-updates-page.ui:237
msgid "_Check Anyway"
msgstr "_Přesto zkontrolovat"
#: src/gs-updates-page.ui:273
msgid "Go online to check for updates"
msgstr "Kvůli kontrole aktualizací se musíte připojit k síti"
#: src/gs-updates-page.ui:284
msgid "_Network Settings"
msgstr "_Nastavení sítě"
#: src/gs-updates-page.ui:357
msgid "Updates are automatically managed"
msgstr "Aktualizace jsou spravovány automaticky"
#. TRANSLATORS: This is the button for installing all
#. * offline updates
#: src/gs-updates-section.c:281
msgid "Restart & Update"
msgstr "Restartovat a aktualizovat"
#. TRANSLATORS: This is the button for upgrading all
#. * online-updatable applications
#: src/gs-updates-section.c:287
msgid "Update All"
msgstr "Aktualizovat vše"
#. TRANSLATORS: This is the header for system firmware that
#. * requires a reboot to apply
#: src/gs-updates-section.c:418
msgid "Integrated Firmware"
msgstr "Integrovaný Firmware"
#. TRANSLATORS: This is the header for offline OS and offline
#. * app updates that require a reboot to apply
#: src/gs-updates-section.c:422
msgid "Requires Restart"
msgstr "Vyžaduje restart"
#. TRANSLATORS: This is the header for online runtime and
#. * app updates, typically flatpaks or snaps
#: src/gs-updates-section.c:426
msgid "Application Updates"
msgstr "Aktualizace aplikací"
#. TRANSLATORS: This is the header for device firmware that can
#. * be installed online
#: src/gs-updates-section.c:430
msgid "Device Firmware"
msgstr "Firmware zařízení"
#: src/gs-updates-section.c:458 src/gs-upgrade-banner.ui:102
msgid "_Download"
msgstr "S_táhnout"
#: src/gs-upgrade-banner.c:91
msgid ""
"It is recommended that you back up your data and files before upgrading."
msgstr "Doporučuje se zazálohovat si před povýšením svá data a soubory."
#: src/gs-upgrade-banner.c:95
msgid "_Restart Now"
msgstr "_Restartovat hned"
#: src/gs-upgrade-banner.c:97
msgid "Updates will be applied when the computer is restarted."
msgstr "Aktualizace budou použity při restartu počítače."
#. TRANSLATORS: This is the text displayed when a distro
#. * upgrade is available. First %s is the distro name and the
#. * 2nd %s is the version, e.g. "Fedora 23 Now Available"
#: src/gs-upgrade-banner.c:112
#, c-format
msgid "%s %s Now Available"
msgstr "Je k dispozici %s %s"
#. TRANSLATORS: This is the text displayed while waiting to
#. * download a distro upgrade. First %s is the distro name and
#. * the 2nd %s is the version, e.g. "Waiting to Download Fedora 23"
#: src/gs-upgrade-banner.c:122
#, c-format
msgid "Waiting to Download %s %s"
msgstr "Čeká se na stažení %s %s"
#. TRANSLATORS: This is the text displayed while downloading a
#. * distro upgrade. First %s is the distro name and the 2nd %s
#. * is the version, e.g. "Downloading Fedora 23"
#: src/gs-upgrade-banner.c:132
#, c-format
msgid "Downloading %s %s"
msgstr "Stahuje se %s %s"
#. TRANSLATORS: This is the text displayed when a distro
#. * upgrade has been downloaded and is ready to be installed.
#. * First %s is the distro name and the 2nd %s is the version,
#. * e.g. "Fedora 23 Ready to be Installed"
#: src/gs-upgrade-banner.c:143
#, c-format
msgid "%s %s Ready to be Installed"
msgstr "%s %s se může nainstalovat"
#: src/gs-upgrade-banner.ui:30
msgid "A major upgrade, with new features and added polish."
msgstr "Povýšení na novou verzi s novými funkcemi a vylepšeními."
#: src/gs-upgrade-banner.ui:50
msgid "_Learn More"
msgstr "_Dozvědět se více"
#: src/org.gnome.Software.desktop.in:4
msgid "Add, remove or update software on this computer"
msgstr "Přidat, odebrat nebo aktualizovat software v tomto počítači"
#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
#: src/org.gnome.Software.desktop.in:12
msgid ""
"Updates;Upgrade;Sources;Repositories;Preferences;Install;Uninstall;Program;"
"Software;App;Store;"
msgstr ""
"aktualizace;povýšení;zdroje;repozitáře;předvolby;nastavení;instalace;"
"odinstalace;odebrání;program;software;aplikace;obchod;"
#: plugins/core/gs-desktop-common.c:17
msgctxt "Menu of Audio & Video"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:20
msgctxt "Menu of Audio & Video"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:23
msgctxt "Menu of Audio & Video"
msgid "Audio Creation & Editing"
msgstr "Vytváření a úprava zvuku"
#: plugins/core/gs-desktop-common.c:29
msgctxt "Menu of Audio & Video"
msgid "Music Players"
msgstr "Hudební přehrávače"
#: plugins/core/gs-desktop-common.c:38
msgctxt "Menu of Developer Tools"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:41
msgctxt "Menu of Developer Tools"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:44
msgctxt "Menu of Developer Tools"
msgid "Debuggers"
msgstr "Ladicí programy"
#: plugins/core/gs-desktop-common.c:47
msgctxt "Menu of Developer Tools"
msgid "IDEs"
msgstr "Integrovaná vývojová prostředí"
#: plugins/core/gs-desktop-common.c:56
msgctxt "Menu of Education & Science"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:60
msgctxt "Menu of Education & Science"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:64
msgctxt "Menu of Education & Science"
msgid "Artificial Intelligence"
msgstr "Umělá inteligence"
#: plugins/core/gs-desktop-common.c:67
msgctxt "Menu of Education & Science"
msgid "Astronomy"
msgstr "Astronomie"
#: plugins/core/gs-desktop-common.c:71
msgctxt "Menu of Education & Science"
msgid "Chemistry"
msgstr "Chemie"
#: plugins/core/gs-desktop-common.c:75
msgctxt "Menu of Education & Science"
msgid "Languages"
msgstr "Jazyky"
#: plugins/core/gs-desktop-common.c:79
msgctxt "Menu of Education & Science"
msgid "Math"
msgstr "Matematika"
#: plugins/core/gs-desktop-common.c:86
msgctxt "Menu of Education & Science"
msgid "Robotics"
msgstr "Robotika"
#: plugins/core/gs-desktop-common.c:95
msgctxt "Menu of Games"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:98
msgctxt "Menu of Games"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:101
msgctxt "Menu of Games"
msgid "Action"
msgstr "Akční"
#: plugins/core/gs-desktop-common.c:104
msgctxt "Menu of Games"
msgid "Adventure"
msgstr "Adventury"
#: plugins/core/gs-desktop-common.c:107
msgctxt "Menu of Games"
msgid "Arcade"
msgstr "Arkádové"
#: plugins/core/gs-desktop-common.c:110
msgctxt "Menu of Games"
msgid "Blocks"
msgstr "Blokové"
#: plugins/core/gs-desktop-common.c:113
msgctxt "Menu of Games"
msgid "Board"
msgstr "Deskové"
#: plugins/core/gs-desktop-common.c:116
msgctxt "Menu of Games"
msgid "Card"
msgstr "Karetní"
#: plugins/core/gs-desktop-common.c:119
msgctxt "Menu of Games"
msgid "Emulators"
msgstr "Emulátory"
#: plugins/core/gs-desktop-common.c:122
msgctxt "Menu of Games"
msgid "Kids"
msgstr "Dětské"
#: plugins/core/gs-desktop-common.c:125
msgctxt "Menu of Games"
msgid "Logic"
msgstr "Logické"
#: plugins/core/gs-desktop-common.c:128
msgctxt "Menu of Games"
msgid "Role Playing"
msgstr "Na hrdiny"
#: plugins/core/gs-desktop-common.c:131
msgctxt "Menu of Games"
msgid "Sports"
msgstr "Sporty"
#: plugins/core/gs-desktop-common.c:135
msgctxt "Menu of Games"
msgid "Strategy"
msgstr "Strategické"
#: plugins/core/gs-desktop-common.c:143
msgctxt "Menu of Graphics & Photography"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:146
msgctxt "Menu of Graphics & Photography"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:149
msgctxt "Menu of Graphics & Photography"
msgid "3D Graphics"
msgstr "Grafika 3D"
#: plugins/core/gs-desktop-common.c:152
msgctxt "Menu of Graphics & Photography"
msgid "Photography"
msgstr "Fotografie"
#: plugins/core/gs-desktop-common.c:155
msgctxt "Menu of Graphics & Photography"
msgid "Scanning"
msgstr "Skenování"
#: plugins/core/gs-desktop-common.c:158
msgctxt "Menu of Graphics & Photography"
msgid "Vector Graphics"
msgstr "Vektorová grafika"
#: plugins/core/gs-desktop-common.c:161
msgctxt "Menu of Graphics & Photography"
msgid "Viewers"
msgstr "Prohlížeče"
#: plugins/core/gs-desktop-common.c:169
msgctxt "Menu of Productivity"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:172
msgctxt "Menu of Productivity"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:175
msgctxt "Menu of Productivity"
msgid "Calendar"
msgstr "Kalendáře"
#: plugins/core/gs-desktop-common.c:179
msgctxt "Menu of Productivity"
msgid "Database"
msgstr "Databáze"
#: plugins/core/gs-desktop-common.c:182
msgctxt "Menu of Productivity"
msgid "Finance"
msgstr "Finance"
#: plugins/core/gs-desktop-common.c:186
msgctxt "Menu of Productivity"
msgid "Word Processor"
msgstr "Textové procesory"
#: plugins/core/gs-desktop-common.c:195
msgctxt "Menu of Add-ons"
msgid "Fonts"
msgstr "Fonty"
#: plugins/core/gs-desktop-common.c:198
msgctxt "Menu of Add-ons"
msgid "Codecs"
msgstr "Kodeky"
#: plugins/core/gs-desktop-common.c:201
msgctxt "Menu of Add-ons"
msgid "Input Sources"
msgstr "Vstupní zdroje"
#: plugins/core/gs-desktop-common.c:204
msgctxt "Menu of Add-ons"
msgid "Language Packs"
msgstr "Jazykové balíčky"
#: plugins/core/gs-desktop-common.c:207
msgctxt "Menu of Add-ons"
msgid "Localization"
msgstr "Lokalizace"
#: plugins/core/gs-desktop-common.c:210
msgctxt "Menu of Add-ons"
msgid "Hardware Drivers"
msgstr "Ovladače hardwaru"
#: plugins/core/gs-desktop-common.c:218
msgctxt "Menu of Communication & News"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:221
msgctxt "Menu of Communication & News"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:224
msgctxt "Menu of Communication & News"
msgid "Chat"
msgstr "Pokec"
#: plugins/core/gs-desktop-common.c:231
msgctxt "Menu of Communication & News"
msgid "News"
msgstr "Diskuzní skupiny"
#: plugins/core/gs-desktop-common.c:235
msgctxt "Menu of Communication & News"
msgid "Web Browsers"
msgstr "Webové prohlížeče"
#: plugins/core/gs-desktop-common.c:243
msgctxt "Menu of Utilities"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:246
msgctxt "Menu of Utilities"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:249
msgctxt "Menu of Utilities"
msgid "Text Editors"
msgstr "Textové editory"
#: plugins/core/gs-desktop-common.c:257
msgctxt "Menu of Reference"
msgid "All"
msgstr "Vše"
#: plugins/core/gs-desktop-common.c:260
msgctxt "Menu of Reference"
msgid "Featured"
msgstr "Významné"
#: plugins/core/gs-desktop-common.c:263
msgctxt "Menu of Art"
msgid "Art"
msgstr "Umění"
#: plugins/core/gs-desktop-common.c:266
msgctxt "Menu of Reference"
msgid "Biography"
msgstr "Životopisy"
#: plugins/core/gs-desktop-common.c:269
msgctxt "Menu of Reference"
msgid "Comics"
msgstr "Komiksy"
#: plugins/core/gs-desktop-common.c:272
msgctxt "Menu of Reference"
msgid "Fiction"
msgstr "Beletrie"
#: plugins/core/gs-desktop-common.c:275
msgctxt "Menu of Reference"
msgid "Health"
msgstr "Zdraví"
#: plugins/core/gs-desktop-common.c:278
msgctxt "Menu of Reference"
msgid "History"
msgstr "Historie"
#: plugins/core/gs-desktop-common.c:281
msgctxt "Menu of Reference"
msgid "Lifestyle"
msgstr "Životní styl"
#: plugins/core/gs-desktop-common.c:284
msgctxt "Menu of Reference"
msgid "Politics"
msgstr "Politika"
#: plugins/core/gs-desktop-common.c:287
msgctxt "Menu of Reference"
msgid "Sports"
msgstr "Sporty"
#. TRANSLATORS: this is the menu spec main category for Audio & Video
#: plugins/core/gs-desktop-common.c:297
msgid "Audio & Video"
msgstr "Zvuk a video"
#. TRANSLATORS: this is the menu spec main category for Development
#: plugins/core/gs-desktop-common.c:300
msgid "Developer Tools"
msgstr "Vývojářské nástroje"
#. TRANSLATORS: this is the menu spec main category for Education & Science
#: plugins/core/gs-desktop-common.c:303
msgid "Education & Science"
msgstr "Výuka a věda"
#. TRANSLATORS: this is the menu spec main category for Game
#: plugins/core/gs-desktop-common.c:306
msgid "Games"
msgstr "Hry"
#. TRANSLATORS: this is the menu spec main category for Graphics
#: plugins/core/gs-desktop-common.c:309
msgid "Graphics & Photography"
msgstr "Grafika a fotografie"
#. TRANSLATORS: this is the menu spec main category for Office
#: plugins/core/gs-desktop-common.c:312
msgid "Productivity"
msgstr "Kancelář"
#. TRANSLATORS: this is the menu spec main category for Communication
#: plugins/core/gs-desktop-common.c:318
msgid "Communication & News"
msgstr "Komunikace a diskuzní skupiny"
#. TRANSLATORS: this is the menu spec main category for Reference
#: plugins/core/gs-desktop-common.c:321
msgid "Reference"
msgstr "Knihy"
#. TRANSLATORS: this is the menu spec main category for Utilities
#: plugins/core/gs-desktop-common.c:324
msgid "Utilities"
msgstr "Nástroje"
#. TRANSLATORS: this is a group of updates that are not
#. * packages and are not shown in the main list
#: plugins/core/gs-plugin-generic-updates.c:56
msgid "OS Updates"
msgstr "Aktualizace OS"
#. TRANSLATORS: this is a longer description of the
#. * "OS Updates" string
#: plugins/core/gs-plugin-generic-updates.c:61
msgid "Includes performance, stability and security improvements."
msgstr "Zahrnuje zdokonalení výkonu, stability a bezpečnosti."
#. TRANSLATORS: status text when downloading
#: plugins/core/gs-plugin-rewrite-resource.c:42
msgid "Downloading featured images…"
msgstr "Stahují se obrázky k významným aplikacím…"
#. TRANSLATORS: ‘Endless OS’ is a brand name; https://endlessos.com/
#: plugins/eos-updater/gs-plugin-eos-updater.c:562
msgid "Endless OS"
msgstr "Endless OS"
#. TRANSLATORS: ‘Endless OS’ is a brand name; https://endlessos.com/
#: plugins/eos-updater/gs-plugin-eos-updater.c:565
msgid "An Endless OS update with new features and fixes."
msgstr "Aktualizace Endless OS s novými funkcemi a vylepšeními."
#: plugins/eos-updater/gs-plugin-eos-updater.c:826
msgid "EOS update service could not fetch and apply the update."
msgstr "Aktualizační služba EOS nemohla stáhnout a nasadit aktualizaci."
#. TRANSLATORS: tool that is used when copying profiles system-wide
#: plugins/external-appstream/gs-install-appstream.c:141
msgid "GNOME Software AppStream system-wide installer"
msgstr "Software GNOME – instalátor AppStream do celého systému"
#: plugins/external-appstream/gs-install-appstream.c:143
msgid "Failed to parse command line arguments"
msgstr "Selhalo zpracování argumentů příkazové řádky"
#. TRANSLATORS: user did not specify a valid filename
#: plugins/external-appstream/gs-install-appstream.c:150
msgid "You need to specify exactly one filename"
msgstr "Musíte zadat právě jeden název souboru"
#. TRANSLATORS: only able to install files as root
#: plugins/external-appstream/gs-install-appstream.c:157
msgid "This program can only be used by the root user"
msgstr "Tento program může používat jen superuživatel"
#. TRANSLATORS: error details
#: plugins/external-appstream/gs-install-appstream.c:165
msgid "Failed to validate content type"
msgstr "Selhalo ověření typu obsahu"
#. TRANSLATORS: error details
#: plugins/external-appstream/gs-install-appstream.c:175
msgid "Failed to copy"
msgstr "Selhalo kopírování"
#. TRANSLATORS: status text when downloading
#: plugins/external-appstream/gs-plugin-external-appstream.c:236
msgid "Downloading extra metadata files…"
msgstr "Stahují se dodatečné soubory s metadaty…"
#. TRANSLATORS: status text when downloading
#: plugins/fedora-pkgdb-collections/gs-plugin-fedora-pkgdb-collections.c:193
msgid "Downloading upgrade information…"
msgstr "Stahují se informace o povýšení…"
#. TRANSLATORS: this is a title for Fedora distro upgrades
#: plugins/fedora-pkgdb-collections/gs-plugin-fedora-pkgdb-collections.c:283
msgid ""
"Upgrade for the latest features, performance and stability improvements."
msgstr ""
"Proveďte povýšení, abyste získali nejnovější funkce a zlepšení výkonu a "
"stability."
#: plugins/flatpak/org.gnome.Software.Plugin.Flatpak.metainfo.xml.in:6
msgid "Flatpak Support"
msgstr "Podpora pro Flatpak"
#: plugins/flatpak/org.gnome.Software.Plugin.Flatpak.metainfo.xml.in:7
msgid "Flatpak is a framework for desktop applications on Linux"
msgstr "Flatpak je systém pro provozování aplikací na Linuxu"
#. TRANSLATORS: status text when downloading new metadata
#: plugins/flatpak/gs-flatpak.c:901
#, c-format
msgid "Getting flatpak metadata for %s…"
msgstr "Získávají se metadata Flatpak pro %s…"
#. TRANSLATORS: a specific part of hardware,
#. * the first %s is the device name, e.g. 'Unifying Receiver`
#: plugins/fwupd/gs-fwupd-app.c:136
#, c-format
msgid "%s Device Update"
msgstr "Aktualizace zařízení %s"
#. TRANSLATORS: the entire system, e.g. all internal devices,
#. * the first %s is the device name, e.g. 'ThinkPad P50`
#: plugins/fwupd/gs-fwupd-app.c:141
#, c-format
msgid "%s System Update"
msgstr "Aktualizace systému pro %s"
#. TRANSLATORS: the EC is typically the keyboard controller chip,
#. * the first %s is the device name, e.g. 'ThinkPad P50`
#: plugins/fwupd/gs-fwupd-app.c:146
#, c-format
msgid "%s Embedded Controller Update"
msgstr "Aktualizace vestavěného řadiče pro %s"
#. TRANSLATORS: ME stands for Management Engine, the Intel AMT thing,
#. * the first %s is the device name, e.g. 'ThinkPad P50`
#: plugins/fwupd/gs-fwupd-app.c:151
#, c-format
msgid "%s ME Update"
msgstr "Aktualizace ME pro %s"
#. TRANSLATORS: ME stands for Management Engine (with Intel AMT),
#. * where the first %s is the device name, e.g. 'ThinkPad P50`
#: plugins/fwupd/gs-fwupd-app.c:156
#, c-format
msgid "%s Corporate ME Update"
msgstr "Aktualizace ME pro firmy pro %s"
#. TRANSLATORS: ME stands for Management Engine, where
#. * the first %s is the device name, e.g. 'ThinkPad P50`
#: plugins/fwupd/gs-fwupd-app.c:161
#, c-format
msgid "%s Consumer ME Update"
msgstr "Aktualizace ME pro běžné spotřebitele pro %s"
#. TRANSLATORS: the controller is a device that has other devices
#. * plugged into it, for example ThunderBolt, FireWire or USB,
#. * the first %s is the device name, e.g. 'Intel ThunderBolt`
#: plugins/fwupd/gs-fwupd-app.c:167
#, c-format
msgid "%s Controller Update"
msgstr "Aktualizace řadiče pro %s"
#. TRANSLATORS: the Thunderbolt controller is a device that
#. * has other high speed Thunderbolt devices plugged into it;
#. * the first %s is the system name, e.g. 'ThinkPad P50`
#: plugins/fwupd/gs-fwupd-app.c:173
#, c-format
msgid "%s Thunderbolt Controller Update"
msgstr "Aktualizace řadiče Thunderbolt pro %s"
#. TRANSLATORS: the CPU microcode is firmware loaded onto the CPU
#. * at system bootup
#: plugins/fwupd/gs-fwupd-app.c:178
#, c-format
msgid "%s CPU Microcode Update"
msgstr "Aktualizace mikrokódu CPU pro %s"
#. TRANSLATORS: configuration refers to hardware state,
#. * e.g. a security database or a default power value
#: plugins/fwupd/gs-fwupd-app.c:183
#, c-format
msgid "%s Configuration Update"
msgstr "Aktualizace nastavení pro %s"
#. TRANSLATORS: status text when downloading
#: plugins/fwupd/gs-plugin-fwupd.c:691
msgid "Downloading firmware update signature…"
msgstr "Stahuje se podpis aktualizace firmwaru…"
#. TRANSLATORS: status text when downloading
#: plugins/fwupd/gs-plugin-fwupd.c:732
msgid "Downloading firmware update metadata…"
msgstr "Stahují se metadata aktualizace firmwaru…"
#: plugins/fwupd/org.gnome.Software.Plugin.Fwupd.metainfo.xml.in:6
msgid "Firmware Upgrade Support"
msgstr "Podpora aktualizací firmwaru"
#: plugins/fwupd/org.gnome.Software.Plugin.Fwupd.metainfo.xml.in:7
msgid "Provides support for firmware upgrades"
msgstr "Poskytuje podporu pro povyšování verzí firmwaru"
#. TRANSLATORS: status text when downloading
#: plugins/odrs/gs-plugin-odrs.c:291
msgid "Downloading application ratings…"
msgstr "Stahují se hodnocení aplikací…"
#: plugins/odrs/org.gnome.Software.Plugin.Odrs.metainfo.xml.in:6
msgid "Open Desktop Ratings Support"
msgstr "Open Desktop Ratings Support"
#: plugins/odrs/org.gnome.Software.Plugin.Odrs.metainfo.xml.in:7
msgid "ODRS is a service providing user reviews of applications"
msgstr "ODRS je služba poskytující uživatelům hodnocení aplikací"
#. TRANSLATORS: default snap store name
#: plugins/snap/gs-plugin-snap.c:240
msgid "Snap Store"
msgstr "Snap Store"
#: plugins/snap/org.gnome.Software.Plugin.Snap.metainfo.xml.in:6
msgid "Snap Support"
msgstr "Podpora pro Snap"
#: plugins/snap/org.gnome.Software.Plugin.Snap.metainfo.xml.in:7
msgid "A snap is a universal Linux package"
msgstr "Snap je univerzální linuxový balíček"
#~ msgid "About %s"
#~ msgstr "O aplikaci %s"
#~ msgid "%s ME"
#~ msgstr "ME %s"
|