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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-30 10:48+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: ../data/com.ubuntu.softwareproperties.policy.in.h:1
msgid "Write Configuration"
msgstr ""
#: ../data/com.ubuntu.softwareproperties.policy.in.h:2
msgid "To change software repository settings, you need to authenticate."
msgstr ""
#: ../data/software-properties-gtk.desktop.in.h:1
#: ../data/gtkbuilder/main.ui.h:17
msgid "Software & Updates"
msgstr ""
#: ../data/software-properties-gtk.desktop.in.h:2
#: ../data/software-properties-gtk.appdata.xml.in.h:2
#: ../data/software-properties-lxqt.desktop.in.h:2
#: ../data/software-properties-qt.desktop.in.h:2
msgid "Configure the sources for installable software and updates"
msgstr ""
#: ../data/software-properties-gtk.desktop.in.h:3
msgid "Drivers;Repositories;Repository;PPA;"
msgstr ""
#: ../data/software-properties-gtk.appdata.xml.in.h:1
msgid "Software & Updates"
msgstr ""
#: ../data/software-properties-gtk.appdata.xml.in.h:3
msgid ""
"The Software & Updates app is a utility for configuring which apt "
"repositories your computer uses for updates and how frequently your computer "
"checks for updates."
msgstr ""
#: ../data/software-properties-gtk.appdata.xml.in.h:4
msgid ""
"The utility also allows selecting additional drivers for your computer and "
"enabling the Canonical Livepatch service."
msgstr ""
#: ../data/software-properties-lxqt.desktop.in.h:1
#: ../data/software-properties-qt.desktop.in.h:1
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:868
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:887
msgid "Software Sources"
msgstr ""
#: ../data/software-properties-drivers-lxqt.desktop.in.h:1
#: ../data/gtkbuilder/main.ui.h:44
msgid "Additional Drivers"
msgstr ""
#: ../data/software-properties-drivers-lxqt.desktop.in.h:2
msgid "Configure third-party and proprietary drivers"
msgstr ""
#: ../data/software-properties-livepatch.desktop.in.h:1
msgid "Manage Canonical Livepatch"
msgstr ""
#: ../data/software-properties-livepatch.desktop.in.h:2
msgid "Livepatch;Security;Update;"
msgstr ""
#: ../software-properties-gtk:96
msgid ""
"The --enable-component/-e command-line switch has been deprecated. Instead "
"of 'software-properties-gtk -e multiverse' you can use \n"
"'add-apt-repository multiverse'"
msgstr ""
#: ../software-properties-qt:71
msgid "Print some debug information to the command line"
msgstr ""
#: ../software-properties-qt:74
msgid "Print a lot of debug information to the command line"
msgstr ""
#: ../software-properties-qt:77
msgid ""
"No update on repository change (useful if called from an external program)"
msgstr ""
#: ../software-properties-qt:80
msgid "Enable the specified component of the distro's repositories"
msgstr ""
#: ../software-properties-qt:84
msgid "Open specific tab number on startup"
msgstr ""
#: ../software-properties-qt:88
msgid "Enable PPA with the given name"
msgstr ""
#: ../software-properties-qt:92
msgid "Legacy option, unused"
msgstr ""
#: ../software-properties-qt:95
msgid "Win ID to act as a dialogue for"
msgstr ""
#: ../software-properties-qt:98
msgid "data directory for UI files"
msgstr ""
#: ../add-apt-repository:45
msgid "Print debug"
msgstr ""
#: ../add-apt-repository:47
msgid "Disable repository"
msgstr ""
#: ../add-apt-repository:49
msgid "Allow downloading of the source packages from the repository"
msgstr ""
#: ../add-apt-repository:51
msgid "Components to use with the repository"
msgstr ""
#: ../add-apt-repository:53
msgid "Add entry for this pocket"
msgstr ""
#: ../add-apt-repository:55
msgid "Assume yes to all queries"
msgstr ""
#: ../add-apt-repository:57
msgid "Do not update package cache after adding"
msgstr ""
#: ../add-apt-repository:61
msgid "Login to Launchpad."
msgstr ""
#: ../add-apt-repository:63
msgid "Don't actually make any changes."
msgstr ""
#: ../add-apt-repository:67
msgid "List currently configured repositories"
msgstr ""
#: ../add-apt-repository:69
msgid "PPA to add"
msgstr ""
#: ../add-apt-repository:71
msgid "Cloud Archive to add"
msgstr ""
#: ../add-apt-repository:73
msgid "Archive URI to add"
msgstr ""
#: ../add-apt-repository:75
msgid "Full sources.list entry line to add"
msgstr ""
#: ../add-apt-repository:77
msgid "sources.list line to add (deprecated)"
msgstr ""
#: ../add-apt-repository:125
msgid "DRY-RUN mode: no modifications will be made"
msgstr ""
#: ../add-apt-repository:129
msgid "Press [ENTER] to continue or Ctrl-c to cancel."
msgstr ""
#: ../add-apt-repository:131
msgid "Aborted."
msgstr ""
#: ../add-apt-repository:136
#, c-format
msgid "Repository: '%s'"
msgstr ""
#: ../add-apt-repository:141
msgid "Description:"
msgstr ""
#: ../add-apt-repository:144
#, c-format
msgid "More info: %s"
msgstr ""
#: ../add-apt-repository:146
msgid "Removing repository."
msgstr ""
#: ../add-apt-repository:148
msgid "Adding repository."
msgstr ""
#: ../add-apt-repository:171
#, c-format
msgid "Added %s to: %s"
msgstr ""
#: ../add-apt-repository:178
#, c-format
msgid "Removed %s from: %s"
msgstr ""
#: ../add-apt-repository:216
#, c-format
msgid "Existing: %s"
msgstr ""
#: ../add-apt-repository:241
#, c-format
msgid "Adding: %s"
msgstr ""
#: ../add-apt-repository:252 ../add-apt-repository:328
#, c-format
msgid "Disabled: %s"
msgstr ""
#: ../add-apt-repository:294
#, c-format
msgid "Enabled: %s"
msgstr ""
#: ../add-apt-repository:318
#, c-format
msgid "Added: %s"
msgstr ""
#: ../add-apt-repository:321
#, c-format
msgid "Warning, missing deb-src for: %s"
msgstr ""
#: ../add-apt-repository:342
#, c-format
msgid "Removing component(s) '%s' from all repositories."
msgstr ""
#: ../add-apt-repository:344
#, c-format
msgid "Adding component(s) '%s' to all repositories."
msgstr ""
#: ../add-apt-repository:347
#, c-format
msgid "Removing pocket %s for all repositories."
msgstr ""
#: ../add-apt-repository:349
#, c-format
msgid "Adding pocket %s for all repositories."
msgstr ""
#: ../add-apt-repository:352
#, c-format
msgid "Disabling %s for all repositories."
msgstr ""
#: ../add-apt-repository:354
#, c-format
msgid "Enabling %s for all repositories."
msgstr ""
#: ../add-apt-repository:384
msgid "Error: must run as root"
msgstr ""
#: ../add-apt-repository:423
msgid "Error: no actions requested."
msgstr ""
#: ../softwareproperties/distro.py:28
msgid ""
"<i>To improve the user experience of Ubuntu please take part in the "
"popularity contest. If you do so the list of installed software and how "
"often it was used will be collected and sent anonymously to the Ubuntu "
"project on a weekly basis.\n"
"\n"
"The results are used to improve the support for popular applications and to "
"rank applications in the search results.</i>"
msgstr ""
#: ../softwareproperties/distro.py:37
msgid ""
"<i>To improve the user experience of Debian please take part in the "
"popularity contest. If you do so the list of installed software and how "
"often it was used will be collected and sent anonymously to the Debian "
"project.\n"
"\n"
"The results are used to optimise the layout of the installation CDs.</i>"
msgstr ""
#: ../softwareproperties/distro.py:44
msgid ""
"Submit the list of installed software and how often it is is used to the "
"distribution project."
msgstr ""
#: ../softwareproperties/qt/DialogMirror.py:61
msgid "Mirror"
msgstr ""
#: ../softwareproperties/qt/DialogMirror.py:182
#: ../softwareproperties/qt/DialogMirror.py:183
#: ../softwareproperties/qt/DialogMirror.py:216
msgid "Testing Mirrors"
msgstr ""
#: ../softwareproperties/qt/DialogMirror.py:182
#: ../softwareproperties/qt/DialogMirror.py:185
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:8
msgid "Cancel"
msgstr ""
#: ../softwareproperties/qt/DialogMirror.py:217
#: ../softwareproperties/gtk/DialogMirror.py:337
msgid "No suitable download server was found"
msgstr ""
#: ../softwareproperties/qt/DialogMirror.py:218
#: ../softwareproperties/gtk/DialogMirror.py:338
msgid "Please check your Internet connection."
msgstr ""
#: ../softwareproperties/qt/DialogMirror.py:233
#: ../softwareproperties/gtk/DialogMirror.py:353
msgid "Canceling..."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:208
#: ../data/gtkbuilder/main.ui.h:12
msgid "Daily"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:209
#: ../data/gtkbuilder/main.ui.h:13
msgid "Every two days"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:210
#: ../data/gtkbuilder/main.ui.h:14
msgid "Weekly"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:211
#: ../data/gtkbuilder/main.ui.h:15
msgid "Every two weeks"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:218
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:334
#, python-format
msgid "Every %s days"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:259
msgid "Software updates"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:261
msgid "Ubuntu Software"
msgstr ""
#. TRANSLATORS: Label for the components in the Internet section
#. first %s is the description of the component
#. second %s is the code name of the comp, eg main, universe
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:279
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:407
#, python-format
msgid "%s (%s)"
msgstr ""
#. add a separator and the option to choose another mirror from the list
#. #FIXME server_store.append(["sep", None, True])
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:342
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:615
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:743
msgid "Other..."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:722
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1165
msgid "Import key"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:725
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1179
msgid "Error importing selected file"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:726
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1180
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:739
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1195
msgid "Error removing the key"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:740
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1196
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:761
msgid "Could not refresh cache"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:771
msgid "Reload"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:773
msgid "Your local copy of the software catalog is out of date."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:774
msgid "A new copy will be downloaded."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:779
#: ../softwareproperties/gtk/DialogCacheOutdated.py:61
msgid "Refreshing software cache"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:781
#: ../softwareproperties/gtk/DialogCacheOutdated.py:41
msgid "Cache Refresh"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:823
msgid "CD Error"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:824
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1031
msgid "Error scanning the CD"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:866
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1250
msgid "Error while applying changes"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1112
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1482
msgid "This device is using the recommended driver."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1114
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1483
msgid "This device is using an alternative driver."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1116
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1484
msgid "This device is using a manually-installed driver."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1117
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1485
msgid "This device is not working."
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1126
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1494
msgid "Continue using a manually installed driver"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1155
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1524
msgid "Using {} from {}"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1157
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1526
msgid "Using {}"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1164
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1533
msgid "open source"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1166
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1535
msgid "proprietary"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1169
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1538
#, python-brace-format
msgid "{base_description} ({licence}, tested)"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1171
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1540
#, python-brace-format
msgid "{base_description} ({licence})"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1189
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1560
msgid "Do not use the device"
msgstr ""
#. 1 for priority over the icon to stretch
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1232
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1598
msgid "Unknown"
msgstr ""
#: ../softwareproperties/qt/SoftwarePropertiesQt.py:1300
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1666
#: ../data/gtkbuilder/main.ui.h:42
msgid "No proprietary drivers are in use."
msgstr ""
#: ../softwareproperties/qt/CdromProgress.py:52
msgid "CD Name"
msgstr ""
#: ../softwareproperties/qt/CdromProgress.py:52
#: ../softwareproperties/gtk/CdromProgress.py:61
msgid "Please enter a name for the disc"
msgstr ""
#: ../softwareproperties/qt/CdromProgress.py:56
msgid "Insert Disk"
msgstr ""
#: ../softwareproperties/qt/CdromProgress.py:56
#: ../softwareproperties/gtk/CdromProgress.py:77
msgid "Please insert a disk in the drive:"
msgstr ""
#. L10N: the example is of the format: deb http://ftp.debian.org sarge main
#: ../softwareproperties/qt/DialogAdd.py:53
msgid "Enter the complete APT line of the repository that you want to add."
msgstr ""
#: ../softwareproperties/qt/DialogAdd.py:55
#, python-format
msgid ""
"Include the type, location and components of the repository. Example: %s"
msgstr ""
#: ../softwareproperties/qt/DialogEdit.py:41
#: ../data/gtkbuilder/dialog-edit-source.ui.h:1
msgid "Binary"
msgstr ""
#: ../softwareproperties/qt/DialogEdit.py:42 ../data/gtkbuilder/main.ui.h:18
msgid "Source code"
msgstr ""
#: ../softwareproperties/SoftwareProperties.py:508
#: ../softwareproperties/SoftwareProperties.py:515
msgid "(Source Code)"
msgstr ""
#: ../softwareproperties/SoftwareProperties.py:521
msgid "Source Code"
msgstr ""
#: ../softwareproperties/gtk/DialogMirror.py:250
msgid "New mirror"
msgstr ""
#: ../softwareproperties/gtk/DialogMirror.py:326
#, python-format
msgid "Completed %s of %s tests"
msgstr ""
#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:394
#, python-format
msgid "%s Software"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:447
msgid "Extended Security Maintenance"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:463
msgid "Basic Security Maintenance"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:473
#, python-format
msgid "Ended %s - extend or upgrade now"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:475
#, python-format
msgid "Ends %s - extend or upgrade soon"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:477
#, python-format
msgid "Active until %s"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:480
msgid "Extend…"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:485
#, python-format
msgid "Ended %s"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:557
msgid "Custom"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:878
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:897
msgid "Active"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:942
msgid "Key"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:959
msgid "_Add key from paste data"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:972
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:983
msgid "Error importing key"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:973
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:984
msgid "The selected data may not be a GPG key file or it might be corrupt."
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1032
msgid "Could not find a suitable CD."
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1240
msgid "Applying changes..."
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1364
#: ../data/gtkbuilder/main.ui.h:64
msgid "Re_vert"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1366
msgid "_Apply Changes"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1368
msgid "_Cancel"
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1370
msgid "_Restart..."
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1385
msgid "Searching for available drivers..."
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1414
msgid "An error occurred while searching for drivers."
msgstr ""
#. No drivers found.
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1580
msgid "No additional drivers available."
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1647
msgid "You need to restart the computer to complete the driver changes."
msgstr ""
#: ../softwareproperties/gtk/SoftwarePropertiesGtk.py:1661
#, python-format
msgid "%(count)d proprietary driver in use."
msgid_plural "%(count)d proprietary drivers in use."
msgstr[0] ""
msgstr[1] ""
#: ../softwareproperties/gtk/DialogAddSourcesList.py:44
msgid "Add Software Channels"
msgstr ""
#: ../softwareproperties/gtk/DialogAddSourcesList.py:85
msgid "Install software additionally or only from this source?"
msgid_plural "Install software additionally or only from these sources?"
msgstr[0] ""
msgstr[1] ""
#: ../softwareproperties/gtk/DialogAddSourcesList.py:90
msgid ""
"You can either add the following sources or replace your current sources by "
"them. Only install software from trusted sources."
msgstr ""
#: ../softwareproperties/gtk/DialogAddSourcesList.py:105
msgid "There are no sources to install software from"
msgstr ""
#: ../softwareproperties/gtk/DialogAddSourcesList.py:106
#, python-format
msgid "The file '%s' does not contain any valid software sources."
msgstr ""
#. L10N: the example is of the format: deb http://ftp.debian.org sarge main
#: ../softwareproperties/gtk/DialogAdd.py:64
#, python-format
msgid ""
"The APT line includes the type, location and components of a repository, for "
"example '%s'."
msgstr ""
#: ../softwareproperties/gtk/DialogCacheOutdated.py:88
msgid "Error while refreshing cache"
msgstr ""
#: ../softwareproperties/gtk/DialogUaAttach.py:97
msgid "Invalid token"
msgstr ""
#: ../softwareproperties/gtk/DialogUaAttach.py:102
msgid "Valid token"
msgstr ""
#: ../softwareproperties/gtk/DialogUaAttach.py:106
msgid "Code expired"
msgstr ""
#: ../softwareproperties/gtk/DialogUaDetach.py:58
msgid "Failed to detach. Please try again"
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:54
msgid "Could not enable ESM Infra. Please try again."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:55
msgid "Could not disable ESM Infra. Please try again."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:61
msgid "Could not enable ESM Apps. Please try again."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:62
msgid "Could not disable ESM Apps. Please try again."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:69
msgid "Could not enable Livepatch. Please try again."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:70
msgid "Could not disable Livepatch. Please try again."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:102
#, python-format
msgid ""
"<b>ESM Infra</b> provides security updates for over 2,300 Ubuntu Main "
"packages until %d."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:103
#, python-format
msgid ""
"<b>ESM Apps</b>; provides security updates for over 23,000 Ubuntu Universe "
"packages until %d."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:105
msgid ""
"<b>ESM Infra</b> provides security updates for over 2,300 Ubuntu Main "
"packages."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:106
msgid ""
"<b>ESM Apps</b>; provides security updates for over 23,000 Ubuntu Universe "
"packages."
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:215
msgid "Disable _USG"
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:217
#: ../data/gtkbuilder/main.ui.h:60
msgid "Enable _USG"
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:283
msgid "No, go back"
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:284
#: ../data/gtkbuilder/dialog-ua-fips-enable.ui.h:1
msgid "Enable FIPS"
msgstr ""
#: ../softwareproperties/gtk/UbuntuProPage.py:285
msgid ""
"Enabling FIPS could take a few minutes. This action cannot be reversed. Are "
"you sure you want to enable FIPS?"
msgstr ""
#. some known keys
#: ../softwareproperties/AptAuth.py:37
msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
msgstr ""
#: ../softwareproperties/AptAuth.py:38
msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
msgstr ""
#: ../softwareproperties/AptAuth.py:39
msgid "Ubuntu Archive Automatic Signing Key (2012) <ftpmaster@ubuntu.com>"
msgstr ""
#: ../softwareproperties/AptAuth.py:40
msgid "Ubuntu CD Image Automatic Signing Key (2012) <cdimage@ubuntu.com>"
msgstr ""
#: ../softwareproperties/AptAuth.py:41
msgid "Ubuntu Extras Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
msgstr ""
#: ../softwareproperties/cloudarchive.py:80
#, python-format
msgid "not a valid cloud-archive format: '%s'"
msgstr ""
#: ../softwareproperties/cloudarchive.py:89
#, python-format
msgid "not a valid cloud-archive pocket: '%s'"
msgstr ""
#: ../softwareproperties/cloudarchive.py:93
#, python-format
msgid "not a valid cloud-archive: '%s'"
msgstr ""
#: ../softwareproperties/cloudarchive.py:99
#, python-format
msgid "cloud-archive for %s only supported on %s"
msgstr ""
#: ../softwareproperties/ppa.py:67
#, python-format
msgid "ERROR: '%s' is not a valid ppa format"
msgstr ""
#: ../softwareproperties/ppa.py:78
msgid "ERROR: Can't find ppa"
msgstr ""
#: ../softwareproperties/ppa.py:117
#, python-format
msgid "ERROR: user/team '%s' not found (use --login if private)"
msgstr ""
#: ../softwareproperties/ppa.py:120
#, python-format
msgid "ERROR: invalid user/team name '%s'"
msgstr ""
#: ../softwareproperties/ppa.py:130
#, python-format
msgid "ERROR: ppa '%s/%s' not found (use --login if private)"
msgstr ""
#: ../softwareproperties/ppa.py:134
#, python-format
msgid "ERROR: invalid ppa name '%s'"
msgstr ""
#: ../softwareproperties/ppa.py:153
msgid ""
"Warning: could not get PPA signing_key_fingerprint from LP, using anyway"
msgstr ""
#: ../softwareproperties/ppa.py:155
msgid "Private PPA fingerprint redacted, using key anyway (LP: #1879781)"
msgstr ""
#: ../softwareproperties/ppa.py:157
#, python-format
msgid "Fingerprints do not match, not importing: '%s' != '%s'"
msgstr ""
#: ../softwareproperties/ppa.py:180
#, python-format
msgid "Warning: components '%s' not valid for PPA"
msgstr ""
#: ../softwareproperties/ppa.py:247
#, python-format
msgid ""
"Could not find PPA subscription for ppa:%s/%s, you may need to request access"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:114
#, python-format
msgid ""
"Warning: gpg error while processing keys:\n"
"%s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:121
#, python-format
msgid ""
"Warning: invalid gpg output:\n"
"%s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:126
#, python-format
msgid "Archive for codename: %s components: %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:255
#: ../softwareproperties/shortcuthandler.py:285
#: ../softwareproperties/shortcuthandler.py:327
#: ../softwareproperties/shortcuthandler.py:357
#, python-format
msgid "Found existing %s entry in %s"
msgstr ""
#. existing binentry, but not in file we were expecting, just update it
#. existing srcentry, but not in file we were expecting, just update it
#: ../softwareproperties/shortcuthandler.py:340
#: ../softwareproperties/shortcuthandler.py:370
#, python-format
msgid "Updating existing entry instead of using %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:344
#, python-format
msgid "Archive has template, updating %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:346
#: ../softwareproperties/shortcuthandler.py:372
#, python-format
msgid "Adding disabled %s entry to %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:348
#: ../softwareproperties/shortcuthandler.py:374
#, python-format
msgid "Adding %s entry to %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:399
#, python-format
msgid "Removing entry from %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:442
#, python-format
msgid "Disabling %s entry in %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:450
#, python-format
msgid "Removing disabled %s entry from %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:523
#, python-format
msgid "Adding key to %s with fingerprint %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:566
#, python-format
msgid "Removing key from %s with fingerprint %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:629
#, python-format
msgid "Authentication data already in %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:632
#, python-format
msgid "Adding authentication data to %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:673
#, python-format
msgid "Authentication data not contained in %s"
msgstr ""
#: ../softwareproperties/shortcuthandler.py:675
#, python-format
msgid "Removing authentication data from %s"
msgstr ""
#: ../softwareproperties/shortcuts.py:44
#, python-format
msgid "Unable to handle repository shortcut '%s'"
msgstr ""
#: ../softwareproperties/sourceslist.py:35
#, python-format
msgid "Invalid sources.list line: '%s'"
msgstr ""
#: ../softwareproperties/sourceslist.py:39
#, python-format
msgid "Invalid URI: '%s'"
msgstr ""
#. vi: ts=4 expandtab
#: ../data/gtkbuilder/dialog-edit-deb822-source.ui.h:1
#: ../data/gtkbuilder/dialog-edit-source.ui.h:3
msgid "Edit Source"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-deb822-source.ui.h:2
msgid "Types:"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-deb822-source.ui.h:3
msgid "URIs:"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-deb822-source.ui.h:4
msgid "Suites:"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-deb822-source.ui.h:5
msgid "Components:"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-deb822-source.ui.h:6
msgid "Comment:"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-deb822-source.ui.h:7
msgid "Additional Fields:"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-source.ui.h:2
msgid "Source"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-source.ui.h:4
msgid "<b>Type:</b>"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-source.ui.h:5
msgid "<b>URI:</b>"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-source.ui.h:6
msgid "<b>Distribution:</b>"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-source.ui.h:7
msgid "<b>Components:</b>"
msgstr ""
#: ../data/gtkbuilder/dialog-edit-source.ui.h:8
msgid "<b>Comment:</b>"
msgstr ""
#: ../data/gtkbuilder/dialog-add-sources-list.ui.h:1
msgid "_Replace"
msgstr ""
#: ../data/gtkbuilder/dialog-cdrom-progress.ui.h:1
msgid "Scanning CD-ROM"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:1
msgid "All updates"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:2
msgid "Security and recommended updates"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:3
msgid "Security updates only"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:4
msgid "Display immediately"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:5
msgid "Display weekly"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:6
msgid "Display every two weeks"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:7
msgid "For any new version"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:8
msgid "For long-term support versions"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:9
msgid "Never"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:10
msgid "Download automatically"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:11
msgid "Download and install automatically"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:16
msgid "To install from a CD-ROM or DVD, insert the medium into the drive."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:19
msgid "Download from:"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:20
msgid "<b>Downloadable from the Internet</b>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:21
msgid "<b>Installable from CD-ROM/DVD</b>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:22
msgid "Add..."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:23
msgid "Edit..."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:24
msgid "Add Volume..."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:25
msgid "Other Software"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:26
msgid "Snap package updates are checked routinely and installed automatically."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:27
msgid "For other packages, this system has:"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:28
msgid "Subscribed to:"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:29
msgid "Automatically check for updates:"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:30
msgid "When there are security updates:"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:31
msgid "When there are other updates:"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:32
msgid "Notify me of a new Ubuntu version:"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:33
msgid "Updates"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:34
msgid "<b>Trusted software providers</b>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:35
msgid " "
msgstr ""
#: ../data/gtkbuilder/main.ui.h:36
msgid ""
"Keys are used to authenticate the correct source of software and so protect "
"your computer from malicious software"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:37
msgid "_Import Key File..."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:38
msgid "Import the public key from a trusted software provider"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:39
msgid "Restore _Defaults"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:40
msgid "Restore the default keys of your distribution"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:41
msgid "Authentication"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:43
msgid ""
"<small>A proprietary driver has private code that Ubuntu developers can't "
"review or improve. Security and other updates are dependent on the driver "
"vendor.</small>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:45
msgid ""
"Use proposed updates if you’re willing to report bugs on any problems that "
"occur."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:46
msgid "Developer Options"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:47
msgid "<b>Subscription</b>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:48
msgid "_Enable Ubuntu Pro"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:49
msgid ""
"<b>This machine is not covered by an Ubuntu Pro subscription.</b>\n"
"Receive security updates for over 25,000 Ubuntu packages, free for up to 5 "
"machines. <a href=\"https://ubuntu.com/pro\">Learn more</a>."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:51 ../data/gtkbuilder/dialog-ua-detach.ui.h:4
msgid "_Disable Ubuntu Pro"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:52
msgid "<span foreground=\"green\">Ubuntu Pro support is enabled</span>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:53
msgid "<b>Security</b>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:54
msgid ""
"<b>Kernel Livepatch</b> helps keep your system secure by applying security "
"updates that don't require a restart."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:55
msgid "Show Livepatch status in the top bar"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:56
msgid "<b>Compliance & Hardening</b>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:57
msgid ""
"Only recommended to assist with FedRAMP, HIPAA, and other compliance and "
"hardening requirements. Includes FIPS 140-2 certified modules, DISA-STIG, "
"CIS and Common Criteria."
msgstr ""
#: ../data/gtkbuilder/main.ui.h:58
msgid "Enable _FIPS"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:59
msgid ""
"A US and Canada government cryptographic module certification of compliance "
"with the FIPS 140-2 data protection standard. <a href=\"https://ubuntu.com/"
"security/certifications/docs/fips\">FIPS documentation</a>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:61
msgid "<b>Ubuntu Security Guide (USG)</b>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:62
msgid ""
"Automates hardening and auditing with CIS benchmark and DISA-STIG profiles "
"while allowing for environment-specific customizations. <a href=\"https://"
"ubuntu.com/security/certifications/docs/usg\">USG documentation</a>"
msgstr ""
#: ../data/gtkbuilder/main.ui.h:63
msgid "Setting up FIPS"
msgstr ""
#: ../data/gtkbuilder/dialog-cache-outofdate.ui.h:1
#: ../data/gtkbuilder/dialog-mirror.ui.h:6
msgid " "
msgstr ""
#: ../data/gtkbuilder/dialog-cache-outofdate.ui.h:2
msgid ""
"<b><big>The information about available software is out-of-date</big></b>\n"
"\n"
"To install software and updates from newly added or changed sources, you "
"have to reload the information about available software.\n"
"\n"
"You need a working internet connection to continue."
msgstr ""
#: ../data/gtkbuilder/dialog-cache-outofdate.ui.h:7
msgid "_Reload"
msgstr ""
#: ../data/gtkbuilder/dialog-mirror.ui.h:1
msgid "Choose a Download Server"
msgstr ""
#: ../data/gtkbuilder/dialog-mirror.ui.h:2
msgid "Protocol:"
msgstr ""
#: ../data/gtkbuilder/dialog-mirror.ui.h:3
msgid "_Select Best Server"
msgstr ""
#: ../data/gtkbuilder/dialog-mirror.ui.h:4
msgid "Performs a connection test to find the best mirror for your location"
msgstr ""
#: ../data/gtkbuilder/dialog-mirror.ui.h:5
msgid "Choose _Server"
msgstr ""
#: ../data/gtkbuilder/dialog-mirror.ui.h:7
msgid ""
"<b><big>Testing download servers</big></b>\n"
"\n"
"A series of tests will be performed to find the best mirror for your "
"location."
msgstr ""
#: ../data/gtkbuilder/dialog-add.ui.h:1
msgid ""
"<big><b>Enter the complete APT line of the repository that you want to add "
"as source</b></big>"
msgstr ""
#: ../data/gtkbuilder/dialog-add.ui.h:2
msgid "APT line:"
msgstr ""
#: ../data/gtkbuilder/dialog-add.ui.h:3
msgid "_Add Source"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:1
msgid "Enable Ubuntu Pro"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:2
msgid ""
"To upgrade to Ubuntu Pro, use your existing free personal, or company Ubuntu "
"One account, or provide a token. <a href=\"https://ubuntu.com/"
"login\">Register a new account</a>."
msgstr ""
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:3
msgid "Enter code on ubuntu.com/pro/attach"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:4
msgid "Or add token manually"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:5
msgid "Token"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:6
msgid ""
"From your admin, or from <a href=\"https://ubuntu.com/pro\">ubuntu.com/pro</"
"a>"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:7
msgid ""
"Unable to connect to Ubuntu Pro servers. Check your internet connection."
msgstr ""
#: ../data/gtkbuilder/dialog-ua-attach.ui.h:9
msgid "Confirm"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-detach.ui.h:1
msgid "Disable Ubuntu Pro"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-detach.ui.h:2
msgid ""
"Disabling Ubuntu Pro will detach your subscription from this machine. Do you "
"want to proceed?"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-detach.ui.h:3
msgid "No, go _back"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-fips-enable.ui.h:2
msgid ""
"Enabling FIPS cannot be reversed and Livepatch will be permanently disabled. "
"Choose your preferred FIPS option."
msgstr ""
#: ../data/gtkbuilder/dialog-ua-fips-enable.ui.h:3
msgid ""
"<b>FIPS with updates</b>\n"
"Installs FIPS 140-2 validated packages and allows for regular security "
"updates."
msgstr ""
#: ../data/gtkbuilder/dialog-ua-fips-enable.ui.h:5
msgid ""
"<b>FIPS without updates</b>\n"
"Installs FIPS 140-2 validated packages. These will not be updated until the "
"next recertification."
msgstr ""
#: ../data/gtkbuilder/dialog-ua-fips-enable.ui.h:7
msgid "Cance_l"
msgstr ""
#: ../data/gtkbuilder/dialog-ua-fips-enable.ui.h:8
msgid "_Continue"
msgstr ""
|