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
|
From: Anthony Ryan <anthonyryan1@gmail.com>
Date: Tue, 15 Jun 2021 15:13:08 -0400
Subject: Remove deprecated option for separate Lock screen wallpaper
[smcv: Rebase on latest version, resolve conflicts]
Bug: https://gitlab.gnome.org/GNOME/gnome-tweaks/-/issues/404
Bug-Debian: https://bugs.debian.org/1032286
Co-authored-by: Simon McVittie <smcv@debian.org>
Forwarded: https://gitlab.gnome.org/GNOME/gnome-tweaks/-/merge_requests/74
---
gtweak/tweaks/tweak_group_appearance.py | 5 -----
po/af.po | 4 ----
po/ar.po | 4 ----
po/as.po | 5 -----
po/be.po | 4 ----
po/bg.po | 4 ----
po/bs.po | 4 ----
po/ca.po | 4 ----
po/ca@valencia.po | 4 ----
po/ckb.po | 4 ----
po/cs.po | 4 ----
po/da.po | 4 ----
po/de.po | 4 ----
po/el.po | 4 ----
po/en_GB.po | 4 ----
po/eo.po | 4 ----
po/es.po | 4 ----
po/eu.po | 4 ----
po/fa.po | 4 ----
po/fi.po | 4 ----
po/fr.po | 4 ----
po/fur.po | 4 ----
po/gl.po | 4 ----
po/he.po | 4 ----
po/hr.po | 4 ----
po/hu.po | 4 ----
po/id.po | 4 ----
po/is.po | 4 ----
po/it.po | 4 ----
po/ja.po | 4 ----
po/kk.po | 4 ----
po/ko.po | 4 ----
po/lt.po | 4 ----
po/lv.po | 4 ----
po/mjw.po | 4 ----
po/ml.po | 4 ----
po/ms.po | 4 ----
po/nb.po | 4 ----
po/ne.po | 4 ----
po/nl.po | 4 ----
po/oc.po | 4 ----
po/pa.po | 4 ----
po/pl.po | 4 ----
po/pt.po | 4 ----
po/pt_BR.po | 4 ----
po/ro.po | 4 ----
po/ru.po | 4 ----
po/sk.po | 4 ----
po/sl.po | 4 ----
po/sr.po | 4 ----
po/sr@latin.po | 4 ----
po/sv.po | 4 ----
po/tg.po | 4 ----
po/th.po | 4 ----
po/tr.po | 4 ----
po/uk.po | 4 ----
po/vi.po | 4 ----
po/zh_CN.po | 4 ----
po/zh_HK.po | 4 ----
po/zh_TW.po | 4 ----
60 files changed, 242 deletions(-)
diff --git a/gtweak/tweaks/tweak_group_appearance.py b/gtweak/tweaks/tweak_group_appearance.py
index 92120b2..4f4fa6b 100644
--- a/gtweak/tweaks/tweak_group_appearance.py
+++ b/gtweak/tweaks/tweak_group_appearance.py
@@ -294,11 +294,6 @@ TWEAK_GROUPS = [
local_only=True, mimetypes=["application/xml","image/png","image/jpeg"]),
GSettingsComboEnumTweak(_("Adjustment"),"org.gnome.desktop.background", "picture-options"),
- Title(_("Lock Screen"), "", uid="title-theme"),
- GSettingsFileChooserButtonTweak(_("Image"),"org.gnome.desktop.screensaver", "picture-uri",
- local_only=True, mimetypes=["application/xml","image/png","image/jpeg"]),
- GSettingsComboEnumTweak(_("Adjustment"),"org.gnome.desktop.screensaver", "picture-options"),
-
# Title(_("Files"), ""),
# GSettingsSwitchTweak(_("Use location entry"), "org.gnome.nautilus.preferences",
# "always-use-location-entry",schema_filename="org.gnome.nautilus.gschema.xml"),
diff --git a/po/af.po b/po/af.po
index e7b807e..9880c00 100644
--- a/po/af.po
+++ b/po/af.po
@@ -223,10 +223,6 @@ msgstr "Beeld"
msgid "Adjustment"
msgstr "Aanpassing"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Geslote skerm"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Vertoon Ikone"
diff --git a/po/ar.po b/po/ar.po
index 78efd8f..9aa1ce4 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -217,10 +217,6 @@ msgstr "الصورة"
msgid "Adjustment"
msgstr "الضبط"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "شاشة القفل"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "أظهر الأيقونات"
diff --git a/po/as.po b/po/as.po
index 105416c..11895e6 100644
--- a/po/as.po
+++ b/po/as.po
@@ -186,10 +186,6 @@ msgstr "অৱস্থা"
msgid "Background Location"
msgstr "পটভূমি অৱস্থান"
-#: ../gtweak/tweaks/tweak_group_desktop.py:35
-msgid "Lock Screen"
-msgstr "পৰ্দা লক কৰক"
-
#: ../gtweak/tweaks/tweak_group_desktop.py:37
msgid "Lock Screen Location"
msgstr "পৰ্দা লক কৰাৰ অৱস্থান"
@@ -596,4 +592,3 @@ msgstr "পৰিবৰ্তন প্ৰভাৱশালী হবলৈ এ
#: ../gtweak/widgets.py:507
msgid "Error writing setting"
msgstr "সংহতি লিখোতে ত্ৰুটি"
-
diff --git a/po/be.po b/po/be.po
index fa382bc..1986ec0 100644
--- a/po/be.po
+++ b/po/be.po
@@ -234,10 +234,6 @@ msgstr "Выява"
msgid "Adjustment"
msgstr "Падладка"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Экран блакавання"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Паказваць значкі"
diff --git a/po/bg.po b/po/bg.po
index 81c25ed..dfe8644 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -241,10 +241,6 @@ msgstr "Изображение"
msgid "Adjustment"
msgstr "Регулиране"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Заключване на екрана"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Показване на иконите"
diff --git a/po/bs.po b/po/bs.po
index 2850b64..11be2fe 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -188,10 +188,6 @@ msgstr "Režim"
msgid "Background Location"
msgstr "Lokacijapozadine"
-#: ../gtweak/tweaks/tweak_group_desktop.py:35
-msgid "Lock Screen"
-msgstr "Zaključaj ekran"
-
#: ../gtweak/tweaks/tweak_group_desktop.py:37
msgid "Lock Screen Location"
msgstr "Lokacija zaključanog ekrana"
diff --git a/po/ca.po b/po/ca.po
index e8c5298..3495377 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -246,10 +246,6 @@ msgstr "Imatge"
msgid "Adjustment"
msgstr "Ajust"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Bloqueig de pantalla"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Mostra les icones"
diff --git a/po/ca@valencia.po b/po/ca@valencia.po
index 0830b1b..ff51540 100644
--- a/po/ca@valencia.po
+++ b/po/ca@valencia.po
@@ -243,10 +243,6 @@ msgstr "Imatge"
msgid "Adjustment"
msgstr "Ajust"
-#: gtweak/tweaks/tweak_group_desktop.py:33
-msgid "Lock Screen"
-msgstr "Bloqueig de pantalla"
-
#: gtweak/tweaks/tweak_group_font.py:28 gtweak/tweaks/tweak_group_font.py:35
msgid "Hinting"
msgstr "Contorn"
diff --git a/po/ckb.po b/po/ckb.po
index 93b9c62..5c1b9db 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -213,10 +213,6 @@ msgstr "وێنە"
msgid "Adjustment"
msgstr "وردەکاری"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "قفڵکردنی پەردە"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "وێنۆچکە پیشان بدە"
diff --git a/po/cs.po b/po/cs.po
index 5a41a34..599d882 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -234,10 +234,6 @@ msgstr "Obrázek"
msgid "Adjustment"
msgstr "Přizpůsobení"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Zamykací obrazovka"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Zobrazovat ikony"
diff --git a/po/da.po b/po/da.po
index 8a5f6a9..2122c99 100644
--- a/po/da.po
+++ b/po/da.po
@@ -237,10 +237,6 @@ msgstr "Billede"
msgid "Adjustment"
msgstr "Justering"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Lås skærm"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Vis ikoner"
diff --git a/po/de.po b/po/de.po
index 91fc8d7..f02c97f 100644
--- a/po/de.po
+++ b/po/de.po
@@ -246,10 +246,6 @@ msgstr "Bild"
msgid "Adjustment"
msgstr "Ausrichtung"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Sperrbildschirm"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Symbole anzeigen"
diff --git a/po/el.po b/po/el.po
index 356e58c..fa61fd3 100644
--- a/po/el.po
+++ b/po/el.po
@@ -239,10 +239,6 @@ msgstr "Εικόνα"
msgid "Adjustment"
msgstr "Προσαρμογή"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Κλείδωμα οθόνης"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Εμφάνιση εικονιδίων"
diff --git a/po/en_GB.po b/po/en_GB.po
index 95e06c6..09d2f16 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -237,10 +237,6 @@ msgstr "Image"
msgid "Adjustment"
msgstr "Adjustment"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Lock Screen"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Show Icons"
diff --git a/po/eo.po b/po/eo.po
index 845d989..315ba06 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -239,10 +239,6 @@ msgstr "Bildo"
msgid "Adjustment"
msgstr "Alĝustigo"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Ŝlosi ekranon"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Montri bildsimbolojn"
diff --git a/po/es.po b/po/es.po
index bac150e..d4c61b5 100644
--- a/po/es.po
+++ b/po/es.po
@@ -241,10 +241,6 @@ msgstr "Imagen"
msgid "Adjustment"
msgstr "Ajuste"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Bloquear la pantalla"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Mostrar iconos"
diff --git a/po/eu.po b/po/eu.po
index 4c1bd1f..8df84f6 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -243,10 +243,6 @@ msgstr "Irudia"
msgid "Adjustment"
msgstr "Egokitzea"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Blokeo-pantaila"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Erakutsi ikonoak"
diff --git a/po/fa.po b/po/fa.po
index 9c3cb32..6cf8bcd 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -234,10 +234,6 @@ msgstr "تصویر"
msgid "Adjustment"
msgstr "تنظیم"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "صفحهٔ قفل"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "نمایش نقشکها"
diff --git a/po/fi.po b/po/fi.po
index 9822ba7..abfc6a5 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -236,10 +236,6 @@ msgstr "Kuva"
msgid "Adjustment"
msgstr "Sovitus"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Lukitusnäyttö"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Näytä kuvakkeet"
diff --git a/po/fr.po b/po/fr.po
index 006d1cf..886c743 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -237,10 +237,6 @@ msgstr "Image"
msgid "Adjustment"
msgstr "Ajustement"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Écran de verrouillage"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Afficher les icônes"
diff --git a/po/fur.po b/po/fur.po
index 1148145..dc3d9a6 100644
--- a/po/fur.po
+++ b/po/fur.po
@@ -244,10 +244,6 @@ msgstr "Imagjin"
msgid "Adjustment"
msgstr "Regolazion"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Bloche schermi"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Mostre iconis"
diff --git a/po/gl.po b/po/gl.po
index c735ec0..c90afef 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -249,10 +249,6 @@ msgstr "Imaxe"
msgid "Adjustment"
msgstr "Axuste"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Bloqueo de pantalla"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Mostrar iconas"
diff --git a/po/he.po b/po/he.po
index 1d4e402..4fae839 100644
--- a/po/he.po
+++ b/po/he.po
@@ -236,10 +236,6 @@ msgstr "תמונה"
msgid "Adjustment"
msgstr "התאמה"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "מסך נעילה"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "הצגת סמלילים"
diff --git a/po/hr.po b/po/hr.po
index c2d113c..7d7fd15 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -232,10 +232,6 @@ msgstr "Slika"
msgid "Adjustment"
msgstr "Prilagodba"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Zaključavanje zaslona"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Prikaži ikone"
diff --git a/po/hu.po b/po/hu.po
index c607735..b80d015 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -242,10 +242,6 @@ msgstr "Kép"
msgid "Adjustment"
msgstr "Igazítás"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Képernyő zárolása"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Ikonok megjelenítése"
diff --git a/po/id.po b/po/id.po
index ad6282a..e36bc4f 100644
--- a/po/id.po
+++ b/po/id.po
@@ -233,10 +233,6 @@ msgstr "Gambar"
msgid "Adjustment"
msgstr "Penyesuaian"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Kunci Layar"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Tampilkan Ikon"
diff --git a/po/is.po b/po/is.po
index 37f7110..ed0f02e 100644
--- a/po/is.po
+++ b/po/is.po
@@ -231,10 +231,6 @@ msgstr "Mynd"
msgid "Adjustment"
msgstr "Aðlögun"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Læsa skjá"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Birta táknmyndir"
diff --git a/po/it.po b/po/it.po
index db173ab..c983d06 100644
--- a/po/it.po
+++ b/po/it.po
@@ -238,10 +238,6 @@ msgstr "Immagine"
msgid "Adjustment"
msgstr "Regolazione"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Blocca schermo"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Mostra icone"
diff --git a/po/ja.po b/po/ja.po
index 0aa21c0..c634a37 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -243,10 +243,6 @@ msgstr "画像"
msgid "Adjustment"
msgstr "調整"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "ロック画面"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "アイコンを表示する"
diff --git a/po/kk.po b/po/kk.po
index 944e5d4..8e5bef3 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -234,10 +234,6 @@ msgstr "Сурет"
msgid "Adjustment"
msgstr "Келтіру"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Блоктау экраны"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Таңбашаларды көрсету"
diff --git a/po/ko.po b/po/ko.po
index 5e42e88..d700a82 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -232,10 +232,6 @@ msgstr "그림"
msgid "Adjustment"
msgstr "조정"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "화면 잠금"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "아이콘 표시"
diff --git a/po/lt.po b/po/lt.po
index 7a9bf02..7a12102 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -241,10 +241,6 @@ msgstr "Paveikslėlis"
msgid "Adjustment"
msgstr "Priderinimas"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Užrakinimo ekranas"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Rodyti piktogramas"
diff --git a/po/lv.po b/po/lv.po
index 4c1aabb..36ae13f 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -238,10 +238,6 @@ msgstr "Attēls"
msgid "Adjustment"
msgstr "Pielāgojums"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Ekrāna vairogs"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Rādīt ikonas"
diff --git a/po/mjw.po b/po/mjw.po
index cb70429..ead5f67 100644
--- a/po/mjw.po
+++ b/po/mjw.po
@@ -210,10 +210,6 @@ msgstr "Arjan"
msgid "Adjustment"
msgstr ""
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr ""
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr ""
diff --git a/po/ml.po b/po/ml.po
index 3e83632..26e0d9d 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -216,10 +216,6 @@ msgstr "ചിത്രം"
msgid "Adjustment"
msgstr "ക്രമീകരണം"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "ലോക് സ്ക്രീന്"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "ഐക്കണുകള് കാണിക്കുക"
diff --git a/po/ms.po b/po/ms.po
index 125f369..f87aa7d 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -214,10 +214,6 @@ msgstr "Imej"
msgid "Adjustment"
msgstr "Pelarasan"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Skrin Kunci"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Tunjuk Ikon"
diff --git a/po/nb.po b/po/nb.po
index b125c1f..2c6adba 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -231,10 +231,6 @@ msgstr "Bilde"
msgid "Adjustment"
msgstr "Justering"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Lås skjerm"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Vis ikoner"
diff --git a/po/ne.po b/po/ne.po
index e47a009..d10d08e 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -224,10 +224,6 @@ msgstr "चित्र"
msgid "Adjustment"
msgstr "मिलान"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "पर्दा ताल्चा लगाउनुहोस्"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "प्रतिमा मात्र देखउनुहोस्"
diff --git a/po/nl.po b/po/nl.po
index 58db480..d337f12 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -240,10 +240,6 @@ msgstr "Afbeelding"
msgid "Adjustment"
msgstr "Aanpassing"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Scherm vergrendelen"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Pictogrammen tonen"
diff --git a/po/oc.po b/po/oc.po
index 7f87561..5fcd4c2 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -234,10 +234,6 @@ msgstr "Imatge"
msgid "Adjustment"
msgstr "Ajustament"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Ecran de verrolhatge"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Afichar las icònas"
diff --git a/po/pa.po b/po/pa.po
index 1fc566d..5065b35 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -223,10 +223,6 @@ msgstr "ਚਿੱਤਰ"
msgid "Adjustment"
msgstr "ਅਨਕੂਲਤਾ"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "ਸਕਰੀਨ ਲਾਕ"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
#| msgid "Show seconds"
msgid "Show Icons"
diff --git a/po/pl.po b/po/pl.po
index 3695c7d..7233729 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -237,10 +237,6 @@ msgstr "Obraz"
msgid "Adjustment"
msgstr "Dostosowanie"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Ekran blokady"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Ikony"
diff --git a/po/pt.po b/po/pt.po
index 1796329..0e2b3a0 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -238,10 +238,6 @@ msgstr "Imagem"
msgid "Adjustment"
msgstr "Ajuste"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Ecrã de bloqueio"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Mostrar ícones"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index d5cb542..d6f0cdc 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -242,10 +242,6 @@ msgstr "Imagem"
msgid "Adjustment"
msgstr "Ajustamento"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Tela de bloqueio"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Mostrar ícones"
diff --git a/po/ro.po b/po/ro.po
index c898a2e..b033512 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -240,10 +240,6 @@ msgstr "Imagine"
msgid "Adjustment"
msgstr "Ajustare"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Blocare ecran"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Arată iconițele"
diff --git a/po/ru.po b/po/ru.po
index acf8e7b..5496409 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -243,10 +243,6 @@ msgstr "Изображение"
msgid "Adjustment"
msgstr "Подгонка"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Экран блокировки"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Показывать значки"
diff --git a/po/sk.po b/po/sk.po
index 33dfe0d..1c3c591 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -227,10 +227,6 @@ msgstr "Obrázok"
msgid "Adjustment"
msgstr "Prispôsobenie"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Uzamknutá obrazovka"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Zobraziť ikony"
diff --git a/po/sl.po b/po/sl.po
index 9b28159..aab3b10 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -237,10 +237,6 @@ msgstr "Slika"
msgid "Adjustment"
msgstr "Prilagoditev"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Zaklenjen zaslon"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Pokaži ikone"
diff --git a/po/sr.po b/po/sr.po
index 012ef2d..b7d0e59 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -238,10 +238,6 @@ msgstr "Слика"
msgid "Adjustment"
msgstr "Поставка"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Закључавање екрана"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Прикажи иконице"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 2af22b0..1f10a37 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -218,10 +218,6 @@ msgstr "Slika"
msgid "Adjustment"
msgstr "Postavka"
-#: gtweak/tweaks/tweak_group_appearance.py:271
-msgid "Lock Screen"
-msgstr "Zaključavanje ekrana"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Prikaži ikonice"
diff --git a/po/sv.po b/po/sv.po
index 196ca98..048bf61 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -234,10 +234,6 @@ msgstr "Bild"
msgid "Adjustment"
msgstr "Justering"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Låsskärm"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Visa ikoner"
diff --git a/po/tg.po b/po/tg.po
index 216fbfb..6581232 100644
--- a/po/tg.po
+++ b/po/tg.po
@@ -180,10 +180,6 @@ msgstr "Реҷа"
msgid "Background Location"
msgstr "Ҷойгиршавии пасзамина"
-#: ../gtweak/tweaks/tweak_group_desktop.py:35
-msgid "Lock Screen"
-msgstr "Экрани қулф"
-
#: ../gtweak/tweaks/tweak_group_desktop.py:37
msgid "Lock Screen Location"
msgstr "Ҷойгиршавии экрани қулф"
diff --git a/po/th.po b/po/th.po
index 3492232..089f7d1 100644
--- a/po/th.po
+++ b/po/th.po
@@ -181,10 +181,6 @@ msgstr "โหมด"
msgid "Background Location"
msgstr "ตำแหน่งเก็บของภาพพื้นหลัง"
-#: ../gtweak/tweaks/tweak_group_desktop.py:35
-msgid "Lock Screen"
-msgstr "หน้าจอล็อค"
-
#: ../gtweak/tweaks/tweak_group_desktop.py:37
msgid "Lock Screen Location"
msgstr "ตำแหน่งเก็บของภาพหน้าจอล็อค"
diff --git a/po/tr.po b/po/tr.po
index 7347846..8de31dd 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -248,10 +248,6 @@ msgstr "Görüntü"
msgid "Adjustment"
msgstr "Ayarlama"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Kilit Ekranı"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Simgeleri Göster"
diff --git a/po/uk.po b/po/uk.po
index 6ee0e53..47bc99e 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -238,10 +238,6 @@ msgstr "Зображення"
msgid "Adjustment"
msgstr "Коригування"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Блокування екрана"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Показати піктограми"
diff --git a/po/vi.po b/po/vi.po
index 546dc52..a78fdd3 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -236,10 +236,6 @@ msgstr "Ảnh"
msgid "Adjustment"
msgstr "Điều chỉnh"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "Màn hình khóa"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "Hiện biểu tượng"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 1834b39..2e43ce8 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -241,10 +241,6 @@ msgstr "图像"
msgid "Adjustment"
msgstr "调整"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "锁屏"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "显示图标"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index 88557a6..e56bfd8 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -185,10 +185,6 @@ msgstr "模式"
msgid "Background Location"
msgstr "背景位置"
-#: ../gtweak/tweaks/tweak_group_desktop.py:35
-msgid "Lock Screen"
-msgstr "鎖定畫面"
-
#: ../gtweak/tweaks/tweak_group_desktop.py:37
msgid "Lock Screen Location"
msgstr "鎖定畫面位置"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 8468789..98402b8 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -232,10 +232,6 @@ msgstr "影像"
msgid "Adjustment"
msgstr "調整"
-#: gtweak/tweaks/tweak_group_appearance.py:297
-msgid "Lock Screen"
-msgstr "鎖定畫面"
-
#: gtweak/tweaks/tweak_group_desktop.py:7
msgid "Show Icons"
msgstr "顯示圖示"
|